1 /* arch/arm/mach-msm/io.c
3 * MSM7K, QSD io support
5 * Copyright (C) 2007 Google, Inc.
6 * Copyright (c) 2008-2011, Code Aurora Forum. All rights reserved.
7 * Author: Brian Swetland <swetland@google.com>
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.
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.
20 #include <linux/kernel.h>
21 #include <linux/init.h>
24 #include <mach/hardware.h>
26 #include <mach/msm_iomap.h>
27 #include <asm/mach/map.h>
29 #include <mach/board.h>
31 #define MSM_CHIP_DEVICE(name, chip) { \
32 .virtual = (unsigned long) MSM_##name##_BASE, \
33 .pfn = __phys_to_pfn(chip##_##name##_PHYS), \
34 .length = chip##_##name##_SIZE, \
35 .type = MT_DEVICE_NONSHARED, \
38 #define MSM_DEVICE(name) MSM_CHIP_DEVICE(name, MSM)
40 #if defined(CONFIG_ARCH_MSM7X00A) || defined(CONFIG_ARCH_MSM7X27) \
41 || defined(CONFIG_ARCH_MSM7X25)
42 static struct map_desc msm_io_desc
[] __initdata
= {
44 MSM_CHIP_DEVICE(CSR
, MSM7X00
),
45 MSM_CHIP_DEVICE(GPIO1
, MSM7X00
),
46 MSM_CHIP_DEVICE(GPIO2
, MSM7X00
),
48 #ifdef CONFIG_MSM_DEBUG_UART
49 MSM_DEVICE(DEBUG_UART
),
51 #ifdef CONFIG_ARCH_MSM7X30
55 .virtual = (unsigned long) MSM_SHARED_RAM_BASE
,
56 .pfn
= __phys_to_pfn(MSM_SHARED_RAM_PHYS
),
57 .length
= MSM_SHARED_RAM_SIZE
,
62 void __init
msm_map_common_io(void)
64 /* Make sure the peripheral register window is closed, since
65 * we will use PTE flags (TEX[1]=1,B=0,C=1) to determine which
66 * pages are peripheral interface or not.
68 asm("mcr p15, 0, %0, c15, c2, 4" : : "r" (0));
69 iotable_init(msm_io_desc
, ARRAY_SIZE(msm_io_desc
));
73 #ifdef CONFIG_ARCH_QSD8X50
74 static struct map_desc qsd8x50_io_desc
[] __initdata
= {
76 MSM_CHIP_DEVICE(CSR
, QSD8X50
),
77 MSM_CHIP_DEVICE(GPIO1
, QSD8X50
),
78 MSM_CHIP_DEVICE(GPIO2
, QSD8X50
),
84 #ifdef CONFIG_MSM_DEBUG_UART
85 MSM_DEVICE(DEBUG_UART
),
88 .virtual = (unsigned long) MSM_SHARED_RAM_BASE
,
89 .pfn
= __phys_to_pfn(MSM_SHARED_RAM_PHYS
),
90 .length
= MSM_SHARED_RAM_SIZE
,
95 void __init
msm_map_qsd8x50_io(void)
97 iotable_init(qsd8x50_io_desc
, ARRAY_SIZE(qsd8x50_io_desc
));
99 #endif /* CONFIG_ARCH_QSD8X50 */
101 #ifdef CONFIG_ARCH_MSM8X60
102 static struct map_desc msm8x60_io_desc
[] __initdata
= {
103 MSM_CHIP_DEVICE(QGIC_DIST
, MSM8X60
),
104 MSM_CHIP_DEVICE(QGIC_CPU
, MSM8X60
),
105 MSM_CHIP_DEVICE(TMR
, MSM8X60
),
106 MSM_CHIP_DEVICE(TMR0
, MSM8X60
),
111 void __init
msm_map_msm8x60_io(void)
113 iotable_init(msm8x60_io_desc
, ARRAY_SIZE(msm8x60_io_desc
));
115 #endif /* CONFIG_ARCH_MSM8X60 */
117 #ifdef CONFIG_ARCH_MSM8960
118 static struct map_desc msm8960_io_desc
[] __initdata
= {
119 MSM_CHIP_DEVICE(QGIC_DIST
, MSM8960
),
120 MSM_CHIP_DEVICE(QGIC_CPU
, MSM8960
),
121 MSM_CHIP_DEVICE(TMR
, MSM8960
),
122 MSM_CHIP_DEVICE(TMR0
, MSM8960
),
125 void __init
msm_map_msm8960_io(void)
127 iotable_init(msm8960_io_desc
, ARRAY_SIZE(msm8960_io_desc
));
129 #endif /* CONFIG_ARCH_MSM8960 */
131 #ifdef CONFIG_ARCH_MSM7X30
132 static struct map_desc msm7x30_io_desc
[] __initdata
= {
134 MSM_CHIP_DEVICE(CSR
, MSM7X30
),
135 MSM_CHIP_DEVICE(GPIO1
, MSM7X30
),
136 MSM_CHIP_DEVICE(GPIO2
, MSM7X30
),
138 MSM_DEVICE(CLK_CTL_SH2
),
145 #ifdef CONFIG_MSM_DEBUG_UART
146 MSM_DEVICE(DEBUG_UART
),
149 .virtual = (unsigned long) MSM_SHARED_RAM_BASE
,
150 .pfn
= __phys_to_pfn(MSM_SHARED_RAM_PHYS
),
151 .length
= MSM_SHARED_RAM_SIZE
,
156 void __init
msm_map_msm7x30_io(void)
158 iotable_init(msm7x30_io_desc
, ARRAY_SIZE(msm7x30_io_desc
));
160 #endif /* CONFIG_ARCH_MSM7X30 */
163 __msm_ioremap(unsigned long phys_addr
, size_t size
, unsigned int mtype
)
165 if (mtype
== MT_DEVICE
) {
166 /* The peripherals in the 88000000 - D0000000 range
167 * are only accessible by type MT_DEVICE_NONSHARED.
168 * Adjust mtype as necessary to make this "just work."
170 if ((phys_addr
>= 0x88000000) && (phys_addr
< 0xD0000000))
171 mtype
= MT_DEVICE_NONSHARED
;
174 return __arm_ioremap_caller(phys_addr
, size
, mtype
,
175 __builtin_return_address(0));
177 EXPORT_SYMBOL(__msm_ioremap
);