blob: 62df666c2bd0bad494a908212e04b7a7d1a33553 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Thara Gopinath0c0a5d62010-05-29 22:02:23 +05302/*
3 * OMAP3/OMAP4 smartreflex device file
4 *
5 * Author: Thara Gopinath <thara@ti.com>
6 *
7 * Based originally on code from smartreflex.c
8 * Copyright (C) 2010 Texas Instruments, Inc.
9 * Thara Gopinath <thara@ti.com>
10 *
11 * Copyright (C) 2008 Nokia Corporation
12 * Kalle Jokiniemi
13 *
14 * Copyright (C) 2007 Texas Instruments, Inc.
15 * Lesly A M <x0080970@ti.com>
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053016 */
Jean Pihetb86aeaf2012-04-25 16:06:20 +053017#include <linux/power/smartreflex.h>
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053018
19#include <linux/err.h>
20#include <linux/slab.h>
Thara Gopinathb35cecf2010-08-18 12:23:12 +053021#include <linux/io.h>
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053022
Tony Lindgrene4c060d2012-10-05 13:25:59 -070023#include "soc.h"
Tony Lindgren25c7d492012-10-02 17:25:48 -070024#include "omap_device.h"
Paul Walmsleye1d6f472011-02-25 15:54:33 -070025#include "voltage.h"
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053026#include "control.h"
Nishanth Menond0eadf62011-01-03 13:35:41 -060027#include "pm.h"
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053028
29static bool sr_enable_on_init;
30
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053031/* Read EFUSE values from control registers for OMAP3430 */
32static void __init sr_set_nvalues(struct omap_volt_data *volt_data,
33 struct omap_sr_data *sr_data)
34{
35 struct omap_sr_nvalue_table *nvalue_table;
Jean Pihet5e7f2e12012-04-25 11:19:44 +053036 int i, j, count = 0;
37
38 sr_data->nvalue_count = 0;
39 sr_data->nvalue_table = NULL;
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053040
41 while (volt_data[count].volt_nominal)
42 count++;
43
Markus Elfring6b72de42017-06-03 19:09:07 +020044 nvalue_table = kcalloc(count, sizeof(*nvalue_table), GFP_KERNEL);
Markus Elfringc76e4d22017-06-03 19:16:27 +020045 if (!nvalue_table)
Jean Pihet5e7f2e12012-04-25 11:19:44 +053046 return;
Jean Pihet5e7f2e12012-04-25 11:19:44 +053047
48 for (i = 0, j = 0; i < count; i++) {
Thara Gopinathb35cecf2010-08-18 12:23:12 +053049 u32 v;
Jean Pihet5e7f2e12012-04-25 11:19:44 +053050
Thara Gopinathb35cecf2010-08-18 12:23:12 +053051 /*
52 * In OMAP4 the efuse registers are 24 bit aligned.
Victor Kamenskyedfaf052014-04-15 20:37:46 +030053 * A readl_relaxed will fail for non-32 bit aligned address
Thara Gopinathb35cecf2010-08-18 12:23:12 +053054 * and hence the 8-bit read and shift.
55 */
56 if (cpu_is_omap44xx()) {
57 u16 offset = volt_data[i].sr_efuse_offs;
58
59 v = omap_ctrl_readb(offset) |
60 omap_ctrl_readb(offset + 1) << 8 |
61 omap_ctrl_readb(offset + 2) << 16;
62 } else {
Jean Pihet5e7f2e12012-04-25 11:19:44 +053063 v = omap_ctrl_readl(volt_data[i].sr_efuse_offs);
Thara Gopinathb35cecf2010-08-18 12:23:12 +053064 }
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053065
Jean Pihet5e7f2e12012-04-25 11:19:44 +053066 /*
67 * Many OMAP SoCs don't have the eFuse values set.
68 * For example, pretty much all OMAP3xxx before
69 * ES3.something.
70 *
71 * XXX There needs to be some way for board files or
72 * userspace to add these in.
73 */
74 if (v == 0)
75 continue;
76
77 nvalue_table[j].nvalue = v;
78 nvalue_table[j].efuse_offs = volt_data[i].sr_efuse_offs;
79 nvalue_table[j].errminlimit = volt_data[i].sr_errminlimit;
80 nvalue_table[j].volt_nominal = volt_data[i].volt_nominal;
81
82 j++;
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053083 }
84
85 sr_data->nvalue_table = nvalue_table;
Jean Pihet5e7f2e12012-04-25 11:19:44 +053086 sr_data->nvalue_count = j;
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053087}
88
Tony Lindgrend060b402018-02-22 13:57:30 -080089extern struct omap_sr_data omap_sr_pdata[];
90
Kevin Hilman9cf793f2012-02-20 09:43:30 -080091static int __init sr_dev_init(struct omap_hwmod *oh, void *user)
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053092{
Tony Lindgren695eea32018-02-22 14:05:31 -080093 struct omap_sr_data *sr_data = NULL;
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053094 struct omap_volt_data *volt_data;
Shweta Gulaticea6b942012-02-29 23:33:37 +010095 struct omap_smartreflex_dev_attr *sr_dev_attr;
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053096 static int i;
97
Tony Lindgren695eea32018-02-22 14:05:31 -080098 if (!strncmp(oh->name, "smartreflex_mpu_iva", 20) ||
99 !strncmp(oh->name, "smartreflex_mpu", 16))
100 sr_data = &omap_sr_pdata[OMAP_SR_MPU];
101 else if (!strncmp(oh->name, "smartreflex_core", 17))
102 sr_data = &omap_sr_pdata[OMAP_SR_CORE];
103 else if (!strncmp(oh->name, "smartreflex_iva", 16))
104 sr_data = &omap_sr_pdata[OMAP_SR_IVA];
105
106 if (!sr_data) {
107 pr_err("%s: Unknown instance %s\n", __func__, oh->name);
108 return -EINVAL;
109 }
Thara Gopinath0c0a5d62010-05-29 22:02:23 +0530110
Shweta Gulaticea6b942012-02-29 23:33:37 +0100111 sr_dev_attr = (struct omap_smartreflex_dev_attr *)oh->dev_attr;
112 if (!sr_dev_attr || !sr_dev_attr->sensor_voltdm_name) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600113 pr_err("%s: No voltage domain specified for %s. Cannot initialize\n",
114 __func__, oh->name);
Thara Gopinath0c0a5d62010-05-29 22:02:23 +0530115 goto exit;
116 }
117
Jean Pihet8b765d72012-04-24 10:41:27 +0530118 sr_data->name = oh->name;
Tony Lindgren70451122019-03-21 11:00:21 -0700119 if (cpu_is_omap343x())
120 sr_data->ip_type = 1;
121 else
122 sr_data->ip_type = 2;
Thara Gopinath0c0a5d62010-05-29 22:02:23 +0530123 sr_data->senn_mod = 0x1;
124 sr_data->senp_mod = 0x1;
125
Jean Pihet98aed082012-10-04 18:47:11 +0200126 if (cpu_is_omap34xx() || cpu_is_omap44xx()) {
127 sr_data->err_weight = OMAP3430_SR_ERRWEIGHT;
128 sr_data->err_maxlimit = OMAP3430_SR_ERRMAXLIMIT;
129 sr_data->accum_data = OMAP3430_SR_ACCUMDATA;
130 if (!(strcmp(sr_data->name, "smartreflex_mpu"))) {
131 sr_data->senn_avgweight = OMAP3430_SR1_SENNAVGWEIGHT;
132 sr_data->senp_avgweight = OMAP3430_SR1_SENPAVGWEIGHT;
133 } else {
134 sr_data->senn_avgweight = OMAP3430_SR2_SENNAVGWEIGHT;
135 sr_data->senp_avgweight = OMAP3430_SR2_SENPAVGWEIGHT;
136 }
137 }
138
Shweta Gulaticea6b942012-02-29 23:33:37 +0100139 sr_data->voltdm = voltdm_lookup(sr_dev_attr->sensor_voltdm_name);
Wei Yongjun07684c12012-09-27 13:54:22 +0800140 if (!sr_data->voltdm) {
Thara Gopinath0c0a5d62010-05-29 22:02:23 +0530141 pr_err("%s: Unable to get voltage domain pointer for VDD %s\n",
Shweta Gulaticea6b942012-02-29 23:33:37 +0100142 __func__, sr_dev_attr->sensor_voltdm_name);
Thara Gopinath0c0a5d62010-05-29 22:02:23 +0530143 goto exit;
144 }
145
146 omap_voltage_get_volttable(sr_data->voltdm, &volt_data);
147 if (!volt_data) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600148 pr_err("%s: No Voltage table registered for VDD%d\n",
149 __func__, i + 1);
Thara Gopinath0c0a5d62010-05-29 22:02:23 +0530150 goto exit;
151 }
152
153 sr_set_nvalues(volt_data, sr_data);
154
155 sr_data->enable_on_init = sr_enable_on_init;
156
Thara Gopinath0c0a5d62010-05-29 22:02:23 +0530157exit:
158 i++;
Tony Lindgren695eea32018-02-22 14:05:31 -0800159
Thara Gopinath0c0a5d62010-05-29 22:02:23 +0530160 return 0;
161}
162
163/*
164 * API to be called from board files to enable smartreflex
165 * autocompensation at init.
166 */
167void __init omap_enable_smartreflex_on_init(void)
168{
169 sr_enable_on_init = true;
170}
171
172int __init omap_devinit_smartreflex(void)
173{
174 return omap_hwmod_for_each_by_class("smartreflex", sr_dev_init, NULL);
175}