-
Notifications
You must be signed in to change notification settings - Fork 793
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'u-boot-rockchip-20210121' of https://gitlab.denx.de/u-boot…
…/custodians/u-boot-rockchip - New board: rk3328 NanoPi R2S board; - Fix init voltage for some rk3399 boards; - enable rng for rk3399 by default; - set default to SPI bus 1 for SPI-flash for some board; - add dwc PCIe controller driver on rockchip platform;
- Loading branch information
Showing
25 changed files
with
1,594 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// SPDX-License-Identifier: GPL-2.0+ | ||
/* | ||
* (C) Copyright 2018-2019 Rockchip Electronics Co., Ltd | ||
* (C) Copyright 2020 David Bauer | ||
*/ | ||
|
||
#include "rk3328-u-boot.dtsi" | ||
#include "rk3328-sdram-ddr4-666.dtsi" | ||
/ { | ||
chosen { | ||
u-boot,spl-boot-order = "same-as-spl", &sdmmc, &emmc; | ||
}; | ||
}; | ||
|
||
&gpio0 { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&pinctrl { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&sdmmc0m1_gpio { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&pcfg_pull_up_4ma { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
/* Need this and all the pinctrl/gpio stuff above to set pinmux */ | ||
&vcc_sd { | ||
u-boot,dm-spl; | ||
}; | ||
|
||
&gmac2io { | ||
snps,reset-gpio = <&gpio1 RK_PC2 GPIO_ACTIVE_LOW>; | ||
snps,reset-active-low; | ||
snps,reset-delays-us = <0 10000 50000>; | ||
}; |
Oops, something went wrong.