From mboxrd@z Thu Jan 1 00:00:00 1970 From: cavokz@gmail.com (Domenico Andreoli) Date: Wed, 2 Feb 2011 22:05:30 +0000 Subject: [PATCH 1/2] ARM: QQ2440 machine architecture In-Reply-To: <20110202220359.GA2808@dandreoli.com> References: <20110202220359.GA2808@dandreoli.com> Message-ID: <20110202220530.GB2808@dandreoli.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org From: Domenico Andreoli Add core architecture support for QQ2440. Signed-off-by: Domenico Andreoli --- MAINTAINERS | 7 arch/arm/mach-s3c2440/Kconfig | 12 arch/arm/mach-s3c2440/Makefile | 1 arch/arm/mach-s3c2440/mach-qq2440.c | 358 ++++++++++++++++++++++++++ 4 files changed, 378 insertions(+) Index: arm-2.6.git/arch/arm/mach-s3c2440/Kconfig =================================================================== --- arm-2.6.git.orig/arch/arm/mach-s3c2440/Kconfig 2011-02-02 21:28:47.000000000 +0000 +++ arm-2.6.git/arch/arm/mach-s3c2440/Kconfig 2011-02-02 22:01:31.000000000 +0000 @@ -189,6 +189,18 @@ Say Y here to select support for the MINI2440. Is a 10cm x 10cm board available via various sources. It can come with a 3.5" or 7" touch LCD. +config MACH_QQ2440 + bool "QQ2440 development board" + select CPU_S3C2440 + select EEPROM_AT24 + select NEW_LEDS + select LEDS_CLASS + select LEDS_TRIGGER + select S3C_DEV_NAND + select S3C_DEV_USB_HOST + help + Say Y here to select support for the QQ2440 + config MACH_RX1950 bool "HP iPAQ rx1950" select CPU_S3C2442 Index: arm-2.6.git/arch/arm/mach-s3c2440/Makefile =================================================================== --- arm-2.6.git.orig/arch/arm/mach-s3c2440/Makefile 2011-02-02 21:28:47.000000000 +0000 +++ arm-2.6.git/arch/arm/mach-s3c2440/Makefile 2011-02-02 21:59:07.000000000 +0000 @@ -33,6 +33,7 @@ obj-$(CONFIG_MACH_NEXCODER_2440) += mach-nexcoder.o obj-$(CONFIG_MACH_AT2440EVB) += mach-at2440evb.o obj-$(CONFIG_MACH_MINI2440) += mach-mini2440.o +obj-$(CONFIG_MACH_QQ2440) += mach-qq2440.o obj-$(CONFIG_MACH_NEO1973_GTA02) += mach-gta02.o obj-$(CONFIG_MACH_RX1950) += mach-rx1950.o Index: arm-2.6.git/arch/arm/mach-s3c2440/mach-qq2440.c =================================================================== --- /dev/null 1970-01-01 00:00:00.000000000 +0000 +++ arm-2.6.git/arch/arm/mach-s3c2440/mach-qq2440.c 2011-02-02 21:59:39.000000000 +0000 @@ -0,0 +1,358 @@ +/* linux/arch/arm/mach-s3c2440/mach-qq2440.c + * + * Copyright (c) 2011 Domenico Andreoli + * Based on mach-mini2440.c by Ramax Lo + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. +*/ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#include +#include +#include +#include + +#include + +static struct map_desc qq2440_iodesc[] __initdata = { + /* nothing to declare, move along */ +}; + +#define UCON S3C2410_UCON_DEFAULT +#define ULCON (S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB) +#define UFCON (S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE) + +static struct s3c2410_uartcfg qq2440_uartcfgs[] __initdata = { + [0] = { + .hwport = 0, + .flags = 0, + .ucon = UCON, + .ulcon = ULCON, + .ufcon = UFCON, + }, + [1] = { + .hwport = 1, + .flags = 0, + .ucon = UCON, + .ulcon = ULCON, + .ufcon = UFCON, + }, + [2] = { + .hwport = 2, + .flags = 0, + .ucon = UCON, + .ulcon = ULCON, + .ufcon = UFCON, + }, +}; + +/* UDC */ + +static void qq2440_udc_pullup(enum s3c2410_udc_cmd_e cmd) +{ + pr_debug("udc: pullup(%d)\n", cmd); + + switch (cmd) { + case S3C2410_UDC_P_ENABLE: + gpio_set_value(S3C2410_GPG(12), 1); + break; + case S3C2410_UDC_P_DISABLE: + gpio_set_value(S3C2410_GPG(12), 0); + break; + case S3C2410_UDC_P_RESET: + break; + default: + break; + } +} + +static struct s3c2410_udc_mach_info qq2440_udc_cfg __initdata = { + .udc_command = qq2440_udc_pullup, +}; + +/* MMC/SD */ + +static struct s3c24xx_mci_pdata qq2440_mmc_cfg __initdata = { + .gpio_detect = S3C2410_GPG(8), + .gpio_wprotect = S3C2410_GPH(8), + .set_power = NULL, + .ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34, +}; + +/* NAND */ + +static struct mtd_partition qq2440_default_nand_part[] __initdata = { + [0] = { + .name = "vivi", + .size = SZ_128K, + .offset = 0, + }, + [1] = { + .name = "eboot", + .size = SZ_128K, + .offset = SZ_128K, + }, + [2] = { + .name = "param", + .size = SZ_64K, + .offset = SZ_256K, + }, + [3] = { + .name = "kernel", + .size = 0x00200000, + .offset = SZ_256K + SZ_64K, + }, + [4] = { + .name = "root", + .size = MTDPART_SIZ_FULL, + .offset = SZ_256K + SZ_64K + 0x00200000, + }, +}; + +static struct s3c2410_nand_set qq2440_nand_sets[] __initdata = { + [0] = { + .name = "nand", + .nr_chips = 1, + .nr_partitions = ARRAY_SIZE(qq2440_default_nand_part), + .partitions = qq2440_default_nand_part, + }, +}; + +static struct s3c2410_platform_nand qq2440_nand_info __initdata = { + .tacls = 0, + .twrph0 = 25, + .twrph1 = 15, + .nr_sets = ARRAY_SIZE(qq2440_nand_sets), + .sets = qq2440_nand_sets, + .ignore_unset_ecc = 1, +}; + +/* KEYS */ + +static struct gpio_keys_button qq2440_buttons[] = { + { + .gpio = S3C2410_GPG(11), /* K1 */ + .code = KEY_F1, + .desc = "Button 1", + .active_low = 1, + }, + { + .gpio = S3C2410_GPG(3), /* K2 */ + .code = KEY_F2, + .desc = "Button 2", + .active_low = 1, + }, + { + .gpio = S3C2410_GPF(2), /* K3 */ + .code = KEY_F3, + .desc = "Button 3", + .active_low = 1, + }, + { + .gpio = S3C2410_GPF(0), /* K4 */ + .code = KEY_F4, + .desc = "Button 4", + .active_low = 1, + }, +}; + +static struct gpio_keys_platform_data qq2440_button_data = { + .buttons = qq2440_buttons, + .nbuttons = ARRAY_SIZE(qq2440_buttons), +}; + +static struct platform_device qq2440_button_device = { + .name = "gpio-keys", + .id = -1, + .dev = { + .platform_data = &qq2440_button_data, + } +}; + +/* LEDS */ + +static struct s3c24xx_led_platdata qq2440_led1_pdata = { + .name = "led1", + .gpio = S3C2410_GPB(5), + .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, + .def_trigger = "heartbeat", +}; + +static struct s3c24xx_led_platdata qq2440_led2_pdata = { + .name = "led2", + .gpio = S3C2410_GPB(6), + .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, + .def_trigger = "nand-disk", +}; + +static struct s3c24xx_led_platdata qq2440_led3_pdata = { + .name = "led3", + .gpio = S3C2410_GPB(7), + .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, + .def_trigger = "mmc0", +}; + +static struct s3c24xx_led_platdata qq2440_led4_pdata = { + .name = "led4", + .gpio = S3C2410_GPB(8), + .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, + .def_trigger = "", +}; + +static struct platform_device qq2440_led1 = { + .name = "s3c24xx_led", + .id = 1, + .dev = { + .platform_data = &qq2440_led1_pdata, + }, +}; + +static struct platform_device qq2440_led2 = { + .name = "s3c24xx_led", + .id = 2, + .dev = { + .platform_data = &qq2440_led2_pdata, + }, +}; + +static struct platform_device qq2440_led3 = { + .name = "s3c24xx_led", + .id = 3, + .dev = { + .platform_data = &qq2440_led3_pdata, + }, +}; + +static struct platform_device qq2440_led4 = { + .name = "s3c24xx_led", + .id = 4, + .dev = { + .platform_data = &qq2440_led4_pdata, + }, +}; + +/* AUDIO */ + +static struct s3c24xx_uda134x_platform_data qq2440_audio_pins = { + .l3_clk = S3C2410_GPB(4), + .l3_mode = S3C2410_GPB(2), + .l3_data = S3C2410_GPB(3), + .model = UDA134X_UDA1341 +}; + +static struct platform_device qq2440_audio = { + .name = "s3c24xx_uda134x", + .id = 0, + .dev = { + .platform_data = &qq2440_audio_pins, + }, +}; + +/* I2C */ + +static struct at24_platform_data at24c08 = { + .byte_len = SZ_8K / 8, + .page_size = 16, +}; + +static struct i2c_board_info qq2440_i2c_devs[] __initdata = { + { + I2C_BOARD_INFO("24c08", 0x50), + .platform_data = &at24c08, + }, +}; + +static struct platform_device *qq2440_devices[] __initdata = { + &s3c_device_ohci, + &s3c_device_wdt, + &s3c_device_i2c0, + &s3c_device_rtc, + &s3c_device_usbgadget, + &qq2440_led1, + &qq2440_led2, + &qq2440_led3, + &qq2440_led4, + &qq2440_button_device, + &s3c_device_nand, + &s3c_device_sdi, + &s3c_device_iis, + &qq2440_audio, +}; + +static void __init qq2440_map_io(void) +{ + s3c24xx_init_io(qq2440_iodesc, ARRAY_SIZE(qq2440_iodesc)); + s3c24xx_init_clocks(12000000); + s3c24xx_init_uarts(qq2440_uartcfgs, ARRAY_SIZE(qq2440_uartcfgs)); +} + +static void __init qq2440_init(void) +{ + int i; + + /* Make sure the D+ pullup pin is output */ + WARN_ON(gpio_request(S3C2410_GPG(12), "udc pup")); + gpio_direction_output(S3C2410_GPG(12), 0); + + /* mark the key as input, without pullups (there is one on the board) */ + for (i = 0; i < ARRAY_SIZE(qq2440_buttons); i++) { + s3c_gpio_setpull(qq2440_buttons[i].gpio, S3C_GPIO_PULL_UP); + s3c_gpio_cfgpin(qq2440_buttons[i].gpio, S3C2410_GPIO_INPUT); + } + + s3c24xx_udc_set_platdata(&qq2440_udc_cfg); + s3c24xx_mci_set_platdata(&qq2440_mmc_cfg); + s3c_nand_set_platdata(&qq2440_nand_info); + s3c_i2c0_set_platdata(NULL); + + i2c_register_board_info(0, qq2440_i2c_devs, ARRAY_SIZE(qq2440_i2c_devs)); + + platform_add_devices(qq2440_devices, ARRAY_SIZE(qq2440_devices)); +} + +MACHINE_START(QQ2440, "QQ2440") + .boot_params = S3C2410_SDRAM_PA + 0x100, + .map_io = qq2440_map_io, + .init_machine = qq2440_init, + .init_irq = s3c24xx_init_irq, + .timer = &s3c24xx_timer, +MACHINE_END Index: arm-2.6.git/MAINTAINERS =================================================================== --- arm-2.6.git.orig/MAINTAINERS 2011-02-02 21:28:47.000000000 +0000 +++ arm-2.6.git/MAINTAINERS 2011-02-02 21:59:07.000000000 +0000 @@ -945,6 +945,13 @@ W: http://www.arm.linux.org.uk/ S: Maintained +ARM/QQ2440 MACHINE SUPPORT +M: Domenico Andreoli +L: linux-arm-kernel at lists.infradead.org (moderated for non-subscribers) +S: Maintained +F: arch/arm/mach-s3c2440/include/mach/qq2440.h +F: arch/arm/mach-s3c2440/mach-qq2440.c + ARM/RADISYS ENP2611 MACHINE SUPPORT M: Lennert Buytenhek L: linux-arm-kernel at lists.infradead.org (moderated for non-subscribers)