ARM: OMAP1: Use generic map_io, init_early and init_irq
[deliverable/linux.git] / arch / arm / mach-omap1 / io.c
CommitLineData
f577ffd7
TL
1/*
2 * linux/arch/arm/mach-omap1/io.c
3 *
4 * OMAP1 I/O mapping code
5 *
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.
9 */
10
f577ffd7
TL
11#include <linux/module.h>
12#include <linux/kernel.h>
13#include <linux/init.h>
fced80c7 14#include <linux/io.h>
f577ffd7 15
53d9cc73 16#include <asm/tlb.h>
f577ffd7 17#include <asm/mach/map.h>
ce491cf8
TL
18#include <plat/mux.h>
19#include <plat/tc.h>
f577ffd7 20
52650505
PW
21#include "clock.h"
22
f577ffd7 23extern void omap_check_revision(void);
7c38cf02 24extern void omap_sram_init(void);
f577ffd7
TL
25
26/*
27 * The machine specific code may provide the extra mapping besides the
28 * default mapping provided here.
29 */
30static struct map_desc omap_io_desc[] __initdata = {
9fe133b1 31 {
db326be1
TL
32 .virtual = OMAP1_IO_VIRT,
33 .pfn = __phys_to_pfn(OMAP1_IO_PHYS),
34 .length = OMAP1_IO_SIZE,
9fe133b1
DS
35 .type = MT_DEVICE
36 }
f577ffd7
TL
37};
38
ab49df73 39#if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
7c006926 40static struct map_desc omap7xx_io_desc[] __initdata = {
9fe133b1 41 {
b51988db
AB
42 .virtual = OMAP7XX_DSP_BASE,
43 .pfn = __phys_to_pfn(OMAP7XX_DSP_START),
44 .length = OMAP7XX_DSP_SIZE,
9fe133b1
DS
45 .type = MT_DEVICE
46 }, {
b51988db
AB
47 .virtual = OMAP7XX_DSPREG_BASE,
48 .pfn = __phys_to_pfn(OMAP7XX_DSPREG_START),
49 .length = OMAP7XX_DSPREG_SIZE,
9fe133b1
DS
50 .type = MT_DEVICE
51 }
f577ffd7
TL
52};
53#endif
54
3179a019 55#ifdef CONFIG_ARCH_OMAP15XX
f577ffd7 56static struct map_desc omap1510_io_desc[] __initdata = {
9fe133b1
DS
57 {
58 .virtual = OMAP1510_DSP_BASE,
59 .pfn = __phys_to_pfn(OMAP1510_DSP_START),
60 .length = OMAP1510_DSP_SIZE,
61 .type = MT_DEVICE
62 }, {
63 .virtual = OMAP1510_DSPREG_BASE,
64 .pfn = __phys_to_pfn(OMAP1510_DSPREG_START),
65 .length = OMAP1510_DSPREG_SIZE,
66 .type = MT_DEVICE
67 }
f577ffd7
TL
68};
69#endif
70
71#if defined(CONFIG_ARCH_OMAP16XX)
7c38cf02 72static struct map_desc omap16xx_io_desc[] __initdata = {
9fe133b1
DS
73 {
74 .virtual = OMAP16XX_DSP_BASE,
75 .pfn = __phys_to_pfn(OMAP16XX_DSP_START),
76 .length = OMAP16XX_DSP_SIZE,
77 .type = MT_DEVICE
78 }, {
79 .virtual = OMAP16XX_DSPREG_BASE,
80 .pfn = __phys_to_pfn(OMAP16XX_DSPREG_START),
81 .length = OMAP16XX_DSPREG_SIZE,
82 .type = MT_DEVICE
83 }
f577ffd7
TL
84};
85#endif
86
53d9cc73 87/*
7b88e62f 88 * Maps common IO regions for omap1
53d9cc73 89 */
7b88e62f 90static void __init omap1_map_common_io(void)
f577ffd7 91{
f577ffd7 92 iotable_init(omap_io_desc, ARRAY_SIZE(omap_io_desc));
7b88e62f 93}
f577ffd7 94
ab49df73 95#if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
7b88e62f
TL
96void __init omap7xx_map_io(void)
97{
98 omap1_map_common_io();
99 iotable_init(omap7xx_io_desc, ARRAY_SIZE(omap7xx_io_desc));
100}
f577ffd7 101#endif
7b88e62f 102
3179a019 103#ifdef CONFIG_ARCH_OMAP15XX
7b88e62f
TL
104void __init omap15xx_map_io(void)
105{
106 omap1_map_common_io();
107 iotable_init(omap1510_io_desc, ARRAY_SIZE(omap1510_io_desc));
108}
f577ffd7
TL
109#endif
110
7b88e62f
TL
111#if defined(CONFIG_ARCH_OMAP16XX)
112void __init omap16xx_map_io(void)
113{
114 omap1_map_common_io();
115 iotable_init(omap16xx_io_desc, ARRAY_SIZE(omap16xx_io_desc));
53d9cc73 116}
7b88e62f 117#endif
7c38cf02 118
53d9cc73 119/*
7b88e62f 120 * Common low-level hardware init for omap1.
53d9cc73 121 */
7b88e62f 122void omap1_init_early(void)
53d9cc73 123{
7b88e62f
TL
124 omap_check_revision();
125
f577ffd7
TL
126 /* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort
127 * on a Posted Write in the TIPB Bridge".
128 */
129 omap_writew(0x0, MPU_PUBLIC_TIPB_CNTL);
130 omap_writew(0x0, MPU_PRIVATE_TIPB_CNTL);
131
132 /* Must init clocks early to assure that timer interrupt works
133 */
3179a019 134 omap1_clk_init();
53d9cc73 135 omap1_mux_init();
7b88e62f 136 omap_sram_init();
f577ffd7 137}
7c38cf02 138
df1e9d1c
TL
139/*
140 * NOTE: Please use ioremap + __raw_read/write where possible instead of these
141 */
142
143u8 omap_readb(u32 pa)
144{
145 return __raw_readb(OMAP1_IO_ADDRESS(pa));
146}
147EXPORT_SYMBOL(omap_readb);
148
149u16 omap_readw(u32 pa)
150{
151 return __raw_readw(OMAP1_IO_ADDRESS(pa));
152}
153EXPORT_SYMBOL(omap_readw);
154
155u32 omap_readl(u32 pa)
156{
157 return __raw_readl(OMAP1_IO_ADDRESS(pa));
158}
159EXPORT_SYMBOL(omap_readl);
160
161void omap_writeb(u8 v, u32 pa)
162{
163 __raw_writeb(v, OMAP1_IO_ADDRESS(pa));
164}
165EXPORT_SYMBOL(omap_writeb);
166
167void omap_writew(u16 v, u32 pa)
168{
169 __raw_writew(v, OMAP1_IO_ADDRESS(pa));
170}
171EXPORT_SYMBOL(omap_writew);
172
173void omap_writel(u32 v, u32 pa)
174{
175 __raw_writel(v, OMAP1_IO_ADDRESS(pa));
176}
177EXPORT_SYMBOL(omap_writel);
This page took 1.47594 seconds and 5 git commands to generate.