diff options
Diffstat (limited to 'arch/arm/mach-mmp/pxa910.c')
-rw-r--r-- | arch/arm/mach-mmp/pxa910.c | 158 |
1 files changed, 158 insertions, 0 deletions
diff --git a/arch/arm/mach-mmp/pxa910.c b/arch/arm/mach-mmp/pxa910.c new file mode 100644 index 000000000000..453f8f7758bf --- /dev/null +++ b/arch/arm/mach-mmp/pxa910.c | |||
@@ -0,0 +1,158 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-mmp/pxa910.c | ||
3 | * | ||
4 | * Code specific to PXA910 | ||
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 | |||
11 | #include <linux/module.h> | ||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/init.h> | ||
14 | #include <linux/list.h> | ||
15 | #include <linux/io.h> | ||
16 | |||
17 | #include <asm/mach/time.h> | ||
18 | #include <mach/addr-map.h> | ||
19 | #include <mach/regs-apbc.h> | ||
20 | #include <mach/regs-apmu.h> | ||
21 | #include <mach/cputype.h> | ||
22 | #include <mach/irqs.h> | ||
23 | #include <mach/gpio.h> | ||
24 | #include <mach/dma.h> | ||
25 | #include <mach/mfp.h> | ||
26 | #include <mach/devices.h> | ||
27 | |||
28 | #include "common.h" | ||
29 | #include "clock.h" | ||
30 | |||
31 | #define MFPR_VIRT_BASE (APB_VIRT_BASE + 0x1e000) | ||
32 | |||
33 | static struct mfp_addr_map pxa910_mfp_addr_map[] __initdata = | ||
34 | { | ||
35 | MFP_ADDR_X(GPIO0, GPIO54, 0xdc), | ||
36 | MFP_ADDR_X(GPIO67, GPIO98, 0x1b8), | ||
37 | MFP_ADDR_X(GPIO100, GPIO109, 0x238), | ||
38 | |||
39 | MFP_ADDR(GPIO123, 0xcc), | ||
40 | MFP_ADDR(GPIO124, 0xd0), | ||
41 | |||
42 | MFP_ADDR(DF_IO0, 0x40), | ||
43 | MFP_ADDR(DF_IO1, 0x3c), | ||
44 | MFP_ADDR(DF_IO2, 0x38), | ||
45 | MFP_ADDR(DF_IO3, 0x34), | ||
46 | MFP_ADDR(DF_IO4, 0x30), | ||
47 | MFP_ADDR(DF_IO5, 0x2c), | ||
48 | MFP_ADDR(DF_IO6, 0x28), | ||
49 | MFP_ADDR(DF_IO7, 0x24), | ||
50 | MFP_ADDR(DF_IO8, 0x20), | ||
51 | MFP_ADDR(DF_IO9, 0x1c), | ||
52 | MFP_ADDR(DF_IO10, 0x18), | ||
53 | MFP_ADDR(DF_IO11, 0x14), | ||
54 | MFP_ADDR(DF_IO12, 0x10), | ||
55 | MFP_ADDR(DF_IO13, 0xc), | ||
56 | MFP_ADDR(DF_IO14, 0x8), | ||
57 | MFP_ADDR(DF_IO15, 0x4), | ||
58 | |||
59 | MFP_ADDR(DF_nCS0_SM_nCS2, 0x44), | ||
60 | MFP_ADDR(DF_nCS1_SM_nCS3, 0x48), | ||
61 | MFP_ADDR(SM_nCS0, 0x4c), | ||
62 | MFP_ADDR(SM_nCS1, 0x50), | ||
63 | MFP_ADDR(DF_WEn, 0x54), | ||
64 | MFP_ADDR(DF_REn, 0x58), | ||
65 | MFP_ADDR(DF_CLE_SM_OEn, 0x5c), | ||
66 | MFP_ADDR(DF_ALE_SM_WEn, 0x60), | ||
67 | MFP_ADDR(SM_SCLK, 0x64), | ||
68 | MFP_ADDR(DF_RDY0, 0x68), | ||
69 | MFP_ADDR(SM_BE0, 0x6c), | ||
70 | MFP_ADDR(SM_BE1, 0x70), | ||
71 | MFP_ADDR(SM_ADV, 0x74), | ||
72 | MFP_ADDR(DF_RDY1, 0x78), | ||
73 | MFP_ADDR(SM_ADVMUX, 0x7c), | ||
74 | MFP_ADDR(SM_RDY, 0x80), | ||
75 | |||
76 | MFP_ADDR_X(MMC1_DAT7, MMC1_WP, 0x84), | ||
77 | |||
78 | MFP_ADDR_END, | ||
79 | }; | ||
80 | |||
81 | #define APMASK(i) (GPIO_REGS_VIRT + BANK_OFF(i) + 0x09c) | ||
82 | |||
83 | static void __init pxa910_init_gpio(void) | ||
84 | { | ||
85 | int i; | ||
86 | |||
87 | /* enable GPIO clock */ | ||
88 | __raw_writel(APBC_APBCLK | APBC_FNCLK, APBC_PXA910_GPIO); | ||
89 | |||
90 | /* unmask GPIO edge detection for all 4 banks - APMASKx */ | ||
91 | for (i = 0; i < 4; i++) | ||
92 | __raw_writel(0xffffffff, APMASK(i)); | ||
93 | |||
94 | pxa_init_gpio(IRQ_PXA910_AP_GPIO, 0, 127, NULL); | ||
95 | } | ||
96 | |||
97 | void __init pxa910_init_irq(void) | ||
98 | { | ||
99 | icu_init_irq(); | ||
100 | pxa910_init_gpio(); | ||
101 | } | ||
102 | |||
103 | /* APB peripheral clocks */ | ||
104 | static APBC_CLK(uart1, PXA910_UART0, 1, 14745600); | ||
105 | static APBC_CLK(uart2, PXA910_UART1, 1, 14745600); | ||
106 | |||
107 | /* device and clock bindings */ | ||
108 | static struct clk_lookup pxa910_clkregs[] = { | ||
109 | INIT_CLKREG(&clk_uart1, "pxa2xx-uart.0", NULL), | ||
110 | INIT_CLKREG(&clk_uart2, "pxa2xx-uart.1", NULL), | ||
111 | }; | ||
112 | |||
113 | static int __init pxa910_init(void) | ||
114 | { | ||
115 | if (cpu_is_pxa910()) { | ||
116 | mfp_init_base(MFPR_VIRT_BASE); | ||
117 | mfp_init_addr(pxa910_mfp_addr_map); | ||
118 | pxa_init_dma(IRQ_PXA910_DMA_INT0, 32); | ||
119 | clks_register(ARRAY_AND_SIZE(pxa910_clkregs)); | ||
120 | } | ||
121 | |||
122 | return 0; | ||
123 | } | ||
124 | postcore_initcall(pxa910_init); | ||
125 | |||
126 | /* system timer - clock enabled, 3.25MHz */ | ||
127 | #define TIMER_CLK_RST (APBC_APBCLK | APBC_FNCLK | APBC_FNCLKSEL(3)) | ||
128 | |||
129 | static void __init pxa910_timer_init(void) | ||
130 | { | ||
131 | /* reset and configure */ | ||
132 | __raw_writel(APBC_APBCLK | APBC_RST, APBC_PXA910_TIMERS); | ||
133 | __raw_writel(TIMER_CLK_RST, APBC_PXA910_TIMERS); | ||
134 | |||
135 | timer_init(IRQ_PXA910_AP1_TIMER1); | ||
136 | } | ||
137 | |||
138 | struct sys_timer pxa910_timer = { | ||
139 | .init = pxa910_timer_init, | ||
140 | }; | ||
141 | |||
142 | /* on-chip devices */ | ||
143 | |||
144 | /* NOTE: there are totally 3 UARTs on PXA910: | ||
145 | * | ||
146 | * UART1 - Slow UART (can be used both by AP and CP) | ||
147 | * UART2/3 - Fast UART | ||
148 | * | ||
149 | * To be backward compatible with the legacy FFUART/BTUART/STUART sequence, | ||
150 | * they are re-ordered as: | ||
151 | * | ||
152 | * pxa910_device_uart1 - UART2 as FFUART | ||
153 | * pxa910_device_uart2 - UART3 as BTUART | ||
154 | * | ||
155 | * UART1 is not used by AP for the moment. | ||
156 | */ | ||
157 | PXA910_DEVICE(uart1, "pxa2xx-uart", 0, UART2, 0xd4017000, 0x30, 21, 22); | ||
158 | PXA910_DEVICE(uart2, "pxa2xx-uart", 1, UART3, 0xd4018000, 0x30, 23, 24); | ||