blob: bf80439c78692e154ef857612259e110277d3269 [file] [log] [blame]
Sven Schwermer25957522019-06-24 13:03:33 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2019 Disruptive Technologies Research AS
4 * Sven Schwermer <sven.svenschwermer@disruptive-technologies.com>
5 */
6
7#ifndef _REGULATOR_COMMON_H
8#define _REGULATOR_COMMON_H
9
Sven Schwermer25957522019-06-24 13:03:33 +020010#include <asm/gpio.h>
Sven Schwermer25957522019-06-24 13:03:33 +020011
12struct regulator_common_platdata {
13 struct gpio_desc gpio; /* GPIO for regulator enable control */
14 unsigned int startup_delay_us;
15 unsigned int off_on_delay_us;
16};
17
18int regulator_common_ofdata_to_platdata(struct udevice *dev,
19 struct regulator_common_platdata *dev_pdata, const char *enable_gpio_name);
20int regulator_common_get_enable(const struct udevice *dev,
21 struct regulator_common_platdata *dev_pdata);
22int regulator_common_set_enable(const struct udevice *dev,
23 struct regulator_common_platdata *dev_pdata, bool enable);
24
25#endif /* _REGULATOR_COMMON_H */