blob: 8e55b6fb3478becc4c18a02dc976451fcf4adb1e [file] [log] [blame]
Tony Lindgrenf577ffd2005-07-10 19:58:12 +01001/*
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
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010011#include <linux/module.h>
12#include <linux/kernel.h>
13#include <linux/init.h>
Russell Kingfced80c2008-09-06 12:10:45 +010014#include <linux/io.h>
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010015
Tony Lindgren53d9cc72006-02-08 22:06:45 +000016#include <asm/tlb.h>
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010017#include <asm/mach/map.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070018#include <plat/mux.h>
19#include <plat/tc.h>
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010020
Paul Walmsley52650502009-12-08 16:29:38 -070021#include "clock.h"
22
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010023extern void omap_check_revision(void);
24
25/*
26 * The machine specific code may provide the extra mapping besides the
27 * default mapping provided here.
28 */
29static struct map_desc omap_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010030 {
Tony Lindgrendb326be2009-08-28 10:50:37 -070031 .virtual = OMAP1_IO_VIRT,
32 .pfn = __phys_to_pfn(OMAP1_IO_PHYS),
33 .length = OMAP1_IO_SIZE,
Deepak Saxena9fe133b2005-10-28 15:19:00 +010034 .type = MT_DEVICE
35 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010036};
37
Alistair Buxtonab49df72009-09-22 05:58:08 +010038#if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +010039static struct map_desc omap7xx_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010040 {
Alistair Buxtonb51988d2009-09-22 07:34:13 +010041 .virtual = OMAP7XX_DSP_BASE,
42 .pfn = __phys_to_pfn(OMAP7XX_DSP_START),
43 .length = OMAP7XX_DSP_SIZE,
Deepak Saxena9fe133b2005-10-28 15:19:00 +010044 .type = MT_DEVICE
45 }, {
Alistair Buxtonb51988d2009-09-22 07:34:13 +010046 .virtual = OMAP7XX_DSPREG_BASE,
47 .pfn = __phys_to_pfn(OMAP7XX_DSPREG_START),
48 .length = OMAP7XX_DSPREG_SIZE,
Deepak Saxena9fe133b2005-10-28 15:19:00 +010049 .type = MT_DEVICE
50 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010051};
52#endif
53
Tony Lindgren3179a012005-11-10 14:26:48 +000054#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010055static struct map_desc omap1510_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010056 {
57 .virtual = OMAP1510_DSP_BASE,
58 .pfn = __phys_to_pfn(OMAP1510_DSP_START),
59 .length = OMAP1510_DSP_SIZE,
60 .type = MT_DEVICE
61 }, {
62 .virtual = OMAP1510_DSPREG_BASE,
63 .pfn = __phys_to_pfn(OMAP1510_DSPREG_START),
64 .length = OMAP1510_DSPREG_SIZE,
65 .type = MT_DEVICE
66 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010067};
68#endif
69
70#if defined(CONFIG_ARCH_OMAP16XX)
Tony Lindgren7c38cf02005-09-08 23:07:38 +010071static struct map_desc omap16xx_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010072 {
73 .virtual = OMAP16XX_DSP_BASE,
74 .pfn = __phys_to_pfn(OMAP16XX_DSP_START),
75 .length = OMAP16XX_DSP_SIZE,
76 .type = MT_DEVICE
77 }, {
78 .virtual = OMAP16XX_DSPREG_BASE,
79 .pfn = __phys_to_pfn(OMAP16XX_DSPREG_START),
80 .length = OMAP16XX_DSPREG_SIZE,
81 .type = MT_DEVICE
82 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010083};
84#endif
85
Tony Lindgren53d9cc72006-02-08 22:06:45 +000086/*
Tony Lindgren7b88e622011-10-05 15:14:02 -070087 * Maps common IO regions for omap1
Tony Lindgren53d9cc72006-02-08 22:06:45 +000088 */
Tony Lindgren7b88e622011-10-05 15:14:02 -070089static void __init omap1_map_common_io(void)
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010090{
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010091 iotable_init(omap_io_desc, ARRAY_SIZE(omap_io_desc));
Tony Lindgren53d9cc72006-02-08 22:06:45 +000092}
Tony Lindgren7c38cf02005-09-08 23:07:38 +010093
Tony Lindgren7b88e622011-10-05 15:14:02 -070094#if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
95void __init omap7xx_map_io(void)
Tony Lindgren53d9cc72006-02-08 22:06:45 +000096{
Tony Lindgren7b88e622011-10-05 15:14:02 -070097 omap1_map_common_io();
98 iotable_init(omap7xx_io_desc, ARRAY_SIZE(omap7xx_io_desc));
99}
100#endif
101
102#ifdef CONFIG_ARCH_OMAP15XX
103void __init omap15xx_map_io(void)
104{
105 omap1_map_common_io();
106 iotable_init(omap1510_io_desc, ARRAY_SIZE(omap1510_io_desc));
107}
108#endif
109
110#if defined(CONFIG_ARCH_OMAP16XX)
111void __init omap16xx_map_io(void)
112{
113 omap1_map_common_io();
114 iotable_init(omap16xx_io_desc, ARRAY_SIZE(omap16xx_io_desc));
115}
116#endif
117
118/*
119 * Common low-level hardware init for omap1.
120 */
121void omap1_init_early(void)
122{
123 omap_check_revision();
124
Tony Lindgrenf577ffd2005-07-10 19:58:12 +0100125 /* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort
126 * on a Posted Write in the TIPB Bridge".
127 */
128 omap_writew(0x0, MPU_PUBLIC_TIPB_CNTL);
129 omap_writew(0x0, MPU_PRIVATE_TIPB_CNTL);
130
131 /* Must init clocks early to assure that timer interrupt works
132 */
Tony Lindgren3179a012005-11-10 14:26:48 +0000133 omap1_clk_init();
Tony Lindgren53d9cc72006-02-08 22:06:45 +0000134 omap1_mux_init();
Arnd Bergmanndf804422011-11-01 13:47:27 +0100135 omap_init_consistent_dma_size();
Tony Lindgrenf577ffd2005-07-10 19:58:12 +0100136}
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100137
Tony Lindgrendf1e9d12010-12-10 09:46:24 -0800138/*
139 * NOTE: Please use ioremap + __raw_read/write where possible instead of these
140 */
141
142u8 omap_readb(u32 pa)
143{
144 return __raw_readb(OMAP1_IO_ADDRESS(pa));
145}
146EXPORT_SYMBOL(omap_readb);
147
148u16 omap_readw(u32 pa)
149{
150 return __raw_readw(OMAP1_IO_ADDRESS(pa));
151}
152EXPORT_SYMBOL(omap_readw);
153
154u32 omap_readl(u32 pa)
155{
156 return __raw_readl(OMAP1_IO_ADDRESS(pa));
157}
158EXPORT_SYMBOL(omap_readl);
159
160void omap_writeb(u8 v, u32 pa)
161{
162 __raw_writeb(v, OMAP1_IO_ADDRESS(pa));
163}
164EXPORT_SYMBOL(omap_writeb);
165
166void omap_writew(u16 v, u32 pa)
167{
168 __raw_writew(v, OMAP1_IO_ADDRESS(pa));
169}
170EXPORT_SYMBOL(omap_writew);
171
172void omap_writel(u32 v, u32 pa)
173{
174 __raw_writel(v, OMAP1_IO_ADDRESS(pa));
175}
176EXPORT_SYMBOL(omap_writel);