268eadf6d3e6c0803641262430cd76181eafc640
[cascardo/linux.git] / arch / arm / mach-integrator / core.c
1 /*
2  *  linux/arch/arm/mach-integrator/core.c
3  *
4  *  Copyright (C) 2000-2003 Deep Blue Solutions Ltd
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2, as
8  * published by the Free Software Foundation.
9  */
10 #include <linux/types.h>
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/device.h>
14 #include <linux/export.h>
15 #include <linux/spinlock.h>
16 #include <linux/interrupt.h>
17 #include <linux/irq.h>
18 #include <linux/memblock.h>
19 #include <linux/sched.h>
20 #include <linux/smp.h>
21 #include <linux/termios.h>
22 #include <linux/amba/bus.h>
23 #include <linux/amba/serial.h>
24 #include <linux/io.h>
25
26 #include <mach/hardware.h>
27 #include <mach/platform.h>
28 #include <mach/cm.h>
29 #include <mach/irqs.h>
30
31 #include <asm/leds.h>
32 #include <asm/mach-types.h>
33 #include <asm/mach/time.h>
34 #include <asm/pgtable.h>
35
36 static struct amba_pl010_data integrator_uart_data;
37
38 #define INTEGRATOR_RTC_IRQ      { IRQ_RTCINT }
39 #define INTEGRATOR_UART0_IRQ    { IRQ_UARTINT0 }
40 #define INTEGRATOR_UART1_IRQ    { IRQ_UARTINT1 }
41 #define KMI0_IRQ                { IRQ_KMIINT0 }
42 #define KMI1_IRQ                { IRQ_KMIINT1 }
43
44 static AMBA_APB_DEVICE(rtc, "rtc", 0,
45         INTEGRATOR_RTC_BASE, INTEGRATOR_RTC_IRQ, NULL);
46
47 static AMBA_APB_DEVICE(uart0, "uart0", 0,
48         INTEGRATOR_UART0_BASE, INTEGRATOR_UART0_IRQ, &integrator_uart_data);
49
50 static AMBA_APB_DEVICE(uart1, "uart1", 0,
51         INTEGRATOR_UART1_BASE, INTEGRATOR_UART1_IRQ, &integrator_uart_data);
52
53 static AMBA_APB_DEVICE(kmi0, "kmi0", 0, KMI0_BASE, KMI0_IRQ, NULL);
54 static AMBA_APB_DEVICE(kmi1, "kmi1", 0, KMI1_BASE, KMI1_IRQ, NULL);
55
56 static struct amba_device *amba_devs[] __initdata = {
57         &rtc_device,
58         &uart0_device,
59         &uart1_device,
60         &kmi0_device,
61         &kmi1_device,
62 };
63
64 int __init integrator_init(bool is_cp)
65 {
66         int i;
67
68         /*
69          * The Integrator/AP lacks necessary AMBA PrimeCell IDs, so we need to
70          * hard-code them. The Integator/CP and forward have proper cell IDs.
71          * Else we leave them undefined to the bus driver can autoprobe them.
72          */
73         if (!is_cp) {
74                 rtc_device.periphid     = 0x00041030;
75                 uart0_device.periphid   = 0x00041010;
76                 uart1_device.periphid   = 0x00041010;
77                 kmi0_device.periphid    = 0x00041050;
78                 kmi1_device.periphid    = 0x00041050;
79         }
80
81         for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
82                 struct amba_device *d = amba_devs[i];
83                 amba_device_register(d, &iomem_resource);
84         }
85
86         return 0;
87 }
88
89 /*
90  * On the Integrator platform, the port RTS and DTR are provided by
91  * bits in the following SC_CTRLS register bits:
92  *        RTS  DTR
93  *  UART0  7    6
94  *  UART1  5    4
95  */
96 #define SC_CTRLC        IO_ADDRESS(INTEGRATOR_SC_CTRLC)
97 #define SC_CTRLS        IO_ADDRESS(INTEGRATOR_SC_CTRLS)
98
99 static void integrator_uart_set_mctrl(struct amba_device *dev, void __iomem *base, unsigned int mctrl)
100 {
101         unsigned int ctrls = 0, ctrlc = 0, rts_mask, dtr_mask;
102         u32 phybase = dev->res.start;
103
104         if (phybase == INTEGRATOR_UART0_BASE) {
105                 /* UART0 */
106                 rts_mask = 1 << 4;
107                 dtr_mask = 1 << 5;
108         } else {
109                 /* UART1 */
110                 rts_mask = 1 << 6;
111                 dtr_mask = 1 << 7;
112         }
113
114         if (mctrl & TIOCM_RTS)
115                 ctrlc |= rts_mask;
116         else
117                 ctrls |= rts_mask;
118
119         if (mctrl & TIOCM_DTR)
120                 ctrlc |= dtr_mask;
121         else
122                 ctrls |= dtr_mask;
123
124         __raw_writel(ctrls, SC_CTRLS);
125         __raw_writel(ctrlc, SC_CTRLC);
126 }
127
128 static struct amba_pl010_data integrator_uart_data = {
129         .set_mctrl = integrator_uart_set_mctrl,
130 };
131
132 #define CM_CTRL IO_ADDRESS(INTEGRATOR_HDR_CTRL)
133
134 static DEFINE_RAW_SPINLOCK(cm_lock);
135
136 /**
137  * cm_control - update the CM_CTRL register.
138  * @mask: bits to change
139  * @set: bits to set
140  */
141 void cm_control(u32 mask, u32 set)
142 {
143         unsigned long flags;
144         u32 val;
145
146         raw_spin_lock_irqsave(&cm_lock, flags);
147         val = readl(CM_CTRL) & ~mask;
148         writel(val | set, CM_CTRL);
149         raw_spin_unlock_irqrestore(&cm_lock, flags);
150 }
151
152 EXPORT_SYMBOL(cm_control);
153
154 /*
155  * We need to stop things allocating the low memory; ideally we need a
156  * better implementation of GFP_DMA which does not assume that DMA-able
157  * memory starts at zero.
158  */
159 void __init integrator_reserve(void)
160 {
161         memblock_reserve(PHYS_OFFSET, __pa(swapper_pg_dir) - PHYS_OFFSET);
162 }
163
164 /*
165  * To reset, we hit the on-board reset register in the system FPGA
166  */
167 void integrator_restart(char mode, const char *cmd)
168 {
169         cm_control(CM_CTRL_RESET, CM_CTRL_RESET);
170 }