2014-07-14 12:48:45 +08:00
|
|
|
/*
|
2015-06-30 12:39:39 +08:00
|
|
|
* da9211.h - Regulator device driver for DA9211/DA9213/DA9215
|
|
|
|
* Copyright (C) 2015 Dialog Semiconductor Ltd.
|
2014-07-14 12:48:45 +08:00
|
|
|
*
|
2015-06-30 12:39:39 +08:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2014-07-14 12:48:45 +08:00
|
|
|
*
|
2015-06-30 12:39:39 +08:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-07-14 12:48:45 +08:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-06-30 12:39:39 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2014-07-14 12:48:45 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LINUX_REGULATOR_DA9211_H
|
|
|
|
#define __LINUX_REGULATOR_DA9211_H
|
|
|
|
|
|
|
|
#include <linux/regulator/machine.h>
|
|
|
|
|
|
|
|
#define DA9211_MAX_REGULATORS 2
|
|
|
|
|
2014-08-08 13:27:04 +08:00
|
|
|
enum da9211_chip_id {
|
|
|
|
DA9211,
|
|
|
|
DA9213,
|
2015-06-30 12:39:39 +08:00
|
|
|
DA9215,
|
2014-08-08 13:27:04 +08:00
|
|
|
};
|
|
|
|
|
2014-07-14 12:48:45 +08:00
|
|
|
struct da9211_pdata {
|
|
|
|
/*
|
|
|
|
* Number of buck
|
|
|
|
* 1 : 4 phase 1 buck
|
|
|
|
* 2 : 2 phase 2 buck
|
|
|
|
*/
|
|
|
|
int num_buck;
|
2015-01-28 08:28:08 +08:00
|
|
|
int gpio_ren[DA9211_MAX_REGULATORS];
|
2015-01-16 11:13:27 +08:00
|
|
|
struct device_node *reg_node[DA9211_MAX_REGULATORS];
|
2014-08-27 10:47:07 +08:00
|
|
|
struct regulator_init_data *init_data[DA9211_MAX_REGULATORS];
|
2014-07-14 12:48:45 +08:00
|
|
|
};
|
|
|
|
#endif
|