| Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 1 | /* | 
 | 2 |  * arch/arm/mach-kirkwood/db88f6281-bp-setup.c | 
 | 3 |  * | 
 | 4 |  * Marvell DB-88F6281-BP 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/pci.h> | 
 | 15 | #include <linux/irq.h> | 
 | 16 | #include <linux/mtd/physmap.h> | 
 | 17 | #include <linux/mtd/nand.h> | 
 | 18 | #include <linux/timer.h> | 
 | 19 | #include <linux/ata_platform.h> | 
 | 20 | #include <linux/mv643xx_eth.h> | 
 | 21 | #include <asm/mach-types.h> | 
 | 22 | #include <asm/mach/arch.h> | 
 | 23 | #include <asm/mach/pci.h> | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 24 | #include <mach/kirkwood.h> | 
| Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 25 | #include "common.h" | 
 | 26 |  | 
 | 27 | static struct mv643xx_eth_platform_data db88f6281_ge00_data = { | 
| Lennert Buytenhek | ac84060 | 2008-08-26 14:06:47 +0200 | [diff] [blame] | 28 | 	.phy_addr	= MV643XX_ETH_PHY_ADDR(8), | 
| Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 29 | }; | 
 | 30 |  | 
 | 31 | static struct mv_sata_platform_data db88f6281_sata_data = { | 
 | 32 | 	.n_ports	= 2, | 
 | 33 | }; | 
 | 34 |  | 
 | 35 | static void __init db88f6281_init(void) | 
 | 36 | { | 
 | 37 | 	/* | 
 | 38 | 	 * Basic setup. Needs to be called early. | 
 | 39 | 	 */ | 
 | 40 | 	kirkwood_init(); | 
 | 41 |  | 
 | 42 | 	kirkwood_ehci_init(); | 
 | 43 | 	kirkwood_ge00_init(&db88f6281_ge00_data); | 
 | 44 | 	kirkwood_rtc_init(); | 
 | 45 | 	kirkwood_sata_init(&db88f6281_sata_data); | 
 | 46 | 	kirkwood_uart0_init(); | 
| Saeed Bishara | 651c74c | 2008-06-22 22:45:06 +0200 | [diff] [blame] | 47 | } | 
 | 48 |  | 
 | 49 | static int __init db88f6281_pci_init(void) | 
 | 50 | { | 
 | 51 | 	if (machine_is_db88f6281_bp()) | 
 | 52 | 		kirkwood_pcie_init(); | 
 | 53 |  | 
 | 54 | 	return 0; | 
 | 55 | } | 
 | 56 | subsys_initcall(db88f6281_pci_init); | 
 | 57 |  | 
 | 58 | MACHINE_START(DB88F6281_BP, "Marvell DB-88F6281-BP Development Board") | 
 | 59 | 	/* Maintainer: Saeed Bishara <saeed@marvell.com> */ | 
 | 60 | 	.phys_io	= KIRKWOOD_REGS_PHYS_BASE, | 
 | 61 | 	.io_pg_offst	= ((KIRKWOOD_REGS_VIRT_BASE) >> 18) & 0xfffc, | 
 | 62 | 	.boot_params	= 0x00000100, | 
 | 63 | 	.init_machine	= db88f6281_init, | 
 | 64 | 	.map_io		= kirkwood_map_io, | 
 | 65 | 	.init_irq	= kirkwood_init_irq, | 
 | 66 | 	.timer		= &kirkwood_timer, | 
 | 67 | MACHINE_END |