mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
80b5efbd43
The current Versatile Express BSP defines the MACHINE_START macro in the core tile code. This patch moves this into the generic board code and introduces a method for determining the current tile at runtime, allowing the Kernel to have support for multiple tiles compiled in. Tile-specific functions are executed via a descriptor struct containing the correct implementations for the current tile. Signed-off-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
20 lines
509 B
C
20 lines
509 B
C
#define __MMIO_P2V(x) (((x) & 0xfffff) | (((x) & 0x0f000000) >> 4) | 0xf8000000)
|
|
#define MMIO_P2V(x) ((void __iomem *)__MMIO_P2V(x))
|
|
|
|
#define AMBA_DEVICE(name,busid,base,plat) \
|
|
struct amba_device name##_device = { \
|
|
.dev = { \
|
|
.coherent_dma_mask = ~0UL, \
|
|
.init_name = busid, \
|
|
.platform_data = plat, \
|
|
}, \
|
|
.res = { \
|
|
.start = base, \
|
|
.end = base + SZ_4K - 1, \
|
|
.flags = IORESOURCE_MEM, \
|
|
}, \
|
|
.dma_mask = ~0UL, \
|
|
.irq = IRQ_##base, \
|
|
/* .dma = DMA_##base,*/ \
|
|
}
|