ramips: rt305x: remove CONFIG_MTD_PARTITION ifdefery from machine files
[openwrt/openwrt.git] / target / linux / ramips / files / arch / mips / ralink / rt305x / mach-omni-emb.c
1 /*
2 * Omnima MiniEMBWiFi board support
3 *
4 * Copyright (C) 2011 Johnathan Boyce <jon.boyce@globalreach.eu.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 */
10
11 #include <linux/init.h>
12 #include <linux/platform_device.h>
13 #include <linux/mtd/mtd.h>
14 #include <linux/mtd/partitions.h>
15 #include <linux/mtd/physmap.h>
16 #include <linux/gpio.h>
17
18 #include <asm/mach-ralink/machine.h>
19 #include <asm/mach-ralink/dev-gpio-buttons.h>
20 #include <asm/mach-ralink/dev-gpio-leds.h>
21 #include <asm/mach-ralink/rt305x.h>
22 #include <asm/mach-ralink/rt305x_regs.h>
23
24 #include "devices.h"
25
26 #define OMNI_EMB_GPIO_BUTTON_RESET 12 /* active low */
27
28 #define OMNI_EMB_BUTTONS_POLL_INTERVAL 20
29
30 #define OMNI_EMB_GPIO_LED_STATUS 9
31 #define OMNI_EMB_GPIO_LED_WLAN 14
32
33 static struct mtd_partition emb_partitions[] = {
34 {
35 .name = "uboot",
36 .offset = 0,
37 .size = 0x030000,
38 }, {
39 .name = "uboot-config",
40 .offset = 0x030000,
41 .size = 0x040000,
42 .mask_flags = MTD_WRITEABLE,
43 }, {
44 .name = "factory",
45 .offset = 0x040000,
46 .size = 0x050000,
47 .mask_flags = MTD_WRITEABLE,
48 }, {
49 .name = "linux",
50 .offset = 0x050000,
51 .size = 0x100000,
52 }, {
53 .name = "rootfs",
54 .offset = 0x150000,
55 .size = 0x6B0000,
56 }, {
57 .name = "firmware",
58 .offset = 0x050000,
59 .size = 0x7B0000,
60 }
61 };
62
63 static struct physmap_flash_data omni_emb_flash_data = {
64 .nr_parts = ARRAY_SIZE(emb_partitions),
65 .parts = emb_partitions,
66 };
67
68 static struct gpio_led omni_emb_leds_gpio[] __initdata = {
69 {
70 .name = "emb:green:status",
71 .gpio = OMNI_EMB_GPIO_LED_STATUS,
72 .active_low = 1,
73 }, {
74 .name = "emb:green:wlan",
75 .gpio = OMNI_EMB_GPIO_LED_WLAN,
76 .active_low = 1,
77 }
78 };
79
80 static struct gpio_button omni_emb_gpio_buttons[] __initdata = {
81 {
82 .desc = "reset",
83 .type = EV_KEY,
84 .code = KEY_RESTART,
85 .threshold = 3,
86 .gpio = OMNI_EMB_GPIO_BUTTON_RESET,
87 .active_low = 1,
88 }
89 };
90
91 static void __init omni_emb_init(void)
92 {
93 rt305x_esw_data.vlan_config = RT305X_ESW_VLAN_CONFIG_LLLLW;
94
95 rt305x_gpio_init(RT305X_GPIO_MODE_GPIO << RT305X_GPIO_MODE_UART0_SHIFT);
96
97 ramips_register_gpio_leds(-1, ARRAY_SIZE(omni_emb_leds_gpio),
98 omni_emb_leds_gpio);
99 ramips_register_gpio_buttons(-1, OMNI_EMB_BUTTONS_POLL_INTERVAL,
100 ARRAY_SIZE(omni_emb_gpio_buttons),
101 omni_emb_gpio_buttons);
102
103 rt305x_register_flash(0, &omni_emb_flash_data);
104 rt305x_register_ethernet();
105 rt305x_register_wifi();
106 rt305x_register_wdt();
107 rt305x_register_usb();
108 }
109
110 MIPS_MACHINE(RAMIPS_MACH_OMNI_EMB, "OMNI-EMB", "Omnima MiniEMBWiFi",
111 omni_emb_init);