blob: 1bbcbde76400e30a88abe09d80f35cd96fa6e5e8 [file] [log] [blame]
Santosh Shilimkar44169072009-05-28 14:16:04 -07001/*
2 * Common io.c file
3 * This file is created by Russell King <rmk+kernel@arm.linux.org.uk>
4 *
5 * Copyright (C) 2009 Texas Instruments
6 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
Russell King690b5a12008-09-04 12:07:44 +010012#include <linux/module.h>
13#include <linux/io.h>
14#include <linux/mm.h>
15
Tony Lindgrence491cf2009-10-20 09:40:47 -070016#include <plat/omap7xx.h>
17#include <plat/omap1510.h>
18#include <plat/omap16xx.h>
19#include <plat/omap24xx.h>
20#include <plat/omap34xx.h>
21#include <plat/omap44xx.h>
Russell King690b5a12008-09-04 12:07:44 +010022
23#define BETWEEN(p,st,sz) ((p) >= (st) && (p) < ((st) + (sz)))
24#define XLATE(p,pst,vst) ((void __iomem *)((p) - (pst) + (vst)))
25
Tony Lindgren8aca3ab2011-10-05 17:22:39 -070026static int initialized;
27
Russell King690b5a12008-09-04 12:07:44 +010028/*
29 * Intercept ioremap() requests for addresses in our fixed mapping regions.
30 */
31void __iomem *omap_ioremap(unsigned long p, size_t size, unsigned int type)
32{
Tony Lindgren8aca3ab2011-10-05 17:22:39 -070033
34 WARN(!initialized, "Do not use ioremap before init_early\n");
35
Russell King690b5a12008-09-04 12:07:44 +010036#ifdef CONFIG_ARCH_OMAP1
37 if (cpu_class_is_omap1()) {
Tony Lindgrendb326be2009-08-28 10:50:37 -070038 if (BETWEEN(p, OMAP1_IO_PHYS, OMAP1_IO_SIZE))
39 return XLATE(p, OMAP1_IO_PHYS, OMAP1_IO_VIRT);
Russell King690b5a12008-09-04 12:07:44 +010040 }
Alistair Buxtonab49df72009-09-22 05:58:08 +010041 if (cpu_is_omap7xx()) {
Alistair Buxtonb51988d2009-09-22 07:34:13 +010042 if (BETWEEN(p, OMAP7XX_DSP_BASE, OMAP7XX_DSP_SIZE))
43 return XLATE(p, OMAP7XX_DSP_BASE, OMAP7XX_DSP_START);
Russell King690b5a12008-09-04 12:07:44 +010044
Alistair Buxtonb51988d2009-09-22 07:34:13 +010045 if (BETWEEN(p, OMAP7XX_DSPREG_BASE, OMAP7XX_DSPREG_SIZE))
46 return XLATE(p, OMAP7XX_DSPREG_BASE,
47 OMAP7XX_DSPREG_START);
Russell King690b5a12008-09-04 12:07:44 +010048 }
49 if (cpu_is_omap15xx()) {
50 if (BETWEEN(p, OMAP1510_DSP_BASE, OMAP1510_DSP_SIZE))
51 return XLATE(p, OMAP1510_DSP_BASE, OMAP1510_DSP_START);
52
53 if (BETWEEN(p, OMAP1510_DSPREG_BASE, OMAP1510_DSPREG_SIZE))
54 return XLATE(p, OMAP1510_DSPREG_BASE,
55 OMAP1510_DSPREG_START);
56 }
57 if (cpu_is_omap16xx()) {
58 if (BETWEEN(p, OMAP16XX_DSP_BASE, OMAP16XX_DSP_SIZE))
59 return XLATE(p, OMAP16XX_DSP_BASE, OMAP16XX_DSP_START);
60
61 if (BETWEEN(p, OMAP16XX_DSPREG_BASE, OMAP16XX_DSPREG_SIZE))
62 return XLATE(p, OMAP16XX_DSPREG_BASE,
63 OMAP16XX_DSPREG_START);
64 }
65#endif
66#ifdef CONFIG_ARCH_OMAP2
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +030067 if (cpu_is_omap24xx()) {
Russell King690b5a12008-09-04 12:07:44 +010068 if (BETWEEN(p, L3_24XX_PHYS, L3_24XX_SIZE))
69 return XLATE(p, L3_24XX_PHYS, L3_24XX_VIRT);
70 if (BETWEEN(p, L4_24XX_PHYS, L4_24XX_SIZE))
71 return XLATE(p, L4_24XX_PHYS, L4_24XX_VIRT);
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +030072 }
73 if (cpu_is_omap2420()) {
Paul Walmsley7adb9982010-01-08 15:23:05 -070074 if (BETWEEN(p, DSP_MEM_2420_PHYS, DSP_MEM_2420_SIZE))
75 return XLATE(p, DSP_MEM_2420_PHYS, DSP_MEM_2420_VIRT);
76 if (BETWEEN(p, DSP_IPI_2420_PHYS, DSP_IPI_2420_SIZE))
77 return XLATE(p, DSP_IPI_2420_PHYS, DSP_IPI_2420_SIZE);
78 if (BETWEEN(p, DSP_MMU_2420_PHYS, DSP_MMU_2420_SIZE))
79 return XLATE(p, DSP_MMU_2420_PHYS, DSP_MMU_2420_VIRT);
Russell King690b5a12008-09-04 12:07:44 +010080 }
Russell King690b5a12008-09-04 12:07:44 +010081 if (cpu_is_omap2430()) {
82 if (BETWEEN(p, L4_WK_243X_PHYS, L4_WK_243X_SIZE))
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +030083 return XLATE(p, L4_WK_243X_PHYS, L4_WK_243X_VIRT);
Russell King690b5a12008-09-04 12:07:44 +010084 if (BETWEEN(p, OMAP243X_GPMC_PHYS, OMAP243X_GPMC_SIZE))
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +030085 return XLATE(p, OMAP243X_GPMC_PHYS, OMAP243X_GPMC_VIRT);
86 if (BETWEEN(p, OMAP243X_SDRC_PHYS, OMAP243X_SDRC_SIZE))
87 return XLATE(p, OMAP243X_SDRC_PHYS, OMAP243X_SDRC_VIRT);
88 if (BETWEEN(p, OMAP243X_SMS_PHYS, OMAP243X_SMS_SIZE))
89 return XLATE(p, OMAP243X_SMS_PHYS, OMAP243X_SMS_VIRT);
Russell King690b5a12008-09-04 12:07:44 +010090 }
91#endif
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +030092#ifdef CONFIG_ARCH_OMAP3
Hemant Pedanekar01001712011-02-16 08:31:39 -080093 if (cpu_is_ti816x()) {
94 if (BETWEEN(p, L4_34XX_PHYS, L4_34XX_SIZE))
95 return XLATE(p, L4_34XX_PHYS, L4_34XX_VIRT);
96 } else if (cpu_is_omap34xx()) {
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +030097 if (BETWEEN(p, L3_34XX_PHYS, L3_34XX_SIZE))
98 return XLATE(p, L3_34XX_PHYS, L3_34XX_VIRT);
99 if (BETWEEN(p, L4_34XX_PHYS, L4_34XX_SIZE))
100 return XLATE(p, L4_34XX_PHYS, L4_34XX_VIRT);
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +0300101 if (BETWEEN(p, OMAP34XX_GPMC_PHYS, OMAP34XX_GPMC_SIZE))
102 return XLATE(p, OMAP34XX_GPMC_PHYS, OMAP34XX_GPMC_VIRT);
103 if (BETWEEN(p, OMAP343X_SMS_PHYS, OMAP343X_SMS_SIZE))
104 return XLATE(p, OMAP343X_SMS_PHYS, OMAP343X_SMS_VIRT);
105 if (BETWEEN(p, OMAP343X_SDRC_PHYS, OMAP343X_SDRC_SIZE))
106 return XLATE(p, OMAP343X_SDRC_PHYS, OMAP343X_SDRC_VIRT);
107 if (BETWEEN(p, L4_PER_34XX_PHYS, L4_PER_34XX_SIZE))
108 return XLATE(p, L4_PER_34XX_PHYS, L4_PER_34XX_VIRT);
109 if (BETWEEN(p, L4_EMU_34XX_PHYS, L4_EMU_34XX_SIZE))
110 return XLATE(p, L4_EMU_34XX_PHYS, L4_EMU_34XX_VIRT);
111 }
Russell King690b5a12008-09-04 12:07:44 +0100112#endif
Santosh Shilimkar44169072009-05-28 14:16:04 -0700113#ifdef CONFIG_ARCH_OMAP4
114 if (cpu_is_omap44xx()) {
115 if (BETWEEN(p, L3_44XX_PHYS, L3_44XX_SIZE))
116 return XLATE(p, L3_44XX_PHYS, L3_44XX_VIRT);
117 if (BETWEEN(p, L4_44XX_PHYS, L4_44XX_SIZE))
118 return XLATE(p, L4_44XX_PHYS, L4_44XX_VIRT);
Santosh Shilimkar44169072009-05-28 14:16:04 -0700119 if (BETWEEN(p, OMAP44XX_GPMC_PHYS, OMAP44XX_GPMC_SIZE))
120 return XLATE(p, OMAP44XX_GPMC_PHYS, OMAP44XX_GPMC_VIRT);
Santosh Shilimkarf5d2d652009-10-19 17:25:57 -0700121 if (BETWEEN(p, OMAP44XX_EMIF1_PHYS, OMAP44XX_EMIF1_SIZE))
122 return XLATE(p, OMAP44XX_EMIF1_PHYS, \
123 OMAP44XX_EMIF1_VIRT);
124 if (BETWEEN(p, OMAP44XX_EMIF2_PHYS, OMAP44XX_EMIF2_SIZE))
125 return XLATE(p, OMAP44XX_EMIF2_PHYS, \
126 OMAP44XX_EMIF2_VIRT);
127 if (BETWEEN(p, OMAP44XX_DMM_PHYS, OMAP44XX_DMM_SIZE))
128 return XLATE(p, OMAP44XX_DMM_PHYS, OMAP44XX_DMM_VIRT);
Santosh Shilimkar44169072009-05-28 14:16:04 -0700129 if (BETWEEN(p, L4_PER_44XX_PHYS, L4_PER_44XX_SIZE))
130 return XLATE(p, L4_PER_44XX_PHYS, L4_PER_44XX_VIRT);
131 if (BETWEEN(p, L4_EMU_44XX_PHYS, L4_EMU_44XX_SIZE))
132 return XLATE(p, L4_EMU_44XX_PHYS, L4_EMU_44XX_VIRT);
133 }
134#endif
Russell King31aa8fd2009-12-18 11:10:03 +0000135 return __arm_ioremap_caller(p, size, type, __builtin_return_address(0));
Russell King690b5a12008-09-04 12:07:44 +0100136}
137EXPORT_SYMBOL(omap_ioremap);
138
139void omap_iounmap(volatile void __iomem *addr)
140{
141 unsigned long virt = (unsigned long)addr;
142
143 if (virt >= VMALLOC_START && virt < VMALLOC_END)
144 __iounmap(addr);
145}
146EXPORT_SYMBOL(omap_iounmap);
Tony Lindgren8aca3ab2011-10-05 17:22:39 -0700147
148void __init omap_ioremap_init(void)
149{
150 initialized++;
151}