1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/arch/arm/mach-omap1/io.c
5 * OMAP1 I/O mapping code
8 #include <linux/module.h>
9 #include <linux/kernel.h>
10 #include <linux/init.h>
14 #include <asm/mach/map.h>
18 #include <linux/omap-dma.h>
25 * The machine specific code may provide the extra mapping besides the
26 * default mapping provided here.
28 static struct map_desc omap_io_desc
[] __initdata
= {
30 .virtual = OMAP1_IO_VIRT
,
31 .pfn
= __phys_to_pfn(OMAP1_IO_PHYS
),
32 .length
= OMAP1_IO_SIZE
,
37 #if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
38 static struct map_desc omap7xx_io_desc
[] __initdata
= {
40 .virtual = OMAP7XX_DSP_BASE
,
41 .pfn
= __phys_to_pfn(OMAP7XX_DSP_START
),
42 .length
= OMAP7XX_DSP_SIZE
,
45 .virtual = OMAP7XX_DSPREG_BASE
,
46 .pfn
= __phys_to_pfn(OMAP7XX_DSPREG_START
),
47 .length
= OMAP7XX_DSPREG_SIZE
,
53 #ifdef CONFIG_ARCH_OMAP15XX
54 static struct map_desc omap1510_io_desc
[] __initdata
= {
56 .virtual = OMAP1510_DSP_BASE
,
57 .pfn
= __phys_to_pfn(OMAP1510_DSP_START
),
58 .length
= OMAP1510_DSP_SIZE
,
61 .virtual = OMAP1510_DSPREG_BASE
,
62 .pfn
= __phys_to_pfn(OMAP1510_DSPREG_START
),
63 .length
= OMAP1510_DSPREG_SIZE
,
69 #if defined(CONFIG_ARCH_OMAP16XX)
70 static struct map_desc omap16xx_io_desc
[] __initdata
= {
72 .virtual = OMAP16XX_DSP_BASE
,
73 .pfn
= __phys_to_pfn(OMAP16XX_DSP_START
),
74 .length
= OMAP16XX_DSP_SIZE
,
77 .virtual = OMAP16XX_DSPREG_BASE
,
78 .pfn
= __phys_to_pfn(OMAP16XX_DSPREG_START
),
79 .length
= OMAP16XX_DSPREG_SIZE
,
86 * Maps common IO regions for omap1
88 static void __init
omap1_map_common_io(void)
90 iotable_init(omap_io_desc
, ARRAY_SIZE(omap_io_desc
));
93 #if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
94 void __init
omap7xx_map_io(void)
96 omap1_map_common_io();
97 iotable_init(omap7xx_io_desc
, ARRAY_SIZE(omap7xx_io_desc
));
101 #ifdef CONFIG_ARCH_OMAP15XX
102 void __init
omap15xx_map_io(void)
104 omap1_map_common_io();
105 iotable_init(omap1510_io_desc
, ARRAY_SIZE(omap1510_io_desc
));
109 #if defined(CONFIG_ARCH_OMAP16XX)
110 void __init
omap16xx_map_io(void)
112 omap1_map_common_io();
113 iotable_init(omap16xx_io_desc
, ARRAY_SIZE(omap16xx_io_desc
));
118 * Common low-level hardware init for omap1.
120 void __init
omap1_init_early(void)
122 omap_check_revision();
124 /* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort
125 * on a Posted Write in the TIPB Bridge".
127 omap_writew(0x0, MPU_PUBLIC_TIPB_CNTL
);
128 omap_writew(0x0, MPU_PRIVATE_TIPB_CNTL
);
130 /* Must init clocks early to assure that timer interrupt works
136 void __init
omap1_init_late(void)
138 omap_serial_wakeup_init();
142 * NOTE: Please use ioremap + __raw_read/write where possible instead of these
145 u8
omap_readb(u32 pa
)
147 return __raw_readb(OMAP1_IO_ADDRESS(pa
));
149 EXPORT_SYMBOL(omap_readb
);
151 u16
omap_readw(u32 pa
)
153 return __raw_readw(OMAP1_IO_ADDRESS(pa
));
155 EXPORT_SYMBOL(omap_readw
);
157 u32
omap_readl(u32 pa
)
159 return __raw_readl(OMAP1_IO_ADDRESS(pa
));
161 EXPORT_SYMBOL(omap_readl
);
163 void omap_writeb(u8 v
, u32 pa
)
165 __raw_writeb(v
, OMAP1_IO_ADDRESS(pa
));
167 EXPORT_SYMBOL(omap_writeb
);
169 void omap_writew(u16 v
, u32 pa
)
171 __raw_writew(v
, OMAP1_IO_ADDRESS(pa
));
173 EXPORT_SYMBOL(omap_writew
);
175 void omap_writel(u32 v
, u32 pa
)
177 __raw_writel(v
, OMAP1_IO_ADDRESS(pa
));
179 EXPORT_SYMBOL(omap_writel
);