blob: 5a173fc2a1ca1a5153538cbcd4603e9fa95a8bc7 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Tony Lindgrenf577ffd2005-07-10 19:58:12 +01002/*
3 * linux/arch/arm/mach-omap1/io.c
4 *
5 * OMAP1 I/O mapping code
Tony Lindgrenf577ffd2005-07-10 19:58:12 +01006 */
7
Tony Lindgrenf577ffd2005-07-10 19:58:12 +01008#include <linux/module.h>
9#include <linux/kernel.h>
10#include <linux/init.h>
Russell Kingfced80c2008-09-06 12:10:45 +010011#include <linux/io.h>
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010012
Tony Lindgren53d9cc72006-02-08 22:06:45 +000013#include <asm/tlb.h>
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010014#include <asm/mach/map.h>
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080015
Tony Lindgren70c494c2012-09-19 10:46:56 -070016#include <mach/mux.h>
Tony Lindgren54b693d2012-10-02 13:39:28 -070017#include <mach/tc.h>
Tony Lindgren45c3eb72012-11-30 08:41:50 -080018#include <linux/omap-dma.h>
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010019
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080020#include "iomap.h"
21#include "common.h"
Paul Walmsley52650502009-12-08 16:29:38 -070022#include "clock.h"
23
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010024/*
25 * The machine specific code may provide the extra mapping besides the
26 * default mapping provided here.
27 */
28static struct map_desc omap_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010029 {
Tony Lindgrendb326be2009-08-28 10:50:37 -070030 .virtual = OMAP1_IO_VIRT,
31 .pfn = __phys_to_pfn(OMAP1_IO_PHYS),
32 .length = OMAP1_IO_SIZE,
Deepak Saxena9fe133b2005-10-28 15:19:00 +010033 .type = MT_DEVICE
34 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010035};
36
Alistair Buxtonab49df72009-09-22 05:58:08 +010037#if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +010038static struct map_desc omap7xx_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010039 {
Alistair Buxtonb51988d2009-09-22 07:34:13 +010040 .virtual = OMAP7XX_DSP_BASE,
41 .pfn = __phys_to_pfn(OMAP7XX_DSP_START),
42 .length = OMAP7XX_DSP_SIZE,
Deepak Saxena9fe133b2005-10-28 15:19:00 +010043 .type = MT_DEVICE
44 }, {
Alistair Buxtonb51988d2009-09-22 07:34:13 +010045 .virtual = OMAP7XX_DSPREG_BASE,
46 .pfn = __phys_to_pfn(OMAP7XX_DSPREG_START),
47 .length = OMAP7XX_DSPREG_SIZE,
Deepak Saxena9fe133b2005-10-28 15:19:00 +010048 .type = MT_DEVICE
49 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010050};
51#endif
52
Tony Lindgren3179a012005-11-10 14:26:48 +000053#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010054static struct map_desc omap1510_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010055 {
56 .virtual = OMAP1510_DSP_BASE,
57 .pfn = __phys_to_pfn(OMAP1510_DSP_START),
58 .length = OMAP1510_DSP_SIZE,
59 .type = MT_DEVICE
60 }, {
61 .virtual = OMAP1510_DSPREG_BASE,
62 .pfn = __phys_to_pfn(OMAP1510_DSPREG_START),
63 .length = OMAP1510_DSPREG_SIZE,
64 .type = MT_DEVICE
65 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010066};
67#endif
68
69#if defined(CONFIG_ARCH_OMAP16XX)
Tony Lindgren7c38cf02005-09-08 23:07:38 +010070static struct map_desc omap16xx_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010071 {
72 .virtual = OMAP16XX_DSP_BASE,
73 .pfn = __phys_to_pfn(OMAP16XX_DSP_START),
74 .length = OMAP16XX_DSP_SIZE,
75 .type = MT_DEVICE
76 }, {
77 .virtual = OMAP16XX_DSPREG_BASE,
78 .pfn = __phys_to_pfn(OMAP16XX_DSPREG_START),
79 .length = OMAP16XX_DSPREG_SIZE,
80 .type = MT_DEVICE
81 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010082};
83#endif
84
Tony Lindgren53d9cc72006-02-08 22:06:45 +000085/*
Tony Lindgren7b88e622011-10-05 15:14:02 -070086 * Maps common IO regions for omap1
Tony Lindgren53d9cc72006-02-08 22:06:45 +000087 */
Tony Lindgren7b88e622011-10-05 15:14:02 -070088static void __init omap1_map_common_io(void)
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010089{
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010090 iotable_init(omap_io_desc, ARRAY_SIZE(omap_io_desc));
Tony Lindgren53d9cc72006-02-08 22:06:45 +000091}
Tony Lindgren7c38cf02005-09-08 23:07:38 +010092
Tony Lindgren7b88e622011-10-05 15:14:02 -070093#if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
94void __init omap7xx_map_io(void)
Tony Lindgren53d9cc72006-02-08 22:06:45 +000095{
Tony Lindgren7b88e622011-10-05 15:14:02 -070096 omap1_map_common_io();
97 iotable_init(omap7xx_io_desc, ARRAY_SIZE(omap7xx_io_desc));
98}
99#endif
100
101#ifdef CONFIG_ARCH_OMAP15XX
102void __init omap15xx_map_io(void)
103{
104 omap1_map_common_io();
105 iotable_init(omap1510_io_desc, ARRAY_SIZE(omap1510_io_desc));
106}
107#endif
108
109#if defined(CONFIG_ARCH_OMAP16XX)
110void __init omap16xx_map_io(void)
111{
112 omap1_map_common_io();
113 iotable_init(omap16xx_io_desc, ARRAY_SIZE(omap16xx_io_desc));
114}
115#endif
116
117/*
118 * Common low-level hardware init for omap1.
119 */
Tony Lindgren8eaa7bb2012-03-05 16:11:04 -0800120void __init omap1_init_early(void)
Tony Lindgren7b88e622011-10-05 15:14:02 -0700121{
122 omap_check_revision();
123
Tony Lindgrenf577ffd2005-07-10 19:58:12 +0100124 /* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort
125 * on a Posted Write in the TIPB Bridge".
126 */
127 omap_writew(0x0, MPU_PUBLIC_TIPB_CNTL);
128 omap_writew(0x0, MPU_PRIVATE_TIPB_CNTL);
129
130 /* Must init clocks early to assure that timer interrupt works
131 */
Tony Lindgren3179a012005-11-10 14:26:48 +0000132 omap1_clk_init();
Tony Lindgren53d9cc72006-02-08 22:06:45 +0000133 omap1_mux_init();
Tony Lindgrenf577ffd2005-07-10 19:58:12 +0100134}
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100135
Shawn Guo82c3bd02012-04-26 13:49:29 +0800136void __init omap1_init_late(void)
137{
138 omap_serial_wakeup_init();
139}
140
Tony Lindgrendf1e9d12010-12-10 09:46:24 -0800141/*
142 * NOTE: Please use ioremap + __raw_read/write where possible instead of these
143 */
144
145u8 omap_readb(u32 pa)
146{
147 return __raw_readb(OMAP1_IO_ADDRESS(pa));
148}
149EXPORT_SYMBOL(omap_readb);
150
151u16 omap_readw(u32 pa)
152{
153 return __raw_readw(OMAP1_IO_ADDRESS(pa));
154}
155EXPORT_SYMBOL(omap_readw);
156
157u32 omap_readl(u32 pa)
158{
159 return __raw_readl(OMAP1_IO_ADDRESS(pa));
160}
161EXPORT_SYMBOL(omap_readl);
162
163void omap_writeb(u8 v, u32 pa)
164{
165 __raw_writeb(v, OMAP1_IO_ADDRESS(pa));
166}
167EXPORT_SYMBOL(omap_writeb);
168
169void omap_writew(u16 v, u32 pa)
170{
171 __raw_writew(v, OMAP1_IO_ADDRESS(pa));
172}
173EXPORT_SYMBOL(omap_writew);
174
175void omap_writel(u32 v, u32 pa)
176{
177 __raw_writel(v, OMAP1_IO_ADDRESS(pa));
178}
179EXPORT_SYMBOL(omap_writel);