1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0 2*f126890aSEmmanuel Vadot/* 3*f126890aSEmmanuel Vadot * at91-kizbox3.dts - Device Tree Include file for Overkiz Kizbox 3 4*f126890aSEmmanuel Vadot * family SoC boards 5*f126890aSEmmanuel Vadot * 6*f126890aSEmmanuel Vadot * Copyright (C) 2018 Overkiz SAS 7*f126890aSEmmanuel Vadot * 8*f126890aSEmmanuel Vadot * Authors: Dorian Rocipon <d.rocipon@overkiz.com> 9*f126890aSEmmanuel Vadot * Kevin Carli <k.carli@overkiz.com> 10*f126890aSEmmanuel Vadot * Mickael Gardet <m.gardet@overkiz.com> 11*f126890aSEmmanuel Vadot */ 12*f126890aSEmmanuel Vadot/dts-v1/; 13*f126890aSEmmanuel Vadot#include "sama5d2.dtsi" 14*f126890aSEmmanuel Vadot#include "sama5d2-pinfunc.h" 15*f126890aSEmmanuel Vadot#include <dt-bindings/gpio/gpio.h> 16*f126890aSEmmanuel Vadot#include <dt-bindings/mfd/atmel-flexcom.h> 17*f126890aSEmmanuel Vadot#include <dt-bindings/pinctrl/at91.h> 18*f126890aSEmmanuel Vadot#include <dt-bindings/pwm/pwm.h> 19*f126890aSEmmanuel Vadot 20*f126890aSEmmanuel Vadot/ { 21*f126890aSEmmanuel Vadot model = "Overkiz Kizbox3"; 22*f126890aSEmmanuel Vadot compatible = "overkiz,kizbox3", "atmel,sama5d2", "atmel,sama5"; 23*f126890aSEmmanuel Vadot 24*f126890aSEmmanuel Vadot aliases { 25*f126890aSEmmanuel Vadot serial0 = &uart0; 26*f126890aSEmmanuel Vadot serial1 = &uart1; 27*f126890aSEmmanuel Vadot serial2 = &uart2; 28*f126890aSEmmanuel Vadot serial3 = &uart3; 29*f126890aSEmmanuel Vadot serial4 = &uart4; 30*f126890aSEmmanuel Vadot serial5 = &uart5; 31*f126890aSEmmanuel Vadot serial6 = &uart8; 32*f126890aSEmmanuel Vadot }; 33*f126890aSEmmanuel Vadot 34*f126890aSEmmanuel Vadot chosen { 35*f126890aSEmmanuel Vadot bootargs = "ubi.mtd=ubi"; 36*f126890aSEmmanuel Vadot stdout-path = "serial1:115200n8"; 37*f126890aSEmmanuel Vadot }; 38*f126890aSEmmanuel Vadot 39*f126890aSEmmanuel Vadot clocks { 40*f126890aSEmmanuel Vadot slow_xtal { 41*f126890aSEmmanuel Vadot clock-frequency = <32768>; 42*f126890aSEmmanuel Vadot }; 43*f126890aSEmmanuel Vadot 44*f126890aSEmmanuel Vadot main_xtal { 45*f126890aSEmmanuel Vadot clock-frequency = <12000000>; 46*f126890aSEmmanuel Vadot }; 47*f126890aSEmmanuel Vadot }; 48*f126890aSEmmanuel Vadot 49*f126890aSEmmanuel Vadot vdd_adc_vddana: supply_3v3_ana { 50*f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 51*f126890aSEmmanuel Vadot regulator-name = "adc-vddana"; 52*f126890aSEmmanuel Vadot regulator-min-microvolt = <3300000>; 53*f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 54*f126890aSEmmanuel Vadot regulator-always-on; 55*f126890aSEmmanuel Vadot }; 56*f126890aSEmmanuel Vadot 57*f126890aSEmmanuel Vadot vdd_adc_vref: supply_3v3_ref { 58*f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 59*f126890aSEmmanuel Vadot regulator-name = "adc-vref"; 60*f126890aSEmmanuel Vadot regulator-min-microvolt = <3300000>; 61*f126890aSEmmanuel Vadot regulator-max-microvolt = <3300000>; 62*f126890aSEmmanuel Vadot regulator-always-on; 63*f126890aSEmmanuel Vadot }; 64*f126890aSEmmanuel Vadot 65*f126890aSEmmanuel Vadot led-controller-1 { 66*f126890aSEmmanuel Vadot compatible = "pwm-leds"; 67*f126890aSEmmanuel Vadot pinctrl-names = "default"; 68*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_pwm0_pwm_h0 69*f126890aSEmmanuel Vadot &pinctrl_pwm0_pwm_h1 70*f126890aSEmmanuel Vadot &pinctrl_pwm0_pwm_h2 71*f126890aSEmmanuel Vadot &pinctrl_pwm0_pwm_h3>; 72*f126890aSEmmanuel Vadot status = "disabled"; 73*f126890aSEmmanuel Vadot 74*f126890aSEmmanuel Vadot led-1 { 75*f126890aSEmmanuel Vadot label = "pwm:red:user"; 76*f126890aSEmmanuel Vadot pwms = <&pwm0 0 10000000 0>; 77*f126890aSEmmanuel Vadot max-brightness = <255>; 78*f126890aSEmmanuel Vadot linux,default-trigger = "default-on"; 79*f126890aSEmmanuel Vadot status = "disabled"; 80*f126890aSEmmanuel Vadot }; 81*f126890aSEmmanuel Vadot 82*f126890aSEmmanuel Vadot led-2 { 83*f126890aSEmmanuel Vadot label = "pwm:green:user"; 84*f126890aSEmmanuel Vadot pwms = <&pwm0 1 10000000 0>; 85*f126890aSEmmanuel Vadot max-brightness = <255>; 86*f126890aSEmmanuel Vadot linux,default-trigger = "default-on"; 87*f126890aSEmmanuel Vadot status = "disabled"; 88*f126890aSEmmanuel Vadot }; 89*f126890aSEmmanuel Vadot 90*f126890aSEmmanuel Vadot led-3 { 91*f126890aSEmmanuel Vadot label = "pwm:blue:user"; 92*f126890aSEmmanuel Vadot pwms = <&pwm0 2 10000000 0>; 93*f126890aSEmmanuel Vadot max-brightness = <255>; 94*f126890aSEmmanuel Vadot status = "disabled"; 95*f126890aSEmmanuel Vadot }; 96*f126890aSEmmanuel Vadot 97*f126890aSEmmanuel Vadot led-4 { 98*f126890aSEmmanuel Vadot label = "pwm:white:user"; 99*f126890aSEmmanuel Vadot pwms = <&pwm0 3 10000000 0>; 100*f126890aSEmmanuel Vadot max-brightness = <255>; 101*f126890aSEmmanuel Vadot status = "disabled"; 102*f126890aSEmmanuel Vadot }; 103*f126890aSEmmanuel Vadot }; 104*f126890aSEmmanuel Vadot}; 105*f126890aSEmmanuel Vadot 106*f126890aSEmmanuel Vadot&ebi { 107*f126890aSEmmanuel Vadot status = "okay"; 108*f126890aSEmmanuel Vadot}; 109*f126890aSEmmanuel Vadot 110*f126890aSEmmanuel Vadot&nand_controller { 111*f126890aSEmmanuel Vadot status = "okay"; 112*f126890aSEmmanuel Vadot 113*f126890aSEmmanuel Vadot nand@3 { 114*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_ebi_nand_addr>; 115*f126890aSEmmanuel Vadot pinctrl-names = "default"; 116*f126890aSEmmanuel Vadot reg = <0x3 0x0 0x800000>; 117*f126890aSEmmanuel Vadot 118*f126890aSEmmanuel Vadot atmel,rb = <0>; 119*f126890aSEmmanuel Vadot nand-bus-width = <8>; 120*f126890aSEmmanuel Vadot nand-ecc-mode = "hw"; 121*f126890aSEmmanuel Vadot nand-ecc-strength = <4>; 122*f126890aSEmmanuel Vadot nand-ecc-step-size = <512>; 123*f126890aSEmmanuel Vadot nand-on-flash-bbt; 124*f126890aSEmmanuel Vadot label = "atmel_nand"; 125*f126890aSEmmanuel Vadot 126*f126890aSEmmanuel Vadot partitions { 127*f126890aSEmmanuel Vadot compatible = "fixed-partitions"; 128*f126890aSEmmanuel Vadot #address-cells = <1>; 129*f126890aSEmmanuel Vadot #size-cells = <1>; 130*f126890aSEmmanuel Vadot 131*f126890aSEmmanuel Vadot bootstrap@0 { 132*f126890aSEmmanuel Vadot label = "bootstrap"; 133*f126890aSEmmanuel Vadot reg = <0x0 0x20000>; 134*f126890aSEmmanuel Vadot }; 135*f126890aSEmmanuel Vadot 136*f126890aSEmmanuel Vadot u-boot@20000 { 137*f126890aSEmmanuel Vadot label = "u-boot"; 138*f126890aSEmmanuel Vadot reg = <0x20000 0x140000>; 139*f126890aSEmmanuel Vadot }; 140*f126890aSEmmanuel Vadot 141*f126890aSEmmanuel Vadot u-boot-factory@160000 { 142*f126890aSEmmanuel Vadot label = "u-boot-factory"; 143*f126890aSEmmanuel Vadot reg = <0x160000 0x140000>; 144*f126890aSEmmanuel Vadot }; 145*f126890aSEmmanuel Vadot 146*f126890aSEmmanuel Vadot ubi@2A0000 { 147*f126890aSEmmanuel Vadot label = "ubi"; 148*f126890aSEmmanuel Vadot reg = <0x2A0000 0x7D60000>; 149*f126890aSEmmanuel Vadot }; 150*f126890aSEmmanuel Vadot }; 151*f126890aSEmmanuel Vadot 152*f126890aSEmmanuel Vadot }; 153*f126890aSEmmanuel Vadot}; 154*f126890aSEmmanuel Vadot 155*f126890aSEmmanuel Vadot&rtc { 156*f126890aSEmmanuel Vadot status = "okay"; 157*f126890aSEmmanuel Vadot}; 158*f126890aSEmmanuel Vadot 159*f126890aSEmmanuel Vadot&pioA { 160*f126890aSEmmanuel Vadot pinctrl_ebi_nand_addr: ebi-addr-1 { 161*f126890aSEmmanuel Vadot pinmux = <PIN_PA0__D0>, 162*f126890aSEmmanuel Vadot <PIN_PA1__D1>, 163*f126890aSEmmanuel Vadot <PIN_PA2__D2>, 164*f126890aSEmmanuel Vadot <PIN_PA3__D3>, 165*f126890aSEmmanuel Vadot <PIN_PA4__D4>, 166*f126890aSEmmanuel Vadot <PIN_PA5__D5>, 167*f126890aSEmmanuel Vadot <PIN_PA6__D6>, 168*f126890aSEmmanuel Vadot <PIN_PA7__D7>, 169*f126890aSEmmanuel Vadot <PIN_PA8__NWE_NANDWE>, 170*f126890aSEmmanuel Vadot <PIN_PA9__NCS3>, 171*f126890aSEmmanuel Vadot <PIN_PA10__A21_NANDALE>, 172*f126890aSEmmanuel Vadot <PIN_PA11__A22_NANDCLE>, 173*f126890aSEmmanuel Vadot <PIN_PA21__NANDRDY>; 174*f126890aSEmmanuel Vadot bias-disable; 175*f126890aSEmmanuel Vadot }; 176*f126890aSEmmanuel Vadot 177*f126890aSEmmanuel Vadot pinctrl_usart { 178*f126890aSEmmanuel Vadot pinctrl_usart_0: usart0-0 { 179*f126890aSEmmanuel Vadot pinmux = < PIN_PB26__URXD0>, <PIN_PB27__UTXD0>; 180*f126890aSEmmanuel Vadot bias-disable; 181*f126890aSEmmanuel Vadot }; 182*f126890aSEmmanuel Vadot pinctrl_usart_1: usart1-0 { 183*f126890aSEmmanuel Vadot pinmux = < PIN_PD2__URXD1>, <PIN_PD3__UTXD1>; 184*f126890aSEmmanuel Vadot bias-disable; 185*f126890aSEmmanuel Vadot }; 186*f126890aSEmmanuel Vadot pinctrl_usart_2: usart2-0 { 187*f126890aSEmmanuel Vadot pinmux = < PIN_PD4__URXD2>, <PIN_PD5__UTXD2>; 188*f126890aSEmmanuel Vadot bias-disable; 189*f126890aSEmmanuel Vadot }; 190*f126890aSEmmanuel Vadot pinctrl_usart_3: usart3-0 { 191*f126890aSEmmanuel Vadot pinmux = < PIN_PC12__URXD3>, <PIN_PC13__UTXD3>; 192*f126890aSEmmanuel Vadot bias-disable; 193*f126890aSEmmanuel Vadot }; 194*f126890aSEmmanuel Vadot pinctrl_usart_4: usart4-0 { 195*f126890aSEmmanuel Vadot pinmux = < PIN_PB3__URXD4>, <PIN_PB4__UTXD4>; 196*f126890aSEmmanuel Vadot bias-disable; 197*f126890aSEmmanuel Vadot }; 198*f126890aSEmmanuel Vadot pinctrl_flx0_default: flx0_usart_default { 199*f126890aSEmmanuel Vadot pinmux = <PIN_PB28__FLEXCOM0_IO0>, //TX 200*f126890aSEmmanuel Vadot <PIN_PB29__FLEXCOM0_IO1>; //RX 201*f126890aSEmmanuel Vadot bias-disable; 202*f126890aSEmmanuel Vadot }; 203*f126890aSEmmanuel Vadot pinctrl_flx3_default: flx3_usart_default { 204*f126890aSEmmanuel Vadot pinmux = <PIN_PB22__FLEXCOM3_IO1>, //RX 205*f126890aSEmmanuel Vadot <PIN_PB23__FLEXCOM3_IO0>; //TX 206*f126890aSEmmanuel Vadot bias-disable; 207*f126890aSEmmanuel Vadot }; 208*f126890aSEmmanuel Vadot }; 209*f126890aSEmmanuel Vadot 210*f126890aSEmmanuel Vadot pinctrl_flx4_default: flx4_i2c6_default { 211*f126890aSEmmanuel Vadot pinmux = <PIN_PD12__FLEXCOM4_IO0>, //DATA 212*f126890aSEmmanuel Vadot <PIN_PD13__FLEXCOM4_IO1>; //CLK 213*f126890aSEmmanuel Vadot bias-disable; 214*f126890aSEmmanuel Vadot drive-open-drain; 215*f126890aSEmmanuel Vadot }; 216*f126890aSEmmanuel Vadot 217*f126890aSEmmanuel Vadot pinctrl_pwm0 { 218*f126890aSEmmanuel Vadot pinctrl_pwm0_pwm_h0: pwm0_pwm_h0 { 219*f126890aSEmmanuel Vadot pinmux = <PIN_PA30__PWMH0>; 220*f126890aSEmmanuel Vadot bias-disable; 221*f126890aSEmmanuel Vadot }; 222*f126890aSEmmanuel Vadot pinctrl_pwm0_pwm_h1: pwm0_pwmh1 { 223*f126890aSEmmanuel Vadot pinmux = <PIN_PB0__PWMH1>; 224*f126890aSEmmanuel Vadot bias-disable; 225*f126890aSEmmanuel Vadot }; 226*f126890aSEmmanuel Vadot pinctrl_pwm0_pwm_h2: pwm0_pwm_h2 { 227*f126890aSEmmanuel Vadot pinmux = <PIN_PB5__PWMH2>; 228*f126890aSEmmanuel Vadot bias-disable; 229*f126890aSEmmanuel Vadot }; 230*f126890aSEmmanuel Vadot pinctrl_pwm0_pwm_h3: pwm0_pwm_h3 { 231*f126890aSEmmanuel Vadot pinmux = <PIN_PB7__PWMH3>; 232*f126890aSEmmanuel Vadot bias-disable; 233*f126890aSEmmanuel Vadot }; 234*f126890aSEmmanuel Vadot }; 235*f126890aSEmmanuel Vadot 236*f126890aSEmmanuel Vadot pinctrl_adc { 237*f126890aSEmmanuel Vadot pinctrl_adc2: adc2 { 238*f126890aSEmmanuel Vadot pinmux = <PIN_PD21__GPIO>; 239*f126890aSEmmanuel Vadot bias-disable; 240*f126890aSEmmanuel Vadot }; 241*f126890aSEmmanuel Vadot pinctrl_adc3: adc3 { 242*f126890aSEmmanuel Vadot pinmux = <PIN_PD22__GPIO>; 243*f126890aSEmmanuel Vadot bias-disable; 244*f126890aSEmmanuel Vadot }; 245*f126890aSEmmanuel Vadot pinctrl_adc4: adc4 { 246*f126890aSEmmanuel Vadot pinmux = <PIN_PD23__GPIO>; 247*f126890aSEmmanuel Vadot bias-disable; 248*f126890aSEmmanuel Vadot }; 249*f126890aSEmmanuel Vadot pinctrl_adc5: adc5 { 250*f126890aSEmmanuel Vadot pinmux = <PIN_PD24__GPIO>; 251*f126890aSEmmanuel Vadot bias-disable; 252*f126890aSEmmanuel Vadot }; 253*f126890aSEmmanuel Vadot }; 254*f126890aSEmmanuel Vadot}; 255*f126890aSEmmanuel Vadot 256*f126890aSEmmanuel Vadot&uart0 { 257*f126890aSEmmanuel Vadot pinctrl-names = "default"; 258*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usart_0>; 259*f126890aSEmmanuel Vadot atmel,use-dma-rx; 260*f126890aSEmmanuel Vadot atmel,use-dma-tx; 261*f126890aSEmmanuel Vadot status = "disabled"; 262*f126890aSEmmanuel Vadot}; 263*f126890aSEmmanuel Vadot 264*f126890aSEmmanuel Vadot/* debug uart */ 265*f126890aSEmmanuel Vadot&uart1 { 266*f126890aSEmmanuel Vadot pinctrl-names = "default"; 267*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usart_1>; 268*f126890aSEmmanuel Vadot atmel,use-dma-rx; 269*f126890aSEmmanuel Vadot atmel,use-dma-tx; 270*f126890aSEmmanuel Vadot status = "disabled"; 271*f126890aSEmmanuel Vadot}; 272*f126890aSEmmanuel Vadot 273*f126890aSEmmanuel Vadot&uart2 { 274*f126890aSEmmanuel Vadot pinctrl-names = "default"; 275*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usart_2>; 276*f126890aSEmmanuel Vadot atmel,use-dma-rx; 277*f126890aSEmmanuel Vadot atmel,use-dma-tx; 278*f126890aSEmmanuel Vadot status = "disabled"; 279*f126890aSEmmanuel Vadot}; 280*f126890aSEmmanuel Vadot 281*f126890aSEmmanuel Vadot&uart3 { 282*f126890aSEmmanuel Vadot pinctrl-names = "default"; 283*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usart_3>; 284*f126890aSEmmanuel Vadot atmel,use-dma-rx; 285*f126890aSEmmanuel Vadot atmel,use-dma-tx; 286*f126890aSEmmanuel Vadot status = "disabled"; 287*f126890aSEmmanuel Vadot}; 288*f126890aSEmmanuel Vadot 289*f126890aSEmmanuel Vadot&uart4 { 290*f126890aSEmmanuel Vadot pinctrl-names = "default"; 291*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_usart_4>; 292*f126890aSEmmanuel Vadot atmel,use-dma-rx; 293*f126890aSEmmanuel Vadot atmel,use-dma-tx; 294*f126890aSEmmanuel Vadot status = "disabled"; 295*f126890aSEmmanuel Vadot}; 296*f126890aSEmmanuel Vadot 297*f126890aSEmmanuel Vadot&flx0 { 298*f126890aSEmmanuel Vadot atmel,flexcom-mode = <ATMEL_FLEXCOM_MODE_USART>; 299*f126890aSEmmanuel Vadot status = "disabled"; 300*f126890aSEmmanuel Vadot 301*f126890aSEmmanuel Vadot uart5: serial@200 { 302*f126890aSEmmanuel Vadot pinctrl-names = "default"; 303*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_flx0_default>; 304*f126890aSEmmanuel Vadot atmel,use-dma-rx; 305*f126890aSEmmanuel Vadot atmel,use-dma-tx; 306*f126890aSEmmanuel Vadot status = "disabled"; 307*f126890aSEmmanuel Vadot }; 308*f126890aSEmmanuel Vadot}; 309*f126890aSEmmanuel Vadot 310*f126890aSEmmanuel Vadot&flx3 { 311*f126890aSEmmanuel Vadot atmel,flexcom-mode = <ATMEL_FLEXCOM_MODE_USART>; 312*f126890aSEmmanuel Vadot status = "disabled"; 313*f126890aSEmmanuel Vadot 314*f126890aSEmmanuel Vadot uart8: serial@200 { 315*f126890aSEmmanuel Vadot pinctrl-names = "default"; 316*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_flx3_default>; 317*f126890aSEmmanuel Vadot atmel,use-dma-rx; 318*f126890aSEmmanuel Vadot atmel,use-dma-tx; 319*f126890aSEmmanuel Vadot status = "disabled"; 320*f126890aSEmmanuel Vadot }; 321*f126890aSEmmanuel Vadot}; 322*f126890aSEmmanuel Vadot 323*f126890aSEmmanuel Vadot&flx4 { 324*f126890aSEmmanuel Vadot atmel,flexcom-mode = <ATMEL_FLEXCOM_MODE_TWI>; 325*f126890aSEmmanuel Vadot status = "disabled"; 326*f126890aSEmmanuel Vadot 327*f126890aSEmmanuel Vadot i2c6: i2c@600 { 328*f126890aSEmmanuel Vadot pinctrl-names = "default"; 329*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_flx4_default>; 330*f126890aSEmmanuel Vadot status = "disabled"; 331*f126890aSEmmanuel Vadot }; 332*f126890aSEmmanuel Vadot}; 333*f126890aSEmmanuel Vadot 334*f126890aSEmmanuel Vadot&pwm0 { 335*f126890aSEmmanuel Vadot status = "okay"; 336*f126890aSEmmanuel Vadot}; 337*f126890aSEmmanuel Vadot 338*f126890aSEmmanuel Vadot&shutdown_controller { 339*f126890aSEmmanuel Vadot debounce-delay-us = <976>; 340*f126890aSEmmanuel Vadot atmel,wakeup-rtc-timer; 341*f126890aSEmmanuel Vadot 342*f126890aSEmmanuel Vadot input@0 { 343*f126890aSEmmanuel Vadot reg = <0>; 344*f126890aSEmmanuel Vadot }; 345*f126890aSEmmanuel Vadot}; 346*f126890aSEmmanuel Vadot 347*f126890aSEmmanuel Vadot&watchdog { 348*f126890aSEmmanuel Vadot status = "okay"; 349*f126890aSEmmanuel Vadot}; 350*f126890aSEmmanuel Vadot 351*f126890aSEmmanuel Vadot&adc { 352*f126890aSEmmanuel Vadot pinctrl-names = "default"; 353*f126890aSEmmanuel Vadot pinctrl-0 = <&pinctrl_adc2 354*f126890aSEmmanuel Vadot &pinctrl_adc3 355*f126890aSEmmanuel Vadot &pinctrl_adc4 356*f126890aSEmmanuel Vadot &pinctrl_adc5>; 357*f126890aSEmmanuel Vadot 358*f126890aSEmmanuel Vadot vddana-supply = <&vdd_adc_vddana>; 359*f126890aSEmmanuel Vadot vref-supply = <&vdd_adc_vref>; 360*f126890aSEmmanuel Vadot status = "disabled"; 361*f126890aSEmmanuel Vadot}; 362*f126890aSEmmanuel Vadot 363*f126890aSEmmanuel Vadot&securam { 364*f126890aSEmmanuel Vadot export; 365*f126890aSEmmanuel Vadot 366*f126890aSEmmanuel Vadot /* export overkiz u-boot mode/version and factory */ 367*f126890aSEmmanuel Vadot uboot@1400 { 368*f126890aSEmmanuel Vadot reg = <0x1400 0x20>; 369*f126890aSEmmanuel Vadot export; 370*f126890aSEmmanuel Vadot }; 371*f126890aSEmmanuel Vadot}; 372