sr_device.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * OMAP3/OMAP4 smartreflex device file
  3. *
  4. * Author: Thara Gopinath <thara@ti.com>
  5. *
  6. * Based originally on code from smartreflex.c
  7. * Copyright (C) 2010 Texas Instruments, Inc.
  8. * Thara Gopinath <thara@ti.com>
  9. *
  10. * Copyright (C) 2008 Nokia Corporation
  11. * Kalle Jokiniemi
  12. *
  13. * Copyright (C) 2007 Texas Instruments, Inc.
  14. * Lesly A M <x0080970@ti.com>
  15. *
  16. * This program is free software; you can redistribute it and/or modify
  17. * it under the terms of the GNU General Public License version 2 as
  18. * published by the Free Software Foundation.
  19. */
  20. #include <linux/power/smartreflex.h>
  21. #include <linux/err.h>
  22. #include <linux/slab.h>
  23. #include <linux/io.h>
  24. #include "soc.h"
  25. #include "omap_device.h"
  26. #include "voltage.h"
  27. #include "control.h"
  28. #include "pm.h"
  29. static bool sr_enable_on_init;
  30. /* Read EFUSE values from control registers for OMAP3430 */
  31. static void __init sr_set_nvalues(struct omap_volt_data *volt_data,
  32. struct omap_sr_data *sr_data)
  33. {
  34. struct omap_sr_nvalue_table *nvalue_table;
  35. int i, j, count = 0;
  36. sr_data->nvalue_count = 0;
  37. sr_data->nvalue_table = NULL;
  38. while (volt_data[count].volt_nominal)
  39. count++;
  40. nvalue_table = kzalloc(sizeof(struct omap_sr_nvalue_table)*count,
  41. GFP_KERNEL);
  42. if (!nvalue_table) {
  43. pr_err("OMAP: SmartReflex: cannot allocate memory for n-value table\n");
  44. return;
  45. }
  46. for (i = 0, j = 0; i < count; i++) {
  47. u32 v;
  48. /*
  49. * In OMAP4 the efuse registers are 24 bit aligned.
  50. * A readl_relaxed will fail for non-32 bit aligned address
  51. * and hence the 8-bit read and shift.
  52. */
  53. if (cpu_is_omap44xx()) {
  54. u16 offset = volt_data[i].sr_efuse_offs;
  55. v = omap_ctrl_readb(offset) |
  56. omap_ctrl_readb(offset + 1) << 8 |
  57. omap_ctrl_readb(offset + 2) << 16;
  58. } else {
  59. v = omap_ctrl_readl(volt_data[i].sr_efuse_offs);
  60. }
  61. /*
  62. * Many OMAP SoCs don't have the eFuse values set.
  63. * For example, pretty much all OMAP3xxx before
  64. * ES3.something.
  65. *
  66. * XXX There needs to be some way for board files or
  67. * userspace to add these in.
  68. */
  69. if (v == 0)
  70. continue;
  71. nvalue_table[j].nvalue = v;
  72. nvalue_table[j].efuse_offs = volt_data[i].sr_efuse_offs;
  73. nvalue_table[j].errminlimit = volt_data[i].sr_errminlimit;
  74. nvalue_table[j].volt_nominal = volt_data[i].volt_nominal;
  75. j++;
  76. }
  77. sr_data->nvalue_table = nvalue_table;
  78. sr_data->nvalue_count = j;
  79. }
  80. static int __init sr_dev_init(struct omap_hwmod *oh, void *user)
  81. {
  82. struct omap_sr_data *sr_data;
  83. struct platform_device *pdev;
  84. struct omap_volt_data *volt_data;
  85. struct omap_smartreflex_dev_attr *sr_dev_attr;
  86. char *name = "smartreflex";
  87. static int i;
  88. sr_data = kzalloc(sizeof(struct omap_sr_data), GFP_KERNEL);
  89. if (!sr_data) {
  90. pr_err("%s: Unable to allocate memory for %s sr_data\n",
  91. __func__, oh->name);
  92. return -ENOMEM;
  93. }
  94. sr_dev_attr = (struct omap_smartreflex_dev_attr *)oh->dev_attr;
  95. if (!sr_dev_attr || !sr_dev_attr->sensor_voltdm_name) {
  96. pr_err("%s: No voltage domain specified for %s. Cannot initialize\n",
  97. __func__, oh->name);
  98. goto exit;
  99. }
  100. sr_data->name = oh->name;
  101. sr_data->ip_type = oh->class->rev;
  102. sr_data->senn_mod = 0x1;
  103. sr_data->senp_mod = 0x1;
  104. if (cpu_is_omap34xx() || cpu_is_omap44xx()) {
  105. sr_data->err_weight = OMAP3430_SR_ERRWEIGHT;
  106. sr_data->err_maxlimit = OMAP3430_SR_ERRMAXLIMIT;
  107. sr_data->accum_data = OMAP3430_SR_ACCUMDATA;
  108. if (!(strcmp(sr_data->name, "smartreflex_mpu"))) {
  109. sr_data->senn_avgweight = OMAP3430_SR1_SENNAVGWEIGHT;
  110. sr_data->senp_avgweight = OMAP3430_SR1_SENPAVGWEIGHT;
  111. } else {
  112. sr_data->senn_avgweight = OMAP3430_SR2_SENNAVGWEIGHT;
  113. sr_data->senp_avgweight = OMAP3430_SR2_SENPAVGWEIGHT;
  114. }
  115. }
  116. sr_data->voltdm = voltdm_lookup(sr_dev_attr->sensor_voltdm_name);
  117. if (!sr_data->voltdm) {
  118. pr_err("%s: Unable to get voltage domain pointer for VDD %s\n",
  119. __func__, sr_dev_attr->sensor_voltdm_name);
  120. goto exit;
  121. }
  122. omap_voltage_get_volttable(sr_data->voltdm, &volt_data);
  123. if (!volt_data) {
  124. pr_err("%s: No Voltage table registered for VDD%d\n",
  125. __func__, i + 1);
  126. goto exit;
  127. }
  128. sr_set_nvalues(volt_data, sr_data);
  129. sr_data->enable_on_init = sr_enable_on_init;
  130. pdev = omap_device_build(name, i, oh, sr_data, sizeof(*sr_data));
  131. if (IS_ERR(pdev))
  132. pr_warn("%s: Could not build omap_device for %s: %s\n",
  133. __func__, name, oh->name);
  134. exit:
  135. i++;
  136. kfree(sr_data);
  137. return 0;
  138. }
  139. /*
  140. * API to be called from board files to enable smartreflex
  141. * autocompensation at init.
  142. */
  143. void __init omap_enable_smartreflex_on_init(void)
  144. {
  145. sr_enable_on_init = true;
  146. }
  147. int __init omap_devinit_smartreflex(void)
  148. {
  149. return omap_hwmod_for_each_by_class("smartreflex", sr_dev_init, NULL);
  150. }