提交 193bca59 编写于 作者: M Michal Simek

microblaze: Cleanup PCI_DRAM_OFFSET handling

PCI_DRAM_OFFSET/pci_dram_offset is 0 all the time and there
is no difference for PCI and !PCI cases.
Also remove the whole code which setup archdata.dma_data
which is completely unused.
Signed-off-by: NMichal Simek <michal.simek@xilinx.com>
上级 28d1880c
...@@ -14,7 +14,6 @@ struct device_node; ...@@ -14,7 +14,6 @@ struct device_node;
struct dev_archdata { struct dev_archdata {
/* DMA operations on that device */ /* DMA operations on that device */
struct dma_map_ops *dma_ops; struct dma_map_ops *dma_ops;
void *dma_data;
}; };
struct pdev_archdata { struct pdev_archdata {
......
...@@ -19,17 +19,14 @@ ...@@ -19,17 +19,14 @@
#ifndef CONFIG_PCI #ifndef CONFIG_PCI
#define _IO_BASE 0 #define _IO_BASE 0
#define _ISA_MEM_BASE 0 #define _ISA_MEM_BASE 0
#define PCI_DRAM_OFFSET 0
#else #else
#define _IO_BASE isa_io_base #define _IO_BASE isa_io_base
#define _ISA_MEM_BASE isa_mem_base #define _ISA_MEM_BASE isa_mem_base
#define PCI_DRAM_OFFSET pci_dram_offset
struct pci_dev; struct pci_dev;
extern void pci_iounmap(struct pci_dev *dev, void __iomem *); extern void pci_iounmap(struct pci_dev *dev, void __iomem *);
#define pci_iounmap pci_iounmap #define pci_iounmap pci_iounmap
extern unsigned long isa_io_base; extern unsigned long isa_io_base;
extern unsigned long pci_dram_offset;
extern resource_size_t isa_mem_base; extern resource_size_t isa_mem_base;
#endif #endif
......
...@@ -13,23 +13,6 @@ ...@@ -13,23 +13,6 @@
#include <linux/export.h> #include <linux/export.h>
#include <linux/bug.h> #include <linux/bug.h>
/*
* Generic direct DMA implementation
*
* This implementation supports a per-device offset that can be applied if
* the address at which memory is visible to devices is not 0. Platform code
* can set archdata.dma_data to an unsigned long holding the offset. By
* default the offset is PCI_DRAM_OFFSET.
*/
static unsigned long get_dma_direct_offset(struct device *dev)
{
if (likely(dev))
return (unsigned long)dev->archdata.dma_data;
return PCI_DRAM_OFFSET; /* FIXME Not sure if is correct */
}
#define NOT_COHERENT_CACHE #define NOT_COHERENT_CACHE
static void *dma_direct_alloc_coherent(struct device *dev, size_t size, static void *dma_direct_alloc_coherent(struct device *dev, size_t size,
...@@ -51,7 +34,7 @@ static void *dma_direct_alloc_coherent(struct device *dev, size_t size, ...@@ -51,7 +34,7 @@ static void *dma_direct_alloc_coherent(struct device *dev, size_t size,
return NULL; return NULL;
ret = page_address(page); ret = page_address(page);
memset(ret, 0, size); memset(ret, 0, size);
*dma_handle = virt_to_phys(ret) + get_dma_direct_offset(dev); *dma_handle = virt_to_phys(ret);
return ret; return ret;
#endif #endif
...@@ -77,7 +60,7 @@ static int dma_direct_map_sg(struct device *dev, struct scatterlist *sgl, ...@@ -77,7 +60,7 @@ static int dma_direct_map_sg(struct device *dev, struct scatterlist *sgl,
/* FIXME this part of code is untested */ /* FIXME this part of code is untested */
for_each_sg(sgl, sg, nents, i) { for_each_sg(sgl, sg, nents, i) {
sg->dma_address = sg_phys(sg) + get_dma_direct_offset(dev); sg->dma_address = sg_phys(sg);
__dma_sync(page_to_phys(sg_page(sg)) + sg->offset, __dma_sync(page_to_phys(sg_page(sg)) + sg->offset,
sg->length, direction); sg->length, direction);
} }
...@@ -104,7 +87,7 @@ static inline dma_addr_t dma_direct_map_page(struct device *dev, ...@@ -104,7 +87,7 @@ static inline dma_addr_t dma_direct_map_page(struct device *dev,
struct dma_attrs *attrs) struct dma_attrs *attrs)
{ {
__dma_sync(page_to_phys(page) + offset, size, direction); __dma_sync(page_to_phys(page) + offset, size, direction);
return page_to_phys(page) + offset + get_dma_direct_offset(dev); return page_to_phys(page) + offset;
} }
static inline void dma_direct_unmap_page(struct device *dev, static inline void dma_direct_unmap_page(struct device *dev,
......
...@@ -48,7 +48,6 @@ static int global_phb_number; /* Global phb counter */ ...@@ -48,7 +48,6 @@ static int global_phb_number; /* Global phb counter */
resource_size_t isa_mem_base; resource_size_t isa_mem_base;
unsigned long isa_io_base; unsigned long isa_io_base;
unsigned long pci_dram_offset;
static int pci_bus_count; static int pci_bus_count;
struct pci_controller *pcibios_alloc_controller(struct device_node *dev) struct pci_controller *pcibios_alloc_controller(struct device_node *dev)
...@@ -872,8 +871,6 @@ void pcibios_setup_bus_devices(struct pci_bus *bus) ...@@ -872,8 +871,6 @@ void pcibios_setup_bus_devices(struct pci_bus *bus)
*/ */
set_dev_node(&dev->dev, pcibus_to_node(dev->bus)); set_dev_node(&dev->dev, pcibus_to_node(dev->bus));
dev->dev.archdata.dma_data = (void *)PCI_DRAM_OFFSET;
/* Read default IRQs and fixup if necessary */ /* Read default IRQs and fixup if necessary */
dev->irq = of_irq_parse_and_map_pci(dev, 0, 0); dev->irq = of_irq_parse_and_map_pci(dev, 0, 0);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册