blob: 099a3d9dcf863f4b92771744faaa169b0ae7c694 [file] [log] [blame]
huang lina6dbfb52016-03-02 18:38:40 +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
philipchen21b08522017-04-27 18:25:11 -070017#include <assert.h>
Vadim Bendebury8e8a00c2016-04-22 12:25:07 -070018#include <boardid.h>
Julius Wernerc49782c2016-11-21 20:14:18 -080019#include <console/console.h>
Lin Huangb497b482016-03-31 18:44:13 +080020#include <delay.h>
huang lina6dbfb52016-03-02 18:38:40 +080021#include <device/device.h>
Lin Huangb497b482016-03-31 18:44:13 +080022#include <device/i2c.h>
Julius Wernerc49782c2016-11-21 20:14:18 -080023#include <ec/google/chromeec/ec.h>
Vadim Bendebury1e80ab32016-03-28 00:44:54 -070024#include <gpio.h>
Lin Huang5a4be8a2016-05-17 15:45:53 +080025#include <soc/bl31_plat_params.h>
Vadim Bendebury1e80ab32016-03-28 00:44:54 -070026#include <soc/clock.h>
Lin Huangb497b482016-03-31 18:44:13 +080027#include <soc/display.h>
Vadim Bendebury1e80ab32016-03-28 00:44:54 -070028#include <soc/grf.h>
Lin Huangb497b482016-03-31 18:44:13 +080029#include <soc/i2c.h>
Liangfeng Wu76655cb2016-05-26 16:06:58 +080030#include <soc/usb.h>
Simon Glassbc679bc2016-06-19 16:09:21 -060031#include <vendorcode/google/chromeos/chromeos.h>
Vadim Bendebury1e80ab32016-03-28 00:44:54 -070032
Vadim Bendebury993dbe12016-05-22 15:53:37 -070033#include "board.h"
34
Brian Norrise06a1b82016-09-21 18:16:54 -070035/*
Caesar Wang212a0262017-05-24 18:02:25 +080036 * We have to drive the stronger pull-up within 1 second of powering up the
37 * touchpad to prevent its firmware from falling into recovery.
38 */
39static void configure_touchpad(void)
40{
41 gpio_output(GPIO(3, B, 4), 1); /* TP's I2C pull-up rail */
42}
43
44/*
Brian Norrise06a1b82016-09-21 18:16:54 -070045 * Wifi's PDN/RST line is pulled down by its (unpowered) voltage rails, but
46 * this reset pin is pulled up by default. Let's drive it low as early as we
47 * can.
48 */
49static void deassert_wifi_power(void)
50{
51 gpio_output(GPIO(1, B, 3), 0); /* Assert WLAN_MODULE_RST# */
52}
53
Lin Huang2f7ed8d2016-04-08 18:56:20 +080054static void configure_emmc(void)
55{
56 /* Host controller does not support programmable clock generator.
57 * If we don't do this setting, when we use phy to control the
58 * emmc clock(when clock exceed 50MHz), it will get wrong clock.
59 *
60 * Refer to TRM V0.3 Part 1 Chapter 15 PAGE 782 for this register.
61 * Please search "_CON11[7:0]" to locate register description.
62 */
63 write32(&rk3399_grf->emmccore_con[11], RK_CLRSETBITS(0xff, 0));
64
65 rkclk_configure_emmc();
66}
67
Lin Huangc9fea5c2016-08-30 15:34:42 -070068static void register_apio_suspend(void)
69{
70 static struct bl31_apio_param param_apio = {
71 .h = {
72 .type = PARAM_SUSPEND_APIO,
73 },
74 .apio = {
75 .apio1 = 1,
76 .apio2 = 1,
77 .apio3 = 1,
78 .apio4 = 1,
79 .apio5 = 1,
80 },
81 };
82 register_bl31_param(&param_apio.h);
83}
84
Lin Huang7d8ccfb2016-08-22 17:35:40 -070085static void register_gpio_suspend(void)
86{
87 /*
88 * These three GPIO params are used to shut down the 1.5V, 1.8V and
89 * 3.3V power rails, which need to be shut down ordered by voltage,
90 * with highest voltage first.
91 * Since register_bl31() appends to the front of the list, we need to
92 * register them backwards, with 1.5V coming first.
93 */
94 static struct bl31_gpio_param param_p15_en = {
95 .h = {
96 .type = PARAM_SUSPEND_GPIO,
97 },
98 .gpio = {
99 .polarity = BL31_GPIO_LEVEL_LOW,
100 },
101 };
102 param_p15_en.gpio.index = GET_GPIO_NUM(GPIO_P15V_EN);
103 register_bl31_param(&param_p15_en.h);
104
105 static struct bl31_gpio_param param_p18_audio_en = {
106 .h = {
107 .type = PARAM_SUSPEND_GPIO,
108 },
109 .gpio = {
110 .polarity = BL31_GPIO_LEVEL_LOW,
111 },
112 };
113 param_p18_audio_en.gpio.index = GET_GPIO_NUM(GPIO_P18V_AUDIO_PWREN);
114 register_bl31_param(&param_p18_audio_en.h);
115
116 static struct bl31_gpio_param param_p30_en = {
117 .h = {
118 .type = PARAM_SUSPEND_GPIO,
119 },
120 .gpio = {
121 .polarity = BL31_GPIO_LEVEL_LOW,
122 },
123 };
124 param_p30_en.gpio.index = GET_GPIO_NUM(GPIO_P30V_EN);
125 register_bl31_param(&param_p30_en.h);
126}
127
Lin Huang5a4be8a2016-05-17 15:45:53 +0800128static void register_reset_to_bl31(void)
129{
130 static struct bl31_gpio_param param_reset = {
131 .h = {
132 .type = PARAM_RESET,
133 },
134 .gpio = {
135 .polarity = 1,
136 },
137 };
138
139 /* gru/kevin reset pin: gpio0b3 */
140 param_reset.gpio.index = GET_GPIO_NUM(GPIO_RESET),
141
142 register_bl31_param(&param_reset.h);
143}
144
Lin Huang9a5c4fe2016-05-19 11:11:23 +0800145static void register_poweroff_to_bl31(void)
146{
147 static struct bl31_gpio_param param_poweroff = {
148 .h = {
149 .type = PARAM_POWEROFF,
150 },
151 .gpio = {
152 .polarity = 1,
153 },
154 };
155
156 /*
157 * gru/kevin power off pin: gpio1a6,
158 * reuse with tsadc int pin, so iomux need set back to
159 * gpio in BL31 and depthcharge before you setting this gpio
160 */
161 param_poweroff.gpio.index = GET_GPIO_NUM(GPIO_POWEROFF),
162
163 register_bl31_param(&param_poweroff.h);
164}
165
Vadim Bendebury1e80ab32016-03-28 00:44:54 -0700166static void configure_sdmmc(void)
167{
Vadim Bendebury1e80ab32016-03-28 00:44:54 -0700168 gpio_output(GPIO(2, A, 2), 1); /* SDMMC_SDIO_PWR_EN */
Vadim Bendebury2832c412016-05-11 15:03:44 +0800169
170 /* SDMMC_DET_L is different on Kevin board revision 0. */
171 if (IS_ENABLED(CONFIG_BOARD_GOOGLE_KEVIN) && (board_id() == 0))
Vadim Bendebury8e8a00c2016-04-22 12:25:07 -0700172 gpio_input(GPIO(4, D, 2));
Vadim Bendebury2832c412016-05-11 15:03:44 +0800173 else
Vadim Bendebury8e8a00c2016-04-22 12:25:07 -0700174 gpio_input(GPIO(4, D, 0));
Vadim Bendebury2832c412016-05-11 15:03:44 +0800175
Vadim Bendebury1e80ab32016-03-28 00:44:54 -0700176 gpio_output(GPIO(2, D, 4), 0); /* Keep the max voltage */
Vadim Bendebury8e8a00c2016-04-22 12:25:07 -0700177
Julius Werner7feb86b2016-09-02 11:25:56 -0700178 gpio_input(GPIO(4, B, 0)); /* SDMMC0_D0 remove pull-up */
179 gpio_input(GPIO(4, B, 1)); /* SDMMC0_D1 remove pull-up */
180 gpio_input(GPIO(4, B, 2)); /* SDMMC0_D2 remove pull-up */
181 gpio_input(GPIO(4, B, 3)); /* SDMMC0_D3 remove pull-up */
182 gpio_input(GPIO(4, B, 4)); /* SDMMC0_CLK remove pull-down */
183 gpio_input(GPIO(4, B, 5)); /* SDMMC0_CMD remove pull-up */
184
Vadim Bendeburyad6ee022016-05-12 16:54:00 +0800185 write32(&rk3399_grf->gpio2_p[2][1], RK_CLRSETBITS(0xfff, 0));
186
187 /*
188 * Set all outputs' drive strength to 8 mA. Group 4 bank B driver
189 * strength requires three bits per pin. Value of 2 written in that
190 * three bit field means '8 mA', as deduced from the kernel code.
191 *
192 * Thus the six pins involved in SDMMC interface require 18 bits to
193 * configure drive strength, but each 32 bit register provides only 16
194 * bits for this setting, this covers 5 pins fully and one bit from
195 * the 6th pin. Two more bits spill over to the next register. This is
196 * described on page 378 of rk3399 TRM Version 0.3 Part 1.
197 */
198 write32(&rk3399_grf->gpio4b_e01,
199 RK_CLRSETBITS(0xffff,
200 (2 << 0) | (2 << 3) |
201 (2 << 6) | (2 << 9) | (2 << 12)));
202 write32(&rk3399_grf->gpio4b_e2, RK_CLRSETBITS(3, 1));
203
204 /* And now set the multiplexor to enable SDMMC0. */
Vadim Bendebury1e80ab32016-03-28 00:44:54 -0700205 write32(&rk3399_grf->iomux_sdmmc, IOMUX_SDMMC);
206}
huang lina6dbfb52016-03-02 18:38:40 +0800207
Xing Zheng96fbc312016-05-19 11:39:20 +0800208static void configure_codec(void)
209{
Julius Werner7feb86b2016-09-02 11:25:56 -0700210 gpio_input(GPIO(3, D, 0)); /* I2S0_SCLK remove pull-up */
211 gpio_input(GPIO(3, D, 1)); /* I2S0_RX remove pull-up */
212 gpio_input(GPIO(3, D, 2)); /* I2S0_TX remove pull-up */
213 gpio_input(GPIO(3, D, 3)); /* I2S0_SDI0 remove pull-up */
214 gpio_input(GPIO(3, D, 4)); /* I2S0_SDI1 remove pull-up */
215 /* GPIO3_D5 (I2S0_SDI2SDO2) not connected */
216 gpio_input(GPIO(3, D, 6)); /* I2S0_SDO1 remove pull-up */
217 gpio_input(GPIO(3, D, 7)); /* I2S0_SDO0 remove pull-up */
218 gpio_input(GPIO(4, A, 0)); /* I2S0_MCLK remove pull-up */
219
Xing Zheng96fbc312016-05-19 11:39:20 +0800220 write32(&rk3399_grf->iomux_i2s0, IOMUX_I2S0);
221 write32(&rk3399_grf->iomux_i2sclk, IOMUX_I2SCLK);
222
223 /* AUDIO IO domain 1.8V voltage selection */
224 write32(&rk3399_grf->io_vsel, RK_SETBITS(1 << 1));
225
226 /* CPU1_P1.8V_AUDIO_PWREN for P1.8_AUDIO */
227 gpio_output(GPIO(0, A, 2), 1);
228
229 /* set CPU1_SPK_PA_EN output */
230 gpio_output(GPIO(1, A, 2), 0);
231
232 rkclk_configure_i2s(12288000);
233}
234
Lin Huangb497b482016-03-31 18:44:13 +0800235static void configure_display(void)
236{
237 /* set pinmux for edp HPD*/
238 gpio_input_pulldown(GPIO(4, C, 7));
239 write32(&rk3399_grf->iomux_edp_hotplug, IOMUX_EDP_HOTPLUG);
240
241 gpio_output(GPIO(4, D, 3), 1); /* CPU3_EDP_VDDEN for P3.3V_DISP */
242}
243
Julius Wernerc49782c2016-11-21 20:14:18 -0800244static void usb_power_cycle(int port)
245{
246 if (google_chromeec_set_usb_pd_role(port, USB_PD_CTRL_ROLE_FORCE_SINK))
247 printk(BIOS_ERR, "ERROR: Cannot force USB%d PD sink\n", port);
248
249 mdelay(10); /* Make sure USB stick is fully depowered. */
250
251 if (google_chromeec_set_usb_pd_role(port, USB_PD_CTRL_ROLE_TOGGLE_ON))
252 printk(BIOS_ERR, "ERROR: Cannot restore USB%d PD mode\n", port);
253}
254
philipchen21b08522017-04-27 18:25:11 -0700255static void setup_usb(int port)
Liangfeng Wu76655cb2016-05-26 16:06:58 +0800256{
philipchen21b08522017-04-27 18:25:11 -0700257 /* Must be PHY0 or PHY1. */
258 assert(port == 0 || port == 1);
259
William wu605a87c2017-01-09 19:02:39 +0800260 /*
261 * A few magic PHY tuning values that improve eye diagram amplitude
262 * and make it extra sure we get reliable communication in firmware
263 * Set max ODT compensation voltage and current tuning reference.
264 */
philipchen21b08522017-04-27 18:25:11 -0700265 write32(&rk3399_grf->usbphy_ctrl[port][3], RK_CLRSETBITS(0xfff, 0x2e3));
William wu9f470b12016-11-10 19:34:45 +0800266
Caesar Wang9e588002017-02-10 11:16:13 +0800267 /* Set max pre-emphasis level on PHY0 and PHY1. */
philipchen21b08522017-04-27 18:25:11 -0700268 write32(&rk3399_grf->usbphy_ctrl[port][12],
Caesar Wang9e588002017-02-10 11:16:13 +0800269 RK_CLRSETBITS(0xffff, 0xa7));
William wu9f470b12016-11-10 19:34:45 +0800270
Caesar Wang9e588002017-02-10 11:16:13 +0800271 /*
William wuebbdd282017-01-23 20:54:22 +0800272 * 1. Disable the pre-emphasize in eop state and chirp
Caesar Wang9e588002017-02-10 11:16:13 +0800273 * state to avoid mis-trigger the disconnect detection
274 * and also avoid high-speed handshake fail for PHY0
275 * and PHY1 consist of otg-port and host-port.
William wuebbdd282017-01-23 20:54:22 +0800276 *
277 * 2. Configure PHY0 and PHY1 otg-ports squelch detection
278 * threshold to 125mV (default is 150mV).
Caesar Wang9e588002017-02-10 11:16:13 +0800279 */
philipchen21b08522017-04-27 18:25:11 -0700280 write32(&rk3399_grf->usbphy_ctrl[port][0],
William wuebbdd282017-01-23 20:54:22 +0800281 RK_CLRSETBITS(7 << 13 | 3 << 0, 6 << 13));
philipchen21b08522017-04-27 18:25:11 -0700282 write32(&rk3399_grf->usbphy_ctrl[port][13], RK_CLRBITS(3 << 0));
William wu9f470b12016-11-10 19:34:45 +0800283
Caesar Wang9e588002017-02-10 11:16:13 +0800284 /*
285 * ODT auto compensation bypass, and set max driver
286 * strength only for PHY0 and PHY1 otg-port.
287 */
philipchen21b08522017-04-27 18:25:11 -0700288 write32(&rk3399_grf->usbphy_ctrl[port][2],
Caesar Wang9e588002017-02-10 11:16:13 +0800289 RK_CLRSETBITS(0x7e << 4, 0x60 << 4));
William wu9f470b12016-11-10 19:34:45 +0800290
Caesar Wang9e588002017-02-10 11:16:13 +0800291 /*
292 * ODT auto refresh bypass, and set the max bias current
293 * tuning reference only for PHY0 and PHY1 otg-port.
294 */
philipchen21b08522017-04-27 18:25:11 -0700295 write32(&rk3399_grf->usbphy_ctrl[port][3],
Caesar Wang9e588002017-02-10 11:16:13 +0800296 RK_CLRSETBITS(0x21c, 1 << 4));
William wu605a87c2017-01-09 19:02:39 +0800297
Caesar Wang9e588002017-02-10 11:16:13 +0800298 /*
299 * ODT auto compensation bypass, and set default driver
300 * strength only for PHY0 and PHY1 host-port.
301 */
philipchen21b08522017-04-27 18:25:11 -0700302 write32(&rk3399_grf->usbphy_ctrl[port][15], RK_SETBITS(1 << 10));
William wu605a87c2017-01-09 19:02:39 +0800303
Caesar Wang9e588002017-02-10 11:16:13 +0800304 /* ODT auto refresh bypass only for PHY0 and PHY1 host-port. */
philipchen21b08522017-04-27 18:25:11 -0700305 write32(&rk3399_grf->usbphy_ctrl[port][16], RK_CLRBITS(1 << 9));
Julius Werner1c8491c2016-08-15 17:58:05 -0700306
philipchen21b08522017-04-27 18:25:11 -0700307 if (port == 0)
308 setup_usb_otg0();
309 else
310 setup_usb_otg1();
Julius Wernerc49782c2016-11-21 20:14:18 -0800311
312 /*
313 * Need to power-cycle USB ports for use in firmware, since some devices
314 * can't fall back to USB 2.0 after they saw SuperSpeed terminations.
315 * This takes about a dozen milliseconds, so only do it in boot modes
316 * that have firmware UI (which one could select USB boot from).
317 */
philipchen21b08522017-04-27 18:25:11 -0700318 if (display_init_required())
319 usb_power_cycle(port);
Liangfeng Wu76655cb2016-05-26 16:06:58 +0800320}
321
huang lina6dbfb52016-03-02 18:38:40 +0800322static void mainboard_init(device_t dev)
323{
Brian Norrise06a1b82016-09-21 18:16:54 -0700324 deassert_wifi_power();
Caesar Wang212a0262017-05-24 18:02:25 +0800325 configure_touchpad();
Vadim Bendebury1e80ab32016-03-28 00:44:54 -0700326 configure_sdmmc();
Lin Huang2f7ed8d2016-04-08 18:56:20 +0800327 configure_emmc();
Xing Zheng96fbc312016-05-19 11:39:20 +0800328 configure_codec();
Lin Huangb497b482016-03-31 18:44:13 +0800329 configure_display();
philipchen21b08522017-04-27 18:25:11 -0700330 setup_usb(0);
331 if (!IS_ENABLED(CONFIG_BOARD_GOOGLE_SCARLET))
332 setup_usb(1);
Lin Huang5a4be8a2016-05-17 15:45:53 +0800333 register_reset_to_bl31();
Lin Huang9a5c4fe2016-05-19 11:11:23 +0800334 register_poweroff_to_bl31();
Lin Huang7d8ccfb2016-08-22 17:35:40 -0700335 register_gpio_suspend();
Lin Huangc9fea5c2016-08-30 15:34:42 -0700336 register_apio_suspend();
Lin Huangb497b482016-03-31 18:44:13 +0800337}
338
Philip Chena304b692017-04-06 10:17:08 -0700339static void prepare_backlight_i2c(void)
Lin Huangb497b482016-03-31 18:44:13 +0800340{
Julius Werner7feb86b2016-09-02 11:25:56 -0700341 gpio_input(GPIO(1, B, 7)); /* I2C0_SDA remove pull_up */
342 gpio_input(GPIO(1, C, 0)); /* I2C0_SCL remove pull_up */
343
344 i2c_init(0, 100*KHz);
345
Lin Huangb497b482016-03-31 18:44:13 +0800346 write32(&rk3399_pmugrf->iomux_i2c0_sda, IOMUX_I2C0_SDA);
347 write32(&rk3399_pmugrf->iomux_i2c0_scl, IOMUX_I2C0_SCL);
Lin Huangb497b482016-03-31 18:44:13 +0800348}
349
350void mainboard_power_on_backlight(void)
351{
Vadim Bendeburyf1343df2016-05-22 15:53:37 -0700352 gpio_output(GPIO_BACKLIGHT, 1); /* BL_EN */
Lin Huangb497b482016-03-31 18:44:13 +0800353
Philip Chena304b692017-04-06 10:17:08 -0700354 if (IS_ENABLED(CONFIG_BOARD_GOOGLE_GRU))
355 prepare_backlight_i2c();
huang lina6dbfb52016-03-02 18:38:40 +0800356}
357
358static void mainboard_enable(device_t dev)
359{
360 dev->ops->init = &mainboard_init;
361}
362
363struct chip_operations mainboard_ops = {
364 .name = CONFIG_MAINBOARD_PART_NUMBER,
365 .enable_dev = mainboard_enable,
366};