gf119.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*
  2. * Copyright 2012 Red Hat Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. * Authors: Ben Skeggs
  23. */
  24. #include "priv.h"
  25. static int
  26. pwm_info(struct nvkm_therm *therm, int line)
  27. {
  28. struct nvkm_subdev *subdev = &therm->subdev;
  29. struct nvkm_device *device = subdev->device;
  30. u32 gpio = nvkm_rd32(device, 0x00d610 + (line * 0x04));
  31. switch (gpio & 0x000000c0) {
  32. case 0x00000000: /* normal mode, possibly pwm forced off by us */
  33. case 0x00000040: /* nvio special */
  34. switch (gpio & 0x0000001f) {
  35. case 0x00: return 2;
  36. case 0x19: return 1;
  37. case 0x1c: return 0;
  38. case 0x1e: return 2;
  39. default:
  40. break;
  41. }
  42. default:
  43. break;
  44. }
  45. nvkm_error(subdev, "GPIO %d unknown PWM: %08x\n", line, gpio);
  46. return -ENODEV;
  47. }
  48. static int
  49. gf119_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable)
  50. {
  51. struct nvkm_device *device = therm->subdev.device;
  52. u32 data = enable ? 0x00000040 : 0x00000000;
  53. int indx = pwm_info(therm, line);
  54. if (indx < 0)
  55. return indx;
  56. else if (indx < 2)
  57. nvkm_mask(device, 0x00d610 + (line * 0x04), 0x000000c0, data);
  58. /* nothing to do for indx == 2, it seems hardwired to PTHERM */
  59. return 0;
  60. }
  61. static int
  62. gf119_fan_pwm_get(struct nvkm_therm *therm, int line, u32 *divs, u32 *duty)
  63. {
  64. struct nvkm_device *device = therm->subdev.device;
  65. int indx = pwm_info(therm, line);
  66. if (indx < 0)
  67. return indx;
  68. else if (indx < 2) {
  69. if (nvkm_rd32(device, 0x00d610 + (line * 0x04)) & 0x00000040) {
  70. *divs = nvkm_rd32(device, 0x00e114 + (indx * 8));
  71. *duty = nvkm_rd32(device, 0x00e118 + (indx * 8));
  72. return 0;
  73. }
  74. } else if (indx == 2) {
  75. *divs = nvkm_rd32(device, 0x0200d8) & 0x1fff;
  76. *duty = nvkm_rd32(device, 0x0200dc) & 0x1fff;
  77. return 0;
  78. }
  79. return -EINVAL;
  80. }
  81. static int
  82. gf119_fan_pwm_set(struct nvkm_therm *therm, int line, u32 divs, u32 duty)
  83. {
  84. struct nvkm_device *device = therm->subdev.device;
  85. int indx = pwm_info(therm, line);
  86. if (indx < 0)
  87. return indx;
  88. else if (indx < 2) {
  89. nvkm_wr32(device, 0x00e114 + (indx * 8), divs);
  90. nvkm_wr32(device, 0x00e118 + (indx * 8), duty | 0x80000000);
  91. } else if (indx == 2) {
  92. nvkm_mask(device, 0x0200d8, 0x1fff, divs); /* keep the high bits */
  93. nvkm_wr32(device, 0x0200dc, duty | 0x40000000);
  94. }
  95. return 0;
  96. }
  97. static int
  98. gf119_fan_pwm_clock(struct nvkm_therm *therm, int line)
  99. {
  100. struct nvkm_device *device = therm->subdev.device;
  101. int indx = pwm_info(therm, line);
  102. if (indx < 0)
  103. return 0;
  104. else if (indx < 2)
  105. return (device->crystal * 1000) / 20;
  106. else
  107. return device->crystal * 1000 / 10;
  108. }
  109. void
  110. gf119_therm_init(struct nvkm_therm *therm)
  111. {
  112. struct nvkm_device *device = therm->subdev.device;
  113. g84_sensor_setup(therm);
  114. /* enable fan tach, count revolutions per-second */
  115. nvkm_mask(device, 0x00e720, 0x00000003, 0x00000002);
  116. if (therm->fan->tach.func != DCB_GPIO_UNUSED) {
  117. nvkm_mask(device, 0x00d79c, 0x000000ff, therm->fan->tach.line);
  118. nvkm_wr32(device, 0x00e724, device->crystal * 1000);
  119. nvkm_mask(device, 0x00e720, 0x00000001, 0x00000001);
  120. }
  121. nvkm_mask(device, 0x00e720, 0x00000002, 0x00000000);
  122. }
  123. static const struct nvkm_therm_func
  124. gf119_therm = {
  125. .init = gf119_therm_init,
  126. .fini = g84_therm_fini,
  127. .pwm_ctrl = gf119_fan_pwm_ctrl,
  128. .pwm_get = gf119_fan_pwm_get,
  129. .pwm_set = gf119_fan_pwm_set,
  130. .pwm_clock = gf119_fan_pwm_clock,
  131. .temp_get = g84_temp_get,
  132. .fan_sense = gt215_therm_fan_sense,
  133. .program_alarms = nvkm_therm_program_alarms_polling,
  134. };
  135. int
  136. gf119_therm_new(struct nvkm_device *device, int index,
  137. struct nvkm_therm **ptherm)
  138. {
  139. return nvkm_therm_new_(&gf119_therm, device, index, ptherm);
  140. }