1*c420ef67SSimon Glass/* 2*c420ef67SSimon Glass * Google Veyron Minnie Rev 0+ board device tree source 3*c420ef67SSimon Glass * 4*c420ef67SSimon Glass * Copyright 2015 Google, Inc 5*c420ef67SSimon Glass * 6*c420ef67SSimon Glass * This file is dual-licensed: you can use it either under the terms 7*c420ef67SSimon Glass * of the GPL or the X11 license, at your option. Note that this dual 8*c420ef67SSimon Glass * licensing only applies to this file, and not this project as a 9*c420ef67SSimon Glass * whole. 10*c420ef67SSimon Glass * 11*c420ef67SSimon Glass * a) This file is free software; you can redistribute it and/or 12*c420ef67SSimon Glass * modify it under the terms of the GNU General Public License as 13*c420ef67SSimon Glass * published by the Free Software Foundation; either version 2 of the 14*c420ef67SSimon Glass * License, or (at your option) any later version. 15*c420ef67SSimon Glass * 16*c420ef67SSimon Glass * This file is distributed in the hope that it will be useful, 17*c420ef67SSimon Glass * but WITHOUT ANY WARRANTY; without even the implied warranty of 18*c420ef67SSimon Glass * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19*c420ef67SSimon Glass * GNU General Public License for more details. 20*c420ef67SSimon Glass * 21*c420ef67SSimon Glass * Or, alternatively, 22*c420ef67SSimon Glass * 23*c420ef67SSimon Glass * b) Permission is hereby granted, free of charge, to any person 24*c420ef67SSimon Glass * obtaining a copy of this software and associated documentation 25*c420ef67SSimon Glass * files (the "Software"), to deal in the Software without 26*c420ef67SSimon Glass * restriction, including without limitation the rights to use, 27*c420ef67SSimon Glass * copy, modify, merge, publish, distribute, sublicense, and/or 28*c420ef67SSimon Glass * sell copies of the Software, and to permit persons to whom the 29*c420ef67SSimon Glass * Software is furnished to do so, subject to the following 30*c420ef67SSimon Glass * conditions: 31*c420ef67SSimon Glass * 32*c420ef67SSimon Glass * The above copyright notice and this permission notice shall be 33*c420ef67SSimon Glass * included in all copies or substantial portions of the Software. 34*c420ef67SSimon Glass * 35*c420ef67SSimon Glass * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 36*c420ef67SSimon Glass * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 37*c420ef67SSimon Glass * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 38*c420ef67SSimon Glass * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 39*c420ef67SSimon Glass * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 40*c420ef67SSimon Glass * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 41*c420ef67SSimon Glass * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 42*c420ef67SSimon Glass * OTHER DEALINGS IN THE SOFTWARE. 43*c420ef67SSimon Glass */ 44*c420ef67SSimon Glass 45*c420ef67SSimon Glass/dts-v1/; 46*c420ef67SSimon Glass#include "rk3288-veyron-chromebook.dtsi" 47*c420ef67SSimon Glass 48*c420ef67SSimon Glass/ { 49*c420ef67SSimon Glass model = "Google Minnie"; 50*c420ef67SSimon Glass compatible = "google,veyron-minnie-rev4", "google,veyron-minnie-rev3", 51*c420ef67SSimon Glass "google,veyron-minnie-rev2", "google,veyron-minnie-rev1", 52*c420ef67SSimon Glass "google,veyron-minnie-rev0", "google,veyron-minnie", 53*c420ef67SSimon Glass "google,veyron", "rockchip,rk3288"; 54*c420ef67SSimon Glass 55*c420ef67SSimon Glass backlight_regulator: backlight-regulator { 56*c420ef67SSimon Glass compatible = "regulator-fixed"; 57*c420ef67SSimon Glass enable-active-high; 58*c420ef67SSimon Glass gpio = <&gpio2 12 GPIO_ACTIVE_HIGH>; 59*c420ef67SSimon Glass pinctrl-names = "default"; 60*c420ef67SSimon Glass pinctrl-0 = <&bl_pwr_en>; 61*c420ef67SSimon Glass regulator-name = "backlight_regulator"; 62*c420ef67SSimon Glass vin-supply = <&vcc33_sys>; 63*c420ef67SSimon Glass startup-delay-us = <15000>; 64*c420ef67SSimon Glass }; 65*c420ef67SSimon Glass 66*c420ef67SSimon Glass panel_regulator: panel-regulator { 67*c420ef67SSimon Glass compatible = "regulator-fixed"; 68*c420ef67SSimon Glass enable-active-high; 69*c420ef67SSimon Glass gpio = <&gpio7 14 GPIO_ACTIVE_HIGH>; 70*c420ef67SSimon Glass pinctrl-names = "default"; 71*c420ef67SSimon Glass pinctrl-0 = <&lcd_enable_h>; 72*c420ef67SSimon Glass regulator-name = "panel_regulator"; 73*c420ef67SSimon Glass startup-delay-us = <100000>; 74*c420ef67SSimon Glass vin-supply = <&vcc33_sys>; 75*c420ef67SSimon Glass }; 76*c420ef67SSimon Glass 77*c420ef67SSimon Glass vcc18_lcd: vcc18-lcd { 78*c420ef67SSimon Glass compatible = "regulator-fixed"; 79*c420ef67SSimon Glass enable-active-high; 80*c420ef67SSimon Glass gpio = <&gpio2 13 GPIO_ACTIVE_HIGH>; 81*c420ef67SSimon Glass pinctrl-names = "default"; 82*c420ef67SSimon Glass pinctrl-0 = <&avdd_1v8_disp_en>; 83*c420ef67SSimon Glass regulator-name = "vcc18_lcd"; 84*c420ef67SSimon Glass regulator-always-on; 85*c420ef67SSimon Glass regulator-boot-on; 86*c420ef67SSimon Glass vin-supply = <&vcc18_wl>; 87*c420ef67SSimon Glass }; 88*c420ef67SSimon Glass}; 89*c420ef67SSimon Glass 90*c420ef67SSimon Glass&backlight { 91*c420ef67SSimon Glass /* Minnie panel PWM must be >= 1%, so start non-zero brightness at 3 */ 92*c420ef67SSimon Glass brightness-levels = < 93*c420ef67SSimon Glass 0 3 4 5 6 7 94*c420ef67SSimon Glass 8 9 10 11 12 13 14 15 95*c420ef67SSimon Glass 16 17 18 19 20 21 22 23 96*c420ef67SSimon Glass 24 25 26 27 28 29 30 31 97*c420ef67SSimon Glass 32 33 34 35 36 37 38 39 98*c420ef67SSimon Glass 40 41 42 43 44 45 46 47 99*c420ef67SSimon Glass 48 49 50 51 52 53 54 55 100*c420ef67SSimon Glass 56 57 58 59 60 61 62 63 101*c420ef67SSimon Glass 64 65 66 67 68 69 70 71 102*c420ef67SSimon Glass 72 73 74 75 76 77 78 79 103*c420ef67SSimon Glass 80 81 82 83 84 85 86 87 104*c420ef67SSimon Glass 88 89 90 91 92 93 94 95 105*c420ef67SSimon Glass 96 97 98 99 100 101 102 103 106*c420ef67SSimon Glass 104 105 106 107 108 109 110 111 107*c420ef67SSimon Glass 112 113 114 115 116 117 118 119 108*c420ef67SSimon Glass 120 121 122 123 124 125 126 127 109*c420ef67SSimon Glass 128 129 130 131 132 133 134 135 110*c420ef67SSimon Glass 136 137 138 139 140 141 142 143 111*c420ef67SSimon Glass 144 145 146 147 148 149 150 151 112*c420ef67SSimon Glass 152 153 154 155 156 157 158 159 113*c420ef67SSimon Glass 160 161 162 163 164 165 166 167 114*c420ef67SSimon Glass 168 169 170 171 172 173 174 175 115*c420ef67SSimon Glass 176 177 178 179 180 181 182 183 116*c420ef67SSimon Glass 184 185 186 187 188 189 190 191 117*c420ef67SSimon Glass 192 193 194 195 196 197 198 199 118*c420ef67SSimon Glass 200 201 202 203 204 205 206 207 119*c420ef67SSimon Glass 208 209 210 211 212 213 214 215 120*c420ef67SSimon Glass 216 217 218 219 220 221 222 223 121*c420ef67SSimon Glass 224 225 226 227 228 229 230 231 122*c420ef67SSimon Glass 232 233 234 235 236 237 238 239 123*c420ef67SSimon Glass 240 241 242 243 244 245 246 247 124*c420ef67SSimon Glass 248 249 250 251 252 253 254 255>; 125*c420ef67SSimon Glass power-supply = <&backlight_regulator>; 126*c420ef67SSimon Glass}; 127*c420ef67SSimon Glass 128*c420ef67SSimon Glass&dmc { 129*c420ef67SSimon Glass rockchip,pctl-timing = <0x215 0xc8 0x0 0x35 0x26 0x2 0x70 0x2000d 130*c420ef67SSimon Glass 0x6 0x0 0x8 0x4 0x17 0x24 0xd 0x6 131*c420ef67SSimon Glass 0x4 0x8 0x4 0x76 0x4 0x0 0x30 0x0 132*c420ef67SSimon Glass 0x1 0x2 0x2 0x4 0x0 0x0 0xc0 0x4 133*c420ef67SSimon Glass 0x8 0x1f4>; 134*c420ef67SSimon Glass rockchip,phy-timing = <0x48d7dd93 0x187008d8 0x121076 135*c420ef67SSimon Glass 0x0 0xc3 0x6 0x1>; 136*c420ef67SSimon Glass rockchip,sdram-params = <0x20d266a4 0x5b6 6 533000000 6 13 0>; 137*c420ef67SSimon Glass}; 138*c420ef67SSimon Glass 139*c420ef67SSimon Glass&emmc { 140*c420ef67SSimon Glass /delete-property/mmc-hs200-1_8v; 141*c420ef67SSimon Glass}; 142*c420ef67SSimon Glass 143*c420ef67SSimon Glass&gpio_keys { 144*c420ef67SSimon Glass pinctrl-0 = <&pwr_key_h &ap_lid_int_l &volum_down_l &volum_up_l>; 145*c420ef67SSimon Glass 146*c420ef67SSimon Glass volum_down { 147*c420ef67SSimon Glass label = "Volum_down"; 148*c420ef67SSimon Glass gpios = <&gpio5 11 GPIO_ACTIVE_LOW>; 149*c420ef67SSimon Glass linux,code = <KEY_VOLUMEDOWN>; 150*c420ef67SSimon Glass debounce-interval = <100>; 151*c420ef67SSimon Glass }; 152*c420ef67SSimon Glass 153*c420ef67SSimon Glass volum_up { 154*c420ef67SSimon Glass label = "Volum_up"; 155*c420ef67SSimon Glass gpios = <&gpio5 10 GPIO_ACTIVE_LOW>; 156*c420ef67SSimon Glass linux,code = <KEY_VOLUMEUP>; 157*c420ef67SSimon Glass debounce-interval = <100>; 158*c420ef67SSimon Glass }; 159*c420ef67SSimon Glass}; 160*c420ef67SSimon Glass 161*c420ef67SSimon Glass&i2c_tunnel { 162*c420ef67SSimon Glass battery: bq27500@55 { 163*c420ef67SSimon Glass compatible = "ti,bq27500"; 164*c420ef67SSimon Glass reg = <0x55>; 165*c420ef67SSimon Glass }; 166*c420ef67SSimon Glass}; 167*c420ef67SSimon Glass 168*c420ef67SSimon Glass&i2c3 { 169*c420ef67SSimon Glass status = "okay"; 170*c420ef67SSimon Glass 171*c420ef67SSimon Glass clock-frequency = <400000>; 172*c420ef67SSimon Glass i2c-scl-falling-time-ns = <50>; 173*c420ef67SSimon Glass i2c-scl-rising-time-ns = <300>; 174*c420ef67SSimon Glass 175*c420ef67SSimon Glass touchscreen@10 { 176*c420ef67SSimon Glass compatible = "elan,ekth3500"; 177*c420ef67SSimon Glass reg = <0x10>; 178*c420ef67SSimon Glass interrupt-parent = <&gpio2>; 179*c420ef67SSimon Glass interrupts = <14 IRQ_TYPE_EDGE_FALLING>; 180*c420ef67SSimon Glass pinctrl-names = "default"; 181*c420ef67SSimon Glass pinctrl-0 = <&touch_int &touch_rst>; 182*c420ef67SSimon Glass reset-gpios = <&gpio2 15 GPIO_ACTIVE_LOW>; 183*c420ef67SSimon Glass vcc33-supply = <&vcc33_touch>; 184*c420ef67SSimon Glass vccio-supply = <&vcc33_touch>; 185*c420ef67SSimon Glass }; 186*c420ef67SSimon Glass}; 187*c420ef67SSimon Glass 188*c420ef67SSimon Glass&panel { 189*c420ef67SSimon Glass compatible = "auo,b101ean01", "simple-panel"; 190*c420ef67SSimon Glass power-supply= <&panel_regulator>; 191*c420ef67SSimon Glass}; 192*c420ef67SSimon Glass 193*c420ef67SSimon Glass&rk808 { 194*c420ef67SSimon Glass pinctrl-names = "default"; 195*c420ef67SSimon Glass pinctrl-0 = <&pmic_int_l &dvs_1 &dvs_2>; 196*c420ef67SSimon Glass 197*c420ef67SSimon Glass regulators { 198*c420ef67SSimon Glass vcc33_touch: LDO_REG2 { 199*c420ef67SSimon Glass regulator-min-microvolt = <3300000>; 200*c420ef67SSimon Glass regulator-max-microvolt = <3300000>; 201*c420ef67SSimon Glass regulator-name = "vcc33_touch"; 202*c420ef67SSimon Glass regulator-state-mem { 203*c420ef67SSimon Glass regulator-off-in-suspend; 204*c420ef67SSimon Glass }; 205*c420ef67SSimon Glass }; 206*c420ef67SSimon Glass 207*c420ef67SSimon Glass vcc5v_touch: SWITCH_REG2 { 208*c420ef67SSimon Glass regulator-name = "vcc5v_touch"; 209*c420ef67SSimon Glass regulator-state-mem { 210*c420ef67SSimon Glass regulator-off-in-suspend; 211*c420ef67SSimon Glass }; 212*c420ef67SSimon Glass }; 213*c420ef67SSimon Glass }; 214*c420ef67SSimon Glass}; 215*c420ef67SSimon Glass 216*c420ef67SSimon Glass&sdmmc { 217*c420ef67SSimon Glass disable-wp; 218*c420ef67SSimon Glass pinctrl-names = "default"; 219*c420ef67SSimon Glass pinctrl-0 = <&sdmmc_clk &sdmmc_cmd &sdmmc_cd_disabled &sdmmc_cd_gpio 220*c420ef67SSimon Glass &sdmmc_bus4>; 221*c420ef67SSimon Glass}; 222*c420ef67SSimon Glass 223*c420ef67SSimon Glass&vcc_5v { 224*c420ef67SSimon Glass enable-active-high; 225*c420ef67SSimon Glass gpio = <&gpio7 21 GPIO_ACTIVE_HIGH>; 226*c420ef67SSimon Glass pinctrl-names = "default"; 227*c420ef67SSimon Glass pinctrl-0 = <&drv_5v>; 228*c420ef67SSimon Glass}; 229*c420ef67SSimon Glass 230*c420ef67SSimon Glass&vcc50_hdmi { 231*c420ef67SSimon Glass enable-active-high; 232*c420ef67SSimon Glass gpio = <&gpio5 19 GPIO_ACTIVE_HIGH>; 233*c420ef67SSimon Glass pinctrl-names = "default"; 234*c420ef67SSimon Glass pinctrl-0 = <&vcc50_hdmi_en>; 235*c420ef67SSimon Glass}; 236*c420ef67SSimon Glass 237*c420ef67SSimon Glass&pinctrl { 238*c420ef67SSimon Glass backlight { 239*c420ef67SSimon Glass bl_pwr_en: bl_pwr_en { 240*c420ef67SSimon Glass rockchip,pins = <2 12 RK_FUNC_GPIO &pcfg_pull_none>; 241*c420ef67SSimon Glass }; 242*c420ef67SSimon Glass }; 243*c420ef67SSimon Glass 244*c420ef67SSimon Glass buck-5v { 245*c420ef67SSimon Glass drv_5v: drv-5v { 246*c420ef67SSimon Glass rockchip,pins = <7 21 RK_FUNC_GPIO &pcfg_pull_none>; 247*c420ef67SSimon Glass }; 248*c420ef67SSimon Glass }; 249*c420ef67SSimon Glass 250*c420ef67SSimon Glass buttons { 251*c420ef67SSimon Glass volum_down_l: volum-down-l { 252*c420ef67SSimon Glass rockchip,pins = <5 11 RK_FUNC_GPIO &pcfg_pull_up>; 253*c420ef67SSimon Glass }; 254*c420ef67SSimon Glass 255*c420ef67SSimon Glass volum_up_l: volum-up-l { 256*c420ef67SSimon Glass rockchip,pins = <5 10 RK_FUNC_GPIO &pcfg_pull_up>; 257*c420ef67SSimon Glass }; 258*c420ef67SSimon Glass }; 259*c420ef67SSimon Glass 260*c420ef67SSimon Glass hdmi { 261*c420ef67SSimon Glass vcc50_hdmi_en: vcc50-hdmi-en { 262*c420ef67SSimon Glass rockchip,pins = <5 19 RK_FUNC_GPIO &pcfg_pull_none>; 263*c420ef67SSimon Glass }; 264*c420ef67SSimon Glass }; 265*c420ef67SSimon Glass 266*c420ef67SSimon Glass lcd { 267*c420ef67SSimon Glass lcd_enable_h: lcd-en { 268*c420ef67SSimon Glass rockchip,pins = <7 14 RK_FUNC_GPIO &pcfg_pull_none>; 269*c420ef67SSimon Glass }; 270*c420ef67SSimon Glass 271*c420ef67SSimon Glass avdd_1v8_disp_en: avdd-1v8-disp-en { 272*c420ef67SSimon Glass rockchip,pins = <2 13 RK_FUNC_GPIO &pcfg_pull_none>; 273*c420ef67SSimon Glass }; 274*c420ef67SSimon Glass }; 275*c420ef67SSimon Glass 276*c420ef67SSimon Glass pmic { 277*c420ef67SSimon Glass dvs_1: dvs-1 { 278*c420ef67SSimon Glass rockchip,pins = <7 12 RK_FUNC_GPIO &pcfg_pull_down>; 279*c420ef67SSimon Glass }; 280*c420ef67SSimon Glass 281*c420ef67SSimon Glass dvs_2: dvs-2 { 282*c420ef67SSimon Glass rockchip,pins = <7 15 RK_FUNC_GPIO &pcfg_pull_down>; 283*c420ef67SSimon Glass }; 284*c420ef67SSimon Glass }; 285*c420ef67SSimon Glass 286*c420ef67SSimon Glass prochot { 287*c420ef67SSimon Glass gpio_prochot: gpio-prochot { 288*c420ef67SSimon Glass rockchip,pins = <2 8 RK_FUNC_GPIO &pcfg_pull_none>; 289*c420ef67SSimon Glass }; 290*c420ef67SSimon Glass }; 291*c420ef67SSimon Glass 292*c420ef67SSimon Glass touchscreen { 293*c420ef67SSimon Glass touch_int: touch-int { 294*c420ef67SSimon Glass rockchip,pins = <2 14 RK_FUNC_GPIO &pcfg_pull_none>; 295*c420ef67SSimon Glass }; 296*c420ef67SSimon Glass 297*c420ef67SSimon Glass touch_rst: touch-rst { 298*c420ef67SSimon Glass rockchip,pins = <2 15 RK_FUNC_GPIO &pcfg_pull_none>; 299*c420ef67SSimon Glass }; 300*c420ef67SSimon Glass }; 301*c420ef67SSimon Glass}; 302