2 * arch/arm/mach-u300/regulator.c
4 * Copyright (C) 2009 ST-Ericsson AB
5 * License terms: GNU General Public License (GPL) version 2
6 * Handle board-bound regulators and board power not related
8 * Author: Linus Walleij <linus.walleij@stericsson.com>
10 #include <linux/device.h>
11 #include <linux/signal.h>
12 #include <linux/err.h>
14 #include <linux/module.h>
15 #include <linux/platform_device.h>
16 #include <linux/regulator/machine.h>
17 #include <linux/regulator/consumer.h>
18 #include <linux/mfd/syscon.h>
19 #include <linux/regmap.h>
21 /* Power Management Control 16bit (R/W) */
22 #define U300_SYSCON_PMCR (0x50)
23 #define U300_SYSCON_PMCR_DCON_ENABLE (0x0002)
24 #define U300_SYSCON_PMCR_PWR_MGNT_ENABLE (0x0001)
27 * Regulators that power the board and chip and which are
28 * not copuled to specific drivers are hogged in these
31 static struct regulator *main_power_15;
34 * This function is used from pm.h to shut down the system by
35 * resetting all regulators in turn and then disable regulator
38 void u300_pm_poweroff(void)
43 if (!sigprocmask(SIG_BLOCK, &all, &old)) {
44 /* Disable LDO D to shut down the system */
46 regulator_disable(main_power_15);
48 pr_err("regulator not available to shut down system\n");
49 (void) sigprocmask(SIG_SETMASK, &old, NULL);
55 * Hog the regulators needed to power up the board.
57 static int __init __u300_init_boardpower(struct platform_device *pdev)
59 struct device_node *np = pdev->dev.of_node;
60 struct device_node *syscon_np;
61 struct regmap *regmap;
64 pr_info("U300: setting up board power\n");
66 syscon_np = of_parse_phandle(np, "syscon", 0);
68 pr_crit("U300: no syscon node\n");
71 regmap = syscon_node_to_regmap(syscon_np);
73 pr_crit("U300: could not locate syscon regmap\n");
74 return PTR_ERR(regmap);
77 main_power_15 = regulator_get(&pdev->dev, "vana15");
79 if (IS_ERR(main_power_15)) {
80 pr_err("could not get vana15");
81 return PTR_ERR(main_power_15);
83 err = regulator_enable(main_power_15);
85 pr_err("could not enable vana15\n");
90 * On U300 a special system controller register pulls up the DC
91 * until the vana15 (LDO D) regulator comes up. At this point, all
92 * regulators are set and we do not need power control via
93 * DC ON anymore. This function will likely be moved whenever
94 * the rest of the U300 power management is implemented.
96 pr_info("U300: disable system controller pull-up\n");
97 regmap_update_bits(regmap, U300_SYSCON_PMCR,
98 U300_SYSCON_PMCR_DCON_ENABLE, 0);
100 /* Register globally exported PM poweroff hook */
101 pm_power_off = u300_pm_poweroff;
106 static int __init s365_board_probe(struct platform_device *pdev)
108 return __u300_init_boardpower(pdev);
111 static const struct of_device_id s365_board_match[] = {
112 { .compatible = "stericsson,s365" },
116 static struct platform_driver s365_board_driver = {
118 .name = "s365-board",
119 .of_match_table = s365_board_match,
124 * So at module init time we hog the regulator!
126 static int __init u300_init_boardpower(void)
128 return platform_driver_probe(&s365_board_driver,
132 device_initcall(u300_init_boardpower);