board-ts219.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. *
  3. * QNAP TS-11x/TS-21x Turbo NAS Board Setup via DT
  4. *
  5. * Copyright (C) 2012 Andrew Lunn <andrew@lunn.ch>
  6. *
  7. * Based on the board file ts219-setup.c:
  8. *
  9. * Copyright (C) 2009 Martin Michlmayr <tbm@cyrius.com>
  10. * Copyright (C) 2008 Byron Bradley <byron.bbradley@gmail.com>
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License
  14. * as published by the Free Software Foundation; either version
  15. * 2 of the License, or (at your option) any later version.
  16. */
  17. #include <linux/kernel.h>
  18. #include <linux/init.h>
  19. #include <linux/platform_device.h>
  20. #include <linux/mv643xx_eth.h>
  21. #include <linux/ata_platform.h>
  22. #include <linux/gpio_keys.h>
  23. #include <linux/input.h>
  24. #include <asm/mach-types.h>
  25. #include <asm/mach/arch.h>
  26. #include <mach/kirkwood.h>
  27. #include "common.h"
  28. #include "mpp.h"
  29. #include "tsx1x-common.h"
  30. static struct mv643xx_eth_platform_data qnap_ts219_ge00_data = {
  31. .phy_addr = MV643XX_ETH_PHY_ADDR(8),
  32. };
  33. static struct mv_sata_platform_data qnap_ts219_sata_data = {
  34. .n_ports = 2,
  35. };
  36. static unsigned int qnap_ts219_mpp_config[] __initdata = {
  37. MPP0_SPI_SCn,
  38. MPP1_SPI_MOSI,
  39. MPP2_SPI_SCK,
  40. MPP3_SPI_MISO,
  41. MPP4_SATA1_ACTn,
  42. MPP5_SATA0_ACTn,
  43. MPP8_TW0_SDA,
  44. MPP9_TW0_SCK,
  45. MPP10_UART0_TXD,
  46. MPP11_UART0_RXD,
  47. MPP13_UART1_TXD, /* PIC controller */
  48. MPP14_UART1_RXD, /* PIC controller */
  49. MPP15_GPIO, /* USB Copy button (on devices with 88F6281) */
  50. MPP16_GPIO, /* Reset button (on devices with 88F6281) */
  51. MPP36_GPIO, /* RAM: 0: 256 MB, 1: 512 MB */
  52. MPP37_GPIO, /* Reset button (on devices with 88F6282) */
  53. MPP43_GPIO, /* USB Copy button (on devices with 88F6282) */
  54. MPP44_GPIO, /* Board ID: 0: TS-11x, 1: TS-21x */
  55. 0
  56. };
  57. void __init qnap_dt_ts219_init(void)
  58. {
  59. u32 dev, rev;
  60. kirkwood_mpp_conf(qnap_ts219_mpp_config);
  61. kirkwood_pcie_id(&dev, &rev);
  62. if (dev == MV88F6282_DEV_ID)
  63. qnap_ts219_ge00_data.phy_addr = MV643XX_ETH_PHY_ADDR(0);
  64. kirkwood_ge00_init(&qnap_ts219_ge00_data);
  65. kirkwood_sata_init(&qnap_ts219_sata_data);
  66. kirkwood_ehci_init();
  67. pm_power_off = qnap_tsx1x_power_off;
  68. }
  69. /* FIXME: Will not work with DT. Maybe use MPP40_GPIO? */
  70. static int __init ts219_pci_init(void)
  71. {
  72. if (machine_is_ts219())
  73. kirkwood_pcie_init(KW_PCIE0);
  74. return 0;
  75. }
  76. subsys_initcall(ts219_pci_init);