2020-12-11 15:14:43 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
/*
|
|
|
|
* Force-disables a regulator to power down a device
|
|
|
|
*
|
|
|
|
* Michael Klein <michael@fossekall.de>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2020 Michael Klein
|
|
|
|
*
|
|
|
|
* Based on the gpio-poweroff driver.
|
|
|
|
*/
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/pm.h>
|
2024-02-12 16:28:26 +00:00
|
|
|
#include <linux/reboot.h>
|
2020-12-11 15:14:43 +00:00
|
|
|
#include <linux/regulator/consumer.h>
|
|
|
|
|
|
|
|
#define TIMEOUT_MS 3000
|
|
|
|
|
2024-02-12 16:28:26 +00:00
|
|
|
static int regulator_poweroff_do_poweroff(struct sys_off_data *data)
|
2020-12-11 15:14:43 +00:00
|
|
|
{
|
2024-02-12 16:28:26 +00:00
|
|
|
struct regulator *cpu_regulator = data->cb_data;
|
|
|
|
|
2020-12-11 15:14:43 +00:00
|
|
|
if (cpu_regulator && regulator_is_enabled(cpu_regulator))
|
|
|
|
regulator_force_disable(cpu_regulator);
|
|
|
|
|
|
|
|
/* give it some time */
|
|
|
|
mdelay(TIMEOUT_MS);
|
|
|
|
|
|
|
|
WARN_ON(1);
|
2024-02-12 16:28:26 +00:00
|
|
|
|
|
|
|
return NOTIFY_DONE;
|
2020-12-11 15:14:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int regulator_poweroff_probe(struct platform_device *pdev)
|
|
|
|
{
|
2024-02-12 16:28:26 +00:00
|
|
|
struct regulator *cpu_regulator;
|
2020-12-11 15:14:43 +00:00
|
|
|
|
|
|
|
cpu_regulator = devm_regulator_get(&pdev->dev, "cpu");
|
|
|
|
if (IS_ERR(cpu_regulator))
|
|
|
|
return PTR_ERR(cpu_regulator);
|
|
|
|
|
2024-02-12 16:28:26 +00:00
|
|
|
/* Set this handler to low priority to not override an existing handler */
|
|
|
|
return devm_register_sys_off_handler(&pdev->dev,
|
|
|
|
SYS_OFF_MODE_POWER_OFF,
|
|
|
|
SYS_OFF_PRIO_LOW,
|
|
|
|
regulator_poweroff_do_poweroff,
|
|
|
|
cpu_regulator);
|
2020-12-11 15:14:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct of_device_id of_regulator_poweroff_match[] = {
|
|
|
|
{ .compatible = "regulator-poweroff", },
|
|
|
|
{},
|
|
|
|
};
|
2021-06-05 01:21:23 +00:00
|
|
|
MODULE_DEVICE_TABLE(of, of_regulator_poweroff_match);
|
2020-12-11 15:14:43 +00:00
|
|
|
|
|
|
|
static struct platform_driver regulator_poweroff_driver = {
|
|
|
|
.probe = regulator_poweroff_probe,
|
|
|
|
.driver = {
|
|
|
|
.name = "poweroff-regulator",
|
|
|
|
.of_match_table = of_regulator_poweroff_match,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
module_platform_driver(regulator_poweroff_driver);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Michael Klein <michael@fossekall.de>");
|
|
|
|
MODULE_DESCRIPTION("Regulator poweroff driver");
|
|
|
|
MODULE_ALIAS("platform:poweroff-regulator");
|