blob: e9f401b0a4329847d175897c2d03f333bda9799f [file] [log] [blame]
Lennert Buytenheke9937d42006-03-28 21:08:13 +01001/*
2 * linux/arch/arm/mach-pxa/lpd270.c
3 *
4 * Support for the LogicPD PXA270 Card Engine.
5 * Derived from the mainstone code, which carries these notices:
6 *
7 * Author: Nicolas Pitre
8 * Created: Nov 05, 2002
9 * Copyright: MontaVista Software Inc.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
Russell King2f8163b2011-07-26 10:53:52 +010015#include <linux/gpio.h>
Lennert Buytenheke9937d42006-03-28 21:08:13 +010016#include <linux/init.h>
17#include <linux/platform_device.h>
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +020018#include <linux/syscore_ops.h>
Lennert Buytenheke9937d42006-03-28 21:08:13 +010019#include <linux/interrupt.h>
20#include <linux/sched.h>
21#include <linux/bitops.h>
22#include <linux/fb.h>
23#include <linux/ioport.h>
24#include <linux/mtd/mtd.h>
25#include <linux/mtd/partitions.h>
Thierry Reding2dc99752015-10-05 10:49:45 +020026#include <linux/pwm.h>
Russell King4a730712008-05-18 13:11:02 +010027#include <linux/pwm_backlight.h>
Arnd Bergmannb70661c2015-02-25 16:31:57 +010028#include <linux/smc91x.h>
Lennert Buytenheke9937d42006-03-28 21:08:13 +010029
30#include <asm/types.h>
31#include <asm/setup.h>
32#include <asm/memory.h>
33#include <asm/mach-types.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010034#include <mach/hardware.h>
Lennert Buytenheke9937d42006-03-28 21:08:13 +010035#include <asm/irq.h>
36#include <asm/sizes.h>
37
38#include <asm/mach/arch.h>
39#include <asm/mach/map.h>
40#include <asm/mach/irq.h>
41#include <asm/mach/flash.h>
42
Arnd Bergmann4c25c5d2015-01-30 10:45:33 +010043#include "pxa27x.h"
44#include "lpd270.h"
Russell Kinga09e64f2008-08-05 16:14:15 +010045#include <mach/audio.h>
Arnd Bergmann293b2da2012-08-24 15:16:48 +020046#include <linux/platform_data/video-pxafb.h>
47#include <linux/platform_data/mmc-pxamci.h>
48#include <linux/platform_data/irda-pxaficp.h>
49#include <linux/platform_data/usb-ohci-pxa27x.h>
Marek Vasutad68bb92010-11-03 16:29:35 +010050#include <mach/smemc.h>
Lennert Buytenheke9937d42006-03-28 21:08:13 +010051
52#include "generic.h"
Russell King46c41e62007-05-15 15:39:36 +010053#include "devices.h"
Lennert Buytenheke9937d42006-03-28 21:08:13 +010054
Eric Miaofd90ff22008-09-11 15:53:50 +080055static unsigned long lpd270_pin_config[] __initdata = {
56 /* Chip Selects */
57 GPIO15_nCS_1, /* Mainboard Flash */
58 GPIO78_nCS_2, /* CPLD + Ethernet */
59
60 /* LCD - 16bpp Active TFT */
61 GPIO58_LCD_LDD_0,
62 GPIO59_LCD_LDD_1,
63 GPIO60_LCD_LDD_2,
64 GPIO61_LCD_LDD_3,
65 GPIO62_LCD_LDD_4,
66 GPIO63_LCD_LDD_5,
67 GPIO64_LCD_LDD_6,
68 GPIO65_LCD_LDD_7,
69 GPIO66_LCD_LDD_8,
70 GPIO67_LCD_LDD_9,
71 GPIO68_LCD_LDD_10,
72 GPIO69_LCD_LDD_11,
73 GPIO70_LCD_LDD_12,
74 GPIO71_LCD_LDD_13,
75 GPIO72_LCD_LDD_14,
76 GPIO73_LCD_LDD_15,
77 GPIO74_LCD_FCLK,
78 GPIO75_LCD_LCLK,
79 GPIO76_LCD_PCLK,
80 GPIO77_LCD_BIAS,
81 GPIO16_PWM0_OUT, /* Backlight */
82
83 /* USB Host */
84 GPIO88_USBH1_PWR,
85 GPIO89_USBH1_PEN,
86
87 /* AC97 */
Eric Miaoc11b6a42010-01-04 17:00:13 +080088 GPIO28_AC97_BITCLK,
89 GPIO29_AC97_SDATA_IN_0,
90 GPIO30_AC97_SDATA_OUT,
91 GPIO31_AC97_SYNC,
Eric Miaofd90ff22008-09-11 15:53:50 +080092 GPIO45_AC97_SYSCLK,
93
94 GPIO1_GPIO | WAKEUP_ON_EDGE_BOTH,
95};
Lennert Buytenheke9937d42006-03-28 21:08:13 +010096
97static unsigned int lpd270_irq_enabled;
98
Lennert Buytenheka3f4c922010-11-29 11:18:26 +010099static void lpd270_mask_irq(struct irq_data *d)
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100100{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100101 int lpd270_irq = d->irq - LPD270_IRQ(0);
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100102
103 __raw_writew(~(1 << lpd270_irq), LPD270_INT_STATUS);
104
105 lpd270_irq_enabled &= ~(1 << lpd270_irq);
106 __raw_writew(lpd270_irq_enabled, LPD270_INT_MASK);
107}
108
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100109static void lpd270_unmask_irq(struct irq_data *d)
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100110{
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100111 int lpd270_irq = d->irq - LPD270_IRQ(0);
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100112
113 lpd270_irq_enabled |= 1 << lpd270_irq;
114 __raw_writew(lpd270_irq_enabled, LPD270_INT_MASK);
115}
116
David Brownell38c677c2006-08-01 22:26:25 +0100117static struct irq_chip lpd270_irq_chip = {
118 .name = "CPLD",
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100119 .irq_ack = lpd270_mask_irq,
120 .irq_mask = lpd270_mask_irq,
121 .irq_unmask = lpd270_unmask_irq,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100122};
123
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200124static void lpd270_irq_handler(struct irq_desc *desc)
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100125{
Thomas Gleixner6947d042015-07-13 10:17:54 +0200126 unsigned int irq;
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100127 unsigned long pending;
128
129 pending = __raw_readw(LPD270_INT_STATUS) & lpd270_irq_enabled;
130 do {
Lennert Buytenheka3f4c922010-11-29 11:18:26 +0100131 /* clear useless edge notification */
132 desc->irq_data.chip->irq_ack(&desc->irq_data);
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100133 if (likely(pending)) {
134 irq = LPD270_IRQ(0) + __ffs(pending);
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100135 generic_handle_irq(irq);
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100136
137 pending = __raw_readw(LPD270_INT_STATUS) &
138 lpd270_irq_enabled;
139 }
140 } while (pending);
141}
142
143static void __init lpd270_init_irq(void)
144{
145 int irq;
146
Eric Miaocd491042007-06-22 04:14:09 +0100147 pxa27x_init_irq();
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100148
149 __raw_writew(0, LPD270_INT_MASK);
150 __raw_writew(0, LPD270_INT_STATUS);
151
152 /* setup extra LogicPD PXA270 irqs */
153 for (irq = LPD270_IRQ(2); irq <= LPD270_IRQ(4); irq++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100154 irq_set_chip_and_handler(irq, &lpd270_irq_chip,
155 handle_level_irq);
Rob Herringe8d36d52015-07-27 15:55:13 -0500156 irq_clear_status_flags(irq, IRQ_NOREQUEST | IRQ_NOPROBE);
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100157 }
Haojian Zhuang6384fda2011-10-10 14:21:08 +0800158 irq_set_chained_handler(PXA_GPIO_TO_IRQ(0), lpd270_irq_handler);
159 irq_set_irq_type(PXA_GPIO_TO_IRQ(0), IRQ_TYPE_EDGE_FALLING);
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100160}
161
162
163#ifdef CONFIG_PM
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200164static void lpd270_irq_resume(void)
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100165{
166 __raw_writew(lpd270_irq_enabled, LPD270_INT_MASK);
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100167}
168
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200169static struct syscore_ops lpd270_irq_syscore_ops = {
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100170 .resume = lpd270_irq_resume,
171};
172
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100173static int __init lpd270_irq_device_init(void)
174{
Russell King720046d2008-04-24 15:13:36 +0100175 if (machine_is_logicpd_pxa270()) {
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200176 register_syscore_ops(&lpd270_irq_syscore_ops);
177 return 0;
Russell King720046d2008-04-24 15:13:36 +0100178 }
Rafael J. Wysocki2eaa03b2011-04-22 22:03:11 +0200179 return -ENODEV;
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100180}
181
182device_initcall(lpd270_irq_device_init);
183#endif
184
185
186static struct resource smc91x_resources[] = {
187 [0] = {
188 .start = LPD270_ETH_PHYS,
189 .end = (LPD270_ETH_PHYS + 0xfffff),
190 .flags = IORESOURCE_MEM,
191 },
192 [1] = {
193 .start = LPD270_ETHERNET_IRQ,
194 .end = LPD270_ETHERNET_IRQ,
Arnd Bergmannb70661c2015-02-25 16:31:57 +0100195 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100196 },
197};
198
Arnd Bergmannb70661c2015-02-25 16:31:57 +0100199struct smc91x_platdata smc91x_platdata = {
Arnd Bergmann04b91702015-03-04 23:39:18 +0100200 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
Arnd Bergmannb70661c2015-02-25 16:31:57 +0100201};
202
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100203static struct platform_device smc91x_device = {
204 .name = "smc91x",
205 .id = 0,
206 .num_resources = ARRAY_SIZE(smc91x_resources),
207 .resource = smc91x_resources,
Arnd Bergmannb70661c2015-02-25 16:31:57 +0100208 .dev.platform_data = &smc91x_platdata,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100209};
210
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100211static struct resource lpd270_flash_resources[] = {
212 [0] = {
213 .start = PXA_CS0_PHYS,
214 .end = PXA_CS0_PHYS + SZ_64M - 1,
215 .flags = IORESOURCE_MEM,
216 },
217 [1] = {
218 .start = PXA_CS1_PHYS,
219 .end = PXA_CS1_PHYS + SZ_64M - 1,
220 .flags = IORESOURCE_MEM,
221 },
222};
223
224static struct mtd_partition lpd270_flash0_partitions[] = {
225 {
226 .name = "Bootloader",
227 .size = 0x00040000,
228 .offset = 0,
229 .mask_flags = MTD_WRITEABLE /* force read-only */
230 }, {
231 .name = "Kernel",
232 .size = 0x00400000,
233 .offset = 0x00040000,
234 }, {
235 .name = "Filesystem",
236 .size = MTDPART_SIZ_FULL,
237 .offset = 0x00440000
238 },
239};
240
241static struct flash_platform_data lpd270_flash_data[2] = {
242 {
243 .name = "processor-flash",
244 .map_name = "cfi_probe",
245 .parts = lpd270_flash0_partitions,
246 .nr_parts = ARRAY_SIZE(lpd270_flash0_partitions),
247 }, {
248 .name = "mainboard-flash",
249 .map_name = "cfi_probe",
250 .parts = NULL,
251 .nr_parts = 0,
252 }
253};
254
255static struct platform_device lpd270_flash_device[2] = {
256 {
257 .name = "pxa2xx-flash",
258 .id = 0,
259 .dev = {
260 .platform_data = &lpd270_flash_data[0],
261 },
262 .resource = &lpd270_flash_resources[0],
263 .num_resources = 1,
264 }, {
265 .name = "pxa2xx-flash",
266 .id = 1,
267 .dev = {
268 .platform_data = &lpd270_flash_data[1],
269 },
270 .resource = &lpd270_flash_resources[1],
271 .num_resources = 1,
272 },
273};
274
Thierry Reding2dc99752015-10-05 10:49:45 +0200275static struct pwm_lookup lpd270_pwm_lookup[] = {
276 PWM_LOOKUP("pxa27x-pwm.0", 0, "pwm-backlight.0", NULL, 78770,
277 PWM_POLARITY_NORMAL),
278};
279
Russell King4a730712008-05-18 13:11:02 +0100280static struct platform_pwm_backlight_data lpd270_backlight_data = {
Russell King4a730712008-05-18 13:11:02 +0100281 .max_brightness = 1,
282 .dft_brightness = 1,
Thierry Redingdb011202013-08-30 12:15:24 +0200283 .enable_gpio = -1,
Russell King4a730712008-05-18 13:11:02 +0100284};
285
286static struct platform_device lpd270_backlight_device = {
287 .name = "pwm-backlight",
288 .dev = {
289 .parent = &pxa27x_device_pwm0.dev,
290 .platform_data = &lpd270_backlight_data,
291 },
292};
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100293
294/* 5.7" TFT QVGA (LoLo display number 1) */
Richard Purdied14b2722006-09-20 22:54:21 +0100295static struct pxafb_mode_info sharp_lq057q3dc02_mode = {
Lennert Buytenhek65660292006-06-29 16:06:30 +0100296 .pixclock = 150000,
297 .xres = 320,
298 .yres = 240,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100299 .bpp = 16,
Lennert Buytenhek65660292006-06-29 16:06:30 +0100300 .hsync_len = 0x14,
301 .left_margin = 0x28,
302 .right_margin = 0x0a,
303 .vsync_len = 0x02,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100304 .upper_margin = 0x08,
305 .lower_margin = 0x14,
Lennert Buytenhek65660292006-06-29 16:06:30 +0100306 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Richard Purdied14b2722006-09-20 22:54:21 +0100307};
308
309static struct pxafb_mach_info sharp_lq057q3dc02 = {
310 .modes = &sharp_lq057q3dc02_mode,
311 .num_modes = 1,
Eric Miao0219e832008-09-11 15:59:23 +0800312 .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL |
313 LCD_ALTERNATE_MAPPING,
Lennert Buytenhek65660292006-06-29 16:06:30 +0100314};
315
316/* 12.1" TFT SVGA (LoLo display number 2) */
Richard Purdied14b2722006-09-20 22:54:21 +0100317static struct pxafb_mode_info sharp_lq121s1dg31_mode = {
Lennert Buytenhek65660292006-06-29 16:06:30 +0100318 .pixclock = 50000,
319 .xres = 800,
320 .yres = 600,
321 .bpp = 16,
322 .hsync_len = 0x05,
323 .left_margin = 0x52,
324 .right_margin = 0x05,
325 .vsync_len = 0x04,
326 .upper_margin = 0x14,
327 .lower_margin = 0x0a,
328 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Richard Purdied14b2722006-09-20 22:54:21 +0100329};
330
331static struct pxafb_mach_info sharp_lq121s1dg31 = {
332 .modes = &sharp_lq121s1dg31_mode,
333 .num_modes = 1,
Eric Miao0219e832008-09-11 15:59:23 +0800334 .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL |
335 LCD_ALTERNATE_MAPPING,
Lennert Buytenhek65660292006-06-29 16:06:30 +0100336};
337
338/* 3.6" TFT QVGA (LoLo display number 3) */
Richard Purdied14b2722006-09-20 22:54:21 +0100339static struct pxafb_mode_info sharp_lq036q1da01_mode = {
Lennert Buytenhek65660292006-06-29 16:06:30 +0100340 .pixclock = 150000,
341 .xres = 320,
342 .yres = 240,
343 .bpp = 16,
344 .hsync_len = 0x0e,
345 .left_margin = 0x04,
346 .right_margin = 0x0a,
347 .vsync_len = 0x03,
348 .upper_margin = 0x03,
349 .lower_margin = 0x03,
350 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Richard Purdied14b2722006-09-20 22:54:21 +0100351};
352
353static struct pxafb_mach_info sharp_lq036q1da01 = {
354 .modes = &sharp_lq036q1da01_mode,
355 .num_modes = 1,
Eric Miao0219e832008-09-11 15:59:23 +0800356 .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL |
357 LCD_ALTERNATE_MAPPING,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100358};
359
360/* 6.4" TFT VGA (LoLo display number 5) */
Richard Purdied14b2722006-09-20 22:54:21 +0100361static struct pxafb_mode_info sharp_lq64d343_mode = {
Lennert Buytenhek65660292006-06-29 16:06:30 +0100362 .pixclock = 25000,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100363 .xres = 640,
364 .yres = 480,
365 .bpp = 16,
Lennert Buytenhek65660292006-06-29 16:06:30 +0100366 .hsync_len = 0x31,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100367 .left_margin = 0x89,
368 .right_margin = 0x19,
Lennert Buytenhek65660292006-06-29 16:06:30 +0100369 .vsync_len = 0x12,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100370 .upper_margin = 0x22,
Lennert Buytenhek65660292006-06-29 16:06:30 +0100371 .lower_margin = 0x00,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100372 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Richard Purdied14b2722006-09-20 22:54:21 +0100373};
374
375static struct pxafb_mach_info sharp_lq64d343 = {
376 .modes = &sharp_lq64d343_mode,
377 .num_modes = 1,
Eric Miao0219e832008-09-11 15:59:23 +0800378 .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL |
379 LCD_ALTERNATE_MAPPING,
Lennert Buytenhek65660292006-06-29 16:06:30 +0100380};
381
382/* 10.4" TFT VGA (LoLo display number 7) */
Richard Purdied14b2722006-09-20 22:54:21 +0100383static struct pxafb_mode_info sharp_lq10d368_mode = {
Lennert Buytenhek65660292006-06-29 16:06:30 +0100384 .pixclock = 25000,
385 .xres = 640,
386 .yres = 480,
387 .bpp = 16,
388 .hsync_len = 0x31,
389 .left_margin = 0x89,
390 .right_margin = 0x19,
391 .vsync_len = 0x12,
392 .upper_margin = 0x22,
393 .lower_margin = 0x00,
394 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Richard Purdied14b2722006-09-20 22:54:21 +0100395};
396
397static struct pxafb_mach_info sharp_lq10d368 = {
398 .modes = &sharp_lq10d368_mode,
399 .num_modes = 1,
Eric Miao0219e832008-09-11 15:59:23 +0800400 .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL |
401 LCD_ALTERNATE_MAPPING,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100402};
403
404/* 3.5" TFT QVGA (LoLo display number 8) */
Richard Purdied14b2722006-09-20 22:54:21 +0100405static struct pxafb_mode_info sharp_lq035q7db02_20_mode = {
Lennert Buytenhek65660292006-06-29 16:06:30 +0100406 .pixclock = 150000,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100407 .xres = 240,
408 .yres = 320,
409 .bpp = 16,
Lennert Buytenhek65660292006-06-29 16:06:30 +0100410 .hsync_len = 0x0e,
411 .left_margin = 0x0a,
412 .right_margin = 0x0a,
413 .vsync_len = 0x03,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100414 .upper_margin = 0x05,
415 .lower_margin = 0x14,
Lennert Buytenhek65660292006-06-29 16:06:30 +0100416 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Richard Purdied14b2722006-09-20 22:54:21 +0100417};
418
419static struct pxafb_mach_info sharp_lq035q7db02_20 = {
420 .modes = &sharp_lq035q7db02_20_mode,
421 .num_modes = 1,
Eric Miao0219e832008-09-11 15:59:23 +0800422 .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL |
423 LCD_ALTERNATE_MAPPING,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100424};
425
Lennert Buytenhek65660292006-06-29 16:06:30 +0100426static struct pxafb_mach_info *lpd270_lcd_to_use;
427
428static int __init lpd270_set_lcd(char *str)
429{
Rasmus Villemoes2bebf5c2014-10-13 15:54:29 -0700430 if (!strncasecmp(str, "lq057q3dc02", 11)) {
Lennert Buytenhek65660292006-06-29 16:06:30 +0100431 lpd270_lcd_to_use = &sharp_lq057q3dc02;
Rasmus Villemoes2bebf5c2014-10-13 15:54:29 -0700432 } else if (!strncasecmp(str, "lq121s1dg31", 11)) {
Lennert Buytenhek65660292006-06-29 16:06:30 +0100433 lpd270_lcd_to_use = &sharp_lq121s1dg31;
Rasmus Villemoes2bebf5c2014-10-13 15:54:29 -0700434 } else if (!strncasecmp(str, "lq036q1da01", 11)) {
Lennert Buytenhek65660292006-06-29 16:06:30 +0100435 lpd270_lcd_to_use = &sharp_lq036q1da01;
Rasmus Villemoes2bebf5c2014-10-13 15:54:29 -0700436 } else if (!strncasecmp(str, "lq64d343", 8)) {
Lennert Buytenhek65660292006-06-29 16:06:30 +0100437 lpd270_lcd_to_use = &sharp_lq64d343;
Rasmus Villemoes2bebf5c2014-10-13 15:54:29 -0700438 } else if (!strncasecmp(str, "lq10d368", 8)) {
Lennert Buytenhek65660292006-06-29 16:06:30 +0100439 lpd270_lcd_to_use = &sharp_lq10d368;
Rasmus Villemoes2bebf5c2014-10-13 15:54:29 -0700440 } else if (!strncasecmp(str, "lq035q7db02-20", 14)) {
Lennert Buytenhek65660292006-06-29 16:06:30 +0100441 lpd270_lcd_to_use = &sharp_lq035q7db02_20;
442 } else {
443 printk(KERN_INFO "lpd270: unknown lcd panel [%s]\n", str);
444 }
445
446 return 1;
447}
448
449__setup("lcd=", lpd270_set_lcd);
450
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100451static struct platform_device *platform_devices[] __initdata = {
452 &smc91x_device,
Russell King4a730712008-05-18 13:11:02 +0100453 &lpd270_backlight_device,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100454 &lpd270_flash_device[0],
455 &lpd270_flash_device[1],
456};
457
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100458static struct pxaohci_platform_data lpd270_ohci_platform_data = {
459 .port_mode = PMM_PERPORT_MODE,
Eric Miao097b5332008-09-27 15:49:57 +0800460 .flags = ENABLE_PORT_ALL | POWER_CONTROL_LOW | POWER_SENSE_LOW,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100461};
462
463static void __init lpd270_init(void)
464{
Eric Miaofd90ff22008-09-11 15:53:50 +0800465 pxa2xx_mfp_config(ARRAY_AND_SIZE(lpd270_pin_config));
466
Russell Kingcc155c62009-11-09 13:34:08 +0800467 pxa_set_ffuart_info(NULL);
468 pxa_set_btuart_info(NULL);
469 pxa_set_stuart_info(NULL);
470
Marek Vasutad68bb92010-11-03 16:29:35 +0100471 lpd270_flash_data[0].width = (__raw_readl(BOOT_DEF) & 1) ? 2 : 4;
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100472 lpd270_flash_data[1].width = 4;
473
474 /*
475 * System bus arbiter setting:
476 * - Core_Park
477 * - LCD_wt:DMA_wt:CORE_Wt = 2:3:4
478 */
479 ARB_CNTRL = ARB_CORE_PARK | 0x234;
480
Thierry Reding2dc99752015-10-05 10:49:45 +0200481 pwm_add_table(lpd270_pwm_lookup, ARRAY_SIZE(lpd270_pwm_lookup));
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100482 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
483
Mark Brown9f19d632008-06-10 12:30:05 +0100484 pxa_set_ac97_info(NULL);
485
Lennert Buytenhek65660292006-06-29 16:06:30 +0100486 if (lpd270_lcd_to_use != NULL)
Russell King - ARM Linux4321e1a2011-02-15 15:37:30 +0800487 pxa_set_fb_info(NULL, lpd270_lcd_to_use);
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100488
489 pxa_set_ohci_info(&lpd270_ohci_platform_data);
490}
491
492
493static struct map_desc lpd270_io_desc[] __initdata = {
494 {
Arnd Bergmann97b09da2011-10-01 22:03:45 +0200495 .virtual = (unsigned long)LPD270_CPLD_VIRT,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100496 .pfn = __phys_to_pfn(LPD270_CPLD_PHYS),
497 .length = LPD270_CPLD_SIZE,
498 .type = MT_DEVICE,
499 },
500};
501
502static void __init lpd270_map_io(void)
503{
Marek Vasut851982c2010-10-11 02:20:19 +0200504 pxa27x_map_io();
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100505 iotable_init(lpd270_io_desc, ARRAY_SIZE(lpd270_io_desc));
506
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100507 /* for use I SRAM as framebuffer. */
508 PSLR |= 0x00000F04;
509 PCFR = 0x00000066;
510}
511
512MACHINE_START(LOGICPD_PXA270, "LogicPD PXA270 Card Engine")
513 /* Maintainer: Peter Barada */
Nicolas Pitre7375aba2011-07-05 22:38:15 -0400514 .atag_offset = 0x100,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100515 .map_io = lpd270_map_io,
Haojian Zhuang6ac6b812010-08-20 15:23:59 +0800516 .nr_irqs = LPD270_NR_IRQS,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100517 .init_irq = lpd270_init_irq,
Eric Miao8a97ae22011-05-18 21:30:04 +0800518 .handle_irq = pxa27x_handle_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700519 .init_time = pxa_timer_init,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100520 .init_machine = lpd270_init,
Russell King271a74f2011-11-04 14:15:53 +0000521 .restart = pxa_restart,
Lennert Buytenheke9937d42006-03-28 21:08:13 +0100522MACHINE_END