mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-26 01:18:58 +02:00
ixp4xx/patches-2.6.24: Refreshed fsg patch and other affected patches
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10630 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
a0500803ec
commit
dcacfadb50
@ -1,7 +1,46 @@
|
|||||||
Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-pci.c
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/Kconfig
|
||||||
|
===================================================================
|
||||||
|
--- linux-2.6.24.orig/arch/arm/mach-ixp4xx/Kconfig 2008-03-20 21:07:50.000000000 +1030
|
||||||
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/Kconfig 2008-03-20 21:09:12.000000000 +1030
|
||||||
|
@@ -125,6 +125,15 @@
|
||||||
|
depends on ARCH_IXDP425 || MACH_IXDP465 || MACH_KIXRP435
|
||||||
|
default y
|
||||||
|
|
||||||
|
+config MACH_FSG
|
||||||
|
+ bool
|
||||||
|
+ prompt "Freecom FSG-3"
|
||||||
|
+ select PCI
|
||||||
|
+ help
|
||||||
|
+ Say 'Y' here if you want your kernel to support Freecom's
|
||||||
|
+ FSG-3 device. For more information on this platform,
|
||||||
|
+ see http://www.nslu2-linux.org/wiki/FSG3/HomePage
|
||||||
|
+
|
||||||
|
#
|
||||||
|
# Certain registers and IRQs are only enabled if supporting IXP465 CPUs
|
||||||
|
#
|
||||||
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/Makefile
|
||||||
|
===================================================================
|
||||||
|
--- linux-2.6.24.orig/arch/arm/mach-ixp4xx/Makefile 2008-03-20 21:07:50.000000000 +1030
|
||||||
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/Makefile 2008-03-20 21:09:12.000000000 +1030
|
||||||
|
@@ -15,6 +15,7 @@
|
||||||
|
obj-pci-$(CONFIG_MACH_DSMG600) += dsmg600-pci.o
|
||||||
|
obj-pci-$(CONFIG_MACH_GATEWAY7001) += gateway7001-pci.o
|
||||||
|
obj-pci-$(CONFIG_MACH_WG302V2) += wg302v2-pci.o
|
||||||
|
+obj-pci-$(CONFIG_MACH_FSG) += fsg-pci.o
|
||||||
|
|
||||||
|
obj-y += common.o
|
||||||
|
|
||||||
|
@@ -28,5 +29,6 @@
|
||||||
|
obj-$(CONFIG_MACH_DSMG600) += dsmg600-setup.o dsmg600-power.o
|
||||||
|
obj-$(CONFIG_MACH_GATEWAY7001) += gateway7001-setup.o
|
||||||
|
obj-$(CONFIG_MACH_WG302V2) += wg302v2-setup.o
|
||||||
|
+obj-$(CONFIG_MACH_FSG) += fsg-setup.o
|
||||||
|
|
||||||
|
obj-$(CONFIG_PCI) += $(obj-pci-$(CONFIG_PCI)) common-pci.o
|
||||||
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/fsg-pci.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||||
+++ linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-pci.c 2008-01-11 17:06:33.000000000 +1030
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/fsg-pci.c 2008-03-20 21:09:12.000000000 +1030
|
||||||
@@ -0,0 +1,71 @@
|
@@ -0,0 +1,71 @@
|
||||||
+/*
|
+/*
|
||||||
+ * arch/arch/mach-ixp4xx/fsg-pci.c
|
+ * arch/arch/mach-ixp4xx/fsg-pci.c
|
||||||
@ -49,10 +88,10 @@ Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-pci.c
|
|||||||
+ slot = slot - 11;
|
+ slot = slot - 11;
|
||||||
+
|
+
|
||||||
+ if (slot >= 1 && slot <= FSG_PCI_MAX_DEV &&
|
+ if (slot >= 1 && slot <= FSG_PCI_MAX_DEV &&
|
||||||
+ pin >= 1 && pin <= FSG_PCI_IRQ_LINES) {
|
+ pin >= 1 && pin <= FSG_PCI_IRQ_LINES)
|
||||||
+ irq = pci_irq_table[(slot - 1)];
|
+ irq = pci_irq_table[(slot - 1)];
|
||||||
+ }
|
+ printk(KERN_INFO "%s: Mapped slot %d pin %d to IRQ %d\n",
|
||||||
+ printk("%s: Mapped slot %d pin %d to IRQ %d\n", __FUNCTION__,slot, pin, irq);
|
+ __func__, slot, pin, irq);
|
||||||
+
|
+
|
||||||
+ return irq;
|
+ return irq;
|
||||||
+}
|
+}
|
||||||
@ -74,35 +113,42 @@ Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-pci.c
|
|||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+subsys_initcall(fsg_pci_init);
|
+subsys_initcall(fsg_pci_init);
|
||||||
Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-setup.c
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/fsg-setup.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||||
+++ linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-setup.c 2008-01-11 17:06:33.000000000 +1030
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/fsg-setup.c 2008-03-20 21:09:12.000000000 +1030
|
||||||
@@ -0,0 +1,220 @@
|
@@ -0,0 +1,275 @@
|
||||||
+/*
|
+/*
|
||||||
+ * arch/arm/mach-ixp4xx/fsg-setup.c
|
+ * arch/arm/mach-ixp4xx/fsg-setup.c
|
||||||
+ *
|
+ *
|
||||||
+ * FSG board-setup
|
+ * FSG board-setup
|
||||||
+ *
|
+ *
|
||||||
+ * based ixdp425-setup.c:
|
+ * Copyright (C) 2008 Rod Whitby <rod@whitby.id.au>
|
||||||
|
+ *
|
||||||
|
+ * based on ixdp425-setup.c:
|
||||||
+ * Copyright (C) 2003-2004 MontaVista Software, Inc.
|
+ * Copyright (C) 2003-2004 MontaVista Software, Inc.
|
||||||
|
+ * based on nslu2-power.c
|
||||||
|
+ * Copyright (C) 2005 Tower Technologies
|
||||||
+ *
|
+ *
|
||||||
+ * Author: Rod Whitby <rod@whitby.id.au>
|
+ * Author: Rod Whitby <rod@whitby.id.au>
|
||||||
+ * Maintainers: http://www.nslu2-linux.org/
|
+ * Maintainers: http://www.nslu2-linux.org/
|
||||||
+ *
|
+ *
|
||||||
+ */
|
+ */
|
||||||
+
|
+
|
||||||
+#include <linux/kernel.h>
|
+#include <linux/if_ether.h>
|
||||||
|
+#include <linux/irq.h>
|
||||||
+#include <linux/serial.h>
|
+#include <linux/serial.h>
|
||||||
+#include <linux/serial_8250.h>
|
+#include <linux/serial_8250.h>
|
||||||
+#include <linux/leds.h>
|
+#include <linux/leds.h>
|
||||||
+#include <linux/reboot.h>
|
+#include <linux/reboot.h>
|
||||||
|
+#include <linux/i2c.h>
|
||||||
+#include <linux/i2c-gpio.h>
|
+#include <linux/i2c-gpio.h>
|
||||||
+
|
+
|
||||||
+#include <asm/mach-types.h>
|
+#include <asm/mach-types.h>
|
||||||
+#include <asm/mach/arch.h>
|
+#include <asm/mach/arch.h>
|
||||||
+#include <asm/mach/flash.h>
|
+#include <asm/mach/flash.h>
|
||||||
+#include <asm/io.h>
|
+#include <asm/io.h>
|
||||||
|
+#include <asm/gpio.h>
|
||||||
+
|
+
|
||||||
+static struct flash_platform_data fsg_flash_data = {
|
+static struct flash_platform_data fsg_flash_data = {
|
||||||
+ .map_name = "cfi_probe",
|
+ .map_name = "cfi_probe",
|
||||||
@ -134,6 +180,12 @@ Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-setup.c
|
|||||||
+ },
|
+ },
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
|
+static struct i2c_board_info __initdata fsg_i2c_board_info [] = {
|
||||||
|
+ {
|
||||||
|
+ I2C_BOARD_INFO("rtc-isl1208", 0x6f),
|
||||||
|
+ },
|
||||||
|
+};
|
||||||
|
+
|
||||||
+static struct resource fsg_uart_resources[] = {
|
+static struct resource fsg_uart_resources[] = {
|
||||||
+ {
|
+ {
|
||||||
+ .start = IXP4XX_UART1_BASE_PHYS,
|
+ .start = IXP4XX_UART1_BASE_PHYS,
|
||||||
@ -217,19 +269,37 @@ Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-setup.c
|
|||||||
+
|
+
|
||||||
+static void fsg_power_off(void)
|
+static void fsg_power_off(void)
|
||||||
+{
|
+{
|
||||||
+ printk("Restarting system.\n");
|
+ printk(KERN_INFO "Restarting system.\n");
|
||||||
+ machine_restart(NULL);
|
+ machine_restart(NULL);
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
|
+static irqreturn_t fsg_power_handler(int irq, void *dev_id)
|
||||||
|
+{
|
||||||
|
+ /* Signal init to do the ctrlaltdel action, this will bypass init if
|
||||||
|
+ * it hasn't started and do a kernel_restart.
|
||||||
|
+ */
|
||||||
|
+ ctrl_alt_del();
|
||||||
|
+
|
||||||
|
+ return IRQ_HANDLED;
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+static irqreturn_t fsg_reset_handler(int irq, void *dev_id)
|
||||||
|
+{
|
||||||
|
+ /* This is the paper-clip reset, it shuts the machine down directly.
|
||||||
|
+ */
|
||||||
|
+ machine_power_off();
|
||||||
|
+
|
||||||
|
+ return IRQ_HANDLED;
|
||||||
|
+}
|
||||||
|
+
|
||||||
+static void __init fsg_init(void)
|
+static void __init fsg_init(void)
|
||||||
+{
|
+{
|
||||||
|
+ DECLARE_MAC_BUF(mac_buf);
|
||||||
+ uint8_t __iomem *f;
|
+ uint8_t __iomem *f;
|
||||||
+ int i;
|
+ int i;
|
||||||
+
|
+
|
||||||
+ ixp4xx_sys_init();
|
+ ixp4xx_sys_init();
|
||||||
+
|
+
|
||||||
+ pm_power_off = fsg_power_off;
|
|
||||||
+
|
|
||||||
+ fsg_flash_resource.start = IXP4XX_EXP_BUS_BASE(0);
|
+ fsg_flash_resource.start = IXP4XX_EXP_BUS_BASE(0);
|
||||||
+ fsg_flash_resource.end =
|
+ fsg_flash_resource.end =
|
||||||
+ IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1;
|
+ IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1;
|
||||||
@ -240,6 +310,9 @@ Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-setup.c
|
|||||||
+ /* Configure CS2 for operation, 8bit and writable */
|
+ /* Configure CS2 for operation, 8bit and writable */
|
||||||
+ *IXP4XX_EXP_CS2 = 0xbfff0002;
|
+ *IXP4XX_EXP_CS2 = 0xbfff0002;
|
||||||
+
|
+
|
||||||
|
+ i2c_register_board_info(0, fsg_i2c_board_info,
|
||||||
|
+ ARRAY_SIZE(fsg_i2c_board_info));
|
||||||
|
+
|
||||||
+ /* This is only useful on a modified machine, but it is valuable
|
+ /* This is only useful on a modified machine, but it is valuable
|
||||||
+ * to have it first in order to see debug messages, and so that
|
+ * to have it first in order to see debug messages, and so that
|
||||||
+ * it does *not* get removed if platform_add_devices fails!
|
+ * it does *not* get removed if platform_add_devices fails!
|
||||||
@ -248,43 +321,64 @@ Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-setup.c
|
|||||||
+
|
+
|
||||||
+ platform_add_devices(fsg_devices, ARRAY_SIZE(fsg_devices));
|
+ platform_add_devices(fsg_devices, ARRAY_SIZE(fsg_devices));
|
||||||
+
|
+
|
||||||
|
+ pm_power_off = fsg_power_off;
|
||||||
|
+
|
||||||
|
+ set_irq_type(gpio_to_irq(FSG_RB_GPIO), IRQT_LOW);
|
||||||
|
+ if (request_irq(gpio_to_irq(FSG_RB_GPIO), &fsg_reset_handler,
|
||||||
|
+ IRQF_DISABLED, "FSG reset button", NULL) < 0) {
|
||||||
|
+
|
||||||
|
+ printk(KERN_DEBUG "Reset Button IRQ %d not available\n",
|
||||||
|
+ gpio_to_irq(FSG_RB_GPIO));
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ set_irq_type(gpio_to_irq(FSG_SB_GPIO), IRQT_LOW);
|
||||||
|
+ if (request_irq(gpio_to_irq(FSG_SB_GPIO), &fsg_power_handler,
|
||||||
|
+ IRQF_DISABLED, "FSG power button", NULL) < 0) {
|
||||||
|
+
|
||||||
|
+ printk(KERN_DEBUG "Power Button IRQ %d not available\n",
|
||||||
|
+ gpio_to_irq(FSG_SB_GPIO));
|
||||||
|
+ }
|
||||||
+
|
+
|
||||||
+ /*
|
+ /*
|
||||||
+ * Map in a portion of the flash and read the MAC addresses.
|
+ * Map in a portion of the flash and read the MAC addresses.
|
||||||
+ * Since it is stored in BE in the flash itself, we need to
|
+ * Since it is stored in BE in the flash itself, we need to
|
||||||
+ * byteswap it if we're in LE mode.
|
+ * byteswap it if we're in LE mode.
|
||||||
+ */
|
+ */
|
||||||
+ if ((f = ioremap(IXP4XX_EXP_BUS_BASE(0), 0x400000))) {
|
+ f = ioremap(IXP4XX_EXP_BUS_BASE(0), 0x400000);
|
||||||
|
+ if (f) {
|
||||||
+#ifdef __ARMEB__
|
+#ifdef __ARMEB__
|
||||||
+ for (i = 0; i < 6; i++) {
|
+ for (i = 0; i < 6; i++) {
|
||||||
+ fsg_plat_eth[0].hwaddr[i] = readb(f + 0x3C0422 + i);
|
+ fsg_plat_eth[0].hwaddr[i] = readb(f + 0x3C0422 + i);
|
||||||
+ fsg_plat_eth[1].hwaddr[i] = readb(f + 0x3C043B + i);
|
+ fsg_plat_eth[1].hwaddr[i] = readb(f + 0x3C043B + i);
|
||||||
+ }
|
+ }
|
||||||
+#else
|
+#else
|
||||||
+ fsg_plat_eth[0].hwaddr[0] = readb(f + 0x3C0422 + 3);
|
|
||||||
+ fsg_plat_eth[0].hwaddr[1] = readb(f + 0x3C0422 + 2);
|
|
||||||
+ fsg_plat_eth[0].hwaddr[2] = readb(f + 0x3C0422 + 1);
|
|
||||||
+ fsg_plat_eth[0].hwaddr[3] = readb(f + 0x3C0422 + 0);
|
|
||||||
+ fsg_plat_eth[0].hwaddr[4] = readb(f + 0x3C0422 + 7);
|
|
||||||
+ fsg_plat_eth[0].hwaddr[5] = readb(f + 0x3C0422 + 6);
|
|
||||||
+
|
+
|
||||||
+ fsg_plat_eth[1].hwaddr[0] = readb(f + 0x3C0422 + 3);
|
+ /*
|
||||||
+ fsg_plat_eth[1].hwaddr[1] = readb(f + 0x3C0422 + 2);
|
+ Endian-swapped reads from unaligned addresses are
|
||||||
+ fsg_plat_eth[1].hwaddr[2] = readb(f + 0x3C0422 + 1);
|
+ required to extract the two MACs from the big-endian
|
||||||
+ fsg_plat_eth[1].hwaddr[3] = readb(f + 0x3C0422 + 0);
|
+ Redboot config area in flash.
|
||||||
+ fsg_plat_eth[1].hwaddr[4] = readb(f + 0x3C0422 + 7);
|
+ */
|
||||||
+ fsg_plat_eth[1].hwaddr[5] = readb(f + 0x3C0422 + 6);
|
+
|
||||||
|
+ fsg_plat_eth[0].hwaddr[0] = readb(f + 0x3C0421);
|
||||||
|
+ fsg_plat_eth[0].hwaddr[1] = readb(f + 0x3C0420);
|
||||||
|
+ fsg_plat_eth[0].hwaddr[2] = readb(f + 0x3C0427);
|
||||||
|
+ fsg_plat_eth[0].hwaddr[3] = readb(f + 0x3C0426);
|
||||||
|
+ fsg_plat_eth[0].hwaddr[4] = readb(f + 0x3C0425);
|
||||||
|
+ fsg_plat_eth[0].hwaddr[5] = readb(f + 0x3C0424);
|
||||||
|
+
|
||||||
|
+ fsg_plat_eth[1].hwaddr[0] = readb(f + 0x3C0439);
|
||||||
|
+ fsg_plat_eth[1].hwaddr[1] = readb(f + 0x3C043F);
|
||||||
|
+ fsg_plat_eth[1].hwaddr[2] = readb(f + 0x3C043E);
|
||||||
|
+ fsg_plat_eth[1].hwaddr[3] = readb(f + 0x3C043D);
|
||||||
|
+ fsg_plat_eth[1].hwaddr[4] = readb(f + 0x3C043C);
|
||||||
|
+ fsg_plat_eth[1].hwaddr[5] = readb(f + 0x3C0443);
|
||||||
+#endif
|
+#endif
|
||||||
+ iounmap(f);
|
+ iounmap(f);
|
||||||
+ }
|
+ }
|
||||||
+ printk(KERN_INFO "FSG: Using MAC address %.2x:%.2x:%.2x:%.2x:%.2x:%.2x for port 0\n",
|
+ printk(KERN_INFO "FSG: Using MAC address %s for port 0\n",
|
||||||
+ fsg_plat_eth[0].hwaddr[0], fsg_plat_eth[0].hwaddr[1],
|
+ print_mac(mac_buf, fsg_plat_eth[0].hwaddr));
|
||||||
+ fsg_plat_eth[0].hwaddr[2], fsg_plat_eth[0].hwaddr[3],
|
+ printk(KERN_INFO "FSG: Using MAC address %s for port 1\n",
|
||||||
+ fsg_plat_eth[0].hwaddr[4], fsg_plat_eth[0].hwaddr[5]);
|
+ print_mac(mac_buf, fsg_plat_eth[1].hwaddr));
|
||||||
+ printk(KERN_INFO "FSG: Using MAC address %.2x:%.2x:%.2x:%.2x:%.2x:%.2x for port 1\n",
|
|
||||||
+ fsg_plat_eth[1].hwaddr[0], fsg_plat_eth[1].hwaddr[1],
|
|
||||||
+ fsg_plat_eth[1].hwaddr[2], fsg_plat_eth[1].hwaddr[3],
|
|
||||||
+ fsg_plat_eth[1].hwaddr[4], fsg_plat_eth[1].hwaddr[5]);
|
|
||||||
+
|
+
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
@ -299,50 +393,10 @@ Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-setup.c
|
|||||||
+ .init_machine = fsg_init,
|
+ .init_machine = fsg_init,
|
||||||
+MACHINE_END
|
+MACHINE_END
|
||||||
+
|
+
|
||||||
Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/Kconfig
|
Index: linux-2.6.24/include/asm-arm/arch-ixp4xx/fsg.h
|
||||||
===================================================================
|
|
||||||
--- linux-2.6.23.12-armeb.orig/arch/arm/mach-ixp4xx/Kconfig 2008-01-11 17:05:08.000000000 +1030
|
|
||||||
+++ linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/Kconfig 2008-01-11 17:06:33.000000000 +1030
|
|
||||||
@@ -125,6 +125,15 @@
|
|
||||||
depends on ARCH_IXDP425 || MACH_IXDP465 || MACH_KIXRP435
|
|
||||||
default y
|
|
||||||
|
|
||||||
+config MACH_FSG
|
|
||||||
+ bool
|
|
||||||
+ prompt "Freecom FSG-3"
|
|
||||||
+ select PCI
|
|
||||||
+ help
|
|
||||||
+ Say 'Y' here if you want your kernel to support Freecom's
|
|
||||||
+ FSG-3 device. For more information on this platform,
|
|
||||||
+ see http://www.nslu2-linux.org/wiki/FSG3/HomePage
|
|
||||||
+
|
|
||||||
#
|
|
||||||
# Certain registers and IRQs are only enabled if supporting IXP465 CPUs
|
|
||||||
#
|
|
||||||
Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/Makefile
|
|
||||||
===================================================================
|
|
||||||
--- linux-2.6.23.12-armeb.orig/arch/arm/mach-ixp4xx/Makefile 2008-01-11 17:05:08.000000000 +1030
|
|
||||||
+++ linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/Makefile 2008-01-11 17:06:33.000000000 +1030
|
|
||||||
@@ -15,6 +15,7 @@
|
|
||||||
obj-pci-$(CONFIG_MACH_DSMG600) += dsmg600-pci.o
|
|
||||||
obj-pci-$(CONFIG_MACH_GATEWAY7001) += gateway7001-pci.o
|
|
||||||
obj-pci-$(CONFIG_MACH_WG302V2) += wg302v2-pci.o
|
|
||||||
+obj-pci-$(CONFIG_MACH_FSG) += fsg-pci.o
|
|
||||||
|
|
||||||
obj-y += common.o
|
|
||||||
|
|
||||||
@@ -28,6 +29,7 @@
|
|
||||||
obj-$(CONFIG_MACH_DSMG600) += dsmg600-setup.o dsmg600-power.o
|
|
||||||
obj-$(CONFIG_MACH_GATEWAY7001) += gateway7001-setup.o
|
|
||||||
obj-$(CONFIG_MACH_WG302V2) += wg302v2-setup.o
|
|
||||||
+obj-$(CONFIG_MACH_FSG) += fsg-setup.o fsg-power.o
|
|
||||||
|
|
||||||
obj-$(CONFIG_PCI) += $(obj-pci-$(CONFIG_PCI)) common-pci.o
|
|
||||||
obj-$(CONFIG_IXP4XX_QMGR) += ixp4xx_qmgr.o
|
|
||||||
Index: linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/fsg.h
|
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||||
+++ linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/fsg.h 2008-01-11 17:06:33.000000000 +1030
|
+++ linux-2.6.24/include/asm-arm/arch-ixp4xx/fsg.h 2008-03-20 21:09:12.000000000 +1030
|
||||||
@@ -0,0 +1,50 @@
|
@@ -0,0 +1,50 @@
|
||||||
+/*
|
+/*
|
||||||
+ * include/asm-arm/arch-ixp4xx/fsg.h
|
+ * include/asm-arm/arch-ixp4xx/fsg.h
|
||||||
@ -394,10 +448,10 @@ Index: linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/fsg.h
|
|||||||
+#define FSG_LED_USB_BIT 4
|
+#define FSG_LED_USB_BIT 4
|
||||||
+#define FSG_LED_RING_BIT 5
|
+#define FSG_LED_RING_BIT 5
|
||||||
+#define FSG_LED_SYNC_BIT 7
|
+#define FSG_LED_SYNC_BIT 7
|
||||||
Index: linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/hardware.h
|
Index: linux-2.6.24/include/asm-arm/arch-ixp4xx/hardware.h
|
||||||
===================================================================
|
===================================================================
|
||||||
--- linux-2.6.23.12-armeb.orig/include/asm-arm/arch-ixp4xx/hardware.h 2008-01-11 17:05:08.000000000 +1030
|
--- linux-2.6.24.orig/include/asm-arm/arch-ixp4xx/hardware.h 2008-03-20 21:07:50.000000000 +1030
|
||||||
+++ linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/hardware.h 2008-01-11 17:06:33.000000000 +1030
|
+++ linux-2.6.24/include/asm-arm/arch-ixp4xx/hardware.h 2008-03-20 21:09:12.000000000 +1030
|
||||||
@@ -45,5 +45,6 @@
|
@@ -45,5 +45,6 @@
|
||||||
#include "nslu2.h"
|
#include "nslu2.h"
|
||||||
#include "nas100d.h"
|
#include "nas100d.h"
|
||||||
@ -405,10 +459,10 @@ Index: linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/hardware.h
|
|||||||
+#include "fsg.h"
|
+#include "fsg.h"
|
||||||
|
|
||||||
#endif /* _ASM_ARCH_HARDWARE_H */
|
#endif /* _ASM_ARCH_HARDWARE_H */
|
||||||
Index: linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/irqs.h
|
Index: linux-2.6.24/include/asm-arm/arch-ixp4xx/irqs.h
|
||||||
===================================================================
|
===================================================================
|
||||||
--- linux-2.6.23.12-armeb.orig/include/asm-arm/arch-ixp4xx/irqs.h 2008-01-11 17:05:08.000000000 +1030
|
--- linux-2.6.24.orig/include/asm-arm/arch-ixp4xx/irqs.h 2008-03-20 21:07:50.000000000 +1030
|
||||||
+++ linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/irqs.h 2008-01-11 17:06:33.000000000 +1030
|
+++ linux-2.6.24/include/asm-arm/arch-ixp4xx/irqs.h 2008-03-20 21:09:12.000000000 +1030
|
||||||
@@ -128,4 +128,11 @@
|
@@ -128,4 +128,11 @@
|
||||||
#define IRQ_DSMG600_PCI_INTE IRQ_IXP4XX_GPIO7
|
#define IRQ_DSMG600_PCI_INTE IRQ_IXP4XX_GPIO7
|
||||||
#define IRQ_DSMG600_PCI_INTF IRQ_IXP4XX_GPIO6
|
#define IRQ_DSMG600_PCI_INTF IRQ_IXP4XX_GPIO6
|
||||||
@ -421,104 +475,10 @@ Index: linux-2.6.23.12-armeb/include/asm-arm/arch-ixp4xx/irqs.h
|
|||||||
+#define IRQ_FSG_PCI_INTC IRQ_IXP4XX_GPIO5
|
+#define IRQ_FSG_PCI_INTC IRQ_IXP4XX_GPIO5
|
||||||
+
|
+
|
||||||
#endif
|
#endif
|
||||||
Index: linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-power.c
|
Index: linux-2.6.24/drivers/leds/Kconfig
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
--- linux-2.6.24.orig/drivers/leds/Kconfig 2008-03-20 21:07:50.000000000 +1030
|
||||||
+++ linux-2.6.23.12-armeb/arch/arm/mach-ixp4xx/fsg-power.c 2008-01-11 17:06:33.000000000 +1030
|
+++ linux-2.6.24/drivers/leds/Kconfig 2008-03-20 21:09:12.000000000 +1030
|
||||||
@@ -0,0 +1,89 @@
|
|
||||||
+/*
|
|
||||||
+ * arch/arm/mach-ixp4xx/fsg-power.c
|
|
||||||
+ *
|
|
||||||
+ * FSG Power/Reset driver
|
|
||||||
+ *
|
|
||||||
+ * Copyright (C) 2008 Rod Whitby <rod@whitby.id.au>
|
|
||||||
+ *
|
|
||||||
+ * based on nslu2-power.c
|
|
||||||
+ * Copyright (C) 2005 Tower Technologies
|
|
||||||
+ *
|
|
||||||
+ * 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 by the Free Software Foundation.
|
|
||||||
+ *
|
|
||||||
+ */
|
|
||||||
+
|
|
||||||
+#include <linux/module.h>
|
|
||||||
+#include <linux/reboot.h>
|
|
||||||
+#include <linux/interrupt.h>
|
|
||||||
+#include <linux/irq.h>
|
|
||||||
+#include <linux/jiffies.h>
|
|
||||||
+#include <linux/timer.h>
|
|
||||||
+
|
|
||||||
+#include <asm/gpio.h>
|
|
||||||
+#include <asm/mach-types.h>
|
|
||||||
+
|
|
||||||
+static irqreturn_t fsg_power_handler(int irq, void *dev_id)
|
|
||||||
+{
|
|
||||||
+ /* Signal init to do the ctrlaltdel action, this will bypass init if
|
|
||||||
+ * it hasn't started and do a kernel_restart.
|
|
||||||
+ */
|
|
||||||
+ ctrl_alt_del();
|
|
||||||
+
|
|
||||||
+ return IRQ_HANDLED;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static irqreturn_t fsg_reset_handler(int irq, void *dev_id)
|
|
||||||
+{
|
|
||||||
+ /* This is the paper-clip reset, it shuts the machine down directly.
|
|
||||||
+ */
|
|
||||||
+ machine_power_off();
|
|
||||||
+
|
|
||||||
+ return IRQ_HANDLED;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static int __init fsg_power_init(void)
|
|
||||||
+{
|
|
||||||
+ if (!(machine_is_fsg()))
|
|
||||||
+ return 0;
|
|
||||||
+
|
|
||||||
+ set_irq_type(gpio_to_irq(FSG_RB_GPIO), IRQT_LOW);
|
|
||||||
+ set_irq_type(gpio_to_irq(FSG_SB_GPIO), IRQT_LOW);
|
|
||||||
+
|
|
||||||
+ if (request_irq(gpio_to_irq(FSG_RB_GPIO), &fsg_reset_handler,
|
|
||||||
+ IRQF_DISABLED, "FSG reset button", NULL) < 0) {
|
|
||||||
+
|
|
||||||
+ printk(KERN_DEBUG "Reset Button IRQ %d not available\n",
|
|
||||||
+ gpio_to_irq(FSG_RB_GPIO));
|
|
||||||
+
|
|
||||||
+ return -EIO;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ if (request_irq(gpio_to_irq(FSG_SB_GPIO), &fsg_power_handler,
|
|
||||||
+ IRQF_DISABLED, "FSG power button", NULL) < 0) {
|
|
||||||
+
|
|
||||||
+ printk(KERN_DEBUG "Power Button IRQ %d not available\n",
|
|
||||||
+ gpio_to_irq(FSG_SB_GPIO));
|
|
||||||
+
|
|
||||||
+ return -EIO;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ return 0;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static void __exit fsg_power_exit(void)
|
|
||||||
+{
|
|
||||||
+ if (!(machine_is_fsg()))
|
|
||||||
+ return;
|
|
||||||
+
|
|
||||||
+ free_irq(gpio_to_irq(FSG_SB_GPIO), NULL);
|
|
||||||
+ free_irq(gpio_to_irq(FSG_RB_GPIO), NULL);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+module_init(fsg_power_init);
|
|
||||||
+module_exit(fsg_power_exit);
|
|
||||||
+
|
|
||||||
+MODULE_AUTHOR("Rod Whitby <rod@whitby.id.au>");
|
|
||||||
+MODULE_DESCRIPTION("FSG Power/Reset driver");
|
|
||||||
+MODULE_LICENSE("GPL");
|
|
||||||
Index: linux-2.6.23.12-armeb/drivers/leds/Kconfig
|
|
||||||
===================================================================
|
|
||||||
--- linux-2.6.23.12-armeb.orig/drivers/leds/Kconfig 2008-01-11 17:05:08.000000000 +1030
|
|
||||||
+++ linux-2.6.23.12-armeb/drivers/leds/Kconfig 2008-01-11 17:06:33.000000000 +1030
|
|
||||||
@@ -48,6 +48,12 @@
|
@@ -48,6 +48,12 @@
|
||||||
particular board must have LEDs and they must be connected
|
particular board must have LEDs and they must be connected
|
||||||
to the GPIO lines. If unsure, say Y.
|
to the GPIO lines. If unsure, say Y.
|
||||||
@ -532,23 +492,23 @@ Index: linux-2.6.23.12-armeb/drivers/leds/Kconfig
|
|||||||
config LEDS_TOSA
|
config LEDS_TOSA
|
||||||
tristate "LED Support for the Sharp SL-6000 series"
|
tristate "LED Support for the Sharp SL-6000 series"
|
||||||
depends on LEDS_CLASS && PXA_SHARPSL
|
depends on LEDS_CLASS && PXA_SHARPSL
|
||||||
Index: linux-2.6.23.12-armeb/drivers/leds/Makefile
|
Index: linux-2.6.24/drivers/leds/Makefile
|
||||||
===================================================================
|
===================================================================
|
||||||
--- linux-2.6.23.12-armeb.orig/drivers/leds/Makefile 2008-01-11 17:05:08.000000000 +1030
|
--- linux-2.6.24.orig/drivers/leds/Makefile 2008-03-20 21:07:50.000000000 +1030
|
||||||
+++ linux-2.6.23.12-armeb/drivers/leds/Makefile 2008-01-11 17:06:33.000000000 +1030
|
+++ linux-2.6.24/drivers/leds/Makefile 2008-03-20 21:09:56.000000000 +1030
|
||||||
@@ -9,6 +9,7 @@
|
@@ -20,6 +20,7 @@
|
||||||
obj-$(CONFIG_LEDS_LOCOMO) += leds-locomo.o
|
obj-$(CONFIG_LEDS_COBALT_RAQ) += leds-cobalt-raq.o
|
||||||
obj-$(CONFIG_LEDS_SPITZ) += leds-spitz.o
|
obj-$(CONFIG_LEDS_GPIO) += leds-gpio.o
|
||||||
obj-$(CONFIG_LEDS_IXP4XX) += leds-ixp4xx-gpio.o
|
obj-$(CONFIG_LEDS_CM_X270) += leds-cm-x270.o
|
||||||
+obj-$(CONFIG_LEDS_FSG) += leds-fsg.o
|
+obj-$(CONFIG_LEDS_FSG) += leds-fsg.o
|
||||||
obj-$(CONFIG_LEDS_TOSA) += leds-tosa.o
|
|
||||||
obj-$(CONFIG_LEDS_S3C24XX) += leds-s3c24xx.o
|
# LED Triggers
|
||||||
obj-$(CONFIG_LEDS_AMS_DELTA) += leds-ams-delta.o
|
obj-$(CONFIG_LEDS_TRIGGER_TIMER) += ledtrig-timer.o
|
||||||
Index: linux-2.6.23.12-armeb/drivers/leds/leds-fsg.c
|
Index: linux-2.6.24/drivers/leds/leds-fsg.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||||
+++ linux-2.6.23.12-armeb/drivers/leds/leds-fsg.c 2008-01-11 17:06:33.000000000 +1030
|
+++ linux-2.6.24/drivers/leds/leds-fsg.c 2008-03-20 21:09:12.000000000 +1030
|
||||||
@@ -0,0 +1,243 @@
|
@@ -0,0 +1,261 @@
|
||||||
+/*
|
+/*
|
||||||
+ * LED Driver for the Freecom FSG-3
|
+ * LED Driver for the Freecom FSG-3
|
||||||
+ *
|
+ *
|
||||||
@ -577,73 +537,73 @@ Index: linux-2.6.23.12-armeb/drivers/leds/leds-fsg.c
|
|||||||
+static unsigned short latch_value;
|
+static unsigned short latch_value;
|
||||||
+
|
+
|
||||||
+
|
+
|
||||||
+static void fsg_led_wlan_set(struct led_classdev *led_cdev, enum led_brightness value)
|
+static void fsg_led_wlan_set(struct led_classdev *led_cdev,
|
||||||
|
+ enum led_brightness value)
|
||||||
+{
|
+{
|
||||||
+ if (value) {
|
+ if (value) {
|
||||||
+ latch_value &= ~(1 << FSG_LED_WLAN_BIT);
|
+ latch_value &= ~(1 << FSG_LED_WLAN_BIT);
|
||||||
+ *latch_address = latch_value;
|
+ *latch_address = latch_value;
|
||||||
+ }
|
+ } else {
|
||||||
+ else {
|
|
||||||
+ latch_value |= (1 << FSG_LED_WLAN_BIT);
|
+ latch_value |= (1 << FSG_LED_WLAN_BIT);
|
||||||
+ *latch_address = latch_value;
|
+ *latch_address = latch_value;
|
||||||
+ }
|
+ }
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static void fsg_led_wan_set(struct led_classdev *led_cdev, enum led_brightness value)
|
+static void fsg_led_wan_set(struct led_classdev *led_cdev,
|
||||||
|
+ enum led_brightness value)
|
||||||
+{
|
+{
|
||||||
+ if (value) {
|
+ if (value) {
|
||||||
+ latch_value &= ~(1 << FSG_LED_WAN_BIT);
|
+ latch_value &= ~(1 << FSG_LED_WAN_BIT);
|
||||||
+ *latch_address = latch_value;
|
+ *latch_address = latch_value;
|
||||||
+ }
|
+ } else {
|
||||||
+ else {
|
|
||||||
+ latch_value |= (1 << FSG_LED_WAN_BIT);
|
+ latch_value |= (1 << FSG_LED_WAN_BIT);
|
||||||
+ *latch_address = latch_value;
|
+ *latch_address = latch_value;
|
||||||
+ }
|
+ }
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static void fsg_led_sata_set(struct led_classdev *led_cdev, enum led_brightness value)
|
+static void fsg_led_sata_set(struct led_classdev *led_cdev,
|
||||||
|
+ enum led_brightness value)
|
||||||
+{
|
+{
|
||||||
+ if (value) {
|
+ if (value) {
|
||||||
+ latch_value &= ~(1 << FSG_LED_SATA_BIT);
|
+ latch_value &= ~(1 << FSG_LED_SATA_BIT);
|
||||||
+ *latch_address = latch_value;
|
+ *latch_address = latch_value;
|
||||||
+ }
|
+ } else {
|
||||||
+ else {
|
|
||||||
+ latch_value |= (1 << FSG_LED_SATA_BIT);
|
+ latch_value |= (1 << FSG_LED_SATA_BIT);
|
||||||
+ *latch_address = latch_value;
|
+ *latch_address = latch_value;
|
||||||
+ }
|
+ }
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static void fsg_led_usb_set(struct led_classdev *led_cdev, enum led_brightness value)
|
+static void fsg_led_usb_set(struct led_classdev *led_cdev,
|
||||||
|
+ enum led_brightness value)
|
||||||
+{
|
+{
|
||||||
+ if (value) {
|
+ if (value) {
|
||||||
+ latch_value &= ~(1 << FSG_LED_USB_BIT);
|
+ latch_value &= ~(1 << FSG_LED_USB_BIT);
|
||||||
+ *latch_address = latch_value;
|
+ *latch_address = latch_value;
|
||||||
+ }
|
+ } else {
|
||||||
+ else {
|
|
||||||
+ latch_value |= (1 << FSG_LED_USB_BIT);
|
+ latch_value |= (1 << FSG_LED_USB_BIT);
|
||||||
+ *latch_address = latch_value;
|
+ *latch_address = latch_value;
|
||||||
+ }
|
+ }
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static void fsg_led_sync_set(struct led_classdev *led_cdev, enum led_brightness value)
|
+static void fsg_led_sync_set(struct led_classdev *led_cdev,
|
||||||
|
+ enum led_brightness value)
|
||||||
+{
|
+{
|
||||||
+ if (value) {
|
+ if (value) {
|
||||||
+ latch_value &= ~(1 << FSG_LED_SYNC_BIT);
|
+ latch_value &= ~(1 << FSG_LED_SYNC_BIT);
|
||||||
+ *latch_address = latch_value;
|
+ *latch_address = latch_value;
|
||||||
+ }
|
+ } else {
|
||||||
+ else {
|
|
||||||
+ latch_value |= (1 << FSG_LED_SYNC_BIT);
|
+ latch_value |= (1 << FSG_LED_SYNC_BIT);
|
||||||
+ *latch_address = latch_value;
|
+ *latch_address = latch_value;
|
||||||
+ }
|
+ }
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static void fsg_led_ring_set(struct led_classdev *led_cdev, enum led_brightness value)
|
+static void fsg_led_ring_set(struct led_classdev *led_cdev,
|
||||||
|
+ enum led_brightness value)
|
||||||
+{
|
+{
|
||||||
+ if (value) {
|
+ if (value) {
|
||||||
+ latch_value &= ~(1 << FSG_LED_RING_BIT);
|
+ latch_value &= ~(1 << FSG_LED_RING_BIT);
|
||||||
+ *latch_address = latch_value;
|
+ *latch_address = latch_value;
|
||||||
+ }
|
+ } else {
|
||||||
+ else {
|
|
||||||
+ latch_value |= (1 << FSG_LED_RING_BIT);
|
+ latch_value |= (1 << FSG_LED_RING_BIT);
|
||||||
+ *latch_address = latch_value;
|
+ *latch_address = latch_value;
|
||||||
+ }
|
+ }
|
||||||
@ -652,32 +612,32 @@ Index: linux-2.6.23.12-armeb/drivers/leds/leds-fsg.c
|
|||||||
+
|
+
|
||||||
+
|
+
|
||||||
+static struct led_classdev fsg_wlan_led = {
|
+static struct led_classdev fsg_wlan_led = {
|
||||||
+ .name = "fsg:wlan",
|
+ .name = "fsg:blue:wlan",
|
||||||
+ .brightness_set = fsg_led_wlan_set,
|
+ .brightness_set = fsg_led_wlan_set,
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
+static struct led_classdev fsg_wan_led = {
|
+static struct led_classdev fsg_wan_led = {
|
||||||
+ .name = "fsg:wan",
|
+ .name = "fsg:blue:wan",
|
||||||
+ .brightness_set = fsg_led_wan_set,
|
+ .brightness_set = fsg_led_wan_set,
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
+static struct led_classdev fsg_sata_led = {
|
+static struct led_classdev fsg_sata_led = {
|
||||||
+ .name = "fsg:sata",
|
+ .name = "fsg:blue:sata",
|
||||||
+ .brightness_set = fsg_led_sata_set,
|
+ .brightness_set = fsg_led_sata_set,
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
+static struct led_classdev fsg_usb_led = {
|
+static struct led_classdev fsg_usb_led = {
|
||||||
+ .name = "fsg:usb",
|
+ .name = "fsg:blue:usb",
|
||||||
+ .brightness_set = fsg_led_usb_set,
|
+ .brightness_set = fsg_led_usb_set,
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
+static struct led_classdev fsg_sync_led = {
|
+static struct led_classdev fsg_sync_led = {
|
||||||
+ .name = "fsg:sync",
|
+ .name = "fsg:blue:sync",
|
||||||
+ .brightness_set = fsg_led_sync_set,
|
+ .brightness_set = fsg_led_sync_set,
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
+static struct led_classdev fsg_ring_led = {
|
+static struct led_classdev fsg_ring_led = {
|
||||||
+ .name = "fsg:ring",
|
+ .name = "fsg:blue:ring",
|
||||||
+ .brightness_set = fsg_led_ring_set,
|
+ .brightness_set = fsg_led_ring_set,
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
@ -712,37 +672,63 @@ Index: linux-2.6.23.12-armeb/drivers/leds/leds-fsg.c
|
|||||||
+{
|
+{
|
||||||
+ int ret;
|
+ int ret;
|
||||||
+
|
+
|
||||||
+ /* FIXME: Need to work out how to handle failure below */
|
|
||||||
+
|
|
||||||
+ ret = led_classdev_register(&pdev->dev, &fsg_wlan_led);
|
+ ret = led_classdev_register(&pdev->dev, &fsg_wlan_led);
|
||||||
+ if (ret < 0)
|
+ if (ret < 0)
|
||||||
+ return ret;
|
+ goto failwlan;
|
||||||
+
|
+
|
||||||
+ ret = led_classdev_register(&pdev->dev, &fsg_wan_led);
|
+ ret = led_classdev_register(&pdev->dev, &fsg_wan_led);
|
||||||
+ if (ret < 0)
|
+ if (ret < 0)
|
||||||
+ return ret;
|
+ goto failwan;
|
||||||
+
|
+
|
||||||
+ ret = led_classdev_register(&pdev->dev, &fsg_sata_led);
|
+ ret = led_classdev_register(&pdev->dev, &fsg_sata_led);
|
||||||
+ if (ret < 0)
|
+ if (ret < 0)
|
||||||
+ return ret;
|
+ goto failsata;
|
||||||
+
|
+
|
||||||
+ ret = led_classdev_register(&pdev->dev, &fsg_usb_led);
|
+ ret = led_classdev_register(&pdev->dev, &fsg_usb_led);
|
||||||
+ if (ret < 0)
|
+ if (ret < 0)
|
||||||
+ return ret;
|
+ goto failusb;
|
||||||
+
|
+
|
||||||
+ ret = led_classdev_register(&pdev->dev, &fsg_sync_led);
|
+ ret = led_classdev_register(&pdev->dev, &fsg_sync_led);
|
||||||
+ if (ret < 0)
|
+ if (ret < 0)
|
||||||
+ return ret;
|
+ goto failsync;
|
||||||
+
|
+
|
||||||
+ ret = led_classdev_register(&pdev->dev, &fsg_ring_led);
|
+ ret = led_classdev_register(&pdev->dev, &fsg_ring_led);
|
||||||
+ if (ret < 0)
|
+ if (ret < 0)
|
||||||
|
+ goto failring;
|
||||||
|
+
|
||||||
|
+ /* Map the LED chip select address space */
|
||||||
|
+ latch_address = (unsigned short *) ioremap(IXP4XX_EXP_BUS_BASE(2), 512);
|
||||||
|
+ if (!latch_address) {
|
||||||
|
+ ret = -ENOMEM;
|
||||||
|
+ goto failremap;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ latch_value = 0xffff;
|
||||||
|
+ *latch_address = latch_value;
|
||||||
|
+
|
||||||
+ return ret;
|
+ return ret;
|
||||||
+
|
+
|
||||||
|
+ failremap:
|
||||||
|
+ led_classdev_unregister(&fsg_ring_led);
|
||||||
|
+ failring:
|
||||||
|
+ led_classdev_unregister(&fsg_sync_led);
|
||||||
|
+ failsync:
|
||||||
|
+ led_classdev_unregister(&fsg_usb_led);
|
||||||
|
+ failusb:
|
||||||
|
+ led_classdev_unregister(&fsg_sata_led);
|
||||||
|
+ failsata:
|
||||||
|
+ led_classdev_unregister(&fsg_wan_led);
|
||||||
|
+ failwan:
|
||||||
|
+ led_classdev_unregister(&fsg_wlan_led);
|
||||||
|
+ failwlan:
|
||||||
|
+
|
||||||
+ return ret;
|
+ return ret;
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static int fsg_led_remove(struct platform_device *pdev)
|
+static int fsg_led_remove(struct platform_device *pdev)
|
||||||
+{
|
+{
|
||||||
|
+ iounmap(latch_address);
|
||||||
|
+
|
||||||
+ led_classdev_unregister(&fsg_wlan_led);
|
+ led_classdev_unregister(&fsg_wlan_led);
|
||||||
+ led_classdev_unregister(&fsg_wan_led);
|
+ led_classdev_unregister(&fsg_wan_led);
|
||||||
+ led_classdev_unregister(&fsg_sata_led);
|
+ led_classdev_unregister(&fsg_sata_led);
|
||||||
@ -769,20 +755,12 @@ Index: linux-2.6.23.12-armeb/drivers/leds/leds-fsg.c
|
|||||||
+
|
+
|
||||||
+static int __init fsg_led_init(void)
|
+static int __init fsg_led_init(void)
|
||||||
+{
|
+{
|
||||||
+ /* Map the LED chip select address space */
|
|
||||||
+ latch_address = (unsigned short *) ioremap(IXP4XX_EXP_BUS_BASE(2), 512);
|
|
||||||
+ if (!latch_address)
|
|
||||||
+ return -ENOMEM;
|
|
||||||
+ latch_value = 0xffff;
|
|
||||||
+ *latch_address = latch_value;
|
|
||||||
+ /* FIXME: We leak memory if the next line fails */
|
|
||||||
+ return platform_driver_register(&fsg_led_driver);
|
+ return platform_driver_register(&fsg_led_driver);
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+static void __exit fsg_led_exit(void)
|
+static void __exit fsg_led_exit(void)
|
||||||
+{
|
+{
|
||||||
+ platform_driver_unregister(&fsg_led_driver);
|
+ platform_driver_unregister(&fsg_led_driver);
|
||||||
+ iounmap(latch_address);
|
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+
|
+
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Index: linux-2.6.23.12/arch/arm/mach-ixp4xx/Kconfig
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/Kconfig
|
||||||
===================================================================
|
===================================================================
|
||||||
--- linux-2.6.23.12.orig/arch/arm/mach-ixp4xx/Kconfig 2008-01-05 13:30:14.000000000 +1030
|
--- linux-2.6.24.orig/arch/arm/mach-ixp4xx/Kconfig 2008-03-12 21:21:23.000000000 +1030
|
||||||
+++ linux-2.6.23.12/arch/arm/mach-ixp4xx/Kconfig 2008-01-05 13:37:05.000000000 +1030
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/Kconfig 2008-03-12 21:21:26.000000000 +1030
|
||||||
@@ -57,6 +57,14 @@
|
@@ -57,6 +57,14 @@
|
||||||
WG302 v2 or WAG302 v2 Access Points. For more information
|
WG302 v2 or WAG302 v2 Access Points. For more information
|
||||||
on this platform, see http://openwrt.org
|
on this platform, see http://openwrt.org
|
||||||
@ -17,10 +17,10 @@ Index: linux-2.6.23.12/arch/arm/mach-ixp4xx/Kconfig
|
|||||||
config ARCH_IXDP425
|
config ARCH_IXDP425
|
||||||
bool "IXDP425"
|
bool "IXDP425"
|
||||||
help
|
help
|
||||||
Index: linux-2.6.23.12/arch/arm/mach-ixp4xx/Makefile
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/Makefile
|
||||||
===================================================================
|
===================================================================
|
||||||
--- linux-2.6.23.12.orig/arch/arm/mach-ixp4xx/Makefile 2008-01-05 13:32:45.000000000 +1030
|
--- linux-2.6.24.orig/arch/arm/mach-ixp4xx/Makefile 2008-03-12 21:21:23.000000000 +1030
|
||||||
+++ linux-2.6.23.12/arch/arm/mach-ixp4xx/Makefile 2008-01-05 13:37:37.000000000 +1030
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/Makefile 2008-03-12 21:21:26.000000000 +1030
|
||||||
@@ -16,6 +16,7 @@
|
@@ -16,6 +16,7 @@
|
||||||
obj-pci-$(CONFIG_MACH_GATEWAY7001) += gateway7001-pci.o
|
obj-pci-$(CONFIG_MACH_GATEWAY7001) += gateway7001-pci.o
|
||||||
obj-pci-$(CONFIG_MACH_WG302V2) += wg302v2-pci.o
|
obj-pci-$(CONFIG_MACH_WG302V2) += wg302v2-pci.o
|
||||||
@ -32,14 +32,14 @@ Index: linux-2.6.23.12/arch/arm/mach-ixp4xx/Makefile
|
|||||||
@@ -30,5 +31,6 @@
|
@@ -30,5 +31,6 @@
|
||||||
obj-$(CONFIG_MACH_GATEWAY7001) += gateway7001-setup.o
|
obj-$(CONFIG_MACH_GATEWAY7001) += gateway7001-setup.o
|
||||||
obj-$(CONFIG_MACH_WG302V2) += wg302v2-setup.o
|
obj-$(CONFIG_MACH_WG302V2) += wg302v2-setup.o
|
||||||
obj-$(CONFIG_MACH_FSG) += fsg-setup.o fsg-power.o
|
obj-$(CONFIG_MACH_FSG) += fsg-setup.o
|
||||||
+obj-$(CONFIG_MACH_PRONGHORNMETRO) += pronghornmetro-setup.o
|
+obj-$(CONFIG_MACH_PRONGHORNMETRO) += pronghornmetro-setup.o
|
||||||
|
|
||||||
obj-$(CONFIG_PCI) += $(obj-pci-$(CONFIG_PCI)) common-pci.o
|
obj-$(CONFIG_PCI) += $(obj-pci-$(CONFIG_PCI)) common-pci.o
|
||||||
Index: linux-2.6.23.12/arch/arm/mach-ixp4xx/pronghornmetro-pci.c
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/pronghornmetro-pci.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||||
+++ linux-2.6.23.12/arch/arm/mach-ixp4xx/pronghornmetro-pci.c 2008-01-05 13:37:05.000000000 +1030
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/pronghornmetro-pci.c 2008-03-12 21:21:26.000000000 +1030
|
||||||
@@ -0,0 +1,74 @@
|
@@ -0,0 +1,74 @@
|
||||||
+/*
|
+/*
|
||||||
+ * arch/arch/mach-ixp4xx/pronghornmetro-pci.c
|
+ * arch/arch/mach-ixp4xx/pronghornmetro-pci.c
|
||||||
@ -115,10 +115,10 @@ Index: linux-2.6.23.12/arch/arm/mach-ixp4xx/pronghornmetro-pci.c
|
|||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+subsys_initcall(pronghornmetro_pci_init);
|
+subsys_initcall(pronghornmetro_pci_init);
|
||||||
Index: linux-2.6.23.12/arch/arm/mach-ixp4xx/pronghornmetro-setup.c
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/pronghornmetro-setup.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||||
+++ linux-2.6.23.12/arch/arm/mach-ixp4xx/pronghornmetro-setup.c 2008-01-05 13:37:05.000000000 +1030
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/pronghornmetro-setup.c 2008-03-12 21:21:26.000000000 +1030
|
||||||
@@ -0,0 +1,147 @@
|
@@ -0,0 +1,147 @@
|
||||||
+/*
|
+/*
|
||||||
+ * arch/arm/mach-ixp4xx/pronghornmetro-setup.c
|
+ * arch/arm/mach-ixp4xx/pronghornmetro-setup.c
|
||||||
@ -267,10 +267,10 @@ Index: linux-2.6.23.12/arch/arm/mach-ixp4xx/pronghornmetro-setup.c
|
|||||||
+ .init_machine = pronghornmetro_init,
|
+ .init_machine = pronghornmetro_init,
|
||||||
+MACHINE_END
|
+MACHINE_END
|
||||||
+#endif
|
+#endif
|
||||||
Index: linux-2.6.23.12/Documentation/arm/IXP4xx
|
Index: linux-2.6.24/Documentation/arm/IXP4xx
|
||||||
===================================================================
|
===================================================================
|
||||||
--- linux-2.6.23.12.orig/Documentation/arm/IXP4xx 2008-01-05 13:30:14.000000000 +1030
|
--- linux-2.6.24.orig/Documentation/arm/IXP4xx 2008-03-12 21:20:48.000000000 +1030
|
||||||
+++ linux-2.6.23.12/Documentation/arm/IXP4xx 2008-01-05 13:37:05.000000000 +1030
|
+++ linux-2.6.24/Documentation/arm/IXP4xx 2008-03-12 21:21:26.000000000 +1030
|
||||||
@@ -111,6 +111,9 @@
|
@@ -111,6 +111,9 @@
|
||||||
the platform has two mini-PCI slots used for 802.11[bga] cards.
|
the platform has two mini-PCI slots used for 802.11[bga] cards.
|
||||||
Finally, there is an IDE port hanging off the expansion bus.
|
Finally, there is an IDE port hanging off the expansion bus.
|
||||||
@ -281,10 +281,10 @@ Index: linux-2.6.23.12/Documentation/arm/IXP4xx
|
|||||||
Gateworks Avila Network Platform
|
Gateworks Avila Network Platform
|
||||||
http://www.gateworks.com/avila_sbc.htm
|
http://www.gateworks.com/avila_sbc.htm
|
||||||
|
|
||||||
Index: linux-2.6.23.12/include/asm-arm/arch-ixp4xx/uncompress.h
|
Index: linux-2.6.24/include/asm-arm/arch-ixp4xx/uncompress.h
|
||||||
===================================================================
|
===================================================================
|
||||||
--- linux-2.6.23.12.orig/include/asm-arm/arch-ixp4xx/uncompress.h 2008-01-05 13:30:14.000000000 +1030
|
--- linux-2.6.24.orig/include/asm-arm/arch-ixp4xx/uncompress.h 2008-03-12 21:20:48.000000000 +1030
|
||||||
+++ linux-2.6.23.12/include/asm-arm/arch-ixp4xx/uncompress.h 2008-01-05 13:37:05.000000000 +1030
|
+++ linux-2.6.24/include/asm-arm/arch-ixp4xx/uncompress.h 2008-03-12 21:21:26.000000000 +1030
|
||||||
@@ -41,7 +41,8 @@
|
@@ -41,7 +41,8 @@
|
||||||
* Some boards are using UART2 as console
|
* Some boards are using UART2 as console
|
||||||
*/
|
*/
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/Kconfig linux-2.6.23-owrt/arch/arm/mach-ixp4xx/Kconfig
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/Kconfig
|
||||||
--- linux-2.6.23/arch/arm/mach-ixp4xx/Kconfig 2007-10-23 18:03:34.000000000 +0200
|
===================================================================
|
||||||
+++ linux-2.6.23-owrt/arch/arm/mach-ixp4xx/Kconfig 2007-10-23 18:22:41.000000000 +0200
|
--- linux-2.6.24.orig/arch/arm/mach-ixp4xx/Kconfig 2008-03-12 21:21:26.000000000 +1030
|
||||||
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/Kconfig 2008-03-12 21:21:26.000000000 +1030
|
||||||
@@ -65,6 +65,14 @@
|
@@ -65,6 +65,14 @@
|
||||||
Engineering Pronghorn Metro Platform. For more
|
Engineering Pronghorn Metro Platform. For more
|
||||||
information on this platform, see <file:Documentation/arm/IXP4xx>.
|
information on this platform, see <file:Documentation/arm/IXP4xx>.
|
||||||
@ -16,9 +17,10 @@ diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/Kconfig linux-2.6.23-owrt/arch/arm/m
|
|||||||
config ARCH_IXDP425
|
config ARCH_IXDP425
|
||||||
bool "IXDP425"
|
bool "IXDP425"
|
||||||
help
|
help
|
||||||
diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/Makefile linux-2.6.23-owrt/arch/arm/mach-ixp4xx/Makefile
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/Makefile
|
||||||
--- linux-2.6.23/arch/arm/mach-ixp4xx/Makefile 2007-10-23 18:03:34.000000000 +0200
|
===================================================================
|
||||||
+++ linux-2.6.23-owrt/arch/arm/mach-ixp4xx/Makefile 2007-10-23 18:22:41.000000000 +0200
|
--- linux-2.6.24.orig/arch/arm/mach-ixp4xx/Makefile 2008-03-12 21:21:26.000000000 +1030
|
||||||
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/Makefile 2008-03-12 21:21:26.000000000 +1030
|
||||||
@@ -17,6 +17,7 @@
|
@@ -17,6 +17,7 @@
|
||||||
obj-pci-$(CONFIG_MACH_WG302V2) += wg302v2-pci.o
|
obj-pci-$(CONFIG_MACH_WG302V2) += wg302v2-pci.o
|
||||||
obj-pci-$(CONFIG_MACH_FSG) += fsg-pci.o
|
obj-pci-$(CONFIG_MACH_FSG) += fsg-pci.o
|
||||||
@ -27,17 +29,17 @@ diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/Makefile linux-2.6.23-owrt/arch/arm/
|
|||||||
|
|
||||||
obj-y += common.o
|
obj-y += common.o
|
||||||
|
|
||||||
@@ -32,6 +33,7 @@
|
@@ -32,5 +33,6 @@
|
||||||
obj-$(CONFIG_MACH_WG302V2) += wg302v2-setup.o
|
obj-$(CONFIG_MACH_WG302V2) += wg302v2-setup.o
|
||||||
obj-$(CONFIG_MACH_FSG) += fsg-setup.o
|
obj-$(CONFIG_MACH_FSG) += fsg-setup.o
|
||||||
obj-$(CONFIG_MACH_PRONGHORNMETRO) += pronghornmetro-setup.o
|
obj-$(CONFIG_MACH_PRONGHORNMETRO) += pronghornmetro-setup.o
|
||||||
+obj-$(CONFIG_MACH_COMPEX) += compex-setup.o
|
+obj-$(CONFIG_MACH_COMPEX) += compex-setup.o
|
||||||
|
|
||||||
obj-$(CONFIG_PCI) += $(obj-pci-$(CONFIG_PCI)) common-pci.o
|
obj-$(CONFIG_PCI) += $(obj-pci-$(CONFIG_PCI)) common-pci.o
|
||||||
obj-$(CONFIG_IXP4XX_QMGR) += ixp4xx_qmgr.o
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/compex-setup.c
|
||||||
diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/compex-setup.c linux-2.6.23-owrt/arch/arm/mach-ixp4xx/compex-setup.c
|
===================================================================
|
||||||
--- linux-2.6.23/arch/arm/mach-ixp4xx/compex-setup.c 1970-01-01 01:00:00.000000000 +0100
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||||
+++ linux-2.6.23-owrt/arch/arm/mach-ixp4xx/compex-setup.c 2007-10-23 18:22:41.000000000 +0200
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/compex-setup.c 2008-03-12 21:21:26.000000000 +1030
|
||||||
@@ -0,0 +1,120 @@
|
@@ -0,0 +1,120 @@
|
||||||
+/*
|
+/*
|
||||||
+ * arch/arm/mach-ixp4xx/compex-setup.c
|
+ * arch/arm/mach-ixp4xx/compex-setup.c
|
||||||
@ -159,9 +161,10 @@ diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/compex-setup.c linux-2.6.23-owrt/arc
|
|||||||
+ .init_machine = compex_init,
|
+ .init_machine = compex_init,
|
||||||
+MACHINE_END
|
+MACHINE_END
|
||||||
+#endif
|
+#endif
|
||||||
diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/ixdp425-pci.c linux-2.6.23-owrt/arch/arm/mach-ixp4xx/ixdp425-pci.c
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/ixdp425-pci.c
|
||||||
--- linux-2.6.23/arch/arm/mach-ixp4xx/ixdp425-pci.c 2007-10-09 22:31:38.000000000 +0200
|
===================================================================
|
||||||
+++ linux-2.6.23-owrt/arch/arm/mach-ixp4xx/ixdp425-pci.c 2007-10-23 18:22:41.000000000 +0200
|
--- linux-2.6.24.orig/arch/arm/mach-ixp4xx/ixdp425-pci.c 2008-03-12 21:20:48.000000000 +1030
|
||||||
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/ixdp425-pci.c 2008-03-12 21:21:26.000000000 +1030
|
||||||
@@ -66,7 +66,7 @@
|
@@ -66,7 +66,7 @@
|
||||||
int __init ixdp425_pci_init(void)
|
int __init ixdp425_pci_init(void)
|
||||||
{
|
{
|
||||||
@ -171,9 +174,10 @@ diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/ixdp425-pci.c linux-2.6.23-owrt/arch
|
|||||||
pci_common_init(&ixdp425_pci);
|
pci_common_init(&ixdp425_pci);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
diff -Nur linux-2.6.23/arch/arm/tools/mach-types linux-2.6.23-owrt/arch/arm/tools/mach-types
|
Index: linux-2.6.24/arch/arm/tools/mach-types
|
||||||
--- linux-2.6.23/arch/arm/tools/mach-types 2007-10-09 22:31:38.000000000 +0200
|
===================================================================
|
||||||
+++ linux-2.6.23-owrt/arch/arm/tools/mach-types 2007-10-23 18:22:41.000000000 +0200
|
--- linux-2.6.24.orig/arch/arm/tools/mach-types 2008-03-12 21:20:48.000000000 +1030
|
||||||
|
+++ linux-2.6.24/arch/arm/tools/mach-types 2008-03-12 21:21:26.000000000 +1030
|
||||||
@@ -1278,7 +1278,7 @@
|
@@ -1278,7 +1278,7 @@
|
||||||
smdk6400 MACH_SMDK6400 SMDK6400 1270
|
smdk6400 MACH_SMDK6400 SMDK6400 1270
|
||||||
nokia_n800 MACH_NOKIA_N800 NOKIA_N800 1271
|
nokia_n800 MACH_NOKIA_N800 NOKIA_N800 1271
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/Kconfig linux-2.6.23-owrt/arch/arm/mach-ixp4xx/Kconfig
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/Kconfig
|
||||||
--- linux-2.6.23/arch/arm/mach-ixp4xx/Kconfig 2007-10-23 18:39:29.000000000 +0200
|
===================================================================
|
||||||
+++ linux-2.6.23-owrt/arch/arm/mach-ixp4xx/Kconfig 2007-10-23 19:11:31.000000000 +0200
|
--- linux-2.6.24.orig/arch/arm/mach-ixp4xx/Kconfig 2008-03-12 21:21:26.000000000 +1030
|
||||||
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/Kconfig 2008-03-12 21:21:27.000000000 +1030
|
||||||
@@ -73,6 +73,14 @@
|
@@ -73,6 +73,14 @@
|
||||||
WP18 or NP18A boards. For more information on this
|
WP18 or NP18A boards. For more information on this
|
||||||
platform, see http://openwrt.org
|
platform, see http://openwrt.org
|
||||||
@ -16,9 +17,10 @@ diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/Kconfig linux-2.6.23-owrt/arch/arm/m
|
|||||||
config ARCH_IXDP425
|
config ARCH_IXDP425
|
||||||
bool "IXDP425"
|
bool "IXDP425"
|
||||||
help
|
help
|
||||||
diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/Makefile linux-2.6.23-owrt/arch/arm/mach-ixp4xx/Makefile
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/Makefile
|
||||||
--- linux-2.6.23/arch/arm/mach-ixp4xx/Makefile 2007-10-23 18:39:29.000000000 +0200
|
===================================================================
|
||||||
+++ linux-2.6.23-owrt/arch/arm/mach-ixp4xx/Makefile 2007-10-23 19:11:31.000000000 +0200
|
--- linux-2.6.24.orig/arch/arm/mach-ixp4xx/Makefile 2008-03-12 21:21:26.000000000 +1030
|
||||||
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/Makefile 2008-03-12 21:21:27.000000000 +1030
|
||||||
@@ -18,6 +18,7 @@
|
@@ -18,6 +18,7 @@
|
||||||
obj-pci-$(CONFIG_MACH_FSG) += fsg-pci.o
|
obj-pci-$(CONFIG_MACH_FSG) += fsg-pci.o
|
||||||
obj-pci-$(CONFIG_MACH_PRONGHORNMETRO) += pronghornmetro-pci.o
|
obj-pci-$(CONFIG_MACH_PRONGHORNMETRO) += pronghornmetro-pci.o
|
||||||
@ -27,17 +29,17 @@ diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/Makefile linux-2.6.23-owrt/arch/arm/
|
|||||||
|
|
||||||
obj-y += common.o
|
obj-y += common.o
|
||||||
|
|
||||||
@@ -34,6 +35,7 @@
|
@@ -34,5 +35,6 @@
|
||||||
obj-$(CONFIG_MACH_FSG) += fsg-setup.o
|
obj-$(CONFIG_MACH_FSG) += fsg-setup.o
|
||||||
obj-$(CONFIG_MACH_PRONGHORNMETRO) += pronghornmetro-setup.o
|
obj-$(CONFIG_MACH_PRONGHORNMETRO) += pronghornmetro-setup.o
|
||||||
obj-$(CONFIG_MACH_COMPEX) += compex-setup.o
|
obj-$(CONFIG_MACH_COMPEX) += compex-setup.o
|
||||||
+obj-$(CONFIG_MACH_WRT300NV2) += wrt300nv2-setup.o
|
+obj-$(CONFIG_MACH_WRT300NV2) += wrt300nv2-setup.o
|
||||||
|
|
||||||
obj-$(CONFIG_PCI) += $(obj-pci-$(CONFIG_PCI)) common-pci.o
|
obj-$(CONFIG_PCI) += $(obj-pci-$(CONFIG_PCI)) common-pci.o
|
||||||
obj-$(CONFIG_IXP4XX_QMGR) += ixp4xx_qmgr.o
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/wrt300nv2-pci.c
|
||||||
diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/wrt300nv2-pci.c linux-2.6.23-owrt/arch/arm/mach-ixp4xx/wrt300nv2-pci.c
|
===================================================================
|
||||||
--- linux-2.6.23/arch/arm/mach-ixp4xx/wrt300nv2-pci.c 1970-01-01 01:00:00.000000000 +0100
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||||
+++ linux-2.6.23-owrt/arch/arm/mach-ixp4xx/wrt300nv2-pci.c 2007-10-23 19:11:31.000000000 +0200
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/wrt300nv2-pci.c 2008-03-12 21:21:27.000000000 +1030
|
||||||
@@ -0,0 +1,65 @@
|
@@ -0,0 +1,65 @@
|
||||||
+/*
|
+/*
|
||||||
+ * arch/arch/mach-ixp4xx/wrt300nv2-pci.c
|
+ * arch/arch/mach-ixp4xx/wrt300nv2-pci.c
|
||||||
@ -104,9 +106,10 @@ diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/wrt300nv2-pci.c linux-2.6.23-owrt/ar
|
|||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+subsys_initcall(wrt300nv2_pci_init);
|
+subsys_initcall(wrt300nv2_pci_init);
|
||||||
diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/wrt300nv2-setup.c linux-2.6.23-owrt/arch/arm/mach-ixp4xx/wrt300nv2-setup.c
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/wrt300nv2-setup.c
|
||||||
--- linux-2.6.23/arch/arm/mach-ixp4xx/wrt300nv2-setup.c 1970-01-01 01:00:00.000000000 +0100
|
===================================================================
|
||||||
+++ linux-2.6.23-owrt/arch/arm/mach-ixp4xx/wrt300nv2-setup.c 2007-10-23 19:11:31.000000000 +0200
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||||
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/wrt300nv2-setup.c 2008-03-12 21:21:27.000000000 +1030
|
||||||
@@ -0,0 +1,108 @@
|
@@ -0,0 +1,108 @@
|
||||||
+/*
|
+/*
|
||||||
+ * arch/arm/mach-ixp4xx/wrt300nv2-setup.c
|
+ * arch/arm/mach-ixp4xx/wrt300nv2-setup.c
|
||||||
@ -216,9 +219,10 @@ diff -Nur linux-2.6.23/arch/arm/mach-ixp4xx/wrt300nv2-setup.c linux-2.6.23-owrt/
|
|||||||
+ .init_machine = wrt300nv2_init,
|
+ .init_machine = wrt300nv2_init,
|
||||||
+MACHINE_END
|
+MACHINE_END
|
||||||
+#endif
|
+#endif
|
||||||
diff -Nur linux-2.6.23/include/asm-arm/arch-ixp4xx/uncompress.h linux-2.6.23-owrt/include/asm-arm/arch-ixp4xx/uncompress.h
|
Index: linux-2.6.24/include/asm-arm/arch-ixp4xx/uncompress.h
|
||||||
--- linux-2.6.23/include/asm-arm/arch-ixp4xx/uncompress.h 2007-10-23 18:03:35.000000000 +0200
|
===================================================================
|
||||||
+++ linux-2.6.23-owrt/include/asm-arm/arch-ixp4xx/uncompress.h 2007-10-23 19:12:30.000000000 +0200
|
--- linux-2.6.24.orig/include/asm-arm/arch-ixp4xx/uncompress.h 2008-03-12 21:21:26.000000000 +1030
|
||||||
|
+++ linux-2.6.24/include/asm-arm/arch-ixp4xx/uncompress.h 2008-03-12 21:21:27.000000000 +1030
|
||||||
@@ -42,7 +42,7 @@
|
@@ -42,7 +42,7 @@
|
||||||
*/
|
*/
|
||||||
if (machine_is_adi_coyote() || machine_is_gtwx5715() ||
|
if (machine_is_adi_coyote() || machine_is_gtwx5715() ||
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
diff -Nur linux-2.6.23.12/arch/arm/mach-ixp4xx/Kconfig linux-2.6.23.12-owrt/arch/arm/mach-ixp4xx/Kconfig
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/Kconfig
|
||||||
--- linux-2.6.23.12/arch/arm/mach-ixp4xx/Kconfig 2008-01-14 22:08:42.000000000 +0100
|
===================================================================
|
||||||
+++ linux-2.6.23.12-owrt/arch/arm/mach-ixp4xx/Kconfig 2008-01-14 22:12:21.000000000 +0100
|
--- linux-2.6.24.orig/arch/arm/mach-ixp4xx/Kconfig 2008-03-12 21:21:28.000000000 +1030
|
||||||
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/Kconfig 2008-03-12 21:21:29.000000000 +1030
|
||||||
@@ -49,6 +49,14 @@
|
@@ -49,6 +49,14 @@
|
||||||
7001 Access Point. For more information on this platform,
|
7001 Access Point. For more information on this platform,
|
||||||
see http://openwrt.org
|
see http://openwrt.org
|
||||||
@ -16,9 +17,10 @@ diff -Nur linux-2.6.23.12/arch/arm/mach-ixp4xx/Kconfig linux-2.6.23.12-owrt/arch
|
|||||||
config MACH_WG302V2
|
config MACH_WG302V2
|
||||||
bool "Netgear WG302 v2 / WAG302 v2"
|
bool "Netgear WG302 v2 / WAG302 v2"
|
||||||
select PCI
|
select PCI
|
||||||
diff -Nur linux-2.6.23.12/arch/arm/mach-ixp4xx/Makefile linux-2.6.23.12-owrt/arch/arm/mach-ixp4xx/Makefile
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/Makefile
|
||||||
--- linux-2.6.23.12/arch/arm/mach-ixp4xx/Makefile 2008-01-14 22:08:42.000000000 +0100
|
===================================================================
|
||||||
+++ linux-2.6.23.12-owrt/arch/arm/mach-ixp4xx/Makefile 2008-01-14 22:11:47.000000000 +0100
|
--- linux-2.6.24.orig/arch/arm/mach-ixp4xx/Makefile 2008-03-12 21:21:28.000000000 +1030
|
||||||
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/Makefile 2008-03-12 21:21:29.000000000 +1030
|
||||||
@@ -14,6 +14,7 @@
|
@@ -14,6 +14,7 @@
|
||||||
obj-pci-$(CONFIG_MACH_NAS100D) += nas100d-pci.o
|
obj-pci-$(CONFIG_MACH_NAS100D) += nas100d-pci.o
|
||||||
obj-pci-$(CONFIG_MACH_DSMG600) += dsmg600-pci.o
|
obj-pci-$(CONFIG_MACH_DSMG600) += dsmg600-pci.o
|
||||||
@ -33,11 +35,12 @@ diff -Nur linux-2.6.23.12/arch/arm/mach-ixp4xx/Makefile linux-2.6.23.12-owrt/arc
|
|||||||
obj-$(CONFIG_MACH_GATEWAY7001) += gateway7001-setup.o
|
obj-$(CONFIG_MACH_GATEWAY7001) += gateway7001-setup.o
|
||||||
+obj-$(CONFIG_MACH_WG302V1) += wg302v1-setup.o
|
+obj-$(CONFIG_MACH_WG302V1) += wg302v1-setup.o
|
||||||
obj-$(CONFIG_MACH_WG302V2) += wg302v2-setup.o
|
obj-$(CONFIG_MACH_WG302V2) += wg302v2-setup.o
|
||||||
obj-$(CONFIG_MACH_FSG) += fsg-setup.o fsg-power.o
|
obj-$(CONFIG_MACH_FSG) += fsg-setup.o
|
||||||
obj-$(CONFIG_MACH_PRONGHORNMETRO) += pronghornmetro-setup.o
|
obj-$(CONFIG_MACH_PRONGHORNMETRO) += pronghornmetro-setup.o
|
||||||
diff -Nur linux-2.6.23.12/arch/arm/mach-ixp4xx/wg302v1-pci.c linux-2.6.23.12-owrt/arch/arm/mach-ixp4xx/wg302v1-pci.c
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/wg302v1-pci.c
|
||||||
--- linux-2.6.23.12/arch/arm/mach-ixp4xx/wg302v1-pci.c 1970-01-01 01:00:00.000000000 +0100
|
===================================================================
|
||||||
+++ linux-2.6.23.12-owrt/arch/arm/mach-ixp4xx/wg302v1-pci.c 2008-01-14 22:33:52.000000000 +0100
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||||
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/wg302v1-pci.c 2008-03-12 21:21:29.000000000 +1030
|
||||||
@@ -0,0 +1,63 @@
|
@@ -0,0 +1,63 @@
|
||||||
+/*
|
+/*
|
||||||
+ * arch/arch/mach-ixp4xx/wg302v1-pci.c
|
+ * arch/arch/mach-ixp4xx/wg302v1-pci.c
|
||||||
@ -102,9 +105,10 @@ diff -Nur linux-2.6.23.12/arch/arm/mach-ixp4xx/wg302v1-pci.c linux-2.6.23.12-owr
|
|||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
+subsys_initcall(wg302v1_pci_init);
|
+subsys_initcall(wg302v1_pci_init);
|
||||||
diff -Nur linux-2.6.23.12/arch/arm/mach-ixp4xx/wg302v1-setup.c linux-2.6.23.12-owrt/arch/arm/mach-ixp4xx/wg302v1-setup.c
|
Index: linux-2.6.24/arch/arm/mach-ixp4xx/wg302v1-setup.c
|
||||||
--- linux-2.6.23.12/arch/arm/mach-ixp4xx/wg302v1-setup.c 1970-01-01 01:00:00.000000000 +0100
|
===================================================================
|
||||||
+++ linux-2.6.23.12-owrt/arch/arm/mach-ixp4xx/wg302v1-setup.c 2008-01-14 23:04:01.000000000 +0100
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
||||||
|
+++ linux-2.6.24/arch/arm/mach-ixp4xx/wg302v1-setup.c 2008-03-12 21:21:29.000000000 +1030
|
||||||
@@ -0,0 +1,109 @@
|
@@ -0,0 +1,109 @@
|
||||||
+/*
|
+/*
|
||||||
+ * arch/arm/mach-ixp4xx/wg302v1-setup.c
|
+ * arch/arm/mach-ixp4xx/wg302v1-setup.c
|
||||||
|
Loading…
Reference in New Issue
Block a user