blob: 97dcd8c43ab01c7bc76480b4affb995f6a07695d [file] [log] [blame]
Brian Swetland30421022007-11-26 04:11:43 -08001/* arch/arm/mach-msm/io.c
2 *
Daniel Walkercf62ffa2010-05-04 15:12:27 -07003 * MSM7K, QSD io support
Brian Swetland30421022007-11-26 04:11:43 -08004 *
5 * Copyright (C) 2007 Google, Inc.
David Brown8c27e6f2011-01-07 10:20:49 -08006 * Copyright (c) 2008-2011, Code Aurora Forum. All rights reserved.
Brian Swetland30421022007-11-26 04:11:43 -08007 * 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>
Russell Kingfced80c2008-09-06 12:10:45 +010022#include <linux/io.h>
Brian Swetland30421022007-11-26 04:11:43 -080023
Russell Kinga09e64f2008-08-05 16:14:15 +010024#include <mach/hardware.h>
Brian Swetland30421022007-11-26 04:11:43 -080025#include <asm/page.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/msm_iomap.h>
Brian Swetland30421022007-11-26 04:11:43 -080027#include <asm/mach/map.h>
28
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/board.h>
Brian Swetland30421022007-11-26 04:11:43 -080030
David Brown8c27e6f2011-01-07 10:20:49 -080031#define MSM_CHIP_DEVICE(name, chip) { \
Brian Swetlandbcc0f6a2008-09-10 14:00:53 -070032 .virtual = (unsigned long) MSM_##name##_BASE, \
David Brown8c27e6f2011-01-07 10:20:49 -080033 .pfn = __phys_to_pfn(chip##_##name##_PHYS), \
34 .length = chip##_##name##_SIZE, \
Brian Swetland30421022007-11-26 04:11:43 -080035 .type = MT_DEVICE_NONSHARED, \
36 }
37
David Brown8c27e6f2011-01-07 10:20:49 -080038#define MSM_DEVICE(name) MSM_CHIP_DEVICE(name, MSM)
39
Daniel Walkercf62ffa2010-05-04 15:12:27 -070040#if defined(CONFIG_ARCH_MSM7X00A) || defined(CONFIG_ARCH_MSM7X27) \
41 || defined(CONFIG_ARCH_MSM7X25)
Brian Swetland30421022007-11-26 04:11:43 -080042static struct map_desc msm_io_desc[] __initdata = {
43 MSM_DEVICE(VIC),
David Brown8c27e6f2011-01-07 10:20:49 -080044 MSM_CHIP_DEVICE(CSR, MSM7X00),
Brian Swetland30421022007-11-26 04:11:43 -080045 MSM_DEVICE(GPT),
46 MSM_DEVICE(DMOV),
Brian Swetland30421022007-11-26 04:11:43 -080047 MSM_DEVICE(GPIO1),
48 MSM_DEVICE(GPIO2),
Brian Swetland30421022007-11-26 04:11:43 -080049 MSM_DEVICE(CLK_CTL),
Pavel Machek6339f662009-11-02 11:48:29 +010050#ifdef CONFIG_MSM_DEBUG_UART
51 MSM_DEVICE(DEBUG_UART),
52#endif
Dima Zavinb42dc442010-01-29 11:43:42 -080053#ifdef CONFIG_ARCH_MSM7X30
54 MSM_DEVICE(GCC),
55#endif
Brian Swetland30421022007-11-26 04:11:43 -080056 {
Brian Swetlandbcc0f6a2008-09-10 14:00:53 -070057 .virtual = (unsigned long) MSM_SHARED_RAM_BASE,
Daniel Walkercf62ffa2010-05-04 15:12:27 -070058 .pfn = __phys_to_pfn(MSM_SHARED_RAM_PHYS),
Brian Swetland30421022007-11-26 04:11:43 -080059 .length = MSM_SHARED_RAM_SIZE,
60 .type = MT_DEVICE,
61 },
62};
63
64void __init msm_map_common_io(void)
65{
66 /* Make sure the peripheral register window is closed, since
67 * we will use PTE flags (TEX[1]=1,B=0,C=1) to determine which
68 * pages are peripheral interface or not.
69 */
70 asm("mcr p15, 0, %0, c15, c2, 4" : : "r" (0));
Brian Swetland30421022007-11-26 04:11:43 -080071 iotable_init(msm_io_desc, ARRAY_SIZE(msm_io_desc));
72}
Daniel Walkercf62ffa2010-05-04 15:12:27 -070073#endif
74
75#ifdef CONFIG_ARCH_QSD8X50
76static struct map_desc qsd8x50_io_desc[] __initdata = {
77 MSM_DEVICE(VIC),
David Brown8c27e6f2011-01-07 10:20:49 -080078 MSM_CHIP_DEVICE(CSR, QSD8X50),
Daniel Walkercf62ffa2010-05-04 15:12:27 -070079 MSM_DEVICE(DMOV),
80 MSM_DEVICE(GPIO1),
81 MSM_DEVICE(GPIO2),
82 MSM_DEVICE(CLK_CTL),
83 MSM_DEVICE(SIRC),
84 MSM_DEVICE(SCPLL),
85 MSM_DEVICE(AD5),
86 MSM_DEVICE(MDC),
87#ifdef CONFIG_MSM_DEBUG_UART
88 MSM_DEVICE(DEBUG_UART),
89#endif
90 {
91 .virtual = (unsigned long) MSM_SHARED_RAM_BASE,
92 .pfn = __phys_to_pfn(MSM_SHARED_RAM_PHYS),
93 .length = MSM_SHARED_RAM_SIZE,
94 .type = MT_DEVICE,
95 },
96};
97
98void __init msm_map_qsd8x50_io(void)
99{
100 iotable_init(qsd8x50_io_desc, ARRAY_SIZE(qsd8x50_io_desc));
101}
102#endif /* CONFIG_ARCH_QSD8X50 */
Brian Swetland30421022007-11-26 04:11:43 -0800103
Steve Muckle6cf6dfe2010-01-06 14:55:24 -0800104#ifdef CONFIG_ARCH_MSM8X60
105static struct map_desc msm8x60_io_desc[] __initdata = {
106 MSM_DEVICE(QGIC_DIST),
107 MSM_DEVICE(QGIC_CPU),
David Brown8c27e6f2011-01-07 10:20:49 -0800108 MSM_CHIP_DEVICE(TMR, MSM8X60),
109 MSM_CHIP_DEVICE(TMR0, MSM8X60),
Steve Muckle6cf6dfe2010-01-06 14:55:24 -0800110 MSM_DEVICE(ACC),
111 MSM_DEVICE(GCC),
112};
113
114void __init msm_map_msm8x60_io(void)
115{
116 iotable_init(msm8x60_io_desc, ARRAY_SIZE(msm8x60_io_desc));
117}
118#endif /* CONFIG_ARCH_MSM8X60 */
119
Daniel Walkerc83b2bf2010-05-04 15:26:13 -0700120#ifdef CONFIG_ARCH_MSM7X30
121static struct map_desc msm7x30_io_desc[] __initdata = {
122 MSM_DEVICE(VIC),
David Brown8c27e6f2011-01-07 10:20:49 -0800123 MSM_CHIP_DEVICE(CSR, MSM7X30),
Daniel Walkerc83b2bf2010-05-04 15:26:13 -0700124 MSM_DEVICE(DMOV),
125 MSM_DEVICE(GPIO1),
126 MSM_DEVICE(GPIO2),
127 MSM_DEVICE(CLK_CTL),
128 MSM_DEVICE(CLK_CTL_SH2),
129 MSM_DEVICE(AD5),
130 MSM_DEVICE(MDC),
131 MSM_DEVICE(ACC),
132 MSM_DEVICE(SAW),
133 MSM_DEVICE(GCC),
134 MSM_DEVICE(TCSR),
135#ifdef CONFIG_MSM_DEBUG_UART
136 MSM_DEVICE(DEBUG_UART),
137#endif
138 {
139 .virtual = (unsigned long) MSM_SHARED_RAM_BASE,
140 .pfn = __phys_to_pfn(MSM_SHARED_RAM_PHYS),
141 .length = MSM_SHARED_RAM_SIZE,
142 .type = MT_DEVICE,
143 },
144};
145
146void __init msm_map_msm7x30_io(void)
147{
148 iotable_init(msm7x30_io_desc, ARRAY_SIZE(msm7x30_io_desc));
149}
150#endif /* CONFIG_ARCH_MSM7X30 */
151
Brian Swetland30421022007-11-26 04:11:43 -0800152void __iomem *
153__msm_ioremap(unsigned long phys_addr, size_t size, unsigned int mtype)
154{
155 if (mtype == MT_DEVICE) {
156 /* The peripherals in the 88000000 - D0000000 range
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400157 * are only accessible by type MT_DEVICE_NONSHARED.
Brian Swetland30421022007-11-26 04:11:43 -0800158 * Adjust mtype as necessary to make this "just work."
159 */
160 if ((phys_addr >= 0x88000000) && (phys_addr < 0xD0000000))
161 mtype = MT_DEVICE_NONSHARED;
162 }
163
Russell King31aa8fd2009-12-18 11:10:03 +0000164 return __arm_ioremap_caller(phys_addr, size, mtype,
165 __builtin_return_address(0));
Brian Swetland30421022007-11-26 04:11:43 -0800166}
Pavankumar Kondeti4916a102010-11-09 15:41:29 +0530167EXPORT_SYMBOL(__msm_ioremap);