db88f6281-bp-setup.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. #include <linux/kernel.h>
  11. #include <linux/init.h>
  12. #include <linux/platform_device.h>
  13. #include <linux/pci.h>
  14. #include <linux/irq.h>
  15. #include <linux/mtd/physmap.h>
  16. #include <linux/mtd/nand.h>
  17. #include <linux/timer.h>
  18. #include <linux/ata_platform.h>
  19. #include <linux/mv643xx_eth.h>
  20. #include <asm/mach-types.h>
  21. #include <asm/mach/arch.h>
  22. #include <asm/mach/pci.h>
  23. #include <mach/kirkwood.h>
  24. #include "common.h"
  25. static struct mv643xx_eth_platform_data db88f6281_ge00_data = {
  26. .phy_addr = MV643XX_ETH_PHY_ADDR(8),
  27. };
  28. static struct mv_sata_platform_data db88f6281_sata_data = {
  29. .n_ports = 2,
  30. };
  31. static void __init db88f6281_init(void)
  32. {
  33. /*
  34. * Basic setup. Needs to be called early.
  35. */
  36. kirkwood_init();
  37. kirkwood_ehci_init();
  38. kirkwood_ge00_init(&db88f6281_ge00_data);
  39. kirkwood_rtc_init();
  40. kirkwood_sata_init(&db88f6281_sata_data);
  41. kirkwood_uart0_init();
  42. kirkwood_uart1_init();
  43. }
  44. static int __init db88f6281_pci_init(void)
  45. {
  46. if (machine_is_db88f6281_bp())
  47. kirkwood_pcie_init();
  48. return 0;
  49. }
  50. subsys_initcall(db88f6281_pci_init);
  51. MACHINE_START(DB88F6281_BP, "Marvell DB-88F6281-BP Development Board")
  52. /* Maintainer: Saeed Bishara <saeed@marvell.com> */
  53. .phys_io = KIRKWOOD_REGS_PHYS_BASE,
  54. .io_pg_offst = ((KIRKWOOD_REGS_VIRT_BASE) >> 18) & 0xfffc,
  55. .boot_params = 0x00000100,
  56. .init_machine = db88f6281_init,
  57. .map_io = kirkwood_map_io,
  58. .init_irq = kirkwood_init_irq,
  59. .timer = &kirkwood_timer,
  60. MACHINE_END