rd88f6192-nas-setup.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * arch/arm/mach-kirkwood/rd88f6192-nas-setup.c
  3. *
  4. * Marvell RD-88F6192-NAS 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/ata_platform.h>
  14. #include <linux/mv643xx_eth.h>
  15. #include <linux/gpio.h>
  16. #include <linux/spi/flash.h>
  17. #include <linux/spi/spi.h>
  18. #include <linux/spi/orion_spi.h>
  19. #include <asm/mach-types.h>
  20. #include <asm/mach/arch.h>
  21. #include <mach/kirkwood.h>
  22. #include "common.h"
  23. #define RD88F6192_GPIO_USB_VBUS 10
  24. static struct mv643xx_eth_platform_data rd88f6192_ge00_data = {
  25. .phy_addr = MV643XX_ETH_PHY_ADDR(8),
  26. };
  27. static struct mv_sata_platform_data rd88f6192_sata_data = {
  28. .n_ports = 2,
  29. };
  30. static const struct flash_platform_data rd88F6192_spi_slave_data = {
  31. .type = "m25p128",
  32. };
  33. static struct spi_board_info __initdata rd88F6192_spi_slave_info[] = {
  34. {
  35. .modalias = "m25p80",
  36. .platform_data = &rd88F6192_spi_slave_data,
  37. .irq = -1,
  38. .max_speed_hz = 20000000,
  39. .bus_num = 0,
  40. .chip_select = 0,
  41. },
  42. };
  43. static void __init rd88f6192_init(void)
  44. {
  45. /*
  46. * Basic setup. Needs to be called early.
  47. */
  48. kirkwood_init();
  49. orion_gpio_set_valid(RD88F6192_GPIO_USB_VBUS, 1);
  50. if (gpio_request(RD88F6192_GPIO_USB_VBUS, "USB VBUS") != 0 ||
  51. gpio_direction_output(RD88F6192_GPIO_USB_VBUS, 1) != 0)
  52. pr_err("RD-88F6192-NAS: failed to setup USB VBUS GPIO\n");
  53. kirkwood_ehci_init();
  54. kirkwood_ge00_init(&rd88f6192_ge00_data);
  55. kirkwood_sata_init(&rd88f6192_sata_data);
  56. spi_register_board_info(rd88F6192_spi_slave_info,
  57. ARRAY_SIZE(rd88F6192_spi_slave_info));
  58. kirkwood_spi_init();
  59. kirkwood_uart0_init();
  60. }
  61. static int __init rd88f6192_pci_init(void)
  62. {
  63. if (machine_is_rd88f6192_nas())
  64. kirkwood_pcie_init(KW_PCIE0);
  65. return 0;
  66. }
  67. subsys_initcall(rd88f6192_pci_init);
  68. MACHINE_START(RD88F6192_NAS, "Marvell RD-88F6192-NAS Development Board")
  69. /* Maintainer: Saeed Bishara <saeed@marvell.com> */
  70. .atag_offset = 0x100,
  71. .init_machine = rd88f6192_init,
  72. .map_io = kirkwood_map_io,
  73. .init_early = kirkwood_init_early,
  74. .init_irq = kirkwood_init_irq,
  75. .timer = &kirkwood_timer,
  76. .restart = kirkwood_restart,
  77. MACHINE_END