mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-25 05:13:19 +02:00
[lantiq] fixes zyxel p2601hnfx
moves the linux partition, removes the config partition and the buttons settings have small adjustments. Signed-off-by: Luka Perkov <openwrt@lukaperkov.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31909 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
2b03aafe31
commit
f72e7bf12d
@ -22,13 +22,13 @@
|
|||||||
|
|
||||||
#include <lantiq_soc.h>
|
#include <lantiq_soc.h>
|
||||||
#include <lantiq_platform.h>
|
#include <lantiq_platform.h>
|
||||||
|
#include <dev-gpio-leds.h>
|
||||||
|
#include <dev-gpio-buttons.h>
|
||||||
|
|
||||||
#include "../machtypes.h"
|
#include "../machtypes.h"
|
||||||
#include "devices.h"
|
#include "devices.h"
|
||||||
#include "../dev-gpio-leds.h"
|
|
||||||
#include "dev-dwc_otg.h"
|
#include "dev-dwc_otg.h"
|
||||||
|
|
||||||
|
|
||||||
static struct mtd_partition p2601hnfx_partitions[] __initdata =
|
static struct mtd_partition p2601hnfx_partitions[] __initdata =
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
@ -36,20 +36,15 @@ static struct mtd_partition p2601hnfx_partitions[] __initdata =
|
|||||||
.offset = 0x0,
|
.offset = 0x0,
|
||||||
.size = 0x20000,
|
.size = 0x20000,
|
||||||
},
|
},
|
||||||
/* {
|
{
|
||||||
.name = "uboot_env",
|
.name = "uboot_env",
|
||||||
.offset = 0x20000,
|
.offset = 0x20000,
|
||||||
.size = 0x20000,
|
.size = 0x20000,
|
||||||
},
|
},
|
||||||
*/ {
|
|
||||||
.name = "linux",
|
|
||||||
.offset = 0x020000,
|
|
||||||
.size = 0xfc0000,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
.name = "board_config",
|
.name = "linux",
|
||||||
.offset = 0xfe0000,
|
.offset = 0x40000,
|
||||||
.size = 0x20000,
|
.size = 0xfc0000,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -58,22 +53,36 @@ static struct physmap_flash_data p2601hnfx_flash_data __initdata = {
|
|||||||
.parts = p2601hnfx_partitions,
|
.parts = p2601hnfx_partitions,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct gpio_led p2601hnfx_leds_gpio[] __initdata = {
|
static struct gpio_led
|
||||||
{ .name = "soc:red:power", .gpio = 29, .active_low = 1, .default_trigger = "default-off" },
|
p2601hnfx_leds_gpio[] __initdata = {
|
||||||
{ .name = "soc:yellow:phone", .gpio = 64, .active_low = 1, .default_trigger = "default-off" },
|
{ .name = "soc:yellow:phone", .gpio = 216, .active_low = 1 },
|
||||||
{ .name = "soc:green:phone", .gpio = 65, .active_low = 1, .default_trigger = "default-off" },
|
{ .name = "soc:green:phone", .gpio = 217, .active_low = 1 },
|
||||||
{ .name = "soc:yellow:wlan", .gpio = 66, .active_low = 1, .default_trigger = "default-off" },
|
{ .name = "soc:yellow:wifi", .gpio = 218, .active_low = 1 },
|
||||||
{ .name = "soc:green:power", .gpio = 67, .active_low = 1, .default_trigger = "default-on" },
|
{ .name = "soc:green:power", .gpio = 219, .active_low = 1 },
|
||||||
{ .name = "soc:red:internet", .gpio = 68, .active_low = 1, .default_trigger = "default-off" },
|
{ .name = "soc:red:internet", .gpio = 220, .active_low = 1 },
|
||||||
{ .name = "soc:green:internet", .gpio = 69, .active_low = 1, .default_trigger = "default-off" },
|
{ .name = "soc:green:internet", .gpio = 221, .active_low = 1 },
|
||||||
{ .name = "soc:green:dsl", .gpio = 70, .active_low = 1, .default_trigger = "default-off" },
|
{ .name = "soc:green:dsl", .gpio = 222, .active_low = 1 },
|
||||||
{ .name = "soc:green:wlan", .gpio = 71, .active_low = 1, .default_trigger = "default-off" },
|
{ .name = "soc:green:wifi", .gpio = 223, .active_low = 1 },
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct gpio_button
|
static struct gpio_keys_button
|
||||||
p2601hnfx_gpio_buttons[] /* __initdata */ = {
|
p2601hnfx_gpio_keys[] __initdata = {
|
||||||
{ .desc = "reset", .type = EV_KEY, .code = BTN_0, .threshold = 3, .gpio = 53, .active_low = 1, },
|
{
|
||||||
{ .desc = "wlan", .type = EV_KEY, .code = BTN_1, .threshold = 1, .gpio = 54, .active_low = 1, },
|
.desc = "reset",
|
||||||
|
.type = EV_KEY,
|
||||||
|
.code = BTN_0,
|
||||||
|
.debounce_interval = LTQ_KEYS_DEBOUNCE_INTERVAL,
|
||||||
|
.gpio = 53,
|
||||||
|
.active_low = 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.desc = "wifi",
|
||||||
|
.type = EV_KEY,
|
||||||
|
.code = BTN_1,
|
||||||
|
.debounce_interval = LTQ_KEYS_DEBOUNCE_INTERVAL,
|
||||||
|
.gpio = 54,
|
||||||
|
.active_low = 1,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct ltq_eth_data ltq_eth_data = {
|
static struct ltq_eth_data ltq_eth_data = {
|
||||||
@ -86,9 +95,9 @@ p2601hnfx_init(void)
|
|||||||
#define P2601HNFX_USB 9
|
#define P2601HNFX_USB 9
|
||||||
|
|
||||||
ltq_register_gpio_stp();
|
ltq_register_gpio_stp();
|
||||||
ltq_add_device_gpio_leds(-1, ARRAY_SIZE(p2601hnfx_leds_gpio), p2601hnfx_leds_gpio);
|
|
||||||
ltq_register_gpio_buttons(p2601hnfx_gpio_buttons, ARRAY_SIZE(p2601hnfx_gpio_buttons));
|
|
||||||
ltq_register_nor(&p2601hnfx_flash_data);
|
ltq_register_nor(&p2601hnfx_flash_data);
|
||||||
|
ltq_add_device_gpio_leds(-1, ARRAY_SIZE(p2601hnfx_leds_gpio), p2601hnfx_leds_gpio);
|
||||||
|
ltq_register_gpio_keys_polled(-1, LTQ_KEYS_POLL_INTERVAL, ARRAY_SIZE(p2601hnfx_gpio_keys), p2601hnfx_gpio_keys);
|
||||||
ltq_register_etop(<q_eth_data);
|
ltq_register_etop(<q_eth_data);
|
||||||
xway_register_dwc(P2601HNFX_USB);
|
xway_register_dwc(P2601HNFX_USB);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user