db88f6281-bp-setup.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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/mtd/partitions.h>
  14. #include <linux/ata_platform.h>
  15. #include <linux/mv643xx_eth.h>
  16. #include <asm/mach-types.h>
  17. #include <asm/mach/arch.h>
  18. #include <mach/kirkwood.h>
  19. #include <plat/mvsdio.h>
  20. #include "common.h"
  21. #include "mpp.h"
  22. static struct mtd_partition db88f6281_nand_parts[] = {
  23. {
  24. .name = "u-boot",
  25. .offset = 0,
  26. .size = SZ_1M
  27. }, {
  28. .name = "uImage",
  29. .offset = MTDPART_OFS_NXTBLK,
  30. .size = SZ_4M
  31. }, {
  32. .name = "root",
  33. .offset = MTDPART_OFS_NXTBLK,
  34. .size = MTDPART_SIZ_FULL
  35. },
  36. };
  37. static struct mv643xx_eth_platform_data db88f6281_ge00_data = {
  38. .phy_addr = MV643XX_ETH_PHY_ADDR(8),
  39. };
  40. static struct mv_sata_platform_data db88f6281_sata_data = {
  41. .n_ports = 2,
  42. };
  43. static struct mvsdio_platform_data db88f6281_mvsdio_data = {
  44. .gpio_write_protect = 37,
  45. .gpio_card_detect = 38,
  46. };
  47. static unsigned int db88f6281_mpp_config[] __initdata = {
  48. MPP37_GPIO,
  49. MPP38_GPIO,
  50. 0
  51. };
  52. static void __init db88f6281_init(void)
  53. {
  54. /*
  55. * Basic setup. Needs to be called early.
  56. */
  57. kirkwood_init();
  58. kirkwood_mpp_conf(db88f6281_mpp_config);
  59. kirkwood_nand_init(ARRAY_AND_SIZE(db88f6281_nand_parts), 25);
  60. kirkwood_ehci_init();
  61. kirkwood_ge00_init(&db88f6281_ge00_data);
  62. kirkwood_sata_init(&db88f6281_sata_data);
  63. kirkwood_uart0_init();
  64. kirkwood_sdio_init(&db88f6281_mvsdio_data);
  65. }
  66. static int __init db88f6281_pci_init(void)
  67. {
  68. if (machine_is_db88f6281_bp())
  69. kirkwood_pcie_init();
  70. return 0;
  71. }
  72. subsys_initcall(db88f6281_pci_init);
  73. MACHINE_START(DB88F6281_BP, "Marvell DB-88F6281-BP Development Board")
  74. /* Maintainer: Saeed Bishara <saeed@marvell.com> */
  75. .phys_io = KIRKWOOD_REGS_PHYS_BASE,
  76. .io_pg_offst = ((KIRKWOOD_REGS_VIRT_BASE) >> 18) & 0xfffc,
  77. .boot_params = 0x00000100,
  78. .init_machine = db88f6281_init,
  79. .map_io = kirkwood_map_io,
  80. .init_irq = kirkwood_init_irq,
  81. .timer = &kirkwood_timer,
  82. MACHINE_END