mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
* bump kernel to 2.6.35.8 * merge arcadyn mach files * fixes ar9 * adds hack for tapi drivers git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23836 3c298f89-4303-0410-b956-a3cf2f4a3e73
187 lines
5.2 KiB
C
187 lines
5.2 KiB
C
#include <linux/init.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/leds.h>
|
|
#include <linux/gpio.h>
|
|
#include <linux/gpio_buttons.h>
|
|
#include <linux/mtd/mtd.h>
|
|
#include <linux/mtd/partitions.h>
|
|
#include <linux/mtd/physmap.h>
|
|
#include <linux/input.h>
|
|
#include <linux/etherdevice.h>
|
|
|
|
#include <machine.h>
|
|
#include <ifxmips.h>
|
|
#include <ifxmips_prom.h>
|
|
|
|
#include "arcaydian.h"
|
|
#include "devices.h"
|
|
|
|
#define ARV45XX_BRN 0x3f0000
|
|
#define ARV45XX_BRN_MAC 0x3f0016
|
|
|
|
#define ARV45XX_EBU_GPIO_START 0x14000000
|
|
#define ARV45XX_EBU_GPIO_SIZE 0x00001000
|
|
|
|
#define ARV4520_LATCH_SWITCH (1 << 10)
|
|
|
|
#ifdef CONFIG_MTD_PARTITIONS
|
|
static struct mtd_partition arv45xx_partitions[] =
|
|
{
|
|
{
|
|
.name = "uboot",
|
|
.offset = 0x0,
|
|
.size = 0x20000,
|
|
},
|
|
{
|
|
.name = "uboot_env",
|
|
.offset = 0x20000,
|
|
.size = 0x0,
|
|
},
|
|
{
|
|
.name = "kernel",
|
|
.offset = 0x0,
|
|
.size = 0x0,
|
|
},
|
|
{
|
|
.name = "rootfs",
|
|
.offset = 0x0,
|
|
.size = 0x0,
|
|
},
|
|
{
|
|
.name = "board_config",
|
|
.offset = 0x3f0000,
|
|
.size = 0x10000,
|
|
},
|
|
{
|
|
.name = "openwrt",
|
|
.offset = 0x0,
|
|
.size = 0x0,
|
|
},
|
|
};
|
|
#endif
|
|
|
|
static struct physmap_flash_data arv45xx_flash_data = {
|
|
#ifdef CONFIG_MTD_PARTITIONS
|
|
.nr_parts = ARRAY_SIZE(arv45xx_partitions),
|
|
.parts = arv45xx_partitions,
|
|
#endif
|
|
};
|
|
|
|
static struct gpio_led
|
|
arv4518_leds_gpio[] __initdata = {
|
|
{ .name = "ifx:blue:power", .gpio = 3, .active_low = 1, },
|
|
{ .name = "ifx:blue:adsl", .gpio = 4, .active_low = 1, },
|
|
{ .name = "ifx:blue:internet", .gpio = 5, .active_low = 1, },
|
|
{ .name = "ifx:red:power", .gpio = 6, .active_low = 1, },
|
|
{ .name = "ifx:yello:wps", .gpio = 7, .active_low = 1, },
|
|
{ .name = "ifx:red:wps", .gpio = 9, .active_low = 1, },
|
|
{ .name = "ifx:blue:voip", .gpio = 32, .active_low = 1, },
|
|
{ .name = "ifx:blue:fxs1", .gpio = 33, .active_low = 1, },
|
|
{ .name = "ifx:blue:fxs2", .gpio = 34, .active_low = 1, },
|
|
{ .name = "ifx:blue:fxo", .gpio = 35, .active_low = 1, },
|
|
{ .name = "ifx:blue:voice", .gpio = 36, .active_low = 1, },
|
|
{ .name = "ifx:blue:usb", .gpio = 37, .active_low = 1, },
|
|
{ .name = "ifx:blue:wlan", .gpio = 38, .active_low = 1, },
|
|
};
|
|
|
|
static struct gpio_led
|
|
arv4520_leds_gpio[] __initdata = {
|
|
{ .name = "ifx:blue:power", .gpio = 3, .active_low = 1, },
|
|
{ .name = "ifx:blue:adsl", .gpio = 4, .active_low = 1, },
|
|
{ .name = "ifx:blue:internet", .gpio = 5, .active_low = 1, },
|
|
{ .name = "ifx:red:power", .gpio = 6, .active_low = 1, },
|
|
{ .name = "ifx:yello:wps", .gpio = 7, .active_low = 1, },
|
|
{ .name = "ifx:red:wps", .gpio = 9, .active_low = 1, },
|
|
{ .name = "ifx:blue:voip", .gpio = 32, .active_low = 1, },
|
|
{ .name = "ifx:blue:fxs1", .gpio = 33, .active_low = 1, },
|
|
{ .name = "ifx:blue:fxs2", .gpio = 34, .active_low = 1, },
|
|
{ .name = "ifx:blue:fxo", .gpio = 35, .active_low = 1, },
|
|
{ .name = "ifx:blue:voice", .gpio = 36, .active_low = 1, },
|
|
{ .name = "ifx:blue:usb", .gpio = 37, .active_low = 1, },
|
|
{ .name = "ifx:blue:wlan", .gpio = 38, .active_low = 1, },
|
|
};
|
|
|
|
static struct gpio_led arv4525_leds_gpio[] __initdata = {
|
|
{ .name = "ifx:green:festnetz", .gpio = 4, .active_low = 1, },
|
|
{ .name = "ifx:green:internet", .gpio = 5, .active_low = 1, },
|
|
{ .name = "ifx:green:dsl", .gpio = 6, .active_low = 1, },
|
|
{ .name = "ifx:green:wlan", .gpio = 8, .active_low = 1, },
|
|
{ .name = "ifx:green:online", .gpio = 9, .active_low = 1, },
|
|
};
|
|
|
|
static struct resource arv45xx_ebu_resource =
|
|
{
|
|
.name = "ebu-gpio",
|
|
.start = ARV45XX_EBU_GPIO_START,
|
|
.end = ARV45XX_EBU_GPIO_START + ARV45XX_EBU_GPIO_SIZE - 1,
|
|
.flags = IORESOURCE_MEM,
|
|
};
|
|
|
|
static void __init
|
|
arv4518_init(void)
|
|
{
|
|
static unsigned char mac[6];
|
|
if(!ifxmix_detect_brn_block(ARV45XX_BRN))
|
|
ifxmips_find_brn_mac(ARV45XX_BRN_MAC, mac);
|
|
else
|
|
random_ether_addr(mac);
|
|
ifxmips_register_gpio();
|
|
danube_register_ebu_gpio(&arv45xx_ebu_resource, ARV4520_LATCH_SWITCH);
|
|
ifxmips_register_mtd(&arv45xx_flash_data);
|
|
danube_register_pci(PCI_CLOCK_EXT, 0);
|
|
ifxmips_register_wdt();
|
|
ifxmips_register_gpio_leds(arv4518_leds_gpio, ARRAY_SIZE(arv4518_leds_gpio));
|
|
danube_register_ethernet(mac, REV_MII_MODE);
|
|
danube_register_tapi();
|
|
}
|
|
|
|
MIPS_MACHINE(IFXMIPS_MACH_ARV4518,
|
|
"ARV4518",
|
|
"ARV4518 - SMC7908A-ISP",
|
|
arv4518_init);
|
|
|
|
static void __init
|
|
arv4520_init(void)
|
|
{
|
|
static unsigned char mac[6];
|
|
if(!ifxmix_detect_brn_block(ARV45XX_BRN))
|
|
ifxmips_find_brn_mac(ARV45XX_BRN_MAC, mac);
|
|
else
|
|
random_ether_addr(mac);
|
|
ifxmips_register_gpio();
|
|
danube_register_ebu_gpio(&arv45xx_ebu_resource, ARV4520_LATCH_SWITCH);
|
|
ifxmips_register_mtd(&arv45xx_flash_data);
|
|
danube_register_pci(PCI_CLOCK_EXT, 0);
|
|
ifxmips_register_wdt();
|
|
ifxmips_register_gpio_leds(arv4520_leds_gpio, ARRAY_SIZE(arv4520_leds_gpio));
|
|
danube_register_ethernet(mac, REV_MII_MODE);
|
|
danube_register_tapi();
|
|
}
|
|
|
|
MIPS_MACHINE(IFXMIPS_MACH_ARV4520,
|
|
"ARV452",
|
|
"ARV4520 - Airties WAV-281, Arcor A800",
|
|
arv4520_init);
|
|
|
|
static void __init
|
|
arv4525_init(void)
|
|
{
|
|
static unsigned char mac[6];
|
|
if(!ifxmix_detect_brn_block(ARV45XX_BRN))
|
|
ifxmips_find_brn_mac(ARV45XX_BRN_MAC, mac);
|
|
else
|
|
random_ether_addr(mac);
|
|
ifxmips_register_gpio();
|
|
ifxmips_register_mtd(&arv45xx_flash_data);
|
|
danube_register_pci(PCI_CLOCK_INT, 0);
|
|
ifxmips_register_wdt();
|
|
ifxmips_register_gpio_leds(arv4525_leds_gpio, ARRAY_SIZE(arv4525_leds_gpio));
|
|
danube_register_ethernet(mac, MII_MODE);
|
|
danube_register_tapi();
|
|
}
|
|
|
|
MIPS_MACHINE(IFXMIPS_MACH_ARV4525,
|
|
"ARV4525",
|
|
"ARV4525 - Speedport W502V",
|
|
arv4525_init);
|