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/kernel.h>
21 #include <linux/init.h>
22 #include <linux/syscore_ops.h>
23 #include <linux/amba/bus.h>
25 #include <linux/irqchip.h>
26 #include <linux/of_irq.h>
27 #include <linux/of_address.h>
28 #include <linux/of_platform.h>
29 #include <linux/termios.h>
30 #include <linux/mfd/syscon.h>
31 #include <linux/regmap.h>
33 #include <asm/mach/arch.h>
34 #include <asm/mach/map.h>
42 /* Regmap to the AP system controller */
43 static struct regmap
*ap_syscon_map
;
46 * All IO addresses are mapped onto VA 0xFFFx.xxxx, where x.xxxx
49 * Setup a VA for the Integrator interrupt controller (for header #0,
52 #define VA_IC_BASE __io_address(INTEGRATOR_IC_BASE)
56 * f1400000 14000000 Interrupt controller
57 * f1600000 16000000 UART 0
60 static struct map_desc ap_io_desc
[] __initdata __maybe_unused
= {
62 .virtual = IO_ADDRESS(INTEGRATOR_IC_BASE
),
63 .pfn
= __phys_to_pfn(INTEGRATOR_IC_BASE
),
67 .virtual = IO_ADDRESS(INTEGRATOR_UART0_BASE
),
68 .pfn
= __phys_to_pfn(INTEGRATOR_UART0_BASE
),
74 static void __init
ap_map_io(void)
76 iotable_init(ap_io_desc
, ARRAY_SIZE(ap_io_desc
));
81 static unsigned long ic_irq_enable
;
83 static int irq_suspend(void)
85 ic_irq_enable
= readl(VA_IC_BASE
+ IRQ_ENABLE
);
89 static void irq_resume(void)
91 /* disable all irq sources */
93 writel(-1, VA_IC_BASE
+ IRQ_ENABLE_CLEAR
);
94 writel(-1, VA_IC_BASE
+ FIQ_ENABLE_CLEAR
);
96 writel(ic_irq_enable
, VA_IC_BASE
+ IRQ_ENABLE_SET
);
99 #define irq_suspend NULL
100 #define irq_resume NULL
103 static struct syscore_ops irq_syscore_ops
= {
104 .suspend
= irq_suspend
,
105 .resume
= irq_resume
,
108 static int __init
irq_syscore_init(void)
110 register_syscore_ops(&irq_syscore_ops
);
115 device_initcall(irq_syscore_init
);
118 * For the PL010 found in the Integrator/AP some of the UART control is
119 * implemented in the system controller and accessed using a callback
122 static void integrator_uart_set_mctrl(struct amba_device
*dev
,
123 void __iomem
*base
, unsigned int mctrl
)
125 unsigned int ctrls
= 0, ctrlc
= 0, rts_mask
, dtr_mask
;
126 u32 phybase
= dev
->res
.start
;
129 if (phybase
== INTEGRATOR_UART0_BASE
) {
139 if (mctrl
& TIOCM_RTS
)
144 if (mctrl
& TIOCM_DTR
)
149 ret
= regmap_write(ap_syscon_map
,
150 INTEGRATOR_SC_CTRLS_OFFSET
,
153 pr_err("MODEM: unable to write PL010 UART CTRLS\n");
155 ret
= regmap_write(ap_syscon_map
,
156 INTEGRATOR_SC_CTRLC_OFFSET
,
159 pr_err("MODEM: unable to write PL010 UART CRTLC\n");
162 struct amba_pl010_data ap_uart_data
= {
163 .set_mctrl
= integrator_uart_set_mctrl
,
166 void __init
ap_init_early(void)
170 static void __init
ap_init_irq_of(void)
176 /* For the Device Tree, add in the UART callbacks as AUXDATA */
177 static struct of_dev_auxdata ap_auxdata_lookup
[] __initdata
= {
178 OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART0_BASE
,
179 "uart0", &ap_uart_data
),
180 OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART1_BASE
,
181 "uart1", &ap_uart_data
),
185 static const struct of_device_id ap_syscon_match
[] = {
186 { .compatible
= "arm,integrator-ap-syscon"},
190 static void __init
ap_init_of(void)
193 struct device_node
*syscon
;
197 of_platform_default_populate(NULL
, ap_auxdata_lookup
, NULL
);
199 syscon
= of_find_matching_node(NULL
, ap_syscon_match
);
202 ap_syscon_map
= syscon_node_to_regmap(syscon
);
203 if (IS_ERR(ap_syscon_map
)) {
204 pr_crit("could not find Integrator/AP system controller\n");
208 ret
= regmap_read(ap_syscon_map
,
209 INTEGRATOR_SC_DEC_OFFSET
,
212 pr_crit("could not read from Integrator/AP syscon\n");
216 for (i
= 0; i
< 4; i
++) {
217 struct lm_device
*lmdev
;
219 if ((sc_dec
& (16 << i
)) == 0)
222 lmdev
= kzalloc(sizeof(struct lm_device
), GFP_KERNEL
);
226 lmdev
->resource
.start
= 0xc0000000 + 0x10000000 * i
;
227 lmdev
->resource
.end
= lmdev
->resource
.start
+ 0x0fffffff;
228 lmdev
->resource
.flags
= IORESOURCE_MEM
;
229 lmdev
->irq
= irq_of_parse_and_map(syscon
, i
);
232 lm_device_register(lmdev
);
236 static const char * ap_dt_board_compat
[] = {
241 DT_MACHINE_START(INTEGRATOR_AP_DT
, "ARM Integrator/AP (Device Tree)")
242 .reserve
= integrator_reserve
,
244 .init_early
= ap_init_early
,
245 .init_irq
= ap_init_irq_of
,
246 .init_machine
= ap_init_of
,
247 .dt_compat
= ap_dt_board_compat
,