blob: d6d2eecfb9289d30c52ac16afcef03ddf8412c8e [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
Eric Gao61e6c442016-07-29 12:34:32 +080047 voltage_min = PWM_DESIGN_VOLTAGE_MIN;
48 voltage_max = PWM_DESIGN_VOLTAGE_MAX;
Julius Wernerf52288f2016-09-01 11:50:18 -070049 if (!(IS_ENABLED(CONFIG_BOARD_GOOGLE_KEVIN) && board_id() < 6) &&
50 !(IS_ENABLED(CONFIG_BOARD_GOOGLE_GRU) && board_id() < 2)) {
51 voltage_min = pwm_design_voltage_later[pwm][0];
52 voltage_max = pwm_design_voltage_later[pwm][1];
Eric Gao61e6c442016-07-29 12:34:32 +080053 }
54
55 assert(voltage <= voltage_max && voltage >= voltage_min);
56
57 /*
58 * Intentionally round down (higher volt) to be safe.
59 * eg, for the default min & max design voltage:
60 * period = 3337, volt = 1.1: 1906
61 * period = 3337, volt = 1.0: 2383
62 * period = 3337, volt = 0.9: 2860
63 */
64 duty_ns = PWM_PERIOD * (voltage_max - voltage)
65 / (voltage_max - voltage_min);
66
67 pwm_init(pwm, PWM_PERIOD, duty_ns);
Douglas Anderson1eb69b42016-09-06 13:51:03 -070068
69 switch (pwm) {
70 case PWM_REGULATOR_GPU:
71 write32(&rk3399_grf->iomux_pwm_0, IOMUX_PWM_0);
72 break;
73 case PWM_REGULATOR_BIG:
74 write32(&rk3399_grf->iomux_pwm_1, IOMUX_PWM_1);
75 break;
76 case PWM_REGULATOR_LIT:
77 write32(&rk3399_pmugrf->iomux_pwm_2, IOMUX_PWM_2);
78 break;
79 case PWM_REGULATOR_CENTERLOG:
80 write32(&rk3399_pmugrf->iomux_pwm_3a, IOMUX_PWM_3_A);
81 break;
82 }
Eric Gao61e6c442016-07-29 12:34:32 +080083}