huang lin | a6dbfb5 | 2016-03-02 18:38:40 +0800 | [diff] [blame] | 1 | /* |
| 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 | |
philipchen | 21b0852 | 2017-04-27 18:25:11 -0700 | [diff] [blame] | 17 | #include <assert.h> |
Vadim Bendebury | 8e8a00c | 2016-04-22 12:25:07 -0700 | [diff] [blame] | 18 | #include <boardid.h> |
Julius Werner | c49782c | 2016-11-21 20:14:18 -0800 | [diff] [blame] | 19 | #include <console/console.h> |
Lin Huang | b497b48 | 2016-03-31 18:44:13 +0800 | [diff] [blame] | 20 | #include <delay.h> |
huang lin | a6dbfb5 | 2016-03-02 18:38:40 +0800 | [diff] [blame] | 21 | #include <device/device.h> |
Nico Huber | 0f2dd1e | 2017-08-01 14:02:40 +0200 | [diff] [blame] | 22 | #include <device/i2c_simple.h> |
Julius Werner | c49782c | 2016-11-21 20:14:18 -0800 | [diff] [blame] | 23 | #include <ec/google/chromeec/ec.h> |
Vadim Bendebury | 1e80ab3 | 2016-03-28 00:44:54 -0700 | [diff] [blame] | 24 | #include <gpio.h> |
Lin Huang | 5a4be8a | 2016-05-17 15:45:53 +0800 | [diff] [blame] | 25 | #include <soc/bl31_plat_params.h> |
Vadim Bendebury | 1e80ab3 | 2016-03-28 00:44:54 -0700 | [diff] [blame] | 26 | #include <soc/clock.h> |
Lin Huang | b497b48 | 2016-03-31 18:44:13 +0800 | [diff] [blame] | 27 | #include <soc/display.h> |
Vadim Bendebury | 1e80ab3 | 2016-03-28 00:44:54 -0700 | [diff] [blame] | 28 | #include <soc/grf.h> |
Lin Huang | b497b48 | 2016-03-31 18:44:13 +0800 | [diff] [blame] | 29 | #include <soc/i2c.h> |
Liangfeng Wu | 76655cb | 2016-05-26 16:06:58 +0800 | [diff] [blame] | 30 | #include <soc/usb.h> |
Simon Glass | bc679bc | 2016-06-19 16:09:21 -0600 | [diff] [blame] | 31 | #include <vendorcode/google/chromeos/chromeos.h> |
Vadim Bendebury | 1e80ab3 | 2016-03-28 00:44:54 -0700 | [diff] [blame] | 32 | |
Vadim Bendebury | 993dbe1 | 2016-05-22 15:53:37 -0700 | [diff] [blame] | 33 | #include "board.h" |
| 34 | |
Brian Norris | e06a1b8 | 2016-09-21 18:16:54 -0700 | [diff] [blame] | 35 | /* |
Caesar Wang | 212a026 | 2017-05-24 18:02:25 +0800 | [diff] [blame] | 36 | * We have to drive the stronger pull-up within 1 second of powering up the |
Julius Werner | 6486e78 | 2017-07-14 14:30:29 -0700 | [diff] [blame] | 37 | * touchpad to prevent its firmware from falling into recovery. Not on Scarlet. |
Caesar Wang | 212a026 | 2017-05-24 18:02:25 +0800 | [diff] [blame] | 38 | */ |
| 39 | static void configure_touchpad(void) |
| 40 | { |
Julius Werner | 6486e78 | 2017-07-14 14:30:29 -0700 | [diff] [blame] | 41 | gpio_output(GPIO_TP_RST_L, 1); /* TP's I2C pull-up rail */ |
Caesar Wang | 212a026 | 2017-05-24 18:02:25 +0800 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | /* |
Brian Norris | e06a1b8 | 2016-09-21 18:16:54 -0700 | [diff] [blame] | 45 | * 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 |
Philip Chen | a061820 | 2017-08-23 18:02:25 -0700 | [diff] [blame] | 47 | * can. This only applies to boards with Marvell 8997 WiFi. |
Brian Norris | e06a1b8 | 2016-09-21 18:16:54 -0700 | [diff] [blame] | 48 | */ |
Julius Werner | 6486e78 | 2017-07-14 14:30:29 -0700 | [diff] [blame] | 49 | static void assert_wifi_reset(void) |
Brian Norris | e06a1b8 | 2016-09-21 18:16:54 -0700 | [diff] [blame] | 50 | { |
Julius Werner | 6486e78 | 2017-07-14 14:30:29 -0700 | [diff] [blame] | 51 | gpio_output(GPIO_WLAN_RST_L, 0); /* Assert WLAN_MODULE_RST# */ |
Brian Norris | e06a1b8 | 2016-09-21 18:16:54 -0700 | [diff] [blame] | 52 | } |
| 53 | |
Lin Huang | 2f7ed8d | 2016-04-08 18:56:20 +0800 | [diff] [blame] | 54 | static 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 Huang | c9fea5c | 2016-08-30 15:34:42 -0700 | [diff] [blame] | 68 | static 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(¶m_apio.h); |
| 83 | } |
| 84 | |
Lin Huang | 7d8ccfb | 2016-08-22 17:35:40 -0700 | [diff] [blame] | 85 | static 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. |
Julius Werner | 2be6404 | 2017-09-01 14:27:46 -0700 | [diff] [blame] | 93 | * 1.5V and 1.8V are EC-controlled on Scarlet, so we skip them. |
Lin Huang | 7d8ccfb | 2016-08-22 17:35:40 -0700 | [diff] [blame] | 94 | */ |
Julius Werner | 2be6404 | 2017-09-01 14:27:46 -0700 | [diff] [blame] | 95 | if (!IS_ENABLED(CONFIG_BOARD_GOOGLE_SCARLET)) { |
| 96 | static struct bl31_gpio_param param_p15_en = { |
| 97 | .h = { .type = PARAM_SUSPEND_GPIO }, |
| 98 | .gpio = { .polarity = BL31_GPIO_LEVEL_LOW }, |
| 99 | }; |
| 100 | param_p15_en.gpio.index = GPIO_P15V_EN.raw; |
| 101 | register_bl31_param(¶m_p15_en.h); |
Lin Huang | 7d8ccfb | 2016-08-22 17:35:40 -0700 | [diff] [blame] | 102 | |
Julius Werner | 2be6404 | 2017-09-01 14:27:46 -0700 | [diff] [blame] | 103 | static struct bl31_gpio_param param_p18_audio_en = { |
| 104 | .h = { .type = PARAM_SUSPEND_GPIO }, |
| 105 | .gpio = { .polarity = BL31_GPIO_LEVEL_LOW }, |
| 106 | }; |
| 107 | param_p18_audio_en.gpio.index = GPIO_P18V_AUDIO_PWREN.raw; |
| 108 | register_bl31_param(¶m_p18_audio_en.h); |
| 109 | } |
Lin Huang | 7d8ccfb | 2016-08-22 17:35:40 -0700 | [diff] [blame] | 110 | |
| 111 | static struct bl31_gpio_param param_p30_en = { |
Julius Werner | 2be6404 | 2017-09-01 14:27:46 -0700 | [diff] [blame] | 112 | .h = { .type = PARAM_SUSPEND_GPIO }, |
| 113 | .gpio = { .polarity = BL31_GPIO_LEVEL_LOW }, |
Lin Huang | 7d8ccfb | 2016-08-22 17:35:40 -0700 | [diff] [blame] | 114 | }; |
Julius Werner | 4ed8b30 | 2017-07-14 14:25:39 -0700 | [diff] [blame] | 115 | param_p30_en.gpio.index = GPIO_P30V_EN.raw; |
Lin Huang | 7d8ccfb | 2016-08-22 17:35:40 -0700 | [diff] [blame] | 116 | register_bl31_param(¶m_p30_en.h); |
| 117 | } |
| 118 | |
Lin Huang | 5a4be8a | 2016-05-17 15:45:53 +0800 | [diff] [blame] | 119 | static void register_reset_to_bl31(void) |
| 120 | { |
| 121 | static struct bl31_gpio_param param_reset = { |
| 122 | .h = { |
| 123 | .type = PARAM_RESET, |
| 124 | }, |
| 125 | .gpio = { |
| 126 | .polarity = 1, |
| 127 | }, |
| 128 | }; |
| 129 | |
| 130 | /* gru/kevin reset pin: gpio0b3 */ |
Julius Werner | 4ed8b30 | 2017-07-14 14:25:39 -0700 | [diff] [blame] | 131 | param_reset.gpio.index = GPIO_RESET.raw, |
Lin Huang | 5a4be8a | 2016-05-17 15:45:53 +0800 | [diff] [blame] | 132 | |
| 133 | register_bl31_param(¶m_reset.h); |
| 134 | } |
| 135 | |
Lin Huang | 9a5c4fe | 2016-05-19 11:11:23 +0800 | [diff] [blame] | 136 | static void register_poweroff_to_bl31(void) |
| 137 | { |
| 138 | static struct bl31_gpio_param param_poweroff = { |
| 139 | .h = { |
| 140 | .type = PARAM_POWEROFF, |
| 141 | }, |
| 142 | .gpio = { |
| 143 | .polarity = 1, |
| 144 | }, |
| 145 | }; |
| 146 | |
| 147 | /* |
| 148 | * gru/kevin power off pin: gpio1a6, |
| 149 | * reuse with tsadc int pin, so iomux need set back to |
| 150 | * gpio in BL31 and depthcharge before you setting this gpio |
| 151 | */ |
Julius Werner | 4ed8b30 | 2017-07-14 14:25:39 -0700 | [diff] [blame] | 152 | param_poweroff.gpio.index = GPIO_POWEROFF.raw, |
Lin Huang | 9a5c4fe | 2016-05-19 11:11:23 +0800 | [diff] [blame] | 153 | |
| 154 | register_bl31_param(¶m_poweroff.h); |
| 155 | } |
| 156 | |
Vadim Bendebury | 1e80ab3 | 2016-03-28 00:44:54 -0700 | [diff] [blame] | 157 | static void configure_sdmmc(void) |
| 158 | { |
Vadim Bendebury | 1e80ab3 | 2016-03-28 00:44:54 -0700 | [diff] [blame] | 159 | gpio_output(GPIO(2, A, 2), 1); /* SDMMC_SDIO_PWR_EN */ |
Vadim Bendebury | 2832c41 | 2016-05-11 15:03:44 +0800 | [diff] [blame] | 160 | |
Lin Huang | a2c5b2f | 2017-07-25 09:50:10 +0800 | [diff] [blame] | 161 | /* set SDMMC_DET_L pin */ |
| 162 | if (IS_ENABLED(CONFIG_BOARD_GOOGLE_SCARLET)) |
| 163 | /* |
| 164 | * do not have external pull up, so need to |
| 165 | * set this pin internal pull up |
| 166 | */ |
| 167 | gpio_input_pullup(GPIO(1, B, 3)); |
Vadim Bendebury | 2832c41 | 2016-05-11 15:03:44 +0800 | [diff] [blame] | 168 | else |
Vadim Bendebury | 8e8a00c | 2016-04-22 12:25:07 -0700 | [diff] [blame] | 169 | gpio_input(GPIO(4, D, 0)); |
Vadim Bendebury | 2832c41 | 2016-05-11 15:03:44 +0800 | [diff] [blame] | 170 | |
Lin Huang | a2c5b2f | 2017-07-25 09:50:10 +0800 | [diff] [blame] | 171 | /* |
| 172 | * Keep sd card io domain 3v |
| 173 | * In Scarlet this GPIO set to high will get 3v, |
| 174 | * With other board variants setting this GPIO low results in 3V. |
| 175 | */ |
| 176 | if (IS_ENABLED(CONFIG_BOARD_GOOGLE_SCARLET)) |
| 177 | gpio_output(GPIO(2, D, 4), 1); |
| 178 | else |
| 179 | gpio_output(GPIO(2, D, 4), 0); |
Vadim Bendebury | 8e8a00c | 2016-04-22 12:25:07 -0700 | [diff] [blame] | 180 | |
Julius Werner | 7feb86b | 2016-09-02 11:25:56 -0700 | [diff] [blame] | 181 | gpio_input(GPIO(4, B, 0)); /* SDMMC0_D0 remove pull-up */ |
| 182 | gpio_input(GPIO(4, B, 1)); /* SDMMC0_D1 remove pull-up */ |
| 183 | gpio_input(GPIO(4, B, 2)); /* SDMMC0_D2 remove pull-up */ |
| 184 | gpio_input(GPIO(4, B, 3)); /* SDMMC0_D3 remove pull-up */ |
| 185 | gpio_input(GPIO(4, B, 4)); /* SDMMC0_CLK remove pull-down */ |
| 186 | gpio_input(GPIO(4, B, 5)); /* SDMMC0_CMD remove pull-up */ |
| 187 | |
Vadim Bendebury | ad6ee02 | 2016-05-12 16:54:00 +0800 | [diff] [blame] | 188 | write32(&rk3399_grf->gpio2_p[2][1], RK_CLRSETBITS(0xfff, 0)); |
| 189 | |
| 190 | /* |
| 191 | * Set all outputs' drive strength to 8 mA. Group 4 bank B driver |
| 192 | * strength requires three bits per pin. Value of 2 written in that |
| 193 | * three bit field means '8 mA', as deduced from the kernel code. |
| 194 | * |
| 195 | * Thus the six pins involved in SDMMC interface require 18 bits to |
| 196 | * configure drive strength, but each 32 bit register provides only 16 |
| 197 | * bits for this setting, this covers 5 pins fully and one bit from |
| 198 | * the 6th pin. Two more bits spill over to the next register. This is |
| 199 | * described on page 378 of rk3399 TRM Version 0.3 Part 1. |
| 200 | */ |
| 201 | write32(&rk3399_grf->gpio4b_e01, |
| 202 | RK_CLRSETBITS(0xffff, |
| 203 | (2 << 0) | (2 << 3) | |
| 204 | (2 << 6) | (2 << 9) | (2 << 12))); |
| 205 | write32(&rk3399_grf->gpio4b_e2, RK_CLRSETBITS(3, 1)); |
| 206 | |
| 207 | /* And now set the multiplexor to enable SDMMC0. */ |
Vadim Bendebury | 1e80ab3 | 2016-03-28 00:44:54 -0700 | [diff] [blame] | 208 | write32(&rk3399_grf->iomux_sdmmc, IOMUX_SDMMC); |
| 209 | } |
huang lin | a6dbfb5 | 2016-03-02 18:38:40 +0800 | [diff] [blame] | 210 | |
Xing Zheng | 96fbc31 | 2016-05-19 11:39:20 +0800 | [diff] [blame] | 211 | static void configure_codec(void) |
| 212 | { |
Julius Werner | 7feb86b | 2016-09-02 11:25:56 -0700 | [diff] [blame] | 213 | gpio_input(GPIO(3, D, 0)); /* I2S0_SCLK remove pull-up */ |
| 214 | gpio_input(GPIO(3, D, 1)); /* I2S0_RX remove pull-up */ |
| 215 | gpio_input(GPIO(3, D, 2)); /* I2S0_TX remove pull-up */ |
| 216 | gpio_input(GPIO(3, D, 3)); /* I2S0_SDI0 remove pull-up */ |
| 217 | gpio_input(GPIO(3, D, 4)); /* I2S0_SDI1 remove pull-up */ |
| 218 | /* GPIO3_D5 (I2S0_SDI2SDO2) not connected */ |
| 219 | gpio_input(GPIO(3, D, 6)); /* I2S0_SDO1 remove pull-up */ |
| 220 | gpio_input(GPIO(3, D, 7)); /* I2S0_SDO0 remove pull-up */ |
| 221 | gpio_input(GPIO(4, A, 0)); /* I2S0_MCLK remove pull-up */ |
| 222 | |
Xing Zheng | 96fbc31 | 2016-05-19 11:39:20 +0800 | [diff] [blame] | 223 | write32(&rk3399_grf->iomux_i2s0, IOMUX_I2S0); |
| 224 | write32(&rk3399_grf->iomux_i2sclk, IOMUX_I2SCLK); |
| 225 | |
| 226 | /* AUDIO IO domain 1.8V voltage selection */ |
| 227 | write32(&rk3399_grf->io_vsel, RK_SETBITS(1 << 1)); |
| 228 | |
Julius Werner | 1ab8c01 | 2017-11-03 15:23:09 -0700 | [diff] [blame^] | 229 | if (!IS_ENABLED(CONFIG_BOARD_GOOGLE_SCARLET)) |
| 230 | gpio_output(GPIO_P18V_AUDIO_PWREN, 1); |
| 231 | gpio_output(GPIO_SPK_PA_EN, 0); |
Xing Zheng | 96fbc31 | 2016-05-19 11:39:20 +0800 | [diff] [blame] | 232 | |
| 233 | rkclk_configure_i2s(12288000); |
| 234 | } |
| 235 | |
Lin Huang | b497b48 | 2016-03-31 18:44:13 +0800 | [diff] [blame] | 236 | static void configure_display(void) |
| 237 | { |
Julius Werner | 6486e78 | 2017-07-14 14:30:29 -0700 | [diff] [blame] | 238 | if (IS_ENABLED(CONFIG_BOARD_GOOGLE_SCARLET)) { |
| 239 | gpio_output(GPIO(4, D, 1), 0); /* DISPLAY_RST_L */ |
| 240 | gpio_output(GPIO(4, D, 3), 1); /* PPVARP_LCD */ |
| 241 | mdelay(10); |
| 242 | gpio_output(GPIO(4, D, 4), 1); /* PPVARN_LCD */ |
| 243 | mdelay(20 + 2); /* add 2ms for bias rise time */ |
| 244 | gpio_output(GPIO(4, D, 1), 1); /* DISPLAY_RST_L */ |
| 245 | mdelay(30); |
| 246 | } else { |
| 247 | /* set pinmux for edp HPD */ |
| 248 | gpio_input_pulldown(GPIO(4, C, 7)); |
| 249 | write32(&rk3399_grf->iomux_edp_hotplug, IOMUX_EDP_HOTPLUG); |
Lin Huang | b497b48 | 2016-03-31 18:44:13 +0800 | [diff] [blame] | 250 | |
Julius Werner | 6486e78 | 2017-07-14 14:30:29 -0700 | [diff] [blame] | 251 | gpio_output(GPIO(4, D, 3), 1); /* P3.3V_DISP */ |
| 252 | } |
Lin Huang | b497b48 | 2016-03-31 18:44:13 +0800 | [diff] [blame] | 253 | } |
| 254 | |
Julius Werner | c49782c | 2016-11-21 20:14:18 -0800 | [diff] [blame] | 255 | static void usb_power_cycle(int port) |
| 256 | { |
| 257 | if (google_chromeec_set_usb_pd_role(port, USB_PD_CTRL_ROLE_FORCE_SINK)) |
| 258 | printk(BIOS_ERR, "ERROR: Cannot force USB%d PD sink\n", port); |
| 259 | |
| 260 | mdelay(10); /* Make sure USB stick is fully depowered. */ |
| 261 | |
| 262 | if (google_chromeec_set_usb_pd_role(port, USB_PD_CTRL_ROLE_TOGGLE_ON)) |
| 263 | printk(BIOS_ERR, "ERROR: Cannot restore USB%d PD mode\n", port); |
| 264 | } |
| 265 | |
philipchen | 21b0852 | 2017-04-27 18:25:11 -0700 | [diff] [blame] | 266 | static void setup_usb(int port) |
Liangfeng Wu | 76655cb | 2016-05-26 16:06:58 +0800 | [diff] [blame] | 267 | { |
philipchen | 21b0852 | 2017-04-27 18:25:11 -0700 | [diff] [blame] | 268 | /* Must be PHY0 or PHY1. */ |
| 269 | assert(port == 0 || port == 1); |
| 270 | |
William wu | 605a87c | 2017-01-09 19:02:39 +0800 | [diff] [blame] | 271 | /* |
| 272 | * A few magic PHY tuning values that improve eye diagram amplitude |
| 273 | * and make it extra sure we get reliable communication in firmware |
| 274 | * Set max ODT compensation voltage and current tuning reference. |
| 275 | */ |
philipchen | 21b0852 | 2017-04-27 18:25:11 -0700 | [diff] [blame] | 276 | write32(&rk3399_grf->usbphy_ctrl[port][3], RK_CLRSETBITS(0xfff, 0x2e3)); |
William wu | 9f470b1 | 2016-11-10 19:34:45 +0800 | [diff] [blame] | 277 | |
Caesar Wang | 9e58800 | 2017-02-10 11:16:13 +0800 | [diff] [blame] | 278 | /* Set max pre-emphasis level on PHY0 and PHY1. */ |
philipchen | 21b0852 | 2017-04-27 18:25:11 -0700 | [diff] [blame] | 279 | write32(&rk3399_grf->usbphy_ctrl[port][12], |
Caesar Wang | 9e58800 | 2017-02-10 11:16:13 +0800 | [diff] [blame] | 280 | RK_CLRSETBITS(0xffff, 0xa7)); |
William wu | 9f470b1 | 2016-11-10 19:34:45 +0800 | [diff] [blame] | 281 | |
Caesar Wang | 9e58800 | 2017-02-10 11:16:13 +0800 | [diff] [blame] | 282 | /* |
William wu | ebbdd28 | 2017-01-23 20:54:22 +0800 | [diff] [blame] | 283 | * 1. Disable the pre-emphasize in eop state and chirp |
Caesar Wang | 9e58800 | 2017-02-10 11:16:13 +0800 | [diff] [blame] | 284 | * state to avoid mis-trigger the disconnect detection |
| 285 | * and also avoid high-speed handshake fail for PHY0 |
| 286 | * and PHY1 consist of otg-port and host-port. |
William wu | ebbdd28 | 2017-01-23 20:54:22 +0800 | [diff] [blame] | 287 | * |
| 288 | * 2. Configure PHY0 and PHY1 otg-ports squelch detection |
| 289 | * threshold to 125mV (default is 150mV). |
Caesar Wang | 9e58800 | 2017-02-10 11:16:13 +0800 | [diff] [blame] | 290 | */ |
philipchen | 21b0852 | 2017-04-27 18:25:11 -0700 | [diff] [blame] | 291 | write32(&rk3399_grf->usbphy_ctrl[port][0], |
William wu | ebbdd28 | 2017-01-23 20:54:22 +0800 | [diff] [blame] | 292 | RK_CLRSETBITS(7 << 13 | 3 << 0, 6 << 13)); |
philipchen | 21b0852 | 2017-04-27 18:25:11 -0700 | [diff] [blame] | 293 | write32(&rk3399_grf->usbphy_ctrl[port][13], RK_CLRBITS(3 << 0)); |
William wu | 9f470b1 | 2016-11-10 19:34:45 +0800 | [diff] [blame] | 294 | |
Caesar Wang | 9e58800 | 2017-02-10 11:16:13 +0800 | [diff] [blame] | 295 | /* |
| 296 | * ODT auto compensation bypass, and set max driver |
| 297 | * strength only for PHY0 and PHY1 otg-port. |
| 298 | */ |
philipchen | 21b0852 | 2017-04-27 18:25:11 -0700 | [diff] [blame] | 299 | write32(&rk3399_grf->usbphy_ctrl[port][2], |
Caesar Wang | 9e58800 | 2017-02-10 11:16:13 +0800 | [diff] [blame] | 300 | RK_CLRSETBITS(0x7e << 4, 0x60 << 4)); |
William wu | 9f470b1 | 2016-11-10 19:34:45 +0800 | [diff] [blame] | 301 | |
Caesar Wang | 9e58800 | 2017-02-10 11:16:13 +0800 | [diff] [blame] | 302 | /* |
| 303 | * ODT auto refresh bypass, and set the max bias current |
| 304 | * tuning reference only for PHY0 and PHY1 otg-port. |
| 305 | */ |
philipchen | 21b0852 | 2017-04-27 18:25:11 -0700 | [diff] [blame] | 306 | write32(&rk3399_grf->usbphy_ctrl[port][3], |
Caesar Wang | 9e58800 | 2017-02-10 11:16:13 +0800 | [diff] [blame] | 307 | RK_CLRSETBITS(0x21c, 1 << 4)); |
William wu | 605a87c | 2017-01-09 19:02:39 +0800 | [diff] [blame] | 308 | |
Caesar Wang | 9e58800 | 2017-02-10 11:16:13 +0800 | [diff] [blame] | 309 | /* |
| 310 | * ODT auto compensation bypass, and set default driver |
| 311 | * strength only for PHY0 and PHY1 host-port. |
| 312 | */ |
philipchen | 21b0852 | 2017-04-27 18:25:11 -0700 | [diff] [blame] | 313 | write32(&rk3399_grf->usbphy_ctrl[port][15], RK_SETBITS(1 << 10)); |
William wu | 605a87c | 2017-01-09 19:02:39 +0800 | [diff] [blame] | 314 | |
Caesar Wang | 9e58800 | 2017-02-10 11:16:13 +0800 | [diff] [blame] | 315 | /* ODT auto refresh bypass only for PHY0 and PHY1 host-port. */ |
philipchen | 21b0852 | 2017-04-27 18:25:11 -0700 | [diff] [blame] | 316 | write32(&rk3399_grf->usbphy_ctrl[port][16], RK_CLRBITS(1 << 9)); |
Julius Werner | 1c8491c | 2016-08-15 17:58:05 -0700 | [diff] [blame] | 317 | |
philipchen | 21b0852 | 2017-04-27 18:25:11 -0700 | [diff] [blame] | 318 | if (port == 0) |
| 319 | setup_usb_otg0(); |
| 320 | else |
| 321 | setup_usb_otg1(); |
Julius Werner | c49782c | 2016-11-21 20:14:18 -0800 | [diff] [blame] | 322 | |
| 323 | /* |
| 324 | * Need to power-cycle USB ports for use in firmware, since some devices |
| 325 | * can't fall back to USB 2.0 after they saw SuperSpeed terminations. |
| 326 | * This takes about a dozen milliseconds, so only do it in boot modes |
| 327 | * that have firmware UI (which one could select USB boot from). |
| 328 | */ |
philipchen | 21b0852 | 2017-04-27 18:25:11 -0700 | [diff] [blame] | 329 | if (display_init_required()) |
| 330 | usb_power_cycle(port); |
Liangfeng Wu | 76655cb | 2016-05-26 16:06:58 +0800 | [diff] [blame] | 331 | } |
| 332 | |
huang lin | a6dbfb5 | 2016-03-02 18:38:40 +0800 | [diff] [blame] | 333 | static void mainboard_init(device_t dev) |
| 334 | { |
Vadim Bendebury | 1e80ab3 | 2016-03-28 00:44:54 -0700 | [diff] [blame] | 335 | configure_sdmmc(); |
Lin Huang | 2f7ed8d | 2016-04-08 18:56:20 +0800 | [diff] [blame] | 336 | configure_emmc(); |
Xing Zheng | 96fbc31 | 2016-05-19 11:39:20 +0800 | [diff] [blame] | 337 | configure_codec(); |
Julius Werner | 6486e78 | 2017-07-14 14:30:29 -0700 | [diff] [blame] | 338 | if (display_init_required()) |
| 339 | configure_display(); |
philipchen | 21b0852 | 2017-04-27 18:25:11 -0700 | [diff] [blame] | 340 | setup_usb(0); |
Philip Chen | a061820 | 2017-08-23 18:02:25 -0700 | [diff] [blame] | 341 | if (IS_ENABLED(CONFIG_GRU_HAS_WLAN_RESET)) |
| 342 | assert_wifi_reset(); |
Julius Werner | 6486e78 | 2017-07-14 14:30:29 -0700 | [diff] [blame] | 343 | if (!IS_ENABLED(CONFIG_BOARD_GOOGLE_SCARLET)) { |
Julius Werner | 6486e78 | 2017-07-14 14:30:29 -0700 | [diff] [blame] | 344 | configure_touchpad(); /* Scarlet: works differently */ |
| 345 | setup_usb(1); /* Scarlet: only one USB port */ |
Julius Werner | 6486e78 | 2017-07-14 14:30:29 -0700 | [diff] [blame] | 346 | } |
Julius Werner | 2be6404 | 2017-09-01 14:27:46 -0700 | [diff] [blame] | 347 | register_gpio_suspend(); |
Lin Huang | 5a4be8a | 2016-05-17 15:45:53 +0800 | [diff] [blame] | 348 | register_reset_to_bl31(); |
Lin Huang | 9a5c4fe | 2016-05-19 11:11:23 +0800 | [diff] [blame] | 349 | register_poweroff_to_bl31(); |
Lin Huang | c9fea5c | 2016-08-30 15:34:42 -0700 | [diff] [blame] | 350 | register_apio_suspend(); |
Lin Huang | b497b48 | 2016-03-31 18:44:13 +0800 | [diff] [blame] | 351 | } |
| 352 | |
Philip Chen | a304b69 | 2017-04-06 10:17:08 -0700 | [diff] [blame] | 353 | static void prepare_backlight_i2c(void) |
Lin Huang | b497b48 | 2016-03-31 18:44:13 +0800 | [diff] [blame] | 354 | { |
Julius Werner | 7feb86b | 2016-09-02 11:25:56 -0700 | [diff] [blame] | 355 | gpio_input(GPIO(1, B, 7)); /* I2C0_SDA remove pull_up */ |
| 356 | gpio_input(GPIO(1, C, 0)); /* I2C0_SCL remove pull_up */ |
| 357 | |
| 358 | i2c_init(0, 100*KHz); |
| 359 | |
Lin Huang | b497b48 | 2016-03-31 18:44:13 +0800 | [diff] [blame] | 360 | write32(&rk3399_pmugrf->iomux_i2c0_sda, IOMUX_I2C0_SDA); |
| 361 | write32(&rk3399_pmugrf->iomux_i2c0_scl, IOMUX_I2C0_SCL); |
Lin Huang | b497b48 | 2016-03-31 18:44:13 +0800 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | void mainboard_power_on_backlight(void) |
| 365 | { |
Vadim Bendebury | f1343df | 2016-05-22 15:53:37 -0700 | [diff] [blame] | 366 | gpio_output(GPIO_BACKLIGHT, 1); /* BL_EN */ |
Lin Huang | b497b48 | 2016-03-31 18:44:13 +0800 | [diff] [blame] | 367 | |
Philip Chen | a304b69 | 2017-04-06 10:17:08 -0700 | [diff] [blame] | 368 | if (IS_ENABLED(CONFIG_BOARD_GOOGLE_GRU)) |
| 369 | prepare_backlight_i2c(); |
huang lin | a6dbfb5 | 2016-03-02 18:38:40 +0800 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | static void mainboard_enable(device_t dev) |
| 373 | { |
| 374 | dev->ops->init = &mainboard_init; |
| 375 | } |
| 376 | |
| 377 | struct chip_operations mainboard_ops = { |
| 378 | .name = CONFIG_MAINBOARD_PART_NUMBER, |
| 379 | .enable_dev = mainboard_enable, |
| 380 | }; |