Merge branch 'next/drivers' into HEAD
[deliverable/linux.git] / arch / arm / mach-msm / io.c
CommitLineData
3042102a
BS
1/* arch/arm/mach-msm/io.c
2 *
cf62ffae 3 * MSM7K, QSD io support
3042102a
BS
4 *
5 * Copyright (C) 2007 Google, Inc.
8c27e6f3 6 * Copyright (c) 2008-2011, Code Aurora Forum. All rights reserved.
3042102a
BS
7 * Author: Brian Swetland <swetland@google.com>
8 *
9 * This software is licensed under the terms of the GNU General Public
10 * License version 2, as published by the Free Software Foundation, and
11 * may be copied, distributed, and modified under those terms.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 */
19
20#include <linux/kernel.h>
21#include <linux/init.h>
fced80c7 22#include <linux/io.h>
dc28094b 23#include <linux/export.h>
3042102a 24
a09e64fb 25#include <mach/hardware.h>
3042102a 26#include <asm/page.h>
a09e64fb 27#include <mach/msm_iomap.h>
3042102a
BS
28#include <asm/mach/map.h>
29
a09e64fb 30#include <mach/board.h>
3042102a 31
85a9f0f5
SB
32#include "common.h"
33
90eb385f 34#define MSM_CHIP_DEVICE_TYPE(name, chip, mem_type) { \
bcc0f6af 35 .virtual = (unsigned long) MSM_##name##_BASE, \
8c27e6f3
DB
36 .pfn = __phys_to_pfn(chip##_##name##_PHYS), \
37 .length = chip##_##name##_SIZE, \
90eb385f 38 .type = mem_type, \
3042102a
BS
39 }
40
90eb385f
RV
41#define MSM_DEVICE_TYPE(name, mem_type) \
42 MSM_CHIP_DEVICE_TYPE(name, MSM, mem_type)
43#define MSM_CHIP_DEVICE(name, chip) \
44 MSM_CHIP_DEVICE_TYPE(name, chip, MT_DEVICE)
8c27e6f3
DB
45#define MSM_DEVICE(name) MSM_CHIP_DEVICE(name, MSM)
46
e63770ac 47#if defined(CONFIG_ARCH_MSM7X00A)
3042102a 48static struct map_desc msm_io_desc[] __initdata = {
90eb385f
RV
49 MSM_DEVICE_TYPE(VIC, MT_DEVICE_NONSHARED),
50 MSM_CHIP_DEVICE_TYPE(CSR, MSM7X00, MT_DEVICE_NONSHARED),
51 MSM_DEVICE_TYPE(DMOV, MT_DEVICE_NONSHARED),
52 MSM_CHIP_DEVICE_TYPE(GPIO1, MSM7X00, MT_DEVICE_NONSHARED),
53 MSM_CHIP_DEVICE_TYPE(GPIO2, MSM7X00, MT_DEVICE_NONSHARED),
54 MSM_DEVICE_TYPE(CLK_CTL, MT_DEVICE_NONSHARED),
650e3f0d
SB
55#if defined(CONFIG_DEBUG_MSM_UART1) || defined(CONFIG_DEBUG_MSM_UART2) || \
56 defined(CONFIG_DEBUG_MSM_UART3)
90eb385f 57 MSM_DEVICE_TYPE(DEBUG_UART, MT_DEVICE_NONSHARED),
6339f669 58#endif
3042102a 59 {
bcc0f6af 60 .virtual = (unsigned long) MSM_SHARED_RAM_BASE,
cf62ffae 61 .pfn = __phys_to_pfn(MSM_SHARED_RAM_PHYS),
3042102a
BS
62 .length = MSM_SHARED_RAM_SIZE,
63 .type = MT_DEVICE,
64 },
65};
66
67void __init msm_map_common_io(void)
68{
69 /* Make sure the peripheral register window is closed, since
70 * we will use PTE flags (TEX[1]=1,B=0,C=1) to determine which
71 * pages are peripheral interface or not.
72 */
73 asm("mcr p15, 0, %0, c15, c2, 4" : : "r" (0));
3042102a
BS
74 iotable_init(msm_io_desc, ARRAY_SIZE(msm_io_desc));
75}
cf62ffae
DW
76#endif
77
78#ifdef CONFIG_ARCH_QSD8X50
79static struct map_desc qsd8x50_io_desc[] __initdata = {
80 MSM_DEVICE(VIC),
8c27e6f3 81 MSM_CHIP_DEVICE(CSR, QSD8X50),
cf62ffae 82 MSM_DEVICE(DMOV),
03db0729
DB
83 MSM_CHIP_DEVICE(GPIO1, QSD8X50),
84 MSM_CHIP_DEVICE(GPIO2, QSD8X50),
cf62ffae
DW
85 MSM_DEVICE(CLK_CTL),
86 MSM_DEVICE(SIRC),
87 MSM_DEVICE(SCPLL),
88 MSM_DEVICE(AD5),
89 MSM_DEVICE(MDC),
650e3f0d
SB
90#if defined(CONFIG_DEBUG_MSM_UART1) || defined(CONFIG_DEBUG_MSM_UART2) || \
91 defined(CONFIG_DEBUG_MSM_UART3)
cf62ffae
DW
92 MSM_DEVICE(DEBUG_UART),
93#endif
94 {
95 .virtual = (unsigned long) MSM_SHARED_RAM_BASE,
96 .pfn = __phys_to_pfn(MSM_SHARED_RAM_PHYS),
97 .length = MSM_SHARED_RAM_SIZE,
98 .type = MT_DEVICE,
99 },
100};
101
102void __init msm_map_qsd8x50_io(void)
103{
104 iotable_init(qsd8x50_io_desc, ARRAY_SIZE(qsd8x50_io_desc));
105}
106#endif /* CONFIG_ARCH_QSD8X50 */
3042102a 107
6cf6dfef
SM
108#ifdef CONFIG_ARCH_MSM8X60
109static struct map_desc msm8x60_io_desc[] __initdata = {
8bb06444
DB
110 MSM_CHIP_DEVICE(QGIC_DIST, MSM8X60),
111 MSM_CHIP_DEVICE(QGIC_CPU, MSM8X60),
8c27e6f3
DB
112 MSM_CHIP_DEVICE(TMR, MSM8X60),
113 MSM_CHIP_DEVICE(TMR0, MSM8X60),
6cf6dfef
SM
114 MSM_DEVICE(ACC),
115 MSM_DEVICE(GCC),
a3d3ef9d
SB
116#ifdef CONFIG_DEBUG_MSM8660_UART
117 MSM_DEVICE(DEBUG_UART),
118#endif
6cf6dfef
SM
119};
120
121void __init msm_map_msm8x60_io(void)
122{
123 iotable_init(msm8x60_io_desc, ARRAY_SIZE(msm8x60_io_desc));
124}
125#endif /* CONFIG_ARCH_MSM8X60 */
126
5d0afd74
SM
127#ifdef CONFIG_ARCH_MSM8960
128static struct map_desc msm8960_io_desc[] __initdata = {
129 MSM_CHIP_DEVICE(QGIC_DIST, MSM8960),
130 MSM_CHIP_DEVICE(QGIC_CPU, MSM8960),
131 MSM_CHIP_DEVICE(TMR, MSM8960),
132 MSM_CHIP_DEVICE(TMR0, MSM8960),
a3d3ef9d
SB
133#ifdef CONFIG_DEBUG_MSM8960_UART
134 MSM_DEVICE(DEBUG_UART),
135#endif
5d0afd74
SM
136};
137
138void __init msm_map_msm8960_io(void)
139{
140 iotable_init(msm8960_io_desc, ARRAY_SIZE(msm8960_io_desc));
141}
142#endif /* CONFIG_ARCH_MSM8960 */
143
c83b2bf6
DW
144#ifdef CONFIG_ARCH_MSM7X30
145static struct map_desc msm7x30_io_desc[] __initdata = {
146 MSM_DEVICE(VIC),
8c27e6f3 147 MSM_CHIP_DEVICE(CSR, MSM7X30),
c83b2bf6 148 MSM_DEVICE(DMOV),
03db0729
DB
149 MSM_CHIP_DEVICE(GPIO1, MSM7X30),
150 MSM_CHIP_DEVICE(GPIO2, MSM7X30),
c83b2bf6
DW
151 MSM_DEVICE(CLK_CTL),
152 MSM_DEVICE(CLK_CTL_SH2),
153 MSM_DEVICE(AD5),
154 MSM_DEVICE(MDC),
155 MSM_DEVICE(ACC),
156 MSM_DEVICE(SAW),
157 MSM_DEVICE(GCC),
158 MSM_DEVICE(TCSR),
650e3f0d
SB
159#if defined(CONFIG_DEBUG_MSM_UART1) || defined(CONFIG_DEBUG_MSM_UART2) || \
160 defined(CONFIG_DEBUG_MSM_UART3)
c83b2bf6
DW
161 MSM_DEVICE(DEBUG_UART),
162#endif
163 {
164 .virtual = (unsigned long) MSM_SHARED_RAM_BASE,
165 .pfn = __phys_to_pfn(MSM_SHARED_RAM_PHYS),
166 .length = MSM_SHARED_RAM_SIZE,
167 .type = MT_DEVICE,
168 },
169};
170
171void __init msm_map_msm7x30_io(void)
172{
173 iotable_init(msm7x30_io_desc, ARRAY_SIZE(msm7x30_io_desc));
174}
175#endif /* CONFIG_ARCH_MSM7X30 */
176
b12e9ba5
RH
177void __iomem *__msm_ioremap_caller(unsigned long phys_addr, size_t size,
178 unsigned int mtype, void *caller)
3042102a
BS
179{
180 if (mtype == MT_DEVICE) {
181 /* The peripherals in the 88000000 - D0000000 range
b595076a 182 * are only accessible by type MT_DEVICE_NONSHARED.
3042102a
BS
183 * Adjust mtype as necessary to make this "just work."
184 */
185 if ((phys_addr >= 0x88000000) && (phys_addr < 0xD0000000))
186 mtype = MT_DEVICE_NONSHARED;
187 }
188
b12e9ba5 189 return __arm_ioremap_caller(phys_addr, size, mtype, caller);
3042102a 190}
This page took 0.309522 seconds and 5 git commands to generate.