x86: Make the vdso2c compiler use the host architecture headers
[linux/fpc-iii.git] / arch / arm / mach-integrator / integrator_ap.c
blob2b118f20c62c6b9c86cd8b290307a4ab080be4da
1 /*
2 * linux/arch/arm/mach-integrator/integrator_ap.c
4 * Copyright (C) 2000-2003 Deep Blue Solutions Ltd
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/types.h>
21 #include <linux/kernel.h>
22 #include <linux/init.h>
23 #include <linux/list.h>
24 #include <linux/platform_device.h>
25 #include <linux/slab.h>
26 #include <linux/string.h>
27 #include <linux/syscore_ops.h>
28 #include <linux/amba/bus.h>
29 #include <linux/amba/kmi.h>
30 #include <linux/io.h>
31 #include <linux/irqchip.h>
32 #include <linux/platform_data/clk-integrator.h>
33 #include <linux/of_irq.h>
34 #include <linux/of_address.h>
35 #include <linux/of_platform.h>
36 #include <linux/stat.h>
37 #include <linux/termios.h>
39 #include <asm/setup.h>
40 #include <asm/param.h> /* HZ */
41 #include <asm/mach-types.h>
43 #include <asm/mach/arch.h>
44 #include <asm/mach/irq.h>
45 #include <asm/mach/map.h>
46 #include <asm/mach/time.h>
48 #include "hardware.h"
49 #include "cm.h"
50 #include "common.h"
51 #include "pci_v3.h"
52 #include "lm.h"
54 /* Base address to the AP system controller */
55 void __iomem *ap_syscon_base;
56 /* Base address to the external bus interface */
57 static void __iomem *ebi_base;
61 * All IO addresses are mapped onto VA 0xFFFx.xxxx, where x.xxxx
62 * is the (PA >> 12).
64 * Setup a VA for the Integrator interrupt controller (for header #0,
65 * just for now).
67 #define VA_IC_BASE __io_address(INTEGRATOR_IC_BASE)
70 * Logical Physical
71 * ef000000 Cache flush
72 * f1100000 11000000 System controller registers
73 * f1300000 13000000 Counter/Timer
74 * f1400000 14000000 Interrupt controller
75 * f1600000 16000000 UART 0
76 * f1700000 17000000 UART 1
77 * f1a00000 1a000000 Debug LEDs
78 * f1b00000 1b000000 GPIO
81 static struct map_desc ap_io_desc[] __initdata __maybe_unused = {
83 .virtual = IO_ADDRESS(INTEGRATOR_IC_BASE),
84 .pfn = __phys_to_pfn(INTEGRATOR_IC_BASE),
85 .length = SZ_4K,
86 .type = MT_DEVICE
87 }, {
88 .virtual = IO_ADDRESS(INTEGRATOR_UART0_BASE),
89 .pfn = __phys_to_pfn(INTEGRATOR_UART0_BASE),
90 .length = SZ_4K,
91 .type = MT_DEVICE
92 }, {
93 .virtual = IO_ADDRESS(INTEGRATOR_DBG_BASE),
94 .pfn = __phys_to_pfn(INTEGRATOR_DBG_BASE),
95 .length = SZ_4K,
96 .type = MT_DEVICE
97 }, {
98 .virtual = IO_ADDRESS(INTEGRATOR_AP_GPIO_BASE),
99 .pfn = __phys_to_pfn(INTEGRATOR_AP_GPIO_BASE),
100 .length = SZ_4K,
101 .type = MT_DEVICE
105 static void __init ap_map_io(void)
107 iotable_init(ap_io_desc, ARRAY_SIZE(ap_io_desc));
108 pci_v3_early_init();
111 #ifdef CONFIG_PM
112 static unsigned long ic_irq_enable;
114 static int irq_suspend(void)
116 ic_irq_enable = readl(VA_IC_BASE + IRQ_ENABLE);
117 return 0;
120 static void irq_resume(void)
122 /* disable all irq sources */
123 cm_clear_irqs();
124 writel(-1, VA_IC_BASE + IRQ_ENABLE_CLEAR);
125 writel(-1, VA_IC_BASE + FIQ_ENABLE_CLEAR);
127 writel(ic_irq_enable, VA_IC_BASE + IRQ_ENABLE_SET);
129 #else
130 #define irq_suspend NULL
131 #define irq_resume NULL
132 #endif
134 static struct syscore_ops irq_syscore_ops = {
135 .suspend = irq_suspend,
136 .resume = irq_resume,
139 static int __init irq_syscore_init(void)
141 register_syscore_ops(&irq_syscore_ops);
143 return 0;
146 device_initcall(irq_syscore_init);
149 * For the PL010 found in the Integrator/AP some of the UART control is
150 * implemented in the system controller and accessed using a callback
151 * from the driver.
153 static void integrator_uart_set_mctrl(struct amba_device *dev,
154 void __iomem *base, unsigned int mctrl)
156 unsigned int ctrls = 0, ctrlc = 0, rts_mask, dtr_mask;
157 u32 phybase = dev->res.start;
159 if (phybase == INTEGRATOR_UART0_BASE) {
160 /* UART0 */
161 rts_mask = 1 << 4;
162 dtr_mask = 1 << 5;
163 } else {
164 /* UART1 */
165 rts_mask = 1 << 6;
166 dtr_mask = 1 << 7;
169 if (mctrl & TIOCM_RTS)
170 ctrlc |= rts_mask;
171 else
172 ctrls |= rts_mask;
174 if (mctrl & TIOCM_DTR)
175 ctrlc |= dtr_mask;
176 else
177 ctrls |= dtr_mask;
179 __raw_writel(ctrls, ap_syscon_base + INTEGRATOR_SC_CTRLS_OFFSET);
180 __raw_writel(ctrlc, ap_syscon_base + INTEGRATOR_SC_CTRLC_OFFSET);
183 struct amba_pl010_data ap_uart_data = {
184 .set_mctrl = integrator_uart_set_mctrl,
187 void __init ap_init_early(void)
191 static void __init ap_init_irq_of(void)
193 cm_init();
194 irqchip_init();
197 /* For the Device Tree, add in the UART callbacks as AUXDATA */
198 static struct of_dev_auxdata ap_auxdata_lookup[] __initdata = {
199 OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_RTC_BASE,
200 "rtc", NULL),
201 OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART0_BASE,
202 "uart0", &ap_uart_data),
203 OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART1_BASE,
204 "uart1", &ap_uart_data),
205 OF_DEV_AUXDATA("arm,primecell", KMI0_BASE,
206 "kmi0", NULL),
207 OF_DEV_AUXDATA("arm,primecell", KMI1_BASE,
208 "kmi1", NULL),
209 { /* sentinel */ },
212 static const struct of_device_id ap_syscon_match[] = {
213 { .compatible = "arm,integrator-ap-syscon"},
214 { },
217 static const struct of_device_id ebi_match[] = {
218 { .compatible = "arm,external-bus-interface"},
219 { },
222 static void __init ap_init_of(void)
224 unsigned long sc_dec;
225 struct device_node *syscon;
226 struct device_node *ebi;
227 int i;
229 syscon = of_find_matching_node(NULL, ap_syscon_match);
230 if (!syscon)
231 return;
232 ebi = of_find_matching_node(NULL, ebi_match);
233 if (!ebi)
234 return;
236 ap_syscon_base = of_iomap(syscon, 0);
237 if (!ap_syscon_base)
238 return;
239 ebi_base = of_iomap(ebi, 0);
240 if (!ebi_base)
241 return;
243 of_platform_populate(NULL, of_default_bus_match_table,
244 ap_auxdata_lookup, NULL);
246 sc_dec = readl(ap_syscon_base + INTEGRATOR_SC_DEC_OFFSET);
247 for (i = 0; i < 4; i++) {
248 struct lm_device *lmdev;
250 if ((sc_dec & (16 << i)) == 0)
251 continue;
253 lmdev = kzalloc(sizeof(struct lm_device), GFP_KERNEL);
254 if (!lmdev)
255 continue;
257 lmdev->resource.start = 0xc0000000 + 0x10000000 * i;
258 lmdev->resource.end = lmdev->resource.start + 0x0fffffff;
259 lmdev->resource.flags = IORESOURCE_MEM;
260 lmdev->irq = irq_of_parse_and_map(syscon, i);
261 lmdev->id = i;
263 lm_device_register(lmdev);
267 static const char * ap_dt_board_compat[] = {
268 "arm,integrator-ap",
269 NULL,
272 DT_MACHINE_START(INTEGRATOR_AP_DT, "ARM Integrator/AP (Device Tree)")
273 .reserve = integrator_reserve,
274 .map_io = ap_map_io,
275 .init_early = ap_init_early,
276 .init_irq = ap_init_irq_of,
277 .init_machine = ap_init_of,
278 .dt_compat = ap_dt_board_compat,
279 MACHINE_END