blob: e081174f28af7fce2798b6078cac1b8c0c57ed6c [file] [log] [blame]
Thara Gopinath0c0a5d62010-05-29 22:02:23 +05301/*
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 */
Jean Pihetb86aeaf2012-04-25 16:06:20 +053020#include <linux/power/smartreflex.h>
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053021
22#include <linux/err.h>
23#include <linux/slab.h>
Thara Gopinathb35cecf2010-08-18 12:23:12 +053024#include <linux/io.h>
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053025
26#include <plat/omap_device.h>
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053027
Paul Walmsleye1d6f472011-02-25 15:54:33 -070028#include "voltage.h"
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053029#include "control.h"
Nishanth Menond0eadf62011-01-03 13:35:41 -060030#include "pm.h"
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053031
32static bool sr_enable_on_init;
33
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053034/* Read EFUSE values from control registers for OMAP3430 */
35static void __init sr_set_nvalues(struct omap_volt_data *volt_data,
36 struct omap_sr_data *sr_data)
37{
38 struct omap_sr_nvalue_table *nvalue_table;
39 int i, count = 0;
40
41 while (volt_data[count].volt_nominal)
42 count++;
43
44 nvalue_table = kzalloc(sizeof(struct omap_sr_nvalue_table)*count,
45 GFP_KERNEL);
46
47 for (i = 0; i < count; i++) {
Thara Gopinathb35cecf2010-08-18 12:23:12 +053048 u32 v;
49 /*
50 * In OMAP4 the efuse registers are 24 bit aligned.
51 * A __raw_readl will fail for non-32 bit aligned address
52 * and hence the 8-bit read and shift.
53 */
54 if (cpu_is_omap44xx()) {
55 u16 offset = volt_data[i].sr_efuse_offs;
56
57 v = omap_ctrl_readb(offset) |
58 omap_ctrl_readb(offset + 1) << 8 |
59 omap_ctrl_readb(offset + 2) << 16;
60 } else {
61 v = omap_ctrl_readl(volt_data[i].sr_efuse_offs);
62 }
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053063
64 nvalue_table[i].efuse_offs = volt_data[i].sr_efuse_offs;
65 nvalue_table[i].nvalue = v;
66 }
67
68 sr_data->nvalue_table = nvalue_table;
69 sr_data->nvalue_count = count;
70}
71
Kevin Hilman9cf793f2012-02-20 09:43:30 -080072static int __init sr_dev_init(struct omap_hwmod *oh, void *user)
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053073{
74 struct omap_sr_data *sr_data;
Kevin Hilman3528c582011-07-21 13:48:45 -070075 struct platform_device *pdev;
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053076 struct omap_volt_data *volt_data;
Shweta Gulaticea6b942012-02-29 23:33:37 +010077 struct omap_smartreflex_dev_attr *sr_dev_attr;
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053078 char *name = "smartreflex";
79 static int i;
80
81 sr_data = kzalloc(sizeof(struct omap_sr_data), GFP_KERNEL);
82 if (!sr_data) {
83 pr_err("%s: Unable to allocate memory for %s sr_data.Error!\n",
84 __func__, oh->name);
85 return -ENOMEM;
86 }
87
Shweta Gulaticea6b942012-02-29 23:33:37 +010088 sr_dev_attr = (struct omap_smartreflex_dev_attr *)oh->dev_attr;
89 if (!sr_dev_attr || !sr_dev_attr->sensor_voltdm_name) {
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053090 pr_err("%s: No voltage domain specified for %s."
Shweta Gulaticea6b942012-02-29 23:33:37 +010091 "Cannot initialize\n", __func__,
92 oh->name);
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053093 goto exit;
94 }
95
Jean Pihet8b765d72012-04-24 10:41:27 +053096 sr_data->name = oh->name;
Thara Gopinath0c0a5d62010-05-29 22:02:23 +053097 sr_data->ip_type = oh->class->rev;
98 sr_data->senn_mod = 0x1;
99 sr_data->senp_mod = 0x1;
100
Shweta Gulaticea6b942012-02-29 23:33:37 +0100101 sr_data->voltdm = voltdm_lookup(sr_dev_attr->sensor_voltdm_name);
Thara Gopinath0c0a5d62010-05-29 22:02:23 +0530102 if (IS_ERR(sr_data->voltdm)) {
103 pr_err("%s: Unable to get voltage domain pointer for VDD %s\n",
Shweta Gulaticea6b942012-02-29 23:33:37 +0100104 __func__, sr_dev_attr->sensor_voltdm_name);
Thara Gopinath0c0a5d62010-05-29 22:02:23 +0530105 goto exit;
106 }
107
108 omap_voltage_get_volttable(sr_data->voltdm, &volt_data);
109 if (!volt_data) {
110 pr_warning("%s: No Voltage table registerd fo VDD%d."
111 "Something really wrong\n\n", __func__, i + 1);
112 goto exit;
113 }
114
115 sr_set_nvalues(volt_data, sr_data);
116
117 sr_data->enable_on_init = sr_enable_on_init;
118
Kevin Hilman3528c582011-07-21 13:48:45 -0700119 pdev = omap_device_build(name, i, oh, sr_data, sizeof(*sr_data),
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200120 NULL, 0, 0);
Kevin Hilman3528c582011-07-21 13:48:45 -0700121 if (IS_ERR(pdev))
Thara Gopinath0c0a5d62010-05-29 22:02:23 +0530122 pr_warning("%s: Could not build omap_device for %s: %s.\n\n",
123 __func__, name, oh->name);
124exit:
125 i++;
126 kfree(sr_data);
127 return 0;
128}
129
130/*
131 * API to be called from board files to enable smartreflex
132 * autocompensation at init.
133 */
134void __init omap_enable_smartreflex_on_init(void)
135{
136 sr_enable_on_init = true;
137}
138
139int __init omap_devinit_smartreflex(void)
140{
141 return omap_hwmod_for_each_by_class("smartreflex", sr_dev_init, NULL);
142}