2 * Support for Wiliboard WBD-222
4 * Copyright (C) 2009 Imre Kaloz <kaloz@openwrt.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/leds.h>
15 #include <linux/input.h>
16 #include <linux/skbuff.h>
17 #include <linux/gpio_keys.h>
18 #include <linux/mdio-gpio.h>
19 #include <linux/mtd/mtd.h>
20 #include <linux/mtd/partitions.h>
21 #include <asm/mach-types.h>
22 #include <asm/mach/arch.h>
23 #include <asm/mach/time.h>
28 static struct gpio_keys_button wbd222_keys[] = {
38 static struct gpio_keys_platform_data wbd222_keys_data = {
39 .buttons = wbd222_keys,
40 .nbuttons = ARRAY_SIZE(wbd222_keys),
43 static struct platform_device wbd222_keys_device = {
47 .platform_data = &wbd222_keys_data,
51 static struct gpio_led wbd222_leds[] = {
70 static struct gpio_led_platform_data wbd222_leds_data = {
71 .num_leds = ARRAY_SIZE(wbd222_leds),
75 static struct platform_device wbd222_leds_device = {
79 .platform_data = &wbd222_leds_data,
83 static struct sys_timer wbd222_timer = {
84 .init = gemini_timer_init,
87 static struct mtd_partition wbd222_partitions[] = {
92 .mask_flags = MTD_WRITEABLE,
105 .mask_flags = MTD_WRITEABLE,
110 .mask_flags = MTD_WRITEABLE,
115 .mask_flags = MTD_WRITEABLE,
118 #define wbd222_num_partitions ARRAY_SIZE(wbd222_partitions)
120 static void __init wbd222_init(void)
123 platform_register_uart();
124 platform_register_pflash(SZ_8M, wbd222_partitions,
125 wbd222_num_partitions);
126 platform_device_register(&wbd222_leds_device);
127 platform_device_register(&wbd222_keys_device);
128 platform_register_rtc();
131 MACHINE_START(WBD222, "Wiliboard WBD-222")
132 .boot_params = 0x100,
133 .map_io = gemini_map_io,
134 .init_irq = gemini_init_irq,
135 .timer = &wbd222_timer,
136 .init_machine = wbd222_init,