2 * linux/arch/mips/jz4740/board-qi_lb60.c
4 * QI_LB60 board support
6 * Copyright (c) 2009 Qi Hardware inc.,
7 * Author: Xiangfu Liu <xiangfu@qi-hardware.com>
8 * Copyright 2010, Lars-Peter Clausen <lars@metafoo.de>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 or later
12 * as published by the Free Software Foundation.
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/gpio.h>
18 #include <linux/gpio/machine.h>
20 #include <linux/input.h>
21 #include <linux/gpio_keys.h>
22 #include <linux/input/matrix_keypad.h>
23 #include <linux/spi/spi.h>
24 #include <linux/spi/spi_gpio.h>
25 #include <linux/pinctrl/machine.h>
26 #include <linux/pinctrl/pinconf-generic.h>
27 #include <linux/power_supply.h>
28 #include <linux/power/jz4740-battery.h>
29 #include <linux/power/gpio-charger.h>
30 #include <linux/pwm.h>
32 #include <linux/platform_data/jz4740/jz4740_nand.h>
34 #include <asm/mach-jz4740/gpio.h>
35 #include <asm/mach-jz4740/jz4740_fb.h>
36 #include <asm/mach-jz4740/jz4740_mmc.h>
38 #include <linux/regulator/fixed.h>
39 #include <linux/regulator/machine.h>
41 #include <asm/mach-jz4740/platform.h>
46 #define QI_LB60_GPIO_SD_VCC_EN_N JZ_GPIO_PORTD(2)
48 #define QI_LB60_GPIO_KEYOUT(x) (JZ_GPIO_PORTC(10) + (x))
49 #define QI_LB60_GPIO_KEYIN(x) (JZ_GPIO_PORTD(18) + (x))
50 #define QI_LB60_GPIO_KEYIN8 JZ_GPIO_PORTD(26)
54 /* Early prototypes of the QI LB60 had only 1GB of NAND.
55 * In order to support these devices as well the partition and ecc layout is
56 * initialized depending on the NAND size */
57 static struct mtd_partition qi_lb60_partitions_1gb[] = {
59 .name = "NAND BOOT partition",
60 .offset = 0 * 0x100000,
64 .name = "NAND KERNEL partition",
65 .offset = 4 * 0x100000,
69 .name = "NAND ROOTFS partition",
70 .offset = 8 * 0x100000,
71 .size = (504 + 512) * 0x100000,
75 static struct mtd_partition qi_lb60_partitions_2gb[] = {
77 .name = "NAND BOOT partition",
78 .offset = 0 * 0x100000,
82 .name = "NAND KERNEL partition",
83 .offset = 4 * 0x100000,
87 .name = "NAND ROOTFS partition",
88 .offset = 8 * 0x100000,
89 .size = (504 + 512 + 1024) * 0x100000,
93 static int qi_lb60_ooblayout_ecc(struct mtd_info *mtd, int section,
94 struct mtd_oob_region *oobregion)
99 oobregion->length = 36;
100 oobregion->offset = 6;
102 if (mtd->oobsize == 128) {
103 oobregion->length *= 2;
104 oobregion->offset *= 2;
110 static int qi_lb60_ooblayout_free(struct mtd_info *mtd, int section,
111 struct mtd_oob_region *oobregion)
113 int eccbytes = 36, eccoff = 6;
118 if (mtd->oobsize == 128) {
124 oobregion->offset = 2;
125 oobregion->length = eccoff - 2;
127 oobregion->offset = eccoff + eccbytes;
128 oobregion->length = mtd->oobsize - oobregion->offset;
134 static const struct mtd_ooblayout_ops qi_lb60_ooblayout_ops = {
135 .ecc = qi_lb60_ooblayout_ecc,
136 .free = qi_lb60_ooblayout_free,
139 static void qi_lb60_nand_ident(struct platform_device *pdev,
140 struct mtd_info *mtd, struct mtd_partition **partitions,
143 struct nand_chip *chip = mtd_to_nand(mtd);
145 if (chip->page_shift == 12) {
146 *partitions = qi_lb60_partitions_2gb;
147 *num_partitions = ARRAY_SIZE(qi_lb60_partitions_2gb);
149 *partitions = qi_lb60_partitions_1gb;
150 *num_partitions = ARRAY_SIZE(qi_lb60_partitions_1gb);
153 mtd_set_ooblayout(mtd, &qi_lb60_ooblayout_ops);
156 static struct jz_nand_platform_data qi_lb60_nand_pdata = {
157 .ident_callback = qi_lb60_nand_ident,
161 static struct gpiod_lookup_table qi_lb60_nand_gpio_table = {
162 .dev_id = "jz4740-nand.0",
164 GPIO_LOOKUP("GPIOC", 30, "busy", 0),
172 #define KEY_QI_QI KEY_F13
173 #define KEY_QI_UPRED KEY_RIGHTALT
174 #define KEY_QI_VOLUP KEY_VOLUMEUP
175 #define KEY_QI_VOLDOWN KEY_VOLUMEDOWN
176 #define KEY_QI_FN KEY_LEFTCTRL
178 static const uint32_t qi_lb60_keymap[] = {
179 KEY(0, 0, KEY_F1), /* S2 */
180 KEY(0, 1, KEY_F2), /* S3 */
181 KEY(0, 2, KEY_F3), /* S4 */
182 KEY(0, 3, KEY_F4), /* S5 */
183 KEY(0, 4, KEY_F5), /* S6 */
184 KEY(0, 5, KEY_F6), /* S7 */
185 KEY(0, 6, KEY_F7), /* S8 */
187 KEY(1, 0, KEY_Q), /* S10 */
188 KEY(1, 1, KEY_W), /* S11 */
189 KEY(1, 2, KEY_E), /* S12 */
190 KEY(1, 3, KEY_R), /* S13 */
191 KEY(1, 4, KEY_T), /* S14 */
192 KEY(1, 5, KEY_Y), /* S15 */
193 KEY(1, 6, KEY_U), /* S16 */
194 KEY(1, 7, KEY_I), /* S17 */
195 KEY(2, 0, KEY_A), /* S18 */
196 KEY(2, 1, KEY_S), /* S19 */
197 KEY(2, 2, KEY_D), /* S20 */
198 KEY(2, 3, KEY_F), /* S21 */
199 KEY(2, 4, KEY_G), /* S22 */
200 KEY(2, 5, KEY_H), /* S23 */
201 KEY(2, 6, KEY_J), /* S24 */
202 KEY(2, 7, KEY_K), /* S25 */
203 KEY(3, 0, KEY_ESC), /* S26 */
204 KEY(3, 1, KEY_Z), /* S27 */
205 KEY(3, 2, KEY_X), /* S28 */
206 KEY(3, 3, KEY_C), /* S29 */
207 KEY(3, 4, KEY_V), /* S30 */
208 KEY(3, 5, KEY_B), /* S31 */
209 KEY(3, 6, KEY_N), /* S32 */
210 KEY(3, 7, KEY_M), /* S33 */
211 KEY(4, 0, KEY_TAB), /* S34 */
212 KEY(4, 1, KEY_CAPSLOCK), /* S35 */
213 KEY(4, 2, KEY_BACKSLASH), /* S36 */
214 KEY(4, 3, KEY_APOSTROPHE), /* S37 */
215 KEY(4, 4, KEY_COMMA), /* S38 */
216 KEY(4, 5, KEY_DOT), /* S39 */
217 KEY(4, 6, KEY_SLASH), /* S40 */
218 KEY(4, 7, KEY_UP), /* S41 */
219 KEY(5, 0, KEY_O), /* S42 */
220 KEY(5, 1, KEY_L), /* S43 */
221 KEY(5, 2, KEY_EQUAL), /* S44 */
222 KEY(5, 3, KEY_QI_UPRED), /* S45 */
223 KEY(5, 4, KEY_SPACE), /* S46 */
224 KEY(5, 5, KEY_QI_QI), /* S47 */
225 KEY(5, 6, KEY_RIGHTCTRL), /* S48 */
226 KEY(5, 7, KEY_LEFT), /* S49 */
227 KEY(6, 0, KEY_F8), /* S50 */
228 KEY(6, 1, KEY_P), /* S51 */
229 KEY(6, 2, KEY_BACKSPACE),/* S52 */
230 KEY(6, 3, KEY_ENTER), /* S53 */
231 KEY(6, 4, KEY_QI_VOLUP), /* S54 */
232 KEY(6, 5, KEY_QI_VOLDOWN), /* S55 */
233 KEY(6, 6, KEY_DOWN), /* S56 */
234 KEY(6, 7, KEY_RIGHT), /* S57 */
236 KEY(7, 0, KEY_LEFTSHIFT), /* S58 */
237 KEY(7, 1, KEY_LEFTALT), /* S59 */
238 KEY(7, 2, KEY_QI_FN), /* S60 */
241 static const struct matrix_keymap_data qi_lb60_keymap_data = {
242 .keymap = qi_lb60_keymap,
243 .keymap_size = ARRAY_SIZE(qi_lb60_keymap),
246 static const unsigned int qi_lb60_keypad_cols[] = {
247 QI_LB60_GPIO_KEYOUT(0),
248 QI_LB60_GPIO_KEYOUT(1),
249 QI_LB60_GPIO_KEYOUT(2),
250 QI_LB60_GPIO_KEYOUT(3),
251 QI_LB60_GPIO_KEYOUT(4),
252 QI_LB60_GPIO_KEYOUT(5),
253 QI_LB60_GPIO_KEYOUT(6),
254 QI_LB60_GPIO_KEYOUT(7),
257 static const unsigned int qi_lb60_keypad_rows[] = {
258 QI_LB60_GPIO_KEYIN(0),
259 QI_LB60_GPIO_KEYIN(1),
260 QI_LB60_GPIO_KEYIN(2),
261 QI_LB60_GPIO_KEYIN(3),
262 QI_LB60_GPIO_KEYIN(4),
263 QI_LB60_GPIO_KEYIN(5),
264 QI_LB60_GPIO_KEYIN(6),
268 static struct matrix_keypad_platform_data qi_lb60_pdata = {
269 .keymap_data = &qi_lb60_keymap_data,
270 .col_gpios = qi_lb60_keypad_cols,
271 .row_gpios = qi_lb60_keypad_rows,
272 .num_col_gpios = ARRAY_SIZE(qi_lb60_keypad_cols),
273 .num_row_gpios = ARRAY_SIZE(qi_lb60_keypad_rows),
274 .col_scan_delay_us = 10,
280 static struct platform_device qi_lb60_keypad = {
281 .name = "matrix-keypad",
284 .platform_data = &qi_lb60_pdata,
289 static struct fb_videomode qi_lb60_video_modes[] = {
302 .vmode = FB_VMODE_NONINTERLACED,
306 static struct jz4740_fb_platform_data qi_lb60_fb_pdata = {
309 .num_modes = ARRAY_SIZE(qi_lb60_video_modes),
310 .modes = qi_lb60_video_modes,
312 .lcd_type = JZ_LCD_TYPE_8BIT_SERIAL,
313 .pixclk_falling_edge = 1,
316 struct spi_gpio_platform_data qi_lb60_spigpio_platform_data = {
320 static struct platform_device qi_lb60_spigpio_device = {
324 .platform_data = &qi_lb60_spigpio_platform_data,
328 static struct gpiod_lookup_table qi_lb60_spigpio_gpio_table = {
329 .dev_id = "spi_gpio",
331 GPIO_LOOKUP("GPIOC", 23,
332 "sck", GPIO_ACTIVE_HIGH),
333 GPIO_LOOKUP("GPIOC", 22,
334 "mosi", GPIO_ACTIVE_HIGH),
335 GPIO_LOOKUP("GPIOC", 21,
336 "cs", GPIO_ACTIVE_HIGH),
341 static struct spi_board_info qi_lb60_spi_board_info[] = {
343 .modalias = "ili8960",
346 .max_speed_hz = 30 * 1000,
352 static struct jz_battery_platform_data qi_lb60_battery_pdata = {
353 .gpio_charge = JZ_GPIO_PORTC(27),
354 .gpio_charge_active_low = 1,
357 .technology = POWER_SUPPLY_TECHNOLOGY_LIPO,
358 .voltage_max_design = 4200000,
359 .voltage_min_design = 3600000,
363 /* GPIO Key: power */
364 static struct gpio_keys_button qi_lb60_gpio_keys_buttons[] = {
367 .gpio = JZ_GPIO_PORTD(29),
374 static struct gpio_keys_platform_data qi_lb60_gpio_keys_data = {
375 .nbuttons = ARRAY_SIZE(qi_lb60_gpio_keys_buttons),
376 .buttons = qi_lb60_gpio_keys_buttons,
379 static struct platform_device qi_lb60_gpio_keys = {
383 .platform_data = &qi_lb60_gpio_keys_data,
387 static struct jz4740_mmc_platform_data qi_lb60_mmc_pdata = {
388 .gpio_power = QI_LB60_GPIO_SD_VCC_EN_N,
389 .power_active_low = 1,
392 static struct gpiod_lookup_table qi_lb60_mmc_gpio_table = {
393 .dev_id = "jz4740-mmc.0",
395 GPIO_LOOKUP("GPIOD", 0, "cd", GPIO_ACTIVE_HIGH),
401 static struct pwm_lookup qi_lb60_pwm_lookup[] = {
402 PWM_LOOKUP("jz4740-pwm", 4, "pwm-beeper", NULL, 0,
403 PWM_POLARITY_NORMAL),
406 static struct platform_device qi_lb60_pwm_beeper = {
407 .name = "pwm-beeper",
412 static char *qi_lb60_batteries[] = {
416 static struct gpio_charger_platform_data qi_lb60_charger_pdata = {
418 .type = POWER_SUPPLY_TYPE_USB,
419 .gpio = JZ_GPIO_PORTD(28),
420 .gpio_active_low = 1,
421 .supplied_to = qi_lb60_batteries,
422 .num_supplicants = ARRAY_SIZE(qi_lb60_batteries),
425 static struct platform_device qi_lb60_charger_device = {
426 .name = "gpio-charger",
428 .platform_data = &qi_lb60_charger_pdata,
433 static struct platform_device qi_lb60_audio_device = {
434 .name = "qi-lb60-audio",
438 static struct gpiod_lookup_table qi_lb60_audio_gpio_table = {
439 .dev_id = "qi-lb60-audio",
441 GPIO_LOOKUP("GPIOB", 29, "snd", 0),
442 GPIO_LOOKUP("GPIOD", 4, "amp", 0),
447 static struct platform_device *jz_platform_devices[] __initdata = {
449 &jz4740_udc_xceiv_device,
453 &qi_lb60_spigpio_device,
454 &jz4740_framebuffer_device,
457 &jz4740_codec_device,
463 &qi_lb60_charger_device,
464 &qi_lb60_audio_device,
467 static unsigned long pin_cfg_bias_disable[] = {
468 PIN_CONFIG_BIAS_DISABLE,
471 static struct pinctrl_map pin_map[] __initdata = {
472 /* NAND pin configuration */
473 PIN_MAP_MUX_GROUP_DEFAULT("jz4740-nand",
474 "10010000.pin-controller", "nand-cs1", "nand"),
476 /* fbdev pin configuration */
477 PIN_MAP_MUX_GROUP("jz4740-fb", PINCTRL_STATE_DEFAULT,
478 "10010000.pin-controller", "lcd-8bit", "lcd"),
479 PIN_MAP_MUX_GROUP("jz4740-fb", PINCTRL_STATE_SLEEP,
480 "10010000.pin-controller", "lcd-no-pins", "lcd"),
482 /* MMC pin configuration */
483 PIN_MAP_MUX_GROUP_DEFAULT("jz4740-mmc.0",
484 "10010000.pin-controller", "mmc-1bit", "mmc"),
485 PIN_MAP_MUX_GROUP_DEFAULT("jz4740-mmc.0",
486 "10010000.pin-controller", "mmc-4bit", "mmc"),
487 PIN_MAP_CONFIGS_PIN_DEFAULT("jz4740-mmc.0",
488 "10010000.pin-controller", "PD0", pin_cfg_bias_disable),
489 PIN_MAP_CONFIGS_PIN_DEFAULT("jz4740-mmc.0",
490 "10010000.pin-controller", "PD2", pin_cfg_bias_disable),
492 /* PWM pin configuration */
493 PIN_MAP_MUX_GROUP_DEFAULT("jz4740-pwm",
494 "10010000.pin-controller", "pwm4", "pwm4"),
498 static int __init qi_lb60_init_platform_devices(void)
500 jz4740_framebuffer_device.dev.platform_data = &qi_lb60_fb_pdata;
501 jz4740_nand_device.dev.platform_data = &qi_lb60_nand_pdata;
502 jz4740_adc_device.dev.platform_data = &qi_lb60_battery_pdata;
503 jz4740_mmc_device.dev.platform_data = &qi_lb60_mmc_pdata;
505 gpiod_add_lookup_table(&qi_lb60_audio_gpio_table);
506 gpiod_add_lookup_table(&qi_lb60_nand_gpio_table);
507 gpiod_add_lookup_table(&qi_lb60_spigpio_gpio_table);
508 gpiod_add_lookup_table(&qi_lb60_mmc_gpio_table);
510 spi_register_board_info(qi_lb60_spi_board_info,
511 ARRAY_SIZE(qi_lb60_spi_board_info));
513 pwm_add_table(qi_lb60_pwm_lookup, ARRAY_SIZE(qi_lb60_pwm_lookup));
514 pinctrl_register_mappings(pin_map, ARRAY_SIZE(pin_map));
516 return platform_add_devices(jz_platform_devices,
517 ARRAY_SIZE(jz_platform_devices));
521 static int __init qi_lb60_board_setup(void)
523 printk(KERN_INFO "Qi Hardware JZ4740 QI LB60 setup\n");
525 if (qi_lb60_init_platform_devices())
526 panic("Failed to initialize platform devices");
530 arch_initcall(qi_lb60_board_setup);