diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2009-03-19 19:10:40 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-03-19 19:10:40 -0400 |
commit | 7d83f8fca517b123cf0136503a9e50974f65ec49 (patch) | |
tree | 92ed1faaf112e98e29a00efc99e1a4e6c79e6a8e /arch/arm/mach-mv78xx0 | |
parent | be093beb608edf821b45fe00a8a080fb5c6ed4af (diff) | |
parent | 569106c70e49ad67c69fa7d43a2a5218e63a4619 (diff) |
Merge branch 'master' of git://git.marvell.com/orion into devel
Conflicts:
arch/arm/mach-mx1/devices.c
Diffstat (limited to 'arch/arm/mach-mv78xx0')
-rw-r--r-- | arch/arm/mach-mv78xx0/Kconfig | 6 | ||||
-rw-r--r-- | arch/arm/mach-mv78xx0/Makefile | 1 | ||||
-rw-r--r-- | arch/arm/mach-mv78xx0/common.c | 132 | ||||
-rw-r--r-- | arch/arm/mach-mv78xx0/common.h | 3 | ||||
-rw-r--r-- | arch/arm/mach-mv78xx0/db78x00-bp-setup.c | 16 | ||||
-rw-r--r-- | arch/arm/mach-mv78xx0/include/mach/mv78xx0.h | 14 | ||||
-rw-r--r-- | arch/arm/mach-mv78xx0/pcie.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-mv78xx0/rd78x00-masa-setup.c | 88 |
8 files changed, 259 insertions, 7 deletions
diff --git a/arch/arm/mach-mv78xx0/Kconfig b/arch/arm/mach-mv78xx0/Kconfig index d83cb86837db..6fbe68fe4412 100644 --- a/arch/arm/mach-mv78xx0/Kconfig +++ b/arch/arm/mach-mv78xx0/Kconfig | |||
@@ -8,6 +8,12 @@ config MACH_DB78X00_BP | |||
8 | Say 'Y' here if you want your kernel to support the | 8 | Say 'Y' here if you want your kernel to support the |
9 | Marvell DB-78x00-BP Development Board. | 9 | Marvell DB-78x00-BP Development Board. |
10 | 10 | ||
11 | config MACH_RD78X00_MASA | ||
12 | bool "Marvell RD-78x00-mASA Reference Design" | ||
13 | help | ||
14 | Say 'Y' here if you want your kernel to support the | ||
15 | Marvell RD-78x00-mASA Reference Design. | ||
16 | |||
11 | endmenu | 17 | endmenu |
12 | 18 | ||
13 | endif | 19 | endif |
diff --git a/arch/arm/mach-mv78xx0/Makefile b/arch/arm/mach-mv78xx0/Makefile index ec16c05c3b1b..da628b7f3bb6 100644 --- a/arch/arm/mach-mv78xx0/Makefile +++ b/arch/arm/mach-mv78xx0/Makefile | |||
@@ -1,2 +1,3 @@ | |||
1 | obj-y += common.o addr-map.o irq.o pcie.o | 1 | obj-y += common.o addr-map.o irq.o pcie.o |
2 | obj-$(CONFIG_MACH_DB78X00_BP) += db78x00-bp-setup.o | 2 | obj-$(CONFIG_MACH_DB78X00_BP) += db78x00-bp-setup.o |
3 | obj-$(CONFIG_MACH_RD78X00_MASA) += rd78x00-masa-setup.o | ||
diff --git a/arch/arm/mach-mv78xx0/common.c b/arch/arm/mach-mv78xx0/common.c index b0e4e0d8f506..a575daaa62d1 100644 --- a/arch/arm/mach-mv78xx0/common.c +++ b/arch/arm/mach-mv78xx0/common.c | |||
@@ -14,7 +14,9 @@ | |||
14 | #include <linux/serial_8250.h> | 14 | #include <linux/serial_8250.h> |
15 | #include <linux/mbus.h> | 15 | #include <linux/mbus.h> |
16 | #include <linux/mv643xx_eth.h> | 16 | #include <linux/mv643xx_eth.h> |
17 | #include <linux/mv643xx_i2c.h> | ||
17 | #include <linux/ata_platform.h> | 18 | #include <linux/ata_platform.h> |
19 | #include <linux/ethtool.h> | ||
18 | #include <asm/mach/map.h> | 20 | #include <asm/mach/map.h> |
19 | #include <asm/mach/time.h> | 21 | #include <asm/mach/time.h> |
20 | #include <mach/mv78xx0.h> | 22 | #include <mach/mv78xx0.h> |
@@ -430,9 +432,22 @@ static struct platform_device mv78xx0_ge10 = { | |||
430 | 432 | ||
431 | void __init mv78xx0_ge10_init(struct mv643xx_eth_platform_data *eth_data) | 433 | void __init mv78xx0_ge10_init(struct mv643xx_eth_platform_data *eth_data) |
432 | { | 434 | { |
435 | u32 dev, rev; | ||
436 | |||
433 | eth_data->shared = &mv78xx0_ge10_shared; | 437 | eth_data->shared = &mv78xx0_ge10_shared; |
434 | mv78xx0_ge10.dev.platform_data = eth_data; | 438 | mv78xx0_ge10.dev.platform_data = eth_data; |
435 | 439 | ||
440 | /* | ||
441 | * On the Z0, ge10 and ge11 are internally connected back | ||
442 | * to back, and not brought out. | ||
443 | */ | ||
444 | mv78xx0_pcie_id(&dev, &rev); | ||
445 | if (dev == MV78X00_Z0_DEV_ID) { | ||
446 | eth_data->phy_addr = MV643XX_ETH_PHY_NONE; | ||
447 | eth_data->speed = SPEED_1000; | ||
448 | eth_data->duplex = DUPLEX_FULL; | ||
449 | } | ||
450 | |||
436 | platform_device_register(&mv78xx0_ge10_shared); | 451 | platform_device_register(&mv78xx0_ge10_shared); |
437 | platform_device_register(&mv78xx0_ge10); | 452 | platform_device_register(&mv78xx0_ge10); |
438 | } | 453 | } |
@@ -484,13 +499,101 @@ static struct platform_device mv78xx0_ge11 = { | |||
484 | 499 | ||
485 | void __init mv78xx0_ge11_init(struct mv643xx_eth_platform_data *eth_data) | 500 | void __init mv78xx0_ge11_init(struct mv643xx_eth_platform_data *eth_data) |
486 | { | 501 | { |
502 | u32 dev, rev; | ||
503 | |||
487 | eth_data->shared = &mv78xx0_ge11_shared; | 504 | eth_data->shared = &mv78xx0_ge11_shared; |
488 | mv78xx0_ge11.dev.platform_data = eth_data; | 505 | mv78xx0_ge11.dev.platform_data = eth_data; |
489 | 506 | ||
507 | /* | ||
508 | * On the Z0, ge10 and ge11 are internally connected back | ||
509 | * to back, and not brought out. | ||
510 | */ | ||
511 | mv78xx0_pcie_id(&dev, &rev); | ||
512 | if (dev == MV78X00_Z0_DEV_ID) { | ||
513 | eth_data->phy_addr = MV643XX_ETH_PHY_NONE; | ||
514 | eth_data->speed = SPEED_1000; | ||
515 | eth_data->duplex = DUPLEX_FULL; | ||
516 | } | ||
517 | |||
490 | platform_device_register(&mv78xx0_ge11_shared); | 518 | platform_device_register(&mv78xx0_ge11_shared); |
491 | platform_device_register(&mv78xx0_ge11); | 519 | platform_device_register(&mv78xx0_ge11); |
492 | } | 520 | } |
493 | 521 | ||
522 | /***************************************************************************** | ||
523 | * I2C bus 0 | ||
524 | ****************************************************************************/ | ||
525 | |||
526 | static struct mv64xxx_i2c_pdata mv78xx0_i2c_0_pdata = { | ||
527 | .freq_m = 8, /* assumes 166 MHz TCLK */ | ||
528 | .freq_n = 3, | ||
529 | .timeout = 1000, /* Default timeout of 1 second */ | ||
530 | }; | ||
531 | |||
532 | static struct resource mv78xx0_i2c_0_resources[] = { | ||
533 | { | ||
534 | .name = "i2c 0 base", | ||
535 | .start = I2C_0_PHYS_BASE, | ||
536 | .end = I2C_0_PHYS_BASE + 0x1f, | ||
537 | .flags = IORESOURCE_MEM, | ||
538 | }, { | ||
539 | .name = "i2c 0 irq", | ||
540 | .start = IRQ_MV78XX0_I2C_0, | ||
541 | .end = IRQ_MV78XX0_I2C_0, | ||
542 | .flags = IORESOURCE_IRQ, | ||
543 | }, | ||
544 | }; | ||
545 | |||
546 | |||
547 | static struct platform_device mv78xx0_i2c_0 = { | ||
548 | .name = MV64XXX_I2C_CTLR_NAME, | ||
549 | .id = 0, | ||
550 | .num_resources = ARRAY_SIZE(mv78xx0_i2c_0_resources), | ||
551 | .resource = mv78xx0_i2c_0_resources, | ||
552 | .dev = { | ||
553 | .platform_data = &mv78xx0_i2c_0_pdata, | ||
554 | }, | ||
555 | }; | ||
556 | |||
557 | /***************************************************************************** | ||
558 | * I2C bus 1 | ||
559 | ****************************************************************************/ | ||
560 | |||
561 | static struct mv64xxx_i2c_pdata mv78xx0_i2c_1_pdata = { | ||
562 | .freq_m = 8, /* assumes 166 MHz TCLK */ | ||
563 | .freq_n = 3, | ||
564 | .timeout = 1000, /* Default timeout of 1 second */ | ||
565 | }; | ||
566 | |||
567 | static struct resource mv78xx0_i2c_1_resources[] = { | ||
568 | { | ||
569 | .name = "i2c 1 base", | ||
570 | .start = I2C_1_PHYS_BASE, | ||
571 | .end = I2C_1_PHYS_BASE + 0x1f, | ||
572 | .flags = IORESOURCE_MEM, | ||
573 | }, { | ||
574 | .name = "i2c 1 irq", | ||
575 | .start = IRQ_MV78XX0_I2C_1, | ||
576 | .end = IRQ_MV78XX0_I2C_1, | ||
577 | .flags = IORESOURCE_IRQ, | ||
578 | }, | ||
579 | }; | ||
580 | |||
581 | |||
582 | static struct platform_device mv78xx0_i2c_1 = { | ||
583 | .name = MV64XXX_I2C_CTLR_NAME, | ||
584 | .id = 1, | ||
585 | .num_resources = ARRAY_SIZE(mv78xx0_i2c_1_resources), | ||
586 | .resource = mv78xx0_i2c_1_resources, | ||
587 | .dev = { | ||
588 | .platform_data = &mv78xx0_i2c_1_pdata, | ||
589 | }, | ||
590 | }; | ||
591 | |||
592 | void __init mv78xx0_i2c_init(void) | ||
593 | { | ||
594 | platform_device_register(&mv78xx0_i2c_0); | ||
595 | platform_device_register(&mv78xx0_i2c_1); | ||
596 | } | ||
494 | 597 | ||
495 | /***************************************************************************** | 598 | /***************************************************************************** |
496 | * SATA | 599 | * SATA |
@@ -719,6 +822,32 @@ struct sys_timer mv78xx0_timer = { | |||
719 | /***************************************************************************** | 822 | /***************************************************************************** |
720 | * General | 823 | * General |
721 | ****************************************************************************/ | 824 | ****************************************************************************/ |
825 | static char * __init mv78xx0_id(void) | ||
826 | { | ||
827 | u32 dev, rev; | ||
828 | |||
829 | mv78xx0_pcie_id(&dev, &rev); | ||
830 | |||
831 | if (dev == MV78X00_Z0_DEV_ID) { | ||
832 | if (rev == MV78X00_REV_Z0) | ||
833 | return "MV78X00-Z0"; | ||
834 | else | ||
835 | return "MV78X00-Rev-Unsupported"; | ||
836 | } else if (dev == MV78100_DEV_ID) { | ||
837 | if (rev == MV78100_REV_A0) | ||
838 | return "MV78100-A0"; | ||
839 | else | ||
840 | return "MV78100-Rev-Unsupported"; | ||
841 | } else if (dev == MV78200_DEV_ID) { | ||
842 | if (rev == MV78100_REV_A0) | ||
843 | return "MV78200-A0"; | ||
844 | else | ||
845 | return "MV78200-Rev-Unsupported"; | ||
846 | } else { | ||
847 | return "Device-Unknown"; | ||
848 | } | ||
849 | } | ||
850 | |||
722 | static int __init is_l2_writethrough(void) | 851 | static int __init is_l2_writethrough(void) |
723 | { | 852 | { |
724 | return !!(readl(CPU_CONTROL) & L2_WRITETHROUGH); | 853 | return !!(readl(CPU_CONTROL) & L2_WRITETHROUGH); |
@@ -737,7 +866,8 @@ void __init mv78xx0_init(void) | |||
737 | get_pclk_l2clk(hclk, core_index, &pclk, &l2clk); | 866 | get_pclk_l2clk(hclk, core_index, &pclk, &l2clk); |
738 | tclk = get_tclk(); | 867 | tclk = get_tclk(); |
739 | 868 | ||
740 | printk(KERN_INFO "MV78xx0 core #%d, ", core_index); | 869 | printk(KERN_INFO "%s ", mv78xx0_id()); |
870 | printk("core #%d, ", core_index); | ||
741 | printk("PCLK = %dMHz, ", (pclk + 499999) / 1000000); | 871 | printk("PCLK = %dMHz, ", (pclk + 499999) / 1000000); |
742 | printk("L2 = %dMHz, ", (l2clk + 499999) / 1000000); | 872 | printk("L2 = %dMHz, ", (l2clk + 499999) / 1000000); |
743 | printk("HCLK = %dMHz, ", (hclk + 499999) / 1000000); | 873 | printk("HCLK = %dMHz, ", (hclk + 499999) / 1000000); |
diff --git a/arch/arm/mach-mv78xx0/common.h b/arch/arm/mach-mv78xx0/common.h index 78af5de319dd..befc22475469 100644 --- a/arch/arm/mach-mv78xx0/common.h +++ b/arch/arm/mach-mv78xx0/common.h | |||
@@ -29,6 +29,8 @@ void mv78xx0_setup_pcie_io_win(int window, u32 base, u32 size, | |||
29 | void mv78xx0_setup_pcie_mem_win(int window, u32 base, u32 size, | 29 | void mv78xx0_setup_pcie_mem_win(int window, u32 base, u32 size, |
30 | int maj, int min); | 30 | int maj, int min); |
31 | 31 | ||
32 | void mv78xx0_pcie_id(u32 *dev, u32 *rev); | ||
33 | |||
32 | void mv78xx0_ehci0_init(void); | 34 | void mv78xx0_ehci0_init(void); |
33 | void mv78xx0_ehci1_init(void); | 35 | void mv78xx0_ehci1_init(void); |
34 | void mv78xx0_ehci2_init(void); | 36 | void mv78xx0_ehci2_init(void); |
@@ -42,6 +44,7 @@ void mv78xx0_uart0_init(void); | |||
42 | void mv78xx0_uart1_init(void); | 44 | void mv78xx0_uart1_init(void); |
43 | void mv78xx0_uart2_init(void); | 45 | void mv78xx0_uart2_init(void); |
44 | void mv78xx0_uart3_init(void); | 46 | void mv78xx0_uart3_init(void); |
47 | void mv78xx0_i2c_init(void); | ||
45 | 48 | ||
46 | extern struct sys_timer mv78xx0_timer; | 49 | extern struct sys_timer mv78xx0_timer; |
47 | 50 | ||
diff --git a/arch/arm/mach-mv78xx0/db78x00-bp-setup.c b/arch/arm/mach-mv78xx0/db78x00-bp-setup.c index 2e285bbb7bbd..efdabe04c69e 100644 --- a/arch/arm/mach-mv78xx0/db78x00-bp-setup.c +++ b/arch/arm/mach-mv78xx0/db78x00-bp-setup.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/ata_platform.h> | 14 | #include <linux/ata_platform.h> |
15 | #include <linux/mv643xx_eth.h> | 15 | #include <linux/mv643xx_eth.h> |
16 | #include <linux/ethtool.h> | 16 | #include <linux/ethtool.h> |
17 | #include <linux/i2c.h> | ||
17 | #include <mach/mv78xx0.h> | 18 | #include <mach/mv78xx0.h> |
18 | #include <asm/mach-types.h> | 19 | #include <asm/mach-types.h> |
19 | #include <asm/mach/arch.h> | 20 | #include <asm/mach/arch.h> |
@@ -28,21 +29,22 @@ static struct mv643xx_eth_platform_data db78x00_ge01_data = { | |||
28 | }; | 29 | }; |
29 | 30 | ||
30 | static struct mv643xx_eth_platform_data db78x00_ge10_data = { | 31 | static struct mv643xx_eth_platform_data db78x00_ge10_data = { |
31 | .phy_addr = MV643XX_ETH_PHY_NONE, | 32 | .phy_addr = MV643XX_ETH_PHY_ADDR(10), |
32 | .speed = SPEED_1000, | ||
33 | .duplex = DUPLEX_FULL, | ||
34 | }; | 33 | }; |
35 | 34 | ||
36 | static struct mv643xx_eth_platform_data db78x00_ge11_data = { | 35 | static struct mv643xx_eth_platform_data db78x00_ge11_data = { |
37 | .phy_addr = MV643XX_ETH_PHY_NONE, | 36 | .phy_addr = MV643XX_ETH_PHY_ADDR(11), |
38 | .speed = SPEED_1000, | ||
39 | .duplex = DUPLEX_FULL, | ||
40 | }; | 37 | }; |
41 | 38 | ||
42 | static struct mv_sata_platform_data db78x00_sata_data = { | 39 | static struct mv_sata_platform_data db78x00_sata_data = { |
43 | .n_ports = 2, | 40 | .n_ports = 2, |
44 | }; | 41 | }; |
45 | 42 | ||
43 | static struct i2c_board_info __initdata db78x00_i2c_rtc = { | ||
44 | I2C_BOARD_INFO("ds1338", 0x68), | ||
45 | }; | ||
46 | |||
47 | |||
46 | static void __init db78x00_init(void) | 48 | static void __init db78x00_init(void) |
47 | { | 49 | { |
48 | /* | 50 | /* |
@@ -64,6 +66,8 @@ static void __init db78x00_init(void) | |||
64 | mv78xx0_sata_init(&db78x00_sata_data); | 66 | mv78xx0_sata_init(&db78x00_sata_data); |
65 | mv78xx0_uart0_init(); | 67 | mv78xx0_uart0_init(); |
66 | mv78xx0_uart2_init(); | 68 | mv78xx0_uart2_init(); |
69 | mv78xx0_i2c_init(); | ||
70 | i2c_register_board_info(0, &db78x00_i2c_rtc, 1); | ||
67 | } else { | 71 | } else { |
68 | mv78xx0_uart1_init(); | 72 | mv78xx0_uart1_init(); |
69 | mv78xx0_uart3_init(); | 73 | mv78xx0_uart3_init(); |
diff --git a/arch/arm/mach-mv78xx0/include/mach/mv78xx0.h b/arch/arm/mach-mv78xx0/include/mach/mv78xx0.h index e930ea5330a2..582cffc733ad 100644 --- a/arch/arm/mach-mv78xx0/include/mach/mv78xx0.h +++ b/arch/arm/mach-mv78xx0/include/mach/mv78xx0.h | |||
@@ -80,6 +80,18 @@ | |||
80 | #define TIMER_VIRT_BASE (BRIDGE_VIRT_BASE | 0x0300) | 80 | #define TIMER_VIRT_BASE (BRIDGE_VIRT_BASE | 0x0300) |
81 | 81 | ||
82 | /* | 82 | /* |
83 | * Supported devices and revisions. | ||
84 | */ | ||
85 | #define MV78X00_Z0_DEV_ID 0x6381 | ||
86 | #define MV78X00_REV_Z0 1 | ||
87 | |||
88 | #define MV78100_DEV_ID 0x7810 | ||
89 | #define MV78100_REV_A0 1 | ||
90 | |||
91 | #define MV78200_DEV_ID 0x7820 | ||
92 | #define MV78200_REV_A0 1 | ||
93 | |||
94 | /* | ||
83 | * Register Map | 95 | * Register Map |
84 | */ | 96 | */ |
85 | #define DDR_VIRT_BASE (MV78XX0_REGS_VIRT_BASE | 0x00000) | 97 | #define DDR_VIRT_BASE (MV78XX0_REGS_VIRT_BASE | 0x00000) |
@@ -90,6 +102,8 @@ | |||
90 | #define DEV_BUS_VIRT_BASE (MV78XX0_REGS_VIRT_BASE | 0x10000) | 102 | #define DEV_BUS_VIRT_BASE (MV78XX0_REGS_VIRT_BASE | 0x10000) |
91 | #define SAMPLE_AT_RESET_LOW (DEV_BUS_VIRT_BASE | 0x0030) | 103 | #define SAMPLE_AT_RESET_LOW (DEV_BUS_VIRT_BASE | 0x0030) |
92 | #define SAMPLE_AT_RESET_HIGH (DEV_BUS_VIRT_BASE | 0x0034) | 104 | #define SAMPLE_AT_RESET_HIGH (DEV_BUS_VIRT_BASE | 0x0034) |
105 | #define I2C_0_PHYS_BASE (DEV_BUS_PHYS_BASE | 0x1000) | ||
106 | #define I2C_1_PHYS_BASE (DEV_BUS_PHYS_BASE | 0x1100) | ||
93 | #define UART0_PHYS_BASE (DEV_BUS_PHYS_BASE | 0x2000) | 107 | #define UART0_PHYS_BASE (DEV_BUS_PHYS_BASE | 0x2000) |
94 | #define UART0_VIRT_BASE (DEV_BUS_VIRT_BASE | 0x2000) | 108 | #define UART0_VIRT_BASE (DEV_BUS_VIRT_BASE | 0x2000) |
95 | #define UART1_PHYS_BASE (DEV_BUS_PHYS_BASE | 0x2100) | 109 | #define UART1_PHYS_BASE (DEV_BUS_PHYS_BASE | 0x2100) |
diff --git a/arch/arm/mach-mv78xx0/pcie.c b/arch/arm/mach-mv78xx0/pcie.c index aad3a7a2f830..a560439dcc3c 100644 --- a/arch/arm/mach-mv78xx0/pcie.c +++ b/arch/arm/mach-mv78xx0/pcie.c | |||
@@ -33,6 +33,12 @@ static struct resource pcie_io_space; | |||
33 | static struct resource pcie_mem_space; | 33 | static struct resource pcie_mem_space; |
34 | 34 | ||
35 | 35 | ||
36 | void __init mv78xx0_pcie_id(u32 *dev, u32 *rev) | ||
37 | { | ||
38 | *dev = orion_pcie_dev_id((void __iomem *)PCIE00_VIRT_BASE); | ||
39 | *rev = orion_pcie_rev((void __iomem *)PCIE00_VIRT_BASE); | ||
40 | } | ||
41 | |||
36 | static void __init mv78xx0_pcie_preinit(void) | 42 | static void __init mv78xx0_pcie_preinit(void) |
37 | { | 43 | { |
38 | int i; | 44 | int i; |
diff --git a/arch/arm/mach-mv78xx0/rd78x00-masa-setup.c b/arch/arm/mach-mv78xx0/rd78x00-masa-setup.c new file mode 100644 index 000000000000..e136b7a03355 --- /dev/null +++ b/arch/arm/mach-mv78xx0/rd78x00-masa-setup.c | |||
@@ -0,0 +1,88 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-mv78x00/rd78x00-masa-setup.c | ||
3 | * | ||
4 | * Marvell RD-78x00-mASA Development Board Setup | ||
5 | * | ||
6 | * This file is licensed under the terms of the GNU General Public | ||
7 | * License version 2. This program is licensed "as is" without any | ||
8 | * warranty of any kind, whether express or implied. | ||
9 | */ | ||
10 | |||
11 | #include <linux/kernel.h> | ||
12 | #include <linux/init.h> | ||
13 | #include <linux/platform_device.h> | ||
14 | #include <linux/ata_platform.h> | ||
15 | #include <linux/mv643xx_eth.h> | ||
16 | #include <linux/ethtool.h> | ||
17 | #include <mach/mv78xx0.h> | ||
18 | #include <asm/mach-types.h> | ||
19 | #include <asm/mach/arch.h> | ||
20 | #include "common.h" | ||
21 | |||
22 | static struct mv643xx_eth_platform_data rd78x00_masa_ge00_data = { | ||
23 | .phy_addr = MV643XX_ETH_PHY_ADDR(8), | ||
24 | }; | ||
25 | |||
26 | static struct mv643xx_eth_platform_data rd78x00_masa_ge01_data = { | ||
27 | .phy_addr = MV643XX_ETH_PHY_ADDR(9), | ||
28 | }; | ||
29 | |||
30 | static struct mv643xx_eth_platform_data rd78x00_masa_ge10_data = { | ||
31 | }; | ||
32 | |||
33 | static struct mv643xx_eth_platform_data rd78x00_masa_ge11_data = { | ||
34 | }; | ||
35 | |||
36 | static struct mv_sata_platform_data rd78x00_masa_sata_data = { | ||
37 | .n_ports = 2, | ||
38 | }; | ||
39 | |||
40 | static void __init rd78x00_masa_init(void) | ||
41 | { | ||
42 | /* | ||
43 | * Basic MV78x00 setup. Needs to be called early. | ||
44 | */ | ||
45 | mv78xx0_init(); | ||
46 | |||
47 | /* | ||
48 | * Partition on-chip peripherals between the two CPU cores. | ||
49 | */ | ||
50 | if (mv78xx0_core_index() == 0) { | ||
51 | mv78xx0_ehci0_init(); | ||
52 | mv78xx0_ehci1_init(); | ||
53 | mv78xx0_ge00_init(&rd78x00_masa_ge00_data); | ||
54 | mv78xx0_ge10_init(&rd78x00_masa_ge10_data); | ||
55 | mv78xx0_sata_init(&rd78x00_masa_sata_data); | ||
56 | mv78xx0_uart0_init(); | ||
57 | mv78xx0_uart2_init(); | ||
58 | } else { | ||
59 | mv78xx0_ehci2_init(); | ||
60 | mv78xx0_ge01_init(&rd78x00_masa_ge01_data); | ||
61 | mv78xx0_ge11_init(&rd78x00_masa_ge11_data); | ||
62 | mv78xx0_uart1_init(); | ||
63 | mv78xx0_uart3_init(); | ||
64 | } | ||
65 | } | ||
66 | |||
67 | static int __init rd78x00_pci_init(void) | ||
68 | { | ||
69 | /* | ||
70 | * Assign all PCIe devices to CPU core #0. | ||
71 | */ | ||
72 | if (machine_is_rd78x00_masa() && mv78xx0_core_index() == 0) | ||
73 | mv78xx0_pcie_init(1, 1); | ||
74 | |||
75 | return 0; | ||
76 | } | ||
77 | subsys_initcall(rd78x00_pci_init); | ||
78 | |||
79 | MACHINE_START(RD78X00_MASA, "Marvell RD-78x00-MASA Development Board") | ||
80 | /* Maintainer: Lennert Buytenhek <buytenh@marvell.com> */ | ||
81 | .phys_io = MV78XX0_REGS_PHYS_BASE, | ||
82 | .io_pg_offst = ((MV78XX0_REGS_VIRT_BASE) >> 18) & 0xfffc, | ||
83 | .boot_params = 0x00000100, | ||
84 | .init_machine = rd78x00_masa_init, | ||
85 | .map_io = mv78xx0_map_io, | ||
86 | .init_irq = mv78xx0_init_irq, | ||
87 | .timer = &mv78xx0_timer, | ||
88 | MACHINE_END | ||