1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-05 00:13:15 +03:00
* fix ARV7518PW support


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26354 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
blogic 2011-03-29 06:20:00 +00:00
parent 050513302a
commit 3df283247e
3 changed files with 23 additions and 2 deletions

View File

@ -119,6 +119,14 @@ define Image/Build/Profile/ARV452CPW
$(call Image/Build/$(1),$(1),ARV452CPW) $(call Image/Build/$(1),$(1),ARV452CPW)
endef endef
define Image/BuildKernel/Profile/ARV7518PW
$(call Image/BuildKernel/Template,ARV7518PW,$(xway_cmdline))
endef
define Image/Build/Profile/ARV7518PW
$(call Image/Build/$(1),$(1),ARV7518PW)
endef
define Image/BuildKernel/Profile/ARV752DPW22 define Image/BuildKernel/Profile/ARV752DPW22
$(call Image/BuildKernel/Template,ARV752DPW22,$(xway_cmdline)) $(call Image/BuildKernel/Template,ARV752DPW22,$(xway_cmdline))
endef endef

View File

@ -38,7 +38,7 @@
+obj-$(CONFIG_LANTIQ_MACH_ARV45XX) += mach-arv45xx.o +obj-$(CONFIG_LANTIQ_MACH_ARV45XX) += mach-arv45xx.o
--- /dev/null --- /dev/null
+++ b/arch/mips/lantiq/xway/mach-arv45xx.c +++ b/arch/mips/lantiq/xway/mach-arv45xx.c
@@ -0,0 +1,536 @@ @@ -0,0 +1,537 @@
+/* +/*
+ * This program is free software; you can redistribute it and/or modify it + * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 as published + * under the terms of the GNU General Public License version 2 as published
@ -524,7 +524,7 @@
+arv7518pw_init(void) +arv7518pw_init(void)
+{ +{
+#define ARV7518PW_EBU 0x2 +#define ARV7518PW_EBU 0x2
+#define ARV7518PW_USB -1 +#define ARV7518PW_USB 14
+ +
+ lq_register_gpio(); + lq_register_gpio();
+ lq_register_gpio_ebu(ARV7518PW_EBU); + lq_register_gpio_ebu(ARV7518PW_EBU);
@ -535,6 +535,7 @@
+ lq_register_nor(&arv75xx_flash_data); + lq_register_nor(&arv75xx_flash_data);
+ lq_register_pci(&lq_pci_data); + lq_register_pci(&lq_pci_data);
+ lq_register_wdt(); + lq_register_wdt();
+ lq_register_tapi();
+ xway_register_dwc(ARV7518PW_USB); + xway_register_dwc(ARV7518PW_USB);
+ arv75xx_register_ethernet(); + arv75xx_register_ethernet();
+ //arv7518_register_ath9k(mac); + //arv7518_register_ath9k(mac);

View File

@ -87,3 +87,15 @@ endef
$(eval $(call Profile,ARV752DPW22)) $(eval $(call Profile,ARV752DPW22))
define Profile/ARV7518PW
NAME:=ARV7518PW - ASTORIA
PACKAGES:= kmod-usb-core kmod-usb-dwc-otg \
kmod-ledtrig-netdev kmod-ledtrig-usbdev kmod-leds-gpio kmod-button-hotplug \
kmod-ath9k wpad-mini ltq-dsl-firmware-a swconfig
endef
define Profile/ARV7518PW/Description
Package set optimized for the ARV7518PW
endef
$(eval $(call Profile,ARV7518PW))