blob: d969a7203d14ad1e0387e034c2b025d517ba46df [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 Lindgren2e3ee9f2012-02-24 10:34:34 -080018
Tony Lindgrence491cf2009-10-20 09:40:47 -070019#include <plat/mux.h>
20#include <plat/tc.h>
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010021
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080022#include "iomap.h"
23#include "common.h"
Paul Walmsley52650502009-12-08 16:29:38 -070024#include "clock.h"
25
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010026extern void omap_check_revision(void);
27
28/*
29 * The machine specific code may provide the extra mapping besides the
30 * default mapping provided here.
31 */
32static struct map_desc omap_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010033 {
Tony Lindgrendb326be2009-08-28 10:50:37 -070034 .virtual = OMAP1_IO_VIRT,
35 .pfn = __phys_to_pfn(OMAP1_IO_PHYS),
36 .length = OMAP1_IO_SIZE,
Deepak Saxena9fe133b2005-10-28 15:19:00 +010037 .type = MT_DEVICE
38 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010039};
40
Alistair Buxtonab49df72009-09-22 05:58:08 +010041#if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
Alistair Buxton7c006922009-09-22 10:02:58 +010042static struct map_desc omap7xx_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010043 {
Alistair Buxtonb51988d2009-09-22 07:34:13 +010044 .virtual = OMAP7XX_DSP_BASE,
45 .pfn = __phys_to_pfn(OMAP7XX_DSP_START),
46 .length = OMAP7XX_DSP_SIZE,
Deepak Saxena9fe133b2005-10-28 15:19:00 +010047 .type = MT_DEVICE
48 }, {
Alistair Buxtonb51988d2009-09-22 07:34:13 +010049 .virtual = OMAP7XX_DSPREG_BASE,
50 .pfn = __phys_to_pfn(OMAP7XX_DSPREG_START),
51 .length = OMAP7XX_DSPREG_SIZE,
Deepak Saxena9fe133b2005-10-28 15:19:00 +010052 .type = MT_DEVICE
53 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010054};
55#endif
56
Tony Lindgren3179a012005-11-10 14:26:48 +000057#ifdef CONFIG_ARCH_OMAP15XX
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010058static struct map_desc omap1510_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010059 {
60 .virtual = OMAP1510_DSP_BASE,
61 .pfn = __phys_to_pfn(OMAP1510_DSP_START),
62 .length = OMAP1510_DSP_SIZE,
63 .type = MT_DEVICE
64 }, {
65 .virtual = OMAP1510_DSPREG_BASE,
66 .pfn = __phys_to_pfn(OMAP1510_DSPREG_START),
67 .length = OMAP1510_DSPREG_SIZE,
68 .type = MT_DEVICE
69 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010070};
71#endif
72
73#if defined(CONFIG_ARCH_OMAP16XX)
Tony Lindgren7c38cf02005-09-08 23:07:38 +010074static struct map_desc omap16xx_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010075 {
76 .virtual = OMAP16XX_DSP_BASE,
77 .pfn = __phys_to_pfn(OMAP16XX_DSP_START),
78 .length = OMAP16XX_DSP_SIZE,
79 .type = MT_DEVICE
80 }, {
81 .virtual = OMAP16XX_DSPREG_BASE,
82 .pfn = __phys_to_pfn(OMAP16XX_DSPREG_START),
83 .length = OMAP16XX_DSPREG_SIZE,
84 .type = MT_DEVICE
85 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010086};
87#endif
88
Tony Lindgren53d9cc72006-02-08 22:06:45 +000089/*
Tony Lindgren7b88e622011-10-05 15:14:02 -070090 * Maps common IO regions for omap1
Tony Lindgren53d9cc72006-02-08 22:06:45 +000091 */
Tony Lindgren7b88e622011-10-05 15:14:02 -070092static void __init omap1_map_common_io(void)
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010093{
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010094 iotable_init(omap_io_desc, ARRAY_SIZE(omap_io_desc));
Tony Lindgren53d9cc72006-02-08 22:06:45 +000095}
Tony Lindgren7c38cf02005-09-08 23:07:38 +010096
Tony Lindgren7b88e622011-10-05 15:14:02 -070097#if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
98void __init omap7xx_map_io(void)
Tony Lindgren53d9cc72006-02-08 22:06:45 +000099{
Tony Lindgren7b88e622011-10-05 15:14:02 -0700100 omap1_map_common_io();
101 iotable_init(omap7xx_io_desc, ARRAY_SIZE(omap7xx_io_desc));
102}
103#endif
104
105#ifdef CONFIG_ARCH_OMAP15XX
106void __init omap15xx_map_io(void)
107{
108 omap1_map_common_io();
109 iotable_init(omap1510_io_desc, ARRAY_SIZE(omap1510_io_desc));
110}
111#endif
112
113#if defined(CONFIG_ARCH_OMAP16XX)
114void __init omap16xx_map_io(void)
115{
116 omap1_map_common_io();
117 iotable_init(omap16xx_io_desc, ARRAY_SIZE(omap16xx_io_desc));
118}
119#endif
120
121/*
122 * Common low-level hardware init for omap1.
123 */
Tony Lindgren8eaa7bb2012-03-05 16:11:04 -0800124void __init omap1_init_early(void)
Tony Lindgren7b88e622011-10-05 15:14:02 -0700125{
126 omap_check_revision();
127
Tony Lindgrenf577ffd2005-07-10 19:58:12 +0100128 /* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort
129 * on a Posted Write in the TIPB Bridge".
130 */
131 omap_writew(0x0, MPU_PUBLIC_TIPB_CNTL);
132 omap_writew(0x0, MPU_PRIVATE_TIPB_CNTL);
133
134 /* Must init clocks early to assure that timer interrupt works
135 */
Tony Lindgren3179a012005-11-10 14:26:48 +0000136 omap1_clk_init();
Tony Lindgren53d9cc72006-02-08 22:06:45 +0000137 omap1_mux_init();
Arnd Bergmanndf804422011-11-01 13:47:27 +0100138 omap_init_consistent_dma_size();
Tony Lindgrenf577ffd2005-07-10 19:58:12 +0100139}
Tony Lindgren7c38cf02005-09-08 23:07:38 +0100140
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);