2 * linux/arch/arm/mach-omap1/io.c
4 * OMAP1 I/O mapping code
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/module.h>
12 #include <linux/kernel.h>
13 #include <linux/init.h>
17 #include <asm/mach/map.h>
23 extern void omap_check_revision(void);
24 extern void omap_sram_init(void);
27 * The machine specific code may provide the extra mapping besides the
28 * default mapping provided here.
30 static struct map_desc omap_io_desc[] __initdata = {
32 .virtual = OMAP1_IO_VIRT,
33 .pfn = __phys_to_pfn(OMAP1_IO_PHYS),
34 .length = OMAP1_IO_SIZE,
39 #if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
40 static struct map_desc omap7xx_io_desc[] __initdata = {
42 .virtual = OMAP7XX_DSP_BASE,
43 .pfn = __phys_to_pfn(OMAP7XX_DSP_START),
44 .length = OMAP7XX_DSP_SIZE,
47 .virtual = OMAP7XX_DSPREG_BASE,
48 .pfn = __phys_to_pfn(OMAP7XX_DSPREG_START),
49 .length = OMAP7XX_DSPREG_SIZE,
55 #ifdef CONFIG_ARCH_OMAP15XX
56 static struct map_desc omap1510_io_desc[] __initdata = {
58 .virtual = OMAP1510_DSP_BASE,
59 .pfn = __phys_to_pfn(OMAP1510_DSP_START),
60 .length = OMAP1510_DSP_SIZE,
63 .virtual = OMAP1510_DSPREG_BASE,
64 .pfn = __phys_to_pfn(OMAP1510_DSPREG_START),
65 .length = OMAP1510_DSPREG_SIZE,
71 #if defined(CONFIG_ARCH_OMAP16XX)
72 static struct map_desc omap16xx_io_desc[] __initdata = {
74 .virtual = OMAP16XX_DSP_BASE,
75 .pfn = __phys_to_pfn(OMAP16XX_DSP_START),
76 .length = OMAP16XX_DSP_SIZE,
79 .virtual = OMAP16XX_DSPREG_BASE,
80 .pfn = __phys_to_pfn(OMAP16XX_DSPREG_START),
81 .length = OMAP16XX_DSPREG_SIZE,
88 * Maps common IO regions for omap1. This should only get called from
89 * board specific init.
91 void __init omap1_map_common_io(void)
93 iotable_init(omap_io_desc, ARRAY_SIZE(omap_io_desc));
95 /* Normally devicemaps_init() would flush caches and tlb after
96 * mdesc->map_io(), but we must also do it here because of the CPU
97 * revision check below.
99 local_flush_tlb_all();
102 /* We want to check CPU revision early for cpu_is_omapxxxx() macros.
103 * IO space mapping must be initialized before we can do that.
105 omap_check_revision();
107 #if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
108 if (cpu_is_omap7xx()) {
109 iotable_init(omap7xx_io_desc, ARRAY_SIZE(omap7xx_io_desc));
112 #ifdef CONFIG_ARCH_OMAP15XX
113 if (cpu_is_omap15xx()) {
114 iotable_init(omap1510_io_desc, ARRAY_SIZE(omap1510_io_desc));
117 #if defined(CONFIG_ARCH_OMAP16XX)
118 if (cpu_is_omap16xx()) {
119 iotable_init(omap16xx_io_desc, ARRAY_SIZE(omap16xx_io_desc));
124 omap_init_consistent_dma_size();
128 * Common low-level hardware init for omap1. This should only get called from
129 * board specific init.
131 void __init omap1_init_common_hw(void)
133 /* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort
134 * on a Posted Write in the TIPB Bridge".
136 omap_writew(0x0, MPU_PUBLIC_TIPB_CNTL);
137 omap_writew(0x0, MPU_PRIVATE_TIPB_CNTL);
139 /* Must init clocks early to assure that timer interrupt works
147 * NOTE: Please use ioremap + __raw_read/write where possible instead of these
150 u8 omap_readb(u32 pa)
152 return __raw_readb(OMAP1_IO_ADDRESS(pa));
154 EXPORT_SYMBOL(omap_readb);
156 u16 omap_readw(u32 pa)
158 return __raw_readw(OMAP1_IO_ADDRESS(pa));
160 EXPORT_SYMBOL(omap_readw);
162 u32 omap_readl(u32 pa)
164 return __raw_readl(OMAP1_IO_ADDRESS(pa));
166 EXPORT_SYMBOL(omap_readl);
168 void omap_writeb(u8 v, u32 pa)
170 __raw_writeb(v, OMAP1_IO_ADDRESS(pa));
172 EXPORT_SYMBOL(omap_writeb);
174 void omap_writew(u16 v, u32 pa)
176 __raw_writew(v, OMAP1_IO_ADDRESS(pa));
178 EXPORT_SYMBOL(omap_writew);
180 void omap_writel(u32 v, u32 pa)
182 __raw_writel(v, OMAP1_IO_ADDRESS(pa));
184 EXPORT_SYMBOL(omap_writel);