blob: b49be816fc54edfadb134a26fbe21a724c47d90d [file] [log] [blame]
Wenyou Yang33036f42013-12-24 10:34:28 +08001/*
Beniamino Galvani50a03e32014-07-05 15:20:54 +02002 * act8865.h -- Voltage regulation for active-semi act88xx PMUs
Wenyou Yang33036f42013-12-24 10:34:28 +08003 *
4 * Copyright (C) 2013 Atmel Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#ifndef __LINUX_REGULATOR_ACT8865_H
17#define __LINUX_REGULATOR_ACT8865_H
18
19#include <linux/regulator/machine.h>
20
21enum {
22 ACT8865_ID_DCDC1,
23 ACT8865_ID_DCDC2,
24 ACT8865_ID_DCDC3,
25 ACT8865_ID_LDO1,
26 ACT8865_ID_LDO2,
27 ACT8865_ID_LDO3,
28 ACT8865_ID_LDO4,
29 ACT8865_REG_NUM,
30};
31
Beniamino Galvani50a03e32014-07-05 15:20:54 +020032enum {
33 ACT8865,
34};
35
Wenyou Yang33036f42013-12-24 10:34:28 +080036/**
37 * act8865_regulator_data - regulator data
38 * @id: regulator id
39 * @name: regulator name
40 * @platform_data: regulator init data
41 */
42struct act8865_regulator_data {
43 int id;
44 const char *name;
45 struct regulator_init_data *platform_data;
46};
47
48/**
49 * act8865_platform_data - platform data for act8865
50 * @num_regulators: number of regulators used
51 * @regulators: pointer to regulators used
52 */
53struct act8865_platform_data {
54 int num_regulators;
55 struct act8865_regulator_data *regulators;
56};
57#endif