blob: d0cdf436822b512b4bdb40c76401b07e10c28276 [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#include <arch/io.h>
17#include <assert.h>
18#include <boardid.h>
19#include <console/console.h>
20#include <soc/grf.h>
21#include <soc/pwm.h>
22
23#include "pwm_regulator.h"
24
25/*
26 * Apparently a period of 3333 is determined by EEs to be ideal for our
27 * board design / resistors / capacitors / regulators but due to
28 * clock dividers we actually get 3337.
29 */
30#define PWM_PERIOD 3337
31#define PWM_DESIGN_VOLTAGE_MIN 8000
32#define PWM_DESIGN_VOLTAGE_MAX 15000
33
Julius Wernerf52288f2016-09-01 11:50:18 -070034/* Later boards (Kevin rev6+, Gru rev2+) use different regulator ranges. */
35int pwm_design_voltage_later[][2] = {
36 [PWM_REGULATOR_GPU] = {7858, 12177},
37 [PWM_REGULATOR_BIG] = {7987, 13022},
38 [PWM_REGULATOR_LIT] = {7991, 13037},
39 [PWM_REGULATOR_CENTERLOG] = {8001, 10497}
Eric Gao61e6c442016-07-29 12:34:32 +080040};
41
42void pwm_regulator_configure(enum pwm_regulator pwm, int millivolt)
43{
44 int duty_ns, voltage_max, voltage_min;
45 int voltage = millivolt * 10; /* for higer calculation accuracy */
46
47 switch (pwm) {
48 case PWM_REGULATOR_GPU:
49 write32(&rk3399_grf->iomux_pwm_0, IOMUX_PWM_0);
50 break;
51 case PWM_REGULATOR_BIG:
52 write32(&rk3399_grf->iomux_pwm_1, IOMUX_PWM_1);
53 break;
54 case PWM_REGULATOR_LIT:
55 write32(&rk3399_pmugrf->iomux_pwm_2, IOMUX_PWM_2);
56 break;
57 case PWM_REGULATOR_CENTERLOG:
58 write32(&rk3399_pmugrf->iomux_pwm_3a, IOMUX_PWM_3_A);
59 break;
60 }
61
62 voltage_min = PWM_DESIGN_VOLTAGE_MIN;
63 voltage_max = PWM_DESIGN_VOLTAGE_MAX;
Julius Wernerf52288f2016-09-01 11:50:18 -070064 if (!(IS_ENABLED(CONFIG_BOARD_GOOGLE_KEVIN) && board_id() < 6) &&
65 !(IS_ENABLED(CONFIG_BOARD_GOOGLE_GRU) && board_id() < 2)) {
66 voltage_min = pwm_design_voltage_later[pwm][0];
67 voltage_max = pwm_design_voltage_later[pwm][1];
Eric Gao61e6c442016-07-29 12:34:32 +080068 }
69
70 assert(voltage <= voltage_max && voltage >= voltage_min);
71
72 /*
73 * Intentionally round down (higher volt) to be safe.
74 * eg, for the default min & max design voltage:
75 * period = 3337, volt = 1.1: 1906
76 * period = 3337, volt = 1.0: 2383
77 * period = 3337, volt = 0.9: 2860
78 */
79 duty_ns = PWM_PERIOD * (voltage_max - voltage)
80 / (voltage_max - voltage_min);
81
82 pwm_init(pwm, PWM_PERIOD, duty_ns);
83}