sr_device.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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/err.h>
  21. #include <linux/slab.h>
  22. #include <linux/io.h>
  23. #include <plat/omap_device.h>
  24. #include <plat/smartreflex.h>
  25. #include <plat/voltage.h>
  26. #include "control.h"
  27. static bool sr_enable_on_init;
  28. static struct omap_device_pm_latency omap_sr_latency[] = {
  29. {
  30. .deactivate_func = omap_device_idle_hwmods,
  31. .activate_func = omap_device_enable_hwmods,
  32. .flags = OMAP_DEVICE_LATENCY_AUTO_ADJUST
  33. },
  34. };
  35. /* Read EFUSE values from control registers for OMAP3430 */
  36. static void __init sr_set_nvalues(struct omap_volt_data *volt_data,
  37. struct omap_sr_data *sr_data)
  38. {
  39. struct omap_sr_nvalue_table *nvalue_table;
  40. int i, count = 0;
  41. while (volt_data[count].volt_nominal)
  42. count++;
  43. nvalue_table = kzalloc(sizeof(struct omap_sr_nvalue_table)*count,
  44. GFP_KERNEL);
  45. for (i = 0; i < count; i++) {
  46. u32 v;
  47. /*
  48. * In OMAP4 the efuse registers are 24 bit aligned.
  49. * A __raw_readl will fail for non-32 bit aligned address
  50. * and hence the 8-bit read and shift.
  51. */
  52. if (cpu_is_omap44xx()) {
  53. u16 offset = volt_data[i].sr_efuse_offs;
  54. v = omap_ctrl_readb(offset) |
  55. omap_ctrl_readb(offset + 1) << 8 |
  56. omap_ctrl_readb(offset + 2) << 16;
  57. } else {
  58. v = omap_ctrl_readl(volt_data[i].sr_efuse_offs);
  59. }
  60. nvalue_table[i].efuse_offs = volt_data[i].sr_efuse_offs;
  61. nvalue_table[i].nvalue = v;
  62. }
  63. sr_data->nvalue_table = nvalue_table;
  64. sr_data->nvalue_count = count;
  65. }
  66. static int sr_dev_init(struct omap_hwmod *oh, void *user)
  67. {
  68. struct omap_sr_data *sr_data;
  69. struct omap_device *od;
  70. struct omap_volt_data *volt_data;
  71. char *name = "smartreflex";
  72. static int i;
  73. sr_data = kzalloc(sizeof(struct omap_sr_data), GFP_KERNEL);
  74. if (!sr_data) {
  75. pr_err("%s: Unable to allocate memory for %s sr_data.Error!\n",
  76. __func__, oh->name);
  77. return -ENOMEM;
  78. }
  79. if (!oh->vdd_name) {
  80. pr_err("%s: No voltage domain specified for %s."
  81. "Cannot initialize\n", __func__, oh->name);
  82. goto exit;
  83. }
  84. sr_data->ip_type = oh->class->rev;
  85. sr_data->senn_mod = 0x1;
  86. sr_data->senp_mod = 0x1;
  87. sr_data->voltdm = omap_voltage_domain_lookup(oh->vdd_name);
  88. if (IS_ERR(sr_data->voltdm)) {
  89. pr_err("%s: Unable to get voltage domain pointer for VDD %s\n",
  90. __func__, oh->vdd_name);
  91. goto exit;
  92. }
  93. omap_voltage_get_volttable(sr_data->voltdm, &volt_data);
  94. if (!volt_data) {
  95. pr_warning("%s: No Voltage table registerd fo VDD%d."
  96. "Something really wrong\n\n", __func__, i + 1);
  97. goto exit;
  98. }
  99. sr_set_nvalues(volt_data, sr_data);
  100. sr_data->enable_on_init = sr_enable_on_init;
  101. od = omap_device_build(name, i, oh, sr_data, sizeof(*sr_data),
  102. omap_sr_latency,
  103. ARRAY_SIZE(omap_sr_latency), 0);
  104. if (IS_ERR(od))
  105. pr_warning("%s: Could not build omap_device for %s: %s.\n\n",
  106. __func__, name, oh->name);
  107. exit:
  108. i++;
  109. kfree(sr_data);
  110. return 0;
  111. }
  112. /*
  113. * API to be called from board files to enable smartreflex
  114. * autocompensation at init.
  115. */
  116. void __init omap_enable_smartreflex_on_init(void)
  117. {
  118. sr_enable_on_init = true;
  119. }
  120. int __init omap_devinit_smartreflex(void)
  121. {
  122. return omap_hwmod_for_each_by_class("smartreflex", sr_dev_init, NULL);
  123. }