1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * linux/arch/arm/mach-integrator/integrator_ap.c
5 * Copyright (C) 2000-2003 Deep Blue Solutions Ltd
7 #include <linux/kernel.h>
8 #include <linux/init.h>
9 #include <linux/syscore_ops.h>
10 #include <linux/amba/bus.h>
12 #include <linux/irqchip.h>
13 #include <linux/of_irq.h>
14 #include <linux/of_address.h>
15 #include <linux/of_platform.h>
16 #include <linux/termios.h>
17 #include <linux/mfd/syscon.h>
18 #include <linux/regmap.h>
20 #include <asm/mach/arch.h>
21 #include <asm/mach/map.h>
28 /* Regmap to the AP system controller */
29 static struct regmap
*ap_syscon_map
;
32 * All IO addresses are mapped onto VA 0xFFFx.xxxx, where x.xxxx
35 * Setup a VA for the Integrator interrupt controller (for header #0,
38 #define VA_IC_BASE __io_address(INTEGRATOR_IC_BASE)
42 * f1400000 14000000 Interrupt controller
43 * f1600000 16000000 UART 0
46 static struct map_desc ap_io_desc
[] __initdata __maybe_unused
= {
48 .virtual = IO_ADDRESS(INTEGRATOR_IC_BASE
),
49 .pfn
= __phys_to_pfn(INTEGRATOR_IC_BASE
),
53 .virtual = IO_ADDRESS(INTEGRATOR_UART0_BASE
),
54 .pfn
= __phys_to_pfn(INTEGRATOR_UART0_BASE
),
60 static void __init
ap_map_io(void)
62 iotable_init(ap_io_desc
, ARRAY_SIZE(ap_io_desc
));
66 static unsigned long ic_irq_enable
;
68 static int irq_suspend(void)
70 ic_irq_enable
= readl(VA_IC_BASE
+ IRQ_ENABLE
);
74 static void irq_resume(void)
76 /* disable all irq sources */
78 writel(-1, VA_IC_BASE
+ IRQ_ENABLE_CLEAR
);
79 writel(-1, VA_IC_BASE
+ FIQ_ENABLE_CLEAR
);
81 writel(ic_irq_enable
, VA_IC_BASE
+ IRQ_ENABLE_SET
);
84 #define irq_suspend NULL
85 #define irq_resume NULL
88 static struct syscore_ops irq_syscore_ops
= {
89 .suspend
= irq_suspend
,
93 static int __init
irq_syscore_init(void)
95 register_syscore_ops(&irq_syscore_ops
);
100 device_initcall(irq_syscore_init
);
103 * For the PL010 found in the Integrator/AP some of the UART control is
104 * implemented in the system controller and accessed using a callback
107 static void integrator_uart_set_mctrl(struct amba_device
*dev
,
108 void __iomem
*base
, unsigned int mctrl
)
110 unsigned int ctrls
= 0, ctrlc
= 0, rts_mask
, dtr_mask
;
111 u32 phybase
= dev
->res
.start
;
114 if (phybase
== INTEGRATOR_UART0_BASE
) {
124 if (mctrl
& TIOCM_RTS
)
129 if (mctrl
& TIOCM_DTR
)
134 ret
= regmap_write(ap_syscon_map
,
135 INTEGRATOR_SC_CTRLS_OFFSET
,
138 pr_err("MODEM: unable to write PL010 UART CTRLS\n");
140 ret
= regmap_write(ap_syscon_map
,
141 INTEGRATOR_SC_CTRLC_OFFSET
,
144 pr_err("MODEM: unable to write PL010 UART CRTLC\n");
147 struct amba_pl010_data ap_uart_data
= {
148 .set_mctrl
= integrator_uart_set_mctrl
,
151 void __init
ap_init_early(void)
155 static void __init
ap_init_irq_of(void)
161 /* For the Device Tree, add in the UART callbacks as AUXDATA */
162 static struct of_dev_auxdata ap_auxdata_lookup
[] __initdata
= {
163 OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART0_BASE
,
164 "uart0", &ap_uart_data
),
165 OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART1_BASE
,
166 "uart1", &ap_uart_data
),
170 static const struct of_device_id ap_syscon_match
[] = {
171 { .compatible
= "arm,integrator-ap-syscon"},
175 static void __init
ap_init_of(void)
178 struct device_node
*syscon
;
182 of_platform_default_populate(NULL
, ap_auxdata_lookup
, NULL
);
184 syscon
= of_find_matching_node(NULL
, ap_syscon_match
);
187 ap_syscon_map
= syscon_node_to_regmap(syscon
);
188 if (IS_ERR(ap_syscon_map
)) {
189 pr_crit("could not find Integrator/AP system controller\n");
193 ret
= regmap_read(ap_syscon_map
,
194 INTEGRATOR_SC_DEC_OFFSET
,
197 pr_crit("could not read from Integrator/AP syscon\n");
201 for (i
= 0; i
< 4; i
++) {
202 struct lm_device
*lmdev
;
204 if ((sc_dec
& (16 << i
)) == 0)
207 lmdev
= kzalloc(sizeof(struct lm_device
), GFP_KERNEL
);
211 lmdev
->resource
.start
= 0xc0000000 + 0x10000000 * i
;
212 lmdev
->resource
.end
= lmdev
->resource
.start
+ 0x0fffffff;
213 lmdev
->resource
.flags
= IORESOURCE_MEM
;
214 lmdev
->irq
= irq_of_parse_and_map(syscon
, i
);
217 lm_device_register(lmdev
);
221 static const char * ap_dt_board_compat
[] = {
226 DT_MACHINE_START(INTEGRATOR_AP_DT
, "ARM Integrator/AP (Device Tree)")
227 .reserve
= integrator_reserve
,
229 .init_early
= ap_init_early
,
230 .init_irq
= ap_init_irq_of
,
231 .init_machine
= ap_init_of
,
232 .dt_compat
= ap_dt_board_compat
,