board-dnskw.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * Copyright 2012 (C), Jamie Lentin <jm@lentin.co.uk>
  3. *
  4. * arch/arm/mach-kirkwood/board-dnskw.c
  5. *
  6. * D-link DNS-320 & DNS-325 NAS Init for drivers not converted to
  7. * flattened device tree yet.
  8. *
  9. * This file is licensed under the terms of the GNU General Public
  10. * License version 2. This program is licensed "as is" without any
  11. * warranty of any kind, whether express or implied.
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/init.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/ata_platform.h>
  17. #include <linux/mv643xx_eth.h>
  18. #include <linux/of.h>
  19. #include <linux/gpio.h>
  20. #include <linux/input.h>
  21. #include <linux/gpio-fan.h>
  22. #include <linux/leds.h>
  23. #include <asm/mach-types.h>
  24. #include <asm/mach/arch.h>
  25. #include <asm/mach/map.h>
  26. #include <mach/kirkwood.h>
  27. #include <mach/bridge-regs.h>
  28. #include "common.h"
  29. #include "mpp.h"
  30. static struct mv643xx_eth_platform_data dnskw_ge00_data = {
  31. .phy_addr = MV643XX_ETH_PHY_ADDR(8),
  32. };
  33. static unsigned int dnskw_mpp_config[] __initdata = {
  34. MPP13_UART1_TXD, /* Custom ... */
  35. MPP14_UART1_RXD, /* ... Controller (DNS-320 only) */
  36. MPP20_SATA1_ACTn, /* LED: White Right HDD */
  37. MPP21_SATA0_ACTn, /* LED: White Left HDD */
  38. MPP24_GPIO,
  39. MPP25_GPIO,
  40. MPP26_GPIO, /* LED: Power */
  41. MPP27_GPIO, /* LED: Red Right HDD */
  42. MPP28_GPIO, /* LED: Red Left HDD */
  43. MPP29_GPIO, /* LED: Red USB (DNS-325 only) */
  44. MPP30_GPIO,
  45. MPP31_GPIO,
  46. MPP32_GPIO,
  47. MPP33_GPO,
  48. MPP34_GPIO, /* Button: Front power */
  49. MPP35_GPIO, /* LED: Red USB (DNS-320 only) */
  50. MPP36_GPIO, /* Power: Turn off board */
  51. MPP37_GPIO, /* Power: Turn back on after power failure */
  52. MPP38_GPIO,
  53. MPP39_GPIO, /* Power: SATA0 */
  54. MPP40_GPIO, /* Power: SATA1 */
  55. MPP41_GPIO, /* SATA0 present */
  56. MPP42_GPIO, /* SATA1 present */
  57. MPP43_GPIO, /* LED: White USB */
  58. MPP44_GPIO, /* Fan: Tachometer Pin */
  59. MPP45_GPIO, /* Fan: high speed */
  60. MPP46_GPIO, /* Fan: low speed */
  61. MPP47_GPIO, /* Button: Back unmount */
  62. MPP48_GPIO, /* Button: Back reset */
  63. MPP49_GPIO, /* Temp Alarm (DNS-325) Pin of U5 (DNS-320) */
  64. 0
  65. };
  66. /* Fan: ADDA AD045HB-G73 40mm 6000rpm@5v */
  67. static struct gpio_fan_speed dnskw_fan_speed[] = {
  68. { 0, 0 },
  69. { 3000, 1 },
  70. { 6000, 2 },
  71. };
  72. static unsigned dnskw_fan_pins[] = {46, 45};
  73. static struct gpio_fan_platform_data dnskw_fan_data = {
  74. .num_ctrl = ARRAY_SIZE(dnskw_fan_pins),
  75. .ctrl = dnskw_fan_pins,
  76. .num_speed = ARRAY_SIZE(dnskw_fan_speed),
  77. .speed = dnskw_fan_speed,
  78. };
  79. static struct platform_device dnskw_fan_device = {
  80. .name = "gpio-fan",
  81. .id = -1,
  82. .dev = {
  83. .platform_data = &dnskw_fan_data,
  84. },
  85. };
  86. static void dnskw_power_off(void)
  87. {
  88. gpio_set_value(36, 1);
  89. }
  90. /* Register any GPIO for output and set the value */
  91. static void __init dnskw_gpio_register(unsigned gpio, char *name, int def)
  92. {
  93. if (gpio_request(gpio, name) == 0 &&
  94. gpio_direction_output(gpio, 0) == 0) {
  95. gpio_set_value(gpio, def);
  96. if (gpio_export(gpio, 0) != 0)
  97. pr_err("dnskw: Failed to export GPIO %s\n", name);
  98. } else
  99. pr_err("dnskw: Failed to register %s\n", name);
  100. }
  101. void __init dnskw_init(void)
  102. {
  103. kirkwood_mpp_conf(dnskw_mpp_config);
  104. kirkwood_ehci_init();
  105. kirkwood_ge00_init(&dnskw_ge00_data);
  106. platform_device_register(&dnskw_fan_device);
  107. /* Register power-off GPIO. */
  108. if (gpio_request(36, "dnskw:power:off") == 0
  109. && gpio_direction_output(36, 0) == 0)
  110. pm_power_off = dnskw_power_off;
  111. else
  112. pr_err("dnskw: failed to configure power-off GPIO\n");
  113. /* Ensure power is supplied to both HDDs */
  114. dnskw_gpio_register(39, "dnskw:power:sata0", 1);
  115. dnskw_gpio_register(40, "dnskw:power:sata1", 1);
  116. /* Set NAS to turn back on after a power failure */
  117. dnskw_gpio_register(37, "dnskw:power:recover", 1);
  118. }