mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-16 17:13:10 +02:00
[lantiq] fixes ar9 / dgn3500 support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34180 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
ba2f185e06
commit
650f187f04
@ -1,13 +1,15 @@
|
||||
CONFIG_ADM6996_PHY=y
|
||||
CONFIG_AR8216_PHY=y
|
||||
# CONFIG_ATMEL_PWM is not set
|
||||
CONFIG_CLKDEV_LOOKUP=y
|
||||
CONFIG_FSNOTIFY=y
|
||||
CONFIG_HAVE_MACH_CLKDEV=y
|
||||
CONFIG_HOTPLUG_PCI=y
|
||||
# CONFIG_HOTPLUG_PCI_CPCI is not set
|
||||
CONFIG_HOTPLUG_PCI_FAKE=y
|
||||
# CONFIG_HOTPLUG_PCI_SHPC is not set
|
||||
CONFIG_HW_HAS_PCI=y
|
||||
CONFIG_INPUT=y
|
||||
CONFIG_INPUT_EVDEV=y
|
||||
# CONFIG_INPUT_GPIO_BUTTONS is not set
|
||||
CONFIG_INPUT_POLLDEV=y
|
||||
CONFIG_IRQ_FORCED_THREADING=y
|
||||
# CONFIG_ISDN is not set
|
||||
@ -22,8 +24,10 @@ CONFIG_LANTIQ_MACH_NETGEAR=y
|
||||
CONFIG_LANTIQ_MACH_P2601HNFX=y
|
||||
CONFIG_LANTIQ_MACH_WBMR=y
|
||||
# CONFIG_LANTIQ_VRX200 is not set
|
||||
CONFIG_M25PXX_USE_FAST_READ=y
|
||||
CONFIG_MDIO_BOARDINFO=y
|
||||
CONFIG_MTD_BLOCK2MTD=y
|
||||
CONFIG_MTD_M25P80=y
|
||||
CONFIG_PCI=y
|
||||
# CONFIG_PCIEPORTBUS is not set
|
||||
# CONFIG_PCIE_LANTIQ is not set
|
||||
@ -36,5 +40,9 @@ CONFIG_RTL8306_PHY=y
|
||||
# CONFIG_SOC_SVIP is not set
|
||||
CONFIG_SOC_TYPE_XWAY=y
|
||||
CONFIG_SOC_XWAY=y
|
||||
CONFIG_SPI=y
|
||||
CONFIG_SPI_BITBANG=y
|
||||
CONFIG_SPI_GPIO=y
|
||||
CONFIG_SPI_MASTER=y
|
||||
CONFIG_USB_ARCH_HAS_XHCI=y
|
||||
CONFIG_USB_SUPPORT=y
|
||||
|
@ -22,6 +22,7 @@
|
||||
#include <linux/etherdevice.h>
|
||||
#include <linux/kobject.h>
|
||||
#include <linux/sysfs.h>
|
||||
#include <linux/rtl8366.h>
|
||||
|
||||
#include <lantiq_soc.h>
|
||||
#include <irq.h>
|
||||
@ -149,6 +150,22 @@ static int __init setup_ethaddr(char *str)
|
||||
}
|
||||
__setup("ethaddr=", setup_ethaddr);
|
||||
|
||||
#define smi_SCK 37
|
||||
#define smi_SDA 35
|
||||
|
||||
static struct rtl8366_platform_data rtl8366rb_data = {
|
||||
.gpio_sda = smi_SDA,
|
||||
.gpio_sck = smi_SCK,
|
||||
};
|
||||
|
||||
static struct platform_device rtl8366rb_device = {
|
||||
.name = RTL8366RB_DRIVER_NAME,
|
||||
.id = -1,
|
||||
.dev = {
|
||||
.platform_data = &rtl8366rb_data,
|
||||
}
|
||||
};
|
||||
|
||||
static u16 dgn3500_eeprom_data[ATH9K_PLAT_EEP_MAX_WORDS] = {0};
|
||||
|
||||
static ssize_t ath_eeprom_read(struct file *filp, struct kobject *kobj,
|
||||
@ -231,6 +248,7 @@ static void __init dgn3500_init(void)
|
||||
ltq_pci_ath_fixup(14, dgn3500_eeprom_data);
|
||||
/* The usb power is always enabled, protected by a fuse */
|
||||
xway_register_dwc(-1);
|
||||
platform_device_register(&rtl8366rb_device);
|
||||
}
|
||||
|
||||
MIPS_MACHINE(LANTIQ_MACH_DGN3500B,
|
||||
|
Loading…
Reference in New Issue
Block a user