sheevaplug-setup.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*
  2. * arch/arm/mach-kirkwood/sheevaplug-setup.c
  3. *
  4. * Marvell SheevaPlug Reference 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/nand.h>
  14. #include <linux/mtd/partitions.h>
  15. #include <linux/mv643xx_eth.h>
  16. #include <linux/gpio.h>
  17. #include <asm/mach-types.h>
  18. #include <asm/mach/arch.h>
  19. #include <mach/kirkwood.h>
  20. #include <plat/mvsdio.h>
  21. #include <plat/orion_nand.h>
  22. #include "common.h"
  23. #include "mpp.h"
  24. static struct mtd_partition sheevaplug_nand_parts[] = {
  25. {
  26. .name = "u-boot",
  27. .offset = 0,
  28. .size = SZ_1M
  29. }, {
  30. .name = "uImage",
  31. .offset = MTDPART_OFS_NXTBLK,
  32. .size = SZ_4M
  33. }, {
  34. .name = "root",
  35. .offset = MTDPART_OFS_NXTBLK,
  36. .size = MTDPART_SIZ_FULL
  37. },
  38. };
  39. static struct resource sheevaplug_nand_resource = {
  40. .flags = IORESOURCE_MEM,
  41. .start = KIRKWOOD_NAND_MEM_PHYS_BASE,
  42. .end = KIRKWOOD_NAND_MEM_PHYS_BASE +
  43. KIRKWOOD_NAND_MEM_SIZE - 1,
  44. };
  45. static struct orion_nand_data sheevaplug_nand_data = {
  46. .parts = sheevaplug_nand_parts,
  47. .nr_parts = ARRAY_SIZE(sheevaplug_nand_parts),
  48. .cle = 0,
  49. .ale = 1,
  50. .width = 8,
  51. .chip_delay = 25,
  52. };
  53. static struct platform_device sheevaplug_nand_flash = {
  54. .name = "orion_nand",
  55. .id = -1,
  56. .dev = {
  57. .platform_data = &sheevaplug_nand_data,
  58. },
  59. .resource = &sheevaplug_nand_resource,
  60. .num_resources = 1,
  61. };
  62. static struct mv643xx_eth_platform_data sheevaplug_ge00_data = {
  63. .phy_addr = MV643XX_ETH_PHY_ADDR(0),
  64. };
  65. static struct mvsdio_platform_data sheevaplug_mvsdio_data = {
  66. // unfortunately the CD signal has not been connected */
  67. };
  68. static unsigned int sheevaplug_mpp_config[] __initdata = {
  69. MPP29_GPIO, /* USB Power Enable */
  70. 0
  71. };
  72. static void __init sheevaplug_init(void)
  73. {
  74. /*
  75. * Basic setup. Needs to be called early.
  76. */
  77. kirkwood_init();
  78. kirkwood_mpp_conf(sheevaplug_mpp_config);
  79. kirkwood_uart0_init();
  80. if (gpio_request(29, "USB Power Enable") != 0 ||
  81. gpio_direction_output(29, 1) != 0)
  82. printk(KERN_ERR "can't set up GPIO 29 (USB Power Enable)\n");
  83. kirkwood_ehci_init();
  84. kirkwood_ge00_init(&sheevaplug_ge00_data);
  85. kirkwood_sdio_init(&sheevaplug_mvsdio_data);
  86. platform_device_register(&sheevaplug_nand_flash);
  87. }
  88. MACHINE_START(SHEEVAPLUG, "Marvell SheevaPlug Reference Board")
  89. /* Maintainer: shadi Ammouri <shadi@marvell.com> */
  90. .phys_io = KIRKWOOD_REGS_PHYS_BASE,
  91. .io_pg_offst = ((KIRKWOOD_REGS_VIRT_BASE) >> 18) & 0xfffc,
  92. .boot_params = 0x00000100,
  93. .init_machine = sheevaplug_init,
  94. .map_io = kirkwood_map_io,
  95. .init_irq = kirkwood_init_irq,
  96. .timer = &kirkwood_timer,
  97. MACHINE_END