diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2010-11-11 12:06:17 -0500 |
---|---|---|
committer | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2010-11-19 15:53:49 -0500 |
commit | e48ab1c16ff2af83e6a2a1228504710a5d339d08 (patch) | |
tree | 6f8b911583ecb48ca18a2c724bb99d3d9ab10815 /arch/arm/mach-imx/mach-mx25_3ds.c | |
parent | 2a8bd56a382ec0e24249b1adaca4f38bd529e825 (diff) |
ARM: imx: move mx25 support to mach-imx
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-imx/mach-mx25_3ds.c')
-rw-r--r-- | arch/arm/mach-imx/mach-mx25_3ds.c | 223 |
1 files changed, 223 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/mach-mx25_3ds.c b/arch/arm/mach-imx/mach-mx25_3ds.c new file mode 100644 index 000000000000..f07d3d754152 --- /dev/null +++ b/arch/arm/mach-imx/mach-mx25_3ds.c | |||
@@ -0,0 +1,223 @@ | |||
1 | /* | ||
2 | * Copyright 2009 Sascha Hauer, <kernel@pengutronix.de> | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU General Public License | ||
6 | * as published by the Free Software Foundation; either version 2 | ||
7 | * of the License, or (at your option) any later version. | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program; if not, write to the Free Software | ||
15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, | ||
16 | * Boston, MA 02110-1301, USA. | ||
17 | */ | ||
18 | |||
19 | /* | ||
20 | * This machine is known as: | ||
21 | * - i.MX25 3-Stack Development System | ||
22 | * - i.MX25 Platform Development Kit (i.MX25 PDK) | ||
23 | */ | ||
24 | |||
25 | #include <linux/types.h> | ||
26 | #include <linux/init.h> | ||
27 | #include <linux/delay.h> | ||
28 | #include <linux/clk.h> | ||
29 | #include <linux/irq.h> | ||
30 | #include <linux/gpio.h> | ||
31 | #include <linux/platform_device.h> | ||
32 | #include <linux/input/matrix_keypad.h> | ||
33 | |||
34 | #include <mach/hardware.h> | ||
35 | #include <asm/mach-types.h> | ||
36 | #include <asm/mach/arch.h> | ||
37 | #include <asm/mach/time.h> | ||
38 | #include <asm/memory.h> | ||
39 | #include <asm/mach/map.h> | ||
40 | #include <mach/common.h> | ||
41 | #include <mach/mx25.h> | ||
42 | #include <mach/iomux-mx25.h> | ||
43 | |||
44 | #include "devices-imx25.h" | ||
45 | |||
46 | static const struct imxuart_platform_data uart_pdata __initconst = { | ||
47 | .flags = IMXUART_HAVE_RTSCTS, | ||
48 | }; | ||
49 | |||
50 | static struct pad_desc mx25pdk_pads[] = { | ||
51 | MX25_PAD_FEC_MDC__FEC_MDC, | ||
52 | MX25_PAD_FEC_MDIO__FEC_MDIO, | ||
53 | MX25_PAD_FEC_TDATA0__FEC_TDATA0, | ||
54 | MX25_PAD_FEC_TDATA1__FEC_TDATA1, | ||
55 | MX25_PAD_FEC_TX_EN__FEC_TX_EN, | ||
56 | MX25_PAD_FEC_RDATA0__FEC_RDATA0, | ||
57 | MX25_PAD_FEC_RDATA1__FEC_RDATA1, | ||
58 | MX25_PAD_FEC_RX_DV__FEC_RX_DV, | ||
59 | MX25_PAD_FEC_TX_CLK__FEC_TX_CLK, | ||
60 | MX25_PAD_A17__GPIO_2_3, /* FEC_EN, GPIO 35 */ | ||
61 | MX25_PAD_D12__GPIO_4_8, /* FEC_RESET_B, GPIO 104 */ | ||
62 | |||
63 | /* LCD */ | ||
64 | MX25_PAD_LD0__LD0, | ||
65 | MX25_PAD_LD1__LD1, | ||
66 | MX25_PAD_LD2__LD2, | ||
67 | MX25_PAD_LD3__LD3, | ||
68 | MX25_PAD_LD4__LD4, | ||
69 | MX25_PAD_LD5__LD5, | ||
70 | MX25_PAD_LD6__LD6, | ||
71 | MX25_PAD_LD7__LD7, | ||
72 | MX25_PAD_LD8__LD8, | ||
73 | MX25_PAD_LD9__LD9, | ||
74 | MX25_PAD_LD10__LD10, | ||
75 | MX25_PAD_LD11__LD11, | ||
76 | MX25_PAD_LD12__LD12, | ||
77 | MX25_PAD_LD13__LD13, | ||
78 | MX25_PAD_LD14__LD14, | ||
79 | MX25_PAD_LD15__LD15, | ||
80 | MX25_PAD_GPIO_E__LD16, | ||
81 | MX25_PAD_GPIO_F__LD17, | ||
82 | MX25_PAD_HSYNC__HSYNC, | ||
83 | MX25_PAD_VSYNC__VSYNC, | ||
84 | MX25_PAD_LSCLK__LSCLK, | ||
85 | MX25_PAD_OE_ACD__OE_ACD, | ||
86 | MX25_PAD_CONTRAST__CONTRAST, | ||
87 | |||
88 | /* Keypad */ | ||
89 | MX25_PAD_KPP_ROW0__KPP_ROW0, | ||
90 | MX25_PAD_KPP_ROW1__KPP_ROW1, | ||
91 | MX25_PAD_KPP_ROW2__KPP_ROW2, | ||
92 | MX25_PAD_KPP_ROW3__KPP_ROW3, | ||
93 | MX25_PAD_KPP_COL0__KPP_COL0, | ||
94 | MX25_PAD_KPP_COL1__KPP_COL1, | ||
95 | MX25_PAD_KPP_COL2__KPP_COL2, | ||
96 | MX25_PAD_KPP_COL3__KPP_COL3, | ||
97 | |||
98 | /* SD1 */ | ||
99 | MX25_PAD_SD1_CMD__SD1_CMD, | ||
100 | MX25_PAD_SD1_CLK__SD1_CLK, | ||
101 | MX25_PAD_SD1_DATA0__SD1_DATA0, | ||
102 | MX25_PAD_SD1_DATA1__SD1_DATA1, | ||
103 | MX25_PAD_SD1_DATA2__SD1_DATA2, | ||
104 | MX25_PAD_SD1_DATA3__SD1_DATA3, | ||
105 | }; | ||
106 | |||
107 | static const struct fec_platform_data mx25_fec_pdata __initconst = { | ||
108 | .phy = PHY_INTERFACE_MODE_RMII, | ||
109 | }; | ||
110 | |||
111 | #define FEC_ENABLE_GPIO 35 | ||
112 | #define FEC_RESET_B_GPIO 104 | ||
113 | |||
114 | static void __init mx25pdk_fec_reset(void) | ||
115 | { | ||
116 | gpio_request(FEC_ENABLE_GPIO, "FEC PHY enable"); | ||
117 | gpio_request(FEC_RESET_B_GPIO, "FEC PHY reset"); | ||
118 | |||
119 | gpio_direction_output(FEC_ENABLE_GPIO, 0); /* drop PHY power */ | ||
120 | gpio_direction_output(FEC_RESET_B_GPIO, 0); /* assert reset */ | ||
121 | udelay(2); | ||
122 | |||
123 | /* turn on PHY power and lift reset */ | ||
124 | gpio_set_value(FEC_ENABLE_GPIO, 1); | ||
125 | gpio_set_value(FEC_RESET_B_GPIO, 1); | ||
126 | } | ||
127 | |||
128 | static const struct mxc_nand_platform_data | ||
129 | mx25pdk_nand_board_info __initconst = { | ||
130 | .width = 1, | ||
131 | .hw_ecc = 1, | ||
132 | .flash_bbt = 1, | ||
133 | }; | ||
134 | |||
135 | static struct imx_fb_videomode mx25pdk_modes[] = { | ||
136 | { | ||
137 | .mode = { | ||
138 | .name = "CRT-VGA", | ||
139 | .refresh = 60, | ||
140 | .xres = 640, | ||
141 | .yres = 480, | ||
142 | .pixclock = 39683, | ||
143 | .left_margin = 45, | ||
144 | .right_margin = 114, | ||
145 | .upper_margin = 33, | ||
146 | .lower_margin = 11, | ||
147 | .hsync_len = 1, | ||
148 | .vsync_len = 1, | ||
149 | }, | ||
150 | .bpp = 16, | ||
151 | .pcr = 0xFA208B80, | ||
152 | }, | ||
153 | }; | ||
154 | |||
155 | static const struct imx_fb_platform_data mx25pdk_fb_pdata __initconst = { | ||
156 | .mode = mx25pdk_modes, | ||
157 | .num_modes = ARRAY_SIZE(mx25pdk_modes), | ||
158 | .pwmr = 0x00A903FF, | ||
159 | .lscr1 = 0x00120300, | ||
160 | .dmacr = 0x00020010, | ||
161 | }; | ||
162 | |||
163 | static const uint32_t mx25pdk_keymap[] = { | ||
164 | KEY(0, 0, KEY_UP), | ||
165 | KEY(0, 1, KEY_DOWN), | ||
166 | KEY(0, 2, KEY_VOLUMEDOWN), | ||
167 | KEY(0, 3, KEY_HOME), | ||
168 | KEY(1, 0, KEY_RIGHT), | ||
169 | KEY(1, 1, KEY_LEFT), | ||
170 | KEY(1, 2, KEY_ENTER), | ||
171 | KEY(1, 3, KEY_VOLUMEUP), | ||
172 | KEY(2, 0, KEY_F6), | ||
173 | KEY(2, 1, KEY_F8), | ||
174 | KEY(2, 2, KEY_F9), | ||
175 | KEY(2, 3, KEY_F10), | ||
176 | KEY(3, 0, KEY_F1), | ||
177 | KEY(3, 1, KEY_F2), | ||
178 | KEY(3, 2, KEY_F3), | ||
179 | KEY(3, 3, KEY_POWER), | ||
180 | }; | ||
181 | |||
182 | static const struct matrix_keymap_data mx25pdk_keymap_data __initdata = { | ||
183 | .keymap = mx25pdk_keymap, | ||
184 | .keymap_size = ARRAY_SIZE(mx25pdk_keymap), | ||
185 | }; | ||
186 | |||
187 | static void __init mx25pdk_init(void) | ||
188 | { | ||
189 | mxc_iomux_v3_setup_multiple_pads(mx25pdk_pads, | ||
190 | ARRAY_SIZE(mx25pdk_pads)); | ||
191 | |||
192 | imx25_add_imx_uart0(&uart_pdata); | ||
193 | imx25_add_mxc_ehci_hs(NULL); | ||
194 | imx25_add_mxc_nand(&mx25pdk_nand_board_info); | ||
195 | imx25_add_imxdi_rtc(NULL); | ||
196 | imx25_add_imx_fb(&mx25pdk_fb_pdata); | ||
197 | imx25_add_imx2_wdt(NULL); | ||
198 | |||
199 | mx25pdk_fec_reset(); | ||
200 | imx25_add_fec(&mx25_fec_pdata); | ||
201 | imx25_add_imx_keypad(&mx25pdk_keymap_data); | ||
202 | |||
203 | imx25_add_esdhc(0, NULL); | ||
204 | } | ||
205 | |||
206 | static void __init mx25pdk_timer_init(void) | ||
207 | { | ||
208 | mx25_clocks_init(); | ||
209 | } | ||
210 | |||
211 | static struct sys_timer mx25pdk_timer = { | ||
212 | .init = mx25pdk_timer_init, | ||
213 | }; | ||
214 | |||
215 | MACHINE_START(MX25_3DS, "Freescale MX25PDK (3DS)") | ||
216 | /* Maintainer: Freescale Semiconductor, Inc. */ | ||
217 | .boot_params = MX25_PHYS_OFFSET + 0x100, | ||
218 | .map_io = mx25_map_io, | ||
219 | .init_irq = mx25_init_irq, | ||
220 | .init_machine = mx25pdk_init, | ||
221 | .timer = &mx25pdk_timer, | ||
222 | MACHINE_END | ||
223 | |||