blob: 6ef0c59331f24146626a0267c5bc82d5780eaf68 [file] [log] [blame]
Eric Gao61e6c442016-07-29 12:34:32 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2016 Rockchip Inc.
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 __COREBOOT_SRC_MAINBOARD_GOOGLE_GRU_PWM_REGULATOR_H
17#define __COREBOOT_SRC_MAINBOARD_GOOGLE_GRU_PWM_REGULATOR_H
18
19enum pwm_regulator {
20 PWM_REGULATOR_GPU = 0,
21 PWM_REGULATOR_BIG,
22 PWM_REGULATOR_LIT,
23 PWM_REGULATOR_CENTERLOG
24};
25
26void pwm_regulator_configure(enum pwm_regulator pwm, int millivolt);
27
28#endif /* ! __COREBOOT_SRC_MAINBOARD_GOOGLE_GRU_PWM_REGULATOR_H */