blob: 1571bee6b1bc3e0cf4ef2c9204c73447102d5241 [file] [log] [blame]
Mark Brown34abbd62010-02-12 10:18:08 +00001/*
2 * dummy.c
3 *
4 * Copyright 2010 Wolfson Microelectronics PLC.
5 *
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of the
11 * License, or (at your option) any later version.
12 *
13 * This is useful for systems with mixed controllable and
14 * non-controllable regulators, as well as for allowing testing on
15 * systems with no controllable regulators.
16 */
17
18#include <linux/err.h>
Paul Gortmaker22be0532011-07-17 15:48:22 -040019#include <linux/export.h>
Mark Brown34abbd62010-02-12 10:18:08 +000020#include <linux/platform_device.h>
21#include <linux/regulator/driver.h>
22#include <linux/regulator/machine.h>
23
24#include "dummy.h"
25
26struct regulator_dev *dummy_regulator_rdev;
27
28static struct regulator_init_data dummy_initdata;
29
30static struct regulator_ops dummy_ops;
31
32static struct regulator_desc dummy_desc = {
33 .name = "dummy",
34 .id = -1,
35 .type = REGULATOR_VOLTAGE,
36 .owner = THIS_MODULE,
37 .ops = &dummy_ops,
38};
39
Mark Brownc08957a2011-06-07 23:36:18 +010040static int __devinit dummy_regulator_probe(struct platform_device *pdev)
41{
Mark Brownc172708d2012-04-04 00:50:22 +010042 struct regulator_config config = { };
Mark Brownc08957a2011-06-07 23:36:18 +010043 int ret;
44
Mark Brownc172708d2012-04-04 00:50:22 +010045 config.init_data = &dummy_initdata;
46
47 dummy_regulator_rdev = regulator_register(&dummy_desc, &config);
Mark Brownc08957a2011-06-07 23:36:18 +010048 if (IS_ERR(dummy_regulator_rdev)) {
49 ret = PTR_ERR(dummy_regulator_rdev);
50 pr_err("Failed to register regulator: %d\n", ret);
51 return ret;
52 }
53
54 return 0;
55}
56
57static struct platform_driver dummy_regulator_driver = {
58 .probe = dummy_regulator_probe,
59 .driver = {
60 .name = "reg-dummy",
61 .owner = THIS_MODULE,
62 },
63};
64
Mark Brown34abbd62010-02-12 10:18:08 +000065static struct platform_device *dummy_pdev;
66
67void __init regulator_dummy_init(void)
68{
69 int ret;
70
71 dummy_pdev = platform_device_alloc("reg-dummy", -1);
72 if (!dummy_pdev) {
73 pr_err("Failed to allocate dummy regulator device\n");
74 return;
75 }
76
77 ret = platform_device_add(dummy_pdev);
78 if (ret != 0) {
79 pr_err("Failed to register dummy regulator device: %d\n", ret);
80 platform_device_put(dummy_pdev);
81 return;
82 }
83
Mark Brownc08957a2011-06-07 23:36:18 +010084 ret = platform_driver_register(&dummy_regulator_driver);
85 if (ret != 0) {
86 pr_err("Failed to register dummy regulator driver: %d\n", ret);
Mark Brown34abbd62010-02-12 10:18:08 +000087 platform_device_unregister(dummy_pdev);
Mark Brown34abbd62010-02-12 10:18:08 +000088 }
89}