4 * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/
5 * Author: Balaji T K <balajitk@ti.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation version 2.
11 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
12 * kind, whether express or implied; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <linux/err.h>
19 #include <linux/module.h>
20 #include <linux/mfd/syscon.h>
21 #include <linux/platform_device.h>
22 #include <linux/regulator/driver.h>
23 #include <linux/regulator/machine.h>
24 #include <linux/regulator/of_regulator.h>
25 #include <linux/regmap.h>
26 #include <linux/slab.h>
28 #include <linux/of_device.h>
30 struct pbias_reg_info {
34 unsigned int enable_time;
38 struct pbias_regulator_data {
39 struct regulator_desc desc;
40 void __iomem *pbias_addr;
41 struct regulator_dev *dev;
42 struct regmap *syscon;
43 const struct pbias_reg_info *info;
47 static const unsigned int pbias_volt_table[] = {
52 static struct regulator_ops pbias_regulator_voltage_ops = {
53 .list_voltage = regulator_list_voltage_table,
54 .get_voltage_sel = regulator_get_voltage_sel_regmap,
55 .set_voltage_sel = regulator_set_voltage_sel_regmap,
56 .enable = regulator_enable_regmap,
57 .disable = regulator_disable_regmap,
58 .is_enabled = regulator_is_enabled_regmap,
61 static const struct pbias_reg_info pbias_mmc_omap2430 = {
63 .enable_mask = BIT(1),
66 .name = "pbias_mmc_omap2430"
69 static const struct pbias_reg_info pbias_sim_omap3 = {
71 .enable_mask = BIT(9),
74 .name = "pbias_sim_omap3"
77 static const struct pbias_reg_info pbias_mmc_omap4 = {
78 .enable = BIT(26) | BIT(22),
79 .enable_mask = BIT(26) | BIT(25) | BIT(22),
82 .name = "pbias_mmc_omap4"
85 static const struct pbias_reg_info pbias_mmc_omap5 = {
86 .enable = BIT(27) | BIT(26),
87 .enable_mask = BIT(27) | BIT(25) | BIT(26),
90 .name = "pbias_mmc_omap5"
93 static struct of_regulator_match pbias_matches[] = {
94 { .name = "pbias_mmc_omap2430", .driver_data = (void *)&pbias_mmc_omap2430},
95 { .name = "pbias_sim_omap3", .driver_data = (void *)&pbias_sim_omap3},
96 { .name = "pbias_mmc_omap4", .driver_data = (void *)&pbias_mmc_omap4},
97 { .name = "pbias_mmc_omap5", .driver_data = (void *)&pbias_mmc_omap5},
99 #define PBIAS_NUM_REGS ARRAY_SIZE(pbias_matches)
101 static const struct of_device_id pbias_of_match[] = {
102 { .compatible = "ti,pbias-omap", },
105 MODULE_DEVICE_TABLE(of, pbias_of_match);
107 static int pbias_regulator_probe(struct platform_device *pdev)
109 struct device_node *np = pdev->dev.of_node;
110 struct pbias_regulator_data *drvdata;
111 struct resource *res;
112 struct regulator_config cfg = { };
113 struct regmap *syscon;
114 const struct pbias_reg_info *info;
116 int count, idx, data_idx = 0;
118 count = of_regulator_match(&pdev->dev, np, pbias_matches,
123 drvdata = devm_kzalloc(&pdev->dev, sizeof(struct pbias_regulator_data)
124 * count, GFP_KERNEL);
128 syscon = syscon_regmap_lookup_by_phandle(np, "syscon");
130 return PTR_ERR(syscon);
133 cfg.dev = &pdev->dev;
135 for (idx = 0; idx < PBIAS_NUM_REGS && data_idx < count; idx++) {
136 if (!pbias_matches[idx].init_data ||
137 !pbias_matches[idx].of_node)
140 info = pbias_matches[idx].driver_data;
144 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
148 drvdata[data_idx].syscon = syscon;
149 drvdata[data_idx].info = info;
150 drvdata[data_idx].desc.name = info->name;
151 drvdata[data_idx].desc.owner = THIS_MODULE;
152 drvdata[data_idx].desc.type = REGULATOR_VOLTAGE;
153 drvdata[data_idx].desc.ops = &pbias_regulator_voltage_ops;
154 drvdata[data_idx].desc.volt_table = pbias_volt_table;
155 drvdata[data_idx].desc.n_voltages = 2;
156 drvdata[data_idx].desc.enable_time = info->enable_time;
157 drvdata[data_idx].desc.vsel_reg = res->start;
158 drvdata[data_idx].desc.vsel_mask = info->vmode;
159 drvdata[data_idx].desc.enable_reg = res->start;
160 drvdata[data_idx].desc.enable_mask = info->enable_mask;
161 drvdata[data_idx].desc.enable_val = info->enable;
163 cfg.init_data = pbias_matches[idx].init_data;
164 cfg.driver_data = &drvdata[data_idx];
165 cfg.of_node = pbias_matches[idx].of_node;
167 drvdata[data_idx].dev = devm_regulator_register(&pdev->dev,
168 &drvdata[data_idx].desc, &cfg);
169 if (IS_ERR(drvdata[data_idx].dev)) {
170 ret = PTR_ERR(drvdata[data_idx].dev);
172 "Failed to register regulator: %d\n", ret);
178 platform_set_drvdata(pdev, drvdata);
184 static struct platform_driver pbias_regulator_driver = {
185 .probe = pbias_regulator_probe,
187 .name = "pbias-regulator",
188 .of_match_table = of_match_ptr(pbias_of_match),
192 module_platform_driver(pbias_regulator_driver);
194 MODULE_AUTHOR("Balaji T K <balajitk@ti.com>");
195 MODULE_DESCRIPTION("pbias voltage regulator");
196 MODULE_LICENSE("GPL");
197 MODULE_ALIAS("platform:pbias-regulator");