diff options
Diffstat (limited to 'arch/arm/mach-kirkwood/db88f6281-bp-setup.c')
-rw-r--r-- | arch/arm/mach-kirkwood/db88f6281-bp-setup.c | 31 |
1 files changed, 1 insertions, 30 deletions
diff --git a/arch/arm/mach-kirkwood/db88f6281-bp-setup.c b/arch/arm/mach-kirkwood/db88f6281-bp-setup.c index 5505d5837752..39bdf4bcace9 100644 --- a/arch/arm/mach-kirkwood/db88f6281-bp-setup.c +++ b/arch/arm/mach-kirkwood/db88f6281-bp-setup.c | |||
@@ -11,14 +11,12 @@ | |||
11 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | #include <linux/platform_device.h> | 13 | #include <linux/platform_device.h> |
14 | #include <linux/mtd/nand.h> | ||
15 | #include <linux/mtd/partitions.h> | 14 | #include <linux/mtd/partitions.h> |
16 | #include <linux/ata_platform.h> | 15 | #include <linux/ata_platform.h> |
17 | #include <linux/mv643xx_eth.h> | 16 | #include <linux/mv643xx_eth.h> |
18 | #include <asm/mach-types.h> | 17 | #include <asm/mach-types.h> |
19 | #include <asm/mach/arch.h> | 18 | #include <asm/mach/arch.h> |
20 | #include <mach/kirkwood.h> | 19 | #include <mach/kirkwood.h> |
21 | #include <plat/orion_nand.h> | ||
22 | #include <plat/mvsdio.h> | 20 | #include <plat/mvsdio.h> |
23 | #include "common.h" | 21 | #include "common.h" |
24 | #include "mpp.h" | 22 | #include "mpp.h" |
@@ -39,32 +37,6 @@ static struct mtd_partition db88f6281_nand_parts[] = { | |||
39 | }, | 37 | }, |
40 | }; | 38 | }; |
41 | 39 | ||
42 | static struct resource db88f6281_nand_resource = { | ||
43 | .flags = IORESOURCE_MEM, | ||
44 | .start = KIRKWOOD_NAND_MEM_PHYS_BASE, | ||
45 | .end = KIRKWOOD_NAND_MEM_PHYS_BASE + | ||
46 | KIRKWOOD_NAND_MEM_SIZE - 1, | ||
47 | }; | ||
48 | |||
49 | static struct orion_nand_data db88f6281_nand_data = { | ||
50 | .parts = db88f6281_nand_parts, | ||
51 | .nr_parts = ARRAY_SIZE(db88f6281_nand_parts), | ||
52 | .cle = 0, | ||
53 | .ale = 1, | ||
54 | .width = 8, | ||
55 | .chip_delay = 25, | ||
56 | }; | ||
57 | |||
58 | static struct platform_device db88f6281_nand_flash = { | ||
59 | .name = "orion_nand", | ||
60 | .id = -1, | ||
61 | .dev = { | ||
62 | .platform_data = &db88f6281_nand_data, | ||
63 | }, | ||
64 | .resource = &db88f6281_nand_resource, | ||
65 | .num_resources = 1, | ||
66 | }; | ||
67 | |||
68 | static struct mv643xx_eth_platform_data db88f6281_ge00_data = { | 40 | static struct mv643xx_eth_platform_data db88f6281_ge00_data = { |
69 | .phy_addr = MV643XX_ETH_PHY_ADDR(8), | 41 | .phy_addr = MV643XX_ETH_PHY_ADDR(8), |
70 | }; | 42 | }; |
@@ -92,13 +64,12 @@ static void __init db88f6281_init(void) | |||
92 | kirkwood_init(); | 64 | kirkwood_init(); |
93 | kirkwood_mpp_conf(db88f6281_mpp_config); | 65 | kirkwood_mpp_conf(db88f6281_mpp_config); |
94 | 66 | ||
67 | kirkwood_nand_init(ARRAY_AND_SIZE(db88f6281_nand_parts), 25); | ||
95 | kirkwood_ehci_init(); | 68 | kirkwood_ehci_init(); |
96 | kirkwood_ge00_init(&db88f6281_ge00_data); | 69 | kirkwood_ge00_init(&db88f6281_ge00_data); |
97 | kirkwood_sata_init(&db88f6281_sata_data); | 70 | kirkwood_sata_init(&db88f6281_sata_data); |
98 | kirkwood_uart0_init(); | 71 | kirkwood_uart0_init(); |
99 | kirkwood_sdio_init(&db88f6281_mvsdio_data); | 72 | kirkwood_sdio_init(&db88f6281_mvsdio_data); |
100 | |||
101 | platform_device_register(&db88f6281_nand_flash); | ||
102 | } | 73 | } |
103 | 74 | ||
104 | static int __init db88f6281_pci_init(void) | 75 | static int __init db88f6281_pci_init(void) |