summaryrefslogtreecommitdiffstats
path: root/target/linux/ixp4xx-2.6/patches/420-pronghorn_metro_mtd_microcode.patch
diff options
context:
space:
mode:
authorkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-04-04 10:05:33 +0000
committerkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-04-04 10:05:33 +0000
commit7b54053908fcad636059945ea8b978578d631885 (patch)
tree2a66697e82fa893238bca3ce4aa777eb2211be67 /target/linux/ixp4xx-2.6/patches/420-pronghorn_metro_mtd_microcode.patch
parentccaa720fcfd7cdf40d681bca53abcc89d4265696 (diff)
set up the NPEs and microcode loading on the Pronghorn Metro
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6861 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ixp4xx-2.6/patches/420-pronghorn_metro_mtd_microcode.patch')
-rw-r--r--target/linux/ixp4xx-2.6/patches/420-pronghorn_metro_mtd_microcode.patch56
1 files changed, 56 insertions, 0 deletions
diff --git a/target/linux/ixp4xx-2.6/patches/420-pronghorn_metro_mtd_microcode.patch b/target/linux/ixp4xx-2.6/patches/420-pronghorn_metro_mtd_microcode.patch
new file mode 100644
index 000000000..f3fed26b1
--- /dev/null
+++ b/target/linux/ixp4xx-2.6/patches/420-pronghorn_metro_mtd_microcode.patch
@@ -0,0 +1,56 @@
+diff -Nur linux-2.6.19.2/arch/arm/mach-ixp4xx/pronghornmetro-setup.c linux-2.6.19.2-owrt/arch/arm/mach-ixp4xx/pronghornmetro-setup.c
+--- linux-2.6.19.2/arch/arm/mach-ixp4xx/pronghornmetro-setup.c 2007-04-04 11:48:14.000000000 +0200
++++ linux-2.6.19.2-owrt/arch/arm/mach-ixp4xx/pronghornmetro-setup.c 2007-04-04 11:52:09.000000000 +0200
+@@ -14,6 +14,7 @@
+ #include <linux/serial.h>
+ #include <linux/tty.h>
+ #include <linux/serial_8250.h>
++#include <linux/mtd/mtd.h>
+ #include <linux/slab.h>
+
+ #include <asm/types.h>
+@@ -133,12 +134,35 @@
+ .resource = &res_mac1,
+ };
+
++struct npe_ucode_platform_data pronghornmetro_npe_ucode_data = {
++ .mtd_partition = "RedBoot",
++};
++
++static struct platform_device pronghornmetro_npe_ucode = {
++ .name = "ixp4xx_npe_ucode",
++ .id = 0,
++ .dev.platform_data = &pronghornmetro_npe_ucode_data,
++};
++
+ static struct platform_device *pronghornmetro_devices[] __initdata = {
+ &pronghornmetro_i2c_controller,
+ &pronghornmetro_flash,
+ &pronghornmetro_uart,
+ &mac0,
+ &mac1,
++ &pronghornmetro_npe_ucode,
++};
++
++static void pronghornmetro_flash_add(struct mtd_info *mtd)
++{
++}
++
++static void pronghornmetro_flash_remove(struct mtd_info *mtd) {
++}
++
++static struct mtd_notifier pronghornmetro_flash_notifier = {
++ .add = pronghornmetro_flash_add,
++ .remove = pronghornmetro_flash_remove,
+ };
+
+ static void __init pronghornmetro_init(void)
+@@ -152,6 +176,8 @@
+ *IXP4XX_EXP_CS1 = *IXP4XX_EXP_CS0;
+
+ platform_add_devices(pronghornmetro_devices, ARRAY_SIZE(pronghornmetro_devices));
++
++ register_mtd_user(&pronghornmetro_flash_notifier);
+ }
+
+ #ifdef CONFIG_MACH_PRONGHORNMETRO