mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
Merge tag 'u-boot-rockchip-20200130' of https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip
- Support redundant boot for rk3399 - Support binman for rockchip platform - Update ram driver and add ddr4 support for rk3328
This commit is contained in:
commit
427da6f028
67 changed files with 1467 additions and 843 deletions
40
Makefile
40
Makefile
|
@ -911,8 +911,8 @@ ifeq ($(CONFIG_MPC85xx)$(CONFIG_OF_SEPARATE),yy)
|
||||||
ALL-y += u-boot-with-dtb.bin
|
ALL-y += u-boot-with-dtb.bin
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_ARCH_ROCKCHIP)$(CONFIG_SPL)$(CONFIG_TPL),yyy)
|
ifeq ($(CONFIG_ARCH_ROCKCHIP)$(CONFIG_SPL),yy)
|
||||||
ALL-y += idbloader.img
|
ALL-y += u-boot-rockchip.bin
|
||||||
endif
|
endif
|
||||||
|
|
||||||
LDFLAGS_u-boot += $(LDFLAGS_FINAL)
|
LDFLAGS_u-boot += $(LDFLAGS_FINAL)
|
||||||
|
@ -1378,13 +1378,39 @@ u-boot-with-spl.bin: $(SPL_IMAGE) $(SPL_PAYLOAD) FORCE
|
||||||
$(call if_changed,pad_cat)
|
$(call if_changed,pad_cat)
|
||||||
|
|
||||||
ifeq ($(CONFIG_ARCH_ROCKCHIP),y)
|
ifeq ($(CONFIG_ARCH_ROCKCHIP),y)
|
||||||
MKIMAGEFLAGS_u-boot-tpl.img = -n $(CONFIG_SYS_SOC) -T rksd
|
|
||||||
tpl/u-boot-tpl.img: tpl/u-boot-tpl.bin FORCE
|
# rockchip image type
|
||||||
$(call if_changed,mkimage)
|
ifeq ($(CONFIG_SPL_SPI_LOAD),y)
|
||||||
idbloader.img: tpl/u-boot-tpl.img spl/u-boot-spl.bin FORCE
|
ROCKCHIP_IMG_TYPE := rkspi
|
||||||
$(call if_changed,cat)
|
else
|
||||||
|
ROCKCHIP_IMG_TYPE := rksd
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# TPL + SPL
|
||||||
|
ifeq ($(CONFIG_SPL)$(CONFIG_TPL),yy)
|
||||||
|
MKIMAGEFLAGS_u-boot-tpl-rockchip.bin = -n $(CONFIG_SYS_SOC) -T $(ROCKCHIP_IMG_TYPE)
|
||||||
|
tpl/u-boot-tpl-rockchip.bin: tpl/u-boot-tpl.bin FORCE
|
||||||
|
$(call if_changed,mkimage)
|
||||||
|
idbloader.img: tpl/u-boot-tpl-rockchip.bin spl/u-boot-spl.bin FORCE
|
||||||
|
$(call if_changed,cat)
|
||||||
|
else
|
||||||
|
MKIMAGEFLAGS_idbloader.img = -n $(CONFIG_SYS_SOC) -T $(ROCKCHIP_IMG_TYPE)
|
||||||
|
idbloader.img: spl/u-boot-spl.bin FORCE
|
||||||
|
$(call if_changed,mkimage)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_ARM64),)
|
||||||
|
u-boot-rockchip.bin: idbloader.img u-boot.img FORCE
|
||||||
|
$(call if_changed,binman)
|
||||||
|
else
|
||||||
|
OBJCOPYFLAGS_u-boot-rockchip.bin = -I binary -O binary \
|
||||||
|
--pad-to=$(CONFIG_SPL_PAD_TO) --gap-fill=0xff
|
||||||
|
u-boot-rockchip.bin: idbloader.img u-boot.itb FORCE
|
||||||
|
$(call if_changed,pad_cat)
|
||||||
|
endif # CONFIG_ARM64
|
||||||
|
|
||||||
|
endif # CONFIG_ARCH_ROCKCHIP
|
||||||
|
|
||||||
ifeq ($(CONFIG_ARCH_LPC32XX)$(CONFIG_SPL),yy)
|
ifeq ($(CONFIG_ARCH_LPC32XX)$(CONFIG_SPL),yy)
|
||||||
MKIMAGEFLAGS_lpc32xx-spl.img = -T lpc32xximage -a $(CONFIG_SPL_TEXT_BASE)
|
MKIMAGEFLAGS_lpc32xx-spl.img = -T lpc32xximage -a $(CONFIG_SPL_TEXT_BASE)
|
||||||
|
|
||||||
|
|
|
@ -1626,6 +1626,7 @@ config ARCH_STM32MP
|
||||||
config ARCH_ROCKCHIP
|
config ARCH_ROCKCHIP
|
||||||
bool "Support Rockchip SoCs"
|
bool "Support Rockchip SoCs"
|
||||||
select BLK
|
select BLK
|
||||||
|
select BINMAN if !ARM64
|
||||||
select DM
|
select DM
|
||||||
select DM_GPIO
|
select DM_GPIO
|
||||||
select DM_I2C
|
select DM_I2C
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#include "rk3036-u-boot.dtsi"
|
||||||
|
|
||||||
&uart2 {
|
&uart2 {
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-pre-reloc;
|
||||||
};
|
};
|
||||||
|
|
6
arch/arm/dts/rk3036-u-boot.dtsi
Normal file
6
arch/arm/dts/rk3036-u-boot.dtsi
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
// SPDX-License-Identifier: GPL-2.0+
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2019 Jagan Teki <jagan@amarulasolutions.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "rockchip-u-boot.dtsi"
|
|
@ -3,6 +3,8 @@
|
||||||
* Copyright (c) 2018 Fuzhou Rockchip Electronics Co., Ltd.
|
* Copyright (c) 2018 Fuzhou Rockchip Electronics Co., Ltd.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "rk3188-u-boot.dtsi"
|
||||||
|
|
||||||
&cru {
|
&cru {
|
||||||
u-boot,dm-spl;
|
u-boot,dm-spl;
|
||||||
};
|
};
|
||||||
|
|
6
arch/arm/dts/rk3188-u-boot.dtsi
Normal file
6
arch/arm/dts/rk3188-u-boot.dtsi
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
// SPDX-License-Identifier: GPL-2.0+
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2019 Jagan Teki <jagan@amarulasolutions.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "rockchip-u-boot.dtsi"
|
|
@ -3,6 +3,8 @@
|
||||||
* Copyright (C) 2019 Rockchip Electronics Co., Ltd
|
* Copyright (C) 2019 Rockchip Electronics Co., Ltd
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "rockchip-u-boot.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
chosen {
|
chosen {
|
||||||
u-boot,spl-boot-order = \
|
u-boot,spl-boot-order = \
|
||||||
|
|
|
@ -3,6 +3,13 @@
|
||||||
*(C) Copyright 2019 Rockchip Electronics Co., Ltd
|
*(C) Copyright 2019 Rockchip Electronics Co., Ltd
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/ {
|
||||||
|
aliases {
|
||||||
|
mmc0 = &emmc;
|
||||||
|
mmc1 = &sdmmc;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
&cru {
|
&cru {
|
||||||
u-boot,dm-pre-reloc;
|
u-boot,dm-pre-reloc;
|
||||||
};
|
};
|
||||||
|
|
216
arch/arm/dts/rk3328-sdram-ddr4-666.dtsi
Normal file
216
arch/arm/dts/rk3328-sdram-ddr4-666.dtsi
Normal file
|
@ -0,0 +1,216 @@
|
||||||
|
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||||
|
// Copyright (c) 2018 Fuzhou Rockchip Electronics Co., Ltd.
|
||||||
|
|
||||||
|
&dmc {
|
||||||
|
rockchip,sdram-params = <
|
||||||
|
0x1
|
||||||
|
0xA
|
||||||
|
0x2
|
||||||
|
0x1
|
||||||
|
0x0
|
||||||
|
0x0
|
||||||
|
0x11
|
||||||
|
0x0
|
||||||
|
0x11
|
||||||
|
0x0
|
||||||
|
0
|
||||||
|
|
||||||
|
0x94291288
|
||||||
|
0x00000000
|
||||||
|
0x00000027
|
||||||
|
0x00000462
|
||||||
|
0x00000015
|
||||||
|
0x00000242
|
||||||
|
0x000000ff
|
||||||
|
|
||||||
|
333
|
||||||
|
0
|
||||||
|
1
|
||||||
|
0
|
||||||
|
0
|
||||||
|
|
||||||
|
0x00000000
|
||||||
|
0x43049010
|
||||||
|
0x00000064
|
||||||
|
0x0028003b
|
||||||
|
0x000000d0
|
||||||
|
0x00020053
|
||||||
|
0x000000d4
|
||||||
|
0x00220000
|
||||||
|
0x000000d8
|
||||||
|
0x00000100
|
||||||
|
0x000000dc
|
||||||
|
0x00040000
|
||||||
|
0x000000e0
|
||||||
|
0x00000000
|
||||||
|
0x000000e4
|
||||||
|
0x00110000
|
||||||
|
0x000000e8
|
||||||
|
0x00000420
|
||||||
|
0x000000ec
|
||||||
|
0x00000400
|
||||||
|
0x000000f4
|
||||||
|
0x000f011f
|
||||||
|
0x00000100
|
||||||
|
0x09060b06
|
||||||
|
0x00000104
|
||||||
|
0x00020209
|
||||||
|
0x00000108
|
||||||
|
0x0505040a
|
||||||
|
0x0000010c
|
||||||
|
0x0040400c
|
||||||
|
0x00000110
|
||||||
|
0x05030206
|
||||||
|
0x00000114
|
||||||
|
0x03030202
|
||||||
|
0x00000120
|
||||||
|
0x03030b03
|
||||||
|
0x00000124
|
||||||
|
0x00020208
|
||||||
|
0x00000180
|
||||||
|
0x01000040
|
||||||
|
0x00000184
|
||||||
|
0x00000000
|
||||||
|
0x00000190
|
||||||
|
0x07030003
|
||||||
|
0x00000198
|
||||||
|
0x05001100
|
||||||
|
0x000001a0
|
||||||
|
0xc0400003
|
||||||
|
0x00000240
|
||||||
|
0x06000604
|
||||||
|
0x00000244
|
||||||
|
0x00000201
|
||||||
|
0x00000250
|
||||||
|
0x00000f00
|
||||||
|
0x00000490
|
||||||
|
0x00000001
|
||||||
|
0xffffffff
|
||||||
|
0xffffffff
|
||||||
|
0xffffffff
|
||||||
|
0xffffffff
|
||||||
|
|
||||||
|
0x00000004
|
||||||
|
0x0000000c
|
||||||
|
0x00000028
|
||||||
|
0x0000000a
|
||||||
|
0x0000002c
|
||||||
|
0x00000000
|
||||||
|
0x00000030
|
||||||
|
0x00000009
|
||||||
|
0xffffffff
|
||||||
|
0xffffffff
|
||||||
|
|
||||||
|
0x77
|
||||||
|
0x88
|
||||||
|
0x79
|
||||||
|
0x79
|
||||||
|
0x87
|
||||||
|
0x97
|
||||||
|
0x87
|
||||||
|
0x78
|
||||||
|
0x77
|
||||||
|
0x78
|
||||||
|
0x87
|
||||||
|
0x88
|
||||||
|
0x87
|
||||||
|
0x87
|
||||||
|
0x77
|
||||||
|
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x69
|
||||||
|
0x9
|
||||||
|
|
||||||
|
0x77
|
||||||
|
0x78
|
||||||
|
0x77
|
||||||
|
0x78
|
||||||
|
0x77
|
||||||
|
0x78
|
||||||
|
0x77
|
||||||
|
0x78
|
||||||
|
0x77
|
||||||
|
0x79
|
||||||
|
0x9
|
||||||
|
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x69
|
||||||
|
0x9
|
||||||
|
|
||||||
|
0x77
|
||||||
|
0x78
|
||||||
|
0x77
|
||||||
|
0x77
|
||||||
|
0x77
|
||||||
|
0x77
|
||||||
|
0x77
|
||||||
|
0x77
|
||||||
|
0x77
|
||||||
|
0x79
|
||||||
|
0x9
|
||||||
|
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x69
|
||||||
|
0x9
|
||||||
|
|
||||||
|
0x77
|
||||||
|
0x78
|
||||||
|
0x77
|
||||||
|
0x78
|
||||||
|
0x77
|
||||||
|
0x78
|
||||||
|
0x77
|
||||||
|
0x78
|
||||||
|
0x77
|
||||||
|
0x79
|
||||||
|
0x9
|
||||||
|
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x78
|
||||||
|
0x69
|
||||||
|
0x9
|
||||||
|
|
||||||
|
0x77
|
||||||
|
0x78
|
||||||
|
0x77
|
||||||
|
0x77
|
||||||
|
0x77
|
||||||
|
0x77
|
||||||
|
0x77
|
||||||
|
0x77
|
||||||
|
0x77
|
||||||
|
0x79
|
||||||
|
0x9
|
||||||
|
>;
|
||||||
|
};
|
|
@ -18,7 +18,7 @@
|
||||||
0x10
|
0x10
|
||||||
0
|
0
|
||||||
|
|
||||||
0x0c48a18a
|
0x8c48a18a
|
||||||
0x00000000
|
0x00000000
|
||||||
0x00000021
|
0x00000021
|
||||||
0x00000482
|
0x00000482
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
0
|
0
|
||||||
|
|
||||||
0x00000000
|
0x00000000
|
||||||
0xc3040008
|
0x43041008
|
||||||
0x00000064
|
0x00000064
|
||||||
0x00140023
|
0x00140023
|
||||||
0x000000d0
|
0x000000d0
|
||||||
|
@ -48,6 +48,8 @@
|
||||||
0x00010000
|
0x00010000
|
||||||
0x000000e4
|
0x000000e4
|
||||||
0x00070003
|
0x00070003
|
||||||
|
0x000000f4
|
||||||
|
0x000f011f
|
||||||
0x00000100
|
0x00000100
|
||||||
0x06090b07
|
0x06090b07
|
||||||
0x00000104
|
0x00000104
|
||||||
|
@ -90,8 +92,6 @@
|
||||||
0xffffffff
|
0xffffffff
|
||||||
0xffffffff
|
0xffffffff
|
||||||
0xffffffff
|
0xffffffff
|
||||||
0xffffffff
|
|
||||||
0xffffffff
|
|
||||||
|
|
||||||
0x00000004
|
0x00000004
|
||||||
0x0000000b
|
0x0000000b
|
||||||
|
|
|
@ -7,6 +7,10 @@
|
||||||
#include "rk3399-sdram-lpddr4-100.dtsi"
|
#include "rk3399-sdram-lpddr4-100.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
|
aliases {
|
||||||
|
spi0 = &spi1;
|
||||||
|
};
|
||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
u-boot,spl-boot-order = "same-as-spl", &sdhci, &sdmmc;
|
u-boot,spl-boot-order = "same-as-spl", &sdhci, &sdmmc;
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,677 +4,10 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/dts-v1/;
|
/dts-v1/;
|
||||||
#include <dt-bindings/pwm/pwm.h>
|
#include "rk3399-roc-pc.dtsi"
|
||||||
#include "rk3399.dtsi"
|
|
||||||
#include "rk3399-opp.dtsi"
|
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
model = "Firefly ROC-RK3399-PC Board";
|
model = "Firefly ROC-RK3399-PC Board";
|
||||||
compatible = "firefly,roc-rk3399-pc", "rockchip,rk3399";
|
compatible = "libretech,roc-rk3399-pc", "firefly,roc-rk3399-pc",
|
||||||
|
"rockchip,rk3399";
|
||||||
chosen {
|
|
||||||
stdout-path = "serial2:1500000n8";
|
|
||||||
};
|
|
||||||
|
|
||||||
backlight: backlight {
|
|
||||||
compatible = "pwm-backlight";
|
|
||||||
pwms = <&pwm0 0 25000 0>;
|
|
||||||
};
|
|
||||||
|
|
||||||
clkin_gmac: external-gmac-clock {
|
|
||||||
compatible = "fixed-clock";
|
|
||||||
clock-frequency = <125000000>;
|
|
||||||
clock-output-names = "clkin_gmac";
|
|
||||||
#clock-cells = <0>;
|
|
||||||
};
|
|
||||||
|
|
||||||
sdio_pwrseq: sdio-pwrseq {
|
|
||||||
compatible = "mmc-pwrseq-simple";
|
|
||||||
clocks = <&rk808 1>;
|
|
||||||
clock-names = "ext_clock";
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&wifi_enable_h>;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* On the module itself this is one of these (depending
|
|
||||||
* on the actual card populated):
|
|
||||||
* - SDIO_RESET_L_WL_REG_ON
|
|
||||||
* - PDN (power down when low)
|
|
||||||
*/
|
|
||||||
reset-gpios = <&gpio0 RK_PB2 GPIO_ACTIVE_LOW>;
|
|
||||||
};
|
|
||||||
|
|
||||||
vcc_vbus_typec0: vcc-vbus-typec0 {
|
|
||||||
compatible = "regulator-fixed";
|
|
||||||
regulator-name = "vcc_vbus_typec0";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <5000000>;
|
|
||||||
regulator-max-microvolt = <5000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* should be placed inside mp8859, but not until mp8859 has
|
|
||||||
* its own dt-binding.
|
|
||||||
*/
|
|
||||||
dc_12v: mp8859-dcdc1 {
|
|
||||||
compatible = "regulator-fixed";
|
|
||||||
regulator-name = "dc_12v";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <12000000>;
|
|
||||||
regulator-max-microvolt = <12000000>;
|
|
||||||
vin-supply = <&vcc_vbus_typec0>;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* switched by pmic_sleep */
|
|
||||||
vcc1v8_s3: vcca1v8_s3: vcc1v8-s3 {
|
|
||||||
compatible = "regulator-fixed";
|
|
||||||
regulator-name = "vcc1v8_s3";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <1800000>;
|
|
||||||
regulator-max-microvolt = <1800000>;
|
|
||||||
vin-supply = <&vcc_1v8>;
|
|
||||||
};
|
|
||||||
|
|
||||||
vcc3v3_sys: vcc3v3-sys {
|
|
||||||
compatible = "regulator-fixed";
|
|
||||||
regulator-name = "vcc3v3_sys";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <3300000>;
|
|
||||||
regulator-max-microvolt = <3300000>;
|
|
||||||
vin-supply = <&vcc_sys>;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Actually 3 regulators (host0, 1, 2) controlled by the same gpio */
|
|
||||||
vcc5v0_host: vcc5v0-host-regulator {
|
|
||||||
compatible = "regulator-fixed";
|
|
||||||
enable-active-high;
|
|
||||||
gpio = <&gpio1 RK_PA0 GPIO_ACTIVE_HIGH>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&vcc5v0_host_en &hub_rst>;
|
|
||||||
regulator-name = "vcc5v0_host";
|
|
||||||
regulator-always-on;
|
|
||||||
vin-supply = <&vcc_sys>;
|
|
||||||
};
|
|
||||||
|
|
||||||
vcc_vbus_typec1: vcc-vbus-typec1 {
|
|
||||||
compatible = "regulator-fixed";
|
|
||||||
enable-active-high;
|
|
||||||
gpio = <&gpio1 RK_PB5 GPIO_ACTIVE_HIGH>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&vcc_vbus_typec1_en>;
|
|
||||||
regulator-name = "vcc_vbus_typec1";
|
|
||||||
regulator-always-on;
|
|
||||||
vin-supply = <&vcc_sys>;
|
|
||||||
};
|
|
||||||
|
|
||||||
vcc_sys: vcc-sys {
|
|
||||||
compatible = "regulator-fixed";
|
|
||||||
regulator-name = "vcc_sys";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <5000000>;
|
|
||||||
regulator-max-microvolt = <5000000>;
|
|
||||||
vin-supply = <&dc_12v>;
|
|
||||||
};
|
|
||||||
|
|
||||||
vdd_log: vdd-log {
|
|
||||||
compatible = "pwm-regulator";
|
|
||||||
pwms = <&pwm2 0 25000 1>;
|
|
||||||
regulator-name = "vdd_log";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <800000>;
|
|
||||||
regulator-max-microvolt = <1400000>;
|
|
||||||
vin-supply = <&vcc_sys>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&cpu_l0 {
|
|
||||||
cpu-supply = <&vdd_cpu_l>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&cpu_l1 {
|
|
||||||
cpu-supply = <&vdd_cpu_l>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&cpu_l2 {
|
|
||||||
cpu-supply = <&vdd_cpu_l>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&cpu_l3 {
|
|
||||||
cpu-supply = <&vdd_cpu_l>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&cpu_b0 {
|
|
||||||
cpu-supply = <&vdd_cpu_b>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&cpu_b1 {
|
|
||||||
cpu-supply = <&vdd_cpu_b>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&emmc_phy {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&gmac {
|
|
||||||
assigned-clocks = <&cru SCLK_RMII_SRC>;
|
|
||||||
assigned-clock-parents = <&clkin_gmac>;
|
|
||||||
clock_in_out = "input";
|
|
||||||
phy-supply = <&vcc_lan>;
|
|
||||||
phy-mode = "rgmii";
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&rgmii_pins>;
|
|
||||||
snps,reset-gpio = <&gpio3 RK_PB7 GPIO_ACTIVE_LOW>;
|
|
||||||
snps,reset-active-low;
|
|
||||||
snps,reset-delays-us = <0 10000 50000>;
|
|
||||||
tx_delay = <0x28>;
|
|
||||||
rx_delay = <0x11>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&hdmi {
|
|
||||||
ddc-i2c-bus = <&i2c3>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&hdmi_cec>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&i2c0 {
|
|
||||||
clock-frequency = <400000>;
|
|
||||||
i2c-scl-rising-time-ns = <168>;
|
|
||||||
i2c-scl-falling-time-ns = <4>;
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
rk808: pmic@1b {
|
|
||||||
compatible = "rockchip,rk808";
|
|
||||||
reg = <0x1b>;
|
|
||||||
interrupt-parent = <&gpio1>;
|
|
||||||
interrupts = <21 IRQ_TYPE_LEVEL_LOW>;
|
|
||||||
#clock-cells = <1>;
|
|
||||||
clock-output-names = "xin32k", "rk808-clkout2";
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&pmic_int_l>;
|
|
||||||
rockchip,system-power-controller;
|
|
||||||
wakeup-source;
|
|
||||||
|
|
||||||
vcc1-supply = <&vcc_sys>;
|
|
||||||
vcc2-supply = <&vcc_sys>;
|
|
||||||
vcc3-supply = <&vcc_sys>;
|
|
||||||
vcc4-supply = <&vcc_sys>;
|
|
||||||
vcc6-supply = <&vcc_sys>;
|
|
||||||
vcc7-supply = <&vcc_sys>;
|
|
||||||
vcc8-supply = <&vcc3v3_sys>;
|
|
||||||
vcc9-supply = <&vcc_sys>;
|
|
||||||
vcc10-supply = <&vcc_sys>;
|
|
||||||
vcc11-supply = <&vcc_sys>;
|
|
||||||
vcc12-supply = <&vcc3v3_sys>;
|
|
||||||
vddio-supply = <&vcc1v8_pmu>;
|
|
||||||
|
|
||||||
regulators {
|
|
||||||
vdd_center: DCDC_REG1 {
|
|
||||||
regulator-name = "vdd_center";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <750000>;
|
|
||||||
regulator-max-microvolt = <1350000>;
|
|
||||||
regulator-ramp-delay = <6001>;
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-off-in-suspend;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vdd_cpu_l: DCDC_REG2 {
|
|
||||||
regulator-name = "vdd_cpu_l";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <750000>;
|
|
||||||
regulator-max-microvolt = <1350000>;
|
|
||||||
regulator-ramp-delay = <6001>;
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-off-in-suspend;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vcc_ddr: DCDC_REG3 {
|
|
||||||
regulator-name = "vcc_ddr";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-on-in-suspend;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vcc_1v8: DCDC_REG4 {
|
|
||||||
regulator-name = "vcc_1v8";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <1800000>;
|
|
||||||
regulator-max-microvolt = <1800000>;
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-on-in-suspend;
|
|
||||||
regulator-suspend-microvolt = <1800000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vcca1v8_codec: LDO_REG1 {
|
|
||||||
regulator-name = "vcca1v8_codec";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <1800000>;
|
|
||||||
regulator-max-microvolt = <1800000>;
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-off-in-suspend;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vcc1v8_hdmi: LDO_REG2 {
|
|
||||||
regulator-name = "vcc1v8_hdmi";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <1800000>;
|
|
||||||
regulator-max-microvolt = <1800000>;
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-off-in-suspend;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vcc1v8_pmu: LDO_REG3 {
|
|
||||||
regulator-name = "vcc1v8_pmu";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <1800000>;
|
|
||||||
regulator-max-microvolt = <1800000>;
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-on-in-suspend;
|
|
||||||
regulator-suspend-microvolt = <1800000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vcc_sdio: LDO_REG4 {
|
|
||||||
regulator-name = "vcc_sdio";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <1800000>;
|
|
||||||
regulator-max-microvolt = <3000000>;
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-on-in-suspend;
|
|
||||||
regulator-suspend-microvolt = <3000000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vcca3v0_codec: LDO_REG5 {
|
|
||||||
regulator-name = "vcca3v0_codec";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <3000000>;
|
|
||||||
regulator-max-microvolt = <3000000>;
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-off-in-suspend;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vcc_1v5: LDO_REG6 {
|
|
||||||
regulator-name = "vcc_1v5";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <1500000>;
|
|
||||||
regulator-max-microvolt = <1500000>;
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-on-in-suspend;
|
|
||||||
regulator-suspend-microvolt = <1500000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vcca0v9_hdmi: LDO_REG7 {
|
|
||||||
regulator-name = "vcca0v9_hdmi";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <900000>;
|
|
||||||
regulator-max-microvolt = <900000>;
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-off-in-suspend;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vcc_3v0: LDO_REG8 {
|
|
||||||
regulator-name = "vcc_3v0";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-min-microvolt = <3000000>;
|
|
||||||
regulator-max-microvolt = <3000000>;
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-on-in-suspend;
|
|
||||||
regulator-suspend-microvolt = <3000000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vcc3v3_s3: vcc_lan: SWITCH_REG1 {
|
|
||||||
regulator-name = "vcc3v3_s3";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-off-in-suspend;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vcc3v3_s0: SWITCH_REG2 {
|
|
||||||
regulator-name = "vcc3v3_s0";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-off-in-suspend;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vdd_cpu_b: regulator@40 {
|
|
||||||
compatible = "silergy,syr827";
|
|
||||||
reg = <0x40>;
|
|
||||||
fcs,suspend-voltage-selector = <1>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&vsel1_gpio>;
|
|
||||||
regulator-name = "vdd_cpu_b";
|
|
||||||
regulator-min-microvolt = <712500>;
|
|
||||||
regulator-max-microvolt = <1500000>;
|
|
||||||
regulator-ramp-delay = <1000>;
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
vin-supply = <&vcc_sys>;
|
|
||||||
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-off-in-suspend;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vdd_gpu: regulator@41 {
|
|
||||||
compatible = "silergy,syr828";
|
|
||||||
reg = <0x41>;
|
|
||||||
fcs,suspend-voltage-selector = <1>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&vsel2_gpio>;
|
|
||||||
regulator-name = "vdd_gpu";
|
|
||||||
regulator-min-microvolt = <712500>;
|
|
||||||
regulator-max-microvolt = <1500000>;
|
|
||||||
regulator-ramp-delay = <1000>;
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
vin-supply = <&vcc_sys>;
|
|
||||||
|
|
||||||
regulator-state-mem {
|
|
||||||
regulator-off-in-suspend;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&i2c1 {
|
|
||||||
i2c-scl-rising-time-ns = <300>;
|
|
||||||
i2c-scl-falling-time-ns = <15>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&i2c3 {
|
|
||||||
i2c-scl-rising-time-ns = <450>;
|
|
||||||
i2c-scl-falling-time-ns = <15>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&i2c4 {
|
|
||||||
i2c-scl-rising-time-ns = <600>;
|
|
||||||
i2c-scl-falling-time-ns = <20>;
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
fusb1: usb-typec@22 {
|
|
||||||
compatible = "fcs,fusb302";
|
|
||||||
reg = <0x22>;
|
|
||||||
interrupt-parent = <&gpio1>;
|
|
||||||
interrupts = <1 IRQ_TYPE_LEVEL_LOW>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&fusb1_int>;
|
|
||||||
vbus-supply = <&vcc_vbus_typec1>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&i2c7 {
|
|
||||||
i2c-scl-rising-time-ns = <600>;
|
|
||||||
i2c-scl-falling-time-ns = <20>;
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
fusb0: usb-typec@22 {
|
|
||||||
compatible = "fcs,fusb302";
|
|
||||||
reg = <0x22>;
|
|
||||||
interrupt-parent = <&gpio1>;
|
|
||||||
interrupts = <2 IRQ_TYPE_LEVEL_LOW>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&fusb0_int>;
|
|
||||||
vbus-supply = <&vcc_vbus_typec0>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&i2s0 {
|
|
||||||
rockchip,playback-channels = <8>;
|
|
||||||
rockchip,capture-channels = <8>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&i2s1 {
|
|
||||||
rockchip,playback-channels = <2>;
|
|
||||||
rockchip,capture-channels = <2>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&i2s2 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&io_domains {
|
|
||||||
audio-supply = <&vcca1v8_codec>;
|
|
||||||
bt656-supply = <&vcc_3v0>;
|
|
||||||
gpio1830-supply = <&vcc_3v0>;
|
|
||||||
sdmmc-supply = <&vcc_sdio>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pmu_io_domains {
|
|
||||||
pmu1830-supply = <&vcc_3v0>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pinctrl {
|
|
||||||
lcd-panel {
|
|
||||||
lcd_panel_reset: lcd-panel-reset {
|
|
||||||
rockchip,pins = <4 RK_PD6 RK_FUNC_GPIO &pcfg_pull_up>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
pmic {
|
|
||||||
vsel1_gpio: vsel1-gpio {
|
|
||||||
rockchip,pins = <1 RK_PC2 RK_FUNC_GPIO &pcfg_pull_down>;
|
|
||||||
};
|
|
||||||
|
|
||||||
vsel2_gpio: vsel2-gpio {
|
|
||||||
rockchip,pins = <1 RK_PB6 RK_FUNC_GPIO &pcfg_pull_down>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
sdio-pwrseq {
|
|
||||||
wifi_enable_h: wifi-enable-h {
|
|
||||||
rockchip,pins = <0 RK_PB2 RK_FUNC_GPIO &pcfg_pull_none>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
pmic {
|
|
||||||
pmic_int_l: pmic-int-l {
|
|
||||||
rockchip,pins = <1 RK_PC5 RK_FUNC_GPIO &pcfg_pull_up>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
usb2 {
|
|
||||||
vcc5v0_host_en: vcc5v0-host-en {
|
|
||||||
rockchip,pins = <1 RK_PA0 RK_FUNC_GPIO &pcfg_pull_none>;
|
|
||||||
};
|
|
||||||
|
|
||||||
hub_rst: hub-rst {
|
|
||||||
rockchip,pins = <2 RK_PA4 RK_FUNC_GPIO &pcfg_output_high>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
usb-typec {
|
|
||||||
vcc_vbus_typec1_en: vcc-vbus-typec1-en {
|
|
||||||
rockchip,pins = <1 RK_PB5 RK_FUNC_GPIO &pcfg_pull_none>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
fusb30x {
|
|
||||||
fusb0_int: fusb0-int {
|
|
||||||
rockchip,pins = <1 RK_PA2 RK_FUNC_GPIO &pcfg_pull_up>;
|
|
||||||
};
|
|
||||||
|
|
||||||
fusb1_int: fusb1-int {
|
|
||||||
rockchip,pins = <1 RK_PA1 RK_FUNC_GPIO &pcfg_pull_up>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pwm0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&pwm2 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&saradc {
|
|
||||||
vref-supply = <&vcca1v8_s3>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&sdmmc {
|
|
||||||
bus-width = <4>;
|
|
||||||
cap-mmc-highspeed;
|
|
||||||
cap-sd-highspeed;
|
|
||||||
cd-gpios = <&gpio0 RK_PA7 GPIO_ACTIVE_LOW>;
|
|
||||||
disable-wp;
|
|
||||||
max-frequency = <150000000>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&sdmmc_clk &sdmmc_cmd &sdmmc_bus4>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&sdhci {
|
|
||||||
bus-width = <8>;
|
|
||||||
mmc-hs400-1_8v;
|
|
||||||
mmc-hs400-enhanced-strobe;
|
|
||||||
non-removable;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&tcphy0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&tcphy1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&tsadc {
|
|
||||||
/* tshut mode 0:CRU 1:GPIO */
|
|
||||||
rockchip,hw-tshut-mode = <1>;
|
|
||||||
/* tshut polarity 0:LOW 1:HIGH */
|
|
||||||
rockchip,hw-tshut-polarity = <1>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&u2phy0 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
u2phy0_otg: otg-port {
|
|
||||||
phy-supply = <&vcc_vbus_typec0>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
u2phy0_host: host-port {
|
|
||||||
phy-supply = <&vcc5v0_host>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&u2phy1 {
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
u2phy1_otg: otg-port {
|
|
||||||
phy-supply = <&vcc_vbus_typec1>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
u2phy1_host: host-port {
|
|
||||||
phy-supply = <&vcc5v0_host>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&uart0 {
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&uart0_xfer &uart0_cts>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&uart2 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb_host0_ehci {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb_host0_ohci {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb_host1_ehci {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb_host1_ohci {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usbdrd3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usbdrd_dwc3_0 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usbdrd3_1 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usbdrd_dwc3_1 {
|
|
||||||
status = "okay";
|
|
||||||
dr_mode = "host";
|
|
||||||
};
|
|
||||||
|
|
||||||
&vopb {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&vopb_mmu {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&vopl {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&vopl_mmu {
|
|
||||||
status = "okay";
|
|
||||||
};
|
};
|
||||||
|
|
813
arch/arm/dts/rk3399-roc-pc.dtsi
Normal file
813
arch/arm/dts/rk3399-roc-pc.dtsi
Normal file
|
@ -0,0 +1,813 @@
|
||||||
|
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2017 T-Chip Intelligent Technology Co., Ltd
|
||||||
|
*/
|
||||||
|
|
||||||
|
/dts-v1/;
|
||||||
|
#include <dt-bindings/input/linux-event-codes.h>
|
||||||
|
#include <dt-bindings/pwm/pwm.h>
|
||||||
|
#include "rk3399.dtsi"
|
||||||
|
#include "rk3399-opp.dtsi"
|
||||||
|
|
||||||
|
/ {
|
||||||
|
model = "Firefly ROC-RK3399-PC Board";
|
||||||
|
compatible = "firefly,roc-rk3399-pc", "rockchip,rk3399";
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
stdout-path = "serial2:1500000n8";
|
||||||
|
};
|
||||||
|
|
||||||
|
backlight: backlight {
|
||||||
|
compatible = "pwm-backlight";
|
||||||
|
pwms = <&pwm0 0 25000 0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
clkin_gmac: external-gmac-clock {
|
||||||
|
compatible = "fixed-clock";
|
||||||
|
clock-frequency = <125000000>;
|
||||||
|
clock-output-names = "clkin_gmac";
|
||||||
|
#clock-cells = <0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
adc-keys {
|
||||||
|
compatible = "adc-keys";
|
||||||
|
io-channels = <&saradc 1>;
|
||||||
|
io-channel-names = "buttons";
|
||||||
|
keyup-threshold-microvolt = <1500000>;
|
||||||
|
poll-interval = <100>;
|
||||||
|
|
||||||
|
recovery {
|
||||||
|
label = "Recovery";
|
||||||
|
linux,code = <KEY_VENDOR>;
|
||||||
|
press-threshold-microvolt = <18000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio-keys {
|
||||||
|
compatible = "gpio-keys";
|
||||||
|
autorepeat;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&pwr_key_l>;
|
||||||
|
|
||||||
|
power {
|
||||||
|
debounce-interval = <100>;
|
||||||
|
gpios = <&gpio0 RK_PA5 GPIO_ACTIVE_LOW>;
|
||||||
|
label = "GPIO Key Power";
|
||||||
|
linux,code = <KEY_POWER>;
|
||||||
|
wakeup-source;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
leds {
|
||||||
|
compatible = "gpio-leds";
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&work_led_gpio>, <&diy_led_gpio>, <&yellow_led_gpio>;
|
||||||
|
|
||||||
|
work-led {
|
||||||
|
label = "green:work";
|
||||||
|
gpios = <&gpio2 RK_PD3 GPIO_ACTIVE_HIGH>;
|
||||||
|
default-state = "on";
|
||||||
|
linux,default-trigger = "heartbeat";
|
||||||
|
};
|
||||||
|
|
||||||
|
diy-led {
|
||||||
|
label = "red:diy";
|
||||||
|
gpios = <&gpio0 RK_PB5 GPIO_ACTIVE_HIGH>;
|
||||||
|
default-state = "off";
|
||||||
|
linux,default-trigger = "mmc1";
|
||||||
|
};
|
||||||
|
|
||||||
|
yellow-led {
|
||||||
|
label = "yellow:yellow-led";
|
||||||
|
gpios = <&gpio0 RK_PA2 GPIO_ACTIVE_HIGH>;
|
||||||
|
default-state = "off";
|
||||||
|
linux,default-trigger = "mmc0";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
sdio_pwrseq: sdio-pwrseq {
|
||||||
|
compatible = "mmc-pwrseq-simple";
|
||||||
|
clocks = <&rk808 1>;
|
||||||
|
clock-names = "ext_clock";
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&wifi_enable_h>;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* On the module itself this is one of these (depending
|
||||||
|
* on the actual card populated):
|
||||||
|
* - SDIO_RESET_L_WL_REG_ON
|
||||||
|
* - PDN (power down when low)
|
||||||
|
*/
|
||||||
|
reset-gpios = <&gpio0 RK_PB2 GPIO_ACTIVE_LOW>;
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc_vbus_typec0: vcc-vbus-typec0 {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
regulator-name = "vcc_vbus_typec0";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <5000000>;
|
||||||
|
regulator-max-microvolt = <5000000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* should be placed inside mp8859, but not until mp8859 has
|
||||||
|
* its own dt-binding.
|
||||||
|
*/
|
||||||
|
dc_12v: mp8859-dcdc1 {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
regulator-name = "dc_12v";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <12000000>;
|
||||||
|
regulator-max-microvolt = <12000000>;
|
||||||
|
vin-supply = <&vcc_vbus_typec0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* switched by pmic_sleep */
|
||||||
|
vcc1v8_s3: vcca1v8_s3: vcc1v8-s3 {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
regulator-name = "vcc1v8_s3";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <1800000>;
|
||||||
|
regulator-max-microvolt = <1800000>;
|
||||||
|
vin-supply = <&vcc_1v8>;
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc3v0_sd: vcc3v0-sd {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
enable-active-high;
|
||||||
|
gpio = <&gpio4 RK_PD6 GPIO_ACTIVE_HIGH>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&vcc3v0_sd_en>;
|
||||||
|
regulator-name = "vcc3v0_sd";
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <3000000>;
|
||||||
|
regulator-max-microvolt = <3000000>;
|
||||||
|
vin-supply = <&vcc3v3_sys>;
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc3v3_sys: vcc3v3-sys {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
regulator-name = "vcc3v3_sys";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <3300000>;
|
||||||
|
regulator-max-microvolt = <3300000>;
|
||||||
|
vin-supply = <&dc_12v>;
|
||||||
|
};
|
||||||
|
|
||||||
|
vcca_0v9: vcca-0v9 {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
regulator-name = "vcca_0v9";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <900000>;
|
||||||
|
regulator-max-microvolt = <900000>;
|
||||||
|
vin-supply = <&vcc3v3_sys>;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* Actually 3 regulators (host0, 1, 2) controlled by the same gpio */
|
||||||
|
vcc5v0_host: vcc5v0-host-regulator {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
enable-active-high;
|
||||||
|
gpio = <&gpio1 RK_PA0 GPIO_ACTIVE_HIGH>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&vcc5v0_host_en &hub_rst>;
|
||||||
|
regulator-name = "vcc5v0_host";
|
||||||
|
regulator-always-on;
|
||||||
|
vin-supply = <&vcc_sys>;
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc_vbus_typec1: vcc-vbus-typec1 {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
enable-active-high;
|
||||||
|
gpio = <&gpio1 RK_PB5 GPIO_ACTIVE_HIGH>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&vcc_vbus_typec1_en>;
|
||||||
|
regulator-name = "vcc_vbus_typec1";
|
||||||
|
regulator-always-on;
|
||||||
|
vin-supply = <&vcc_sys>;
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc_sys: vcc-sys {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
enable-active-high;
|
||||||
|
gpio = <&gpio2 RK_PA6 GPIO_ACTIVE_HIGH>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&vcc_sys_en>;
|
||||||
|
regulator-name = "vcc_sys";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <5000000>;
|
||||||
|
regulator-max-microvolt = <5000000>;
|
||||||
|
vin-supply = <&dc_12v>;
|
||||||
|
};
|
||||||
|
|
||||||
|
vdd_log: vdd-log {
|
||||||
|
compatible = "pwm-regulator";
|
||||||
|
pwms = <&pwm2 0 25000 1>;
|
||||||
|
regulator-name = "vdd_log";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <450000>;
|
||||||
|
regulator-max-microvolt = <1400000>;
|
||||||
|
pwm-supply = <&vcc3v3_sys>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&cpu_l0 {
|
||||||
|
cpu-supply = <&vdd_cpu_l>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cpu_l1 {
|
||||||
|
cpu-supply = <&vdd_cpu_l>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cpu_l2 {
|
||||||
|
cpu-supply = <&vdd_cpu_l>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cpu_l3 {
|
||||||
|
cpu-supply = <&vdd_cpu_l>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cpu_b0 {
|
||||||
|
cpu-supply = <&vdd_cpu_b>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&cpu_b1 {
|
||||||
|
cpu-supply = <&vdd_cpu_b>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&emmc_phy {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&gmac {
|
||||||
|
assigned-clocks = <&cru SCLK_RMII_SRC>;
|
||||||
|
assigned-clock-parents = <&clkin_gmac>;
|
||||||
|
clock_in_out = "input";
|
||||||
|
phy-supply = <&vcc_lan>;
|
||||||
|
phy-mode = "rgmii";
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&rgmii_pins>;
|
||||||
|
snps,reset-gpio = <&gpio3 RK_PB7 GPIO_ACTIVE_LOW>;
|
||||||
|
snps,reset-active-low;
|
||||||
|
snps,reset-delays-us = <0 10000 50000>;
|
||||||
|
tx_delay = <0x28>;
|
||||||
|
rx_delay = <0x11>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&gpu {
|
||||||
|
mali-supply = <&vdd_gpu>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&hdmi {
|
||||||
|
ddc-i2c-bus = <&i2c3>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&hdmi_cec>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&hdmi_sound {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&i2c0 {
|
||||||
|
clock-frequency = <400000>;
|
||||||
|
i2c-scl-rising-time-ns = <168>;
|
||||||
|
i2c-scl-falling-time-ns = <4>;
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
rk808: pmic@1b {
|
||||||
|
compatible = "rockchip,rk808";
|
||||||
|
reg = <0x1b>;
|
||||||
|
interrupt-parent = <&gpio1>;
|
||||||
|
interrupts = <21 IRQ_TYPE_LEVEL_LOW>;
|
||||||
|
#clock-cells = <1>;
|
||||||
|
clock-output-names = "xin32k", "rk808-clkout2";
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&pmic_int_l>;
|
||||||
|
rockchip,system-power-controller;
|
||||||
|
wakeup-source;
|
||||||
|
|
||||||
|
vcc1-supply = <&vcc3v3_sys>;
|
||||||
|
vcc2-supply = <&vcc3v3_sys>;
|
||||||
|
vcc3-supply = <&vcc3v3_sys>;
|
||||||
|
vcc4-supply = <&vcc3v3_sys>;
|
||||||
|
vcc6-supply = <&vcc3v3_sys>;
|
||||||
|
vcc7-supply = <&vcc3v3_sys>;
|
||||||
|
vcc8-supply = <&vcc3v3_sys>;
|
||||||
|
vcc9-supply = <&vcc3v3_sys>;
|
||||||
|
vcc10-supply = <&vcc3v3_sys>;
|
||||||
|
vcc11-supply = <&vcc3v3_sys>;
|
||||||
|
vcc12-supply = <&vcc3v3_sys>;
|
||||||
|
vcc13-supply = <&vcc3v3_sys>;
|
||||||
|
vcc14-supply = <&vcc3v3_sys>;
|
||||||
|
vddio-supply = <&vcc_3v0>;
|
||||||
|
|
||||||
|
regulators {
|
||||||
|
vdd_center: DCDC_REG1 {
|
||||||
|
regulator-name = "vdd_center";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <750000>;
|
||||||
|
regulator-max-microvolt = <1350000>;
|
||||||
|
regulator-ramp-delay = <6001>;
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-off-in-suspend;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vdd_cpu_l: DCDC_REG2 {
|
||||||
|
regulator-name = "vdd_cpu_l";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <750000>;
|
||||||
|
regulator-max-microvolt = <1350000>;
|
||||||
|
regulator-ramp-delay = <6001>;
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-off-in-suspend;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc_ddr: DCDC_REG3 {
|
||||||
|
regulator-name = "vcc_ddr";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-on-in-suspend;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc_1v8: DCDC_REG4 {
|
||||||
|
regulator-name = "vcc_1v8";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <1800000>;
|
||||||
|
regulator-max-microvolt = <1800000>;
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-on-in-suspend;
|
||||||
|
regulator-suspend-microvolt = <1800000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vcca1v8_codec: LDO_REG1 {
|
||||||
|
regulator-name = "vcca1v8_codec";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <1800000>;
|
||||||
|
regulator-max-microvolt = <1800000>;
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-off-in-suspend;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc1v8_hdmi: LDO_REG2 {
|
||||||
|
regulator-name = "vcc1v8_hdmi";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <1800000>;
|
||||||
|
regulator-max-microvolt = <1800000>;
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-off-in-suspend;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc1v8_pmu: LDO_REG3 {
|
||||||
|
regulator-name = "vcc1v8_pmu";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <1800000>;
|
||||||
|
regulator-max-microvolt = <1800000>;
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-on-in-suspend;
|
||||||
|
regulator-suspend-microvolt = <1800000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc_sdio: LDO_REG4 {
|
||||||
|
regulator-name = "vcc_sdio";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <1800000>;
|
||||||
|
regulator-max-microvolt = <3000000>;
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-on-in-suspend;
|
||||||
|
regulator-suspend-microvolt = <3000000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vcca3v0_codec: LDO_REG5 {
|
||||||
|
regulator-name = "vcca3v0_codec";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <3000000>;
|
||||||
|
regulator-max-microvolt = <3000000>;
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-off-in-suspend;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc_1v5: LDO_REG6 {
|
||||||
|
regulator-name = "vcc_1v5";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <1500000>;
|
||||||
|
regulator-max-microvolt = <1500000>;
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-on-in-suspend;
|
||||||
|
regulator-suspend-microvolt = <1500000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vcca0v9_hdmi: LDO_REG7 {
|
||||||
|
regulator-name = "vcca0v9_hdmi";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <900000>;
|
||||||
|
regulator-max-microvolt = <900000>;
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-off-in-suspend;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc_3v0: LDO_REG8 {
|
||||||
|
regulator-name = "vcc_3v0";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-min-microvolt = <3000000>;
|
||||||
|
regulator-max-microvolt = <3000000>;
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-on-in-suspend;
|
||||||
|
regulator-suspend-microvolt = <3000000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc3v3_s3: vcc_lan: SWITCH_REG1 {
|
||||||
|
regulator-name = "vcc3v3_s3";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-off-in-suspend;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc3v3_s0: SWITCH_REG2 {
|
||||||
|
regulator-name = "vcc3v3_s0";
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-off-in-suspend;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vdd_cpu_b: regulator@40 {
|
||||||
|
compatible = "silergy,syr827";
|
||||||
|
reg = <0x40>;
|
||||||
|
fcs,suspend-voltage-selector = <1>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&vsel1_gpio>;
|
||||||
|
regulator-name = "vdd_cpu_b";
|
||||||
|
regulator-min-microvolt = <712500>;
|
||||||
|
regulator-max-microvolt = <1500000>;
|
||||||
|
regulator-ramp-delay = <1000>;
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-boot-on;
|
||||||
|
vin-supply = <&vcc3v3_sys>;
|
||||||
|
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-off-in-suspend;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vdd_gpu: regulator@41 {
|
||||||
|
compatible = "silergy,syr828";
|
||||||
|
reg = <0x41>;
|
||||||
|
fcs,suspend-voltage-selector = <1>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&vsel2_gpio>;
|
||||||
|
regulator-name = "vdd_gpu";
|
||||||
|
regulator-min-microvolt = <712500>;
|
||||||
|
regulator-max-microvolt = <1500000>;
|
||||||
|
regulator-ramp-delay = <1000>;
|
||||||
|
vin-supply = <&vcc3v3_sys>;
|
||||||
|
|
||||||
|
regulator-state-mem {
|
||||||
|
regulator-off-in-suspend;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&i2c1 {
|
||||||
|
i2c-scl-rising-time-ns = <300>;
|
||||||
|
i2c-scl-falling-time-ns = <15>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&i2c3 {
|
||||||
|
i2c-scl-rising-time-ns = <450>;
|
||||||
|
i2c-scl-falling-time-ns = <15>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&i2c4 {
|
||||||
|
i2c-scl-rising-time-ns = <600>;
|
||||||
|
i2c-scl-falling-time-ns = <20>;
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
fusb1: usb-typec@22 {
|
||||||
|
compatible = "fcs,fusb302";
|
||||||
|
reg = <0x22>;
|
||||||
|
interrupt-parent = <&gpio1>;
|
||||||
|
interrupts = <1 IRQ_TYPE_LEVEL_LOW>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&fusb1_int>;
|
||||||
|
vbus-supply = <&vcc_vbus_typec1>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&i2c7 {
|
||||||
|
i2c-scl-rising-time-ns = <600>;
|
||||||
|
i2c-scl-falling-time-ns = <20>;
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
fusb0: usb-typec@22 {
|
||||||
|
compatible = "fcs,fusb302";
|
||||||
|
reg = <0x22>;
|
||||||
|
interrupt-parent = <&gpio1>;
|
||||||
|
interrupts = <2 IRQ_TYPE_LEVEL_LOW>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&fusb0_int>;
|
||||||
|
vbus-supply = <&vcc_vbus_typec0>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&i2s0 {
|
||||||
|
rockchip,playback-channels = <8>;
|
||||||
|
rockchip,capture-channels = <8>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&i2s1 {
|
||||||
|
rockchip,playback-channels = <2>;
|
||||||
|
rockchip,capture-channels = <2>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&i2s2 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&io_domains {
|
||||||
|
audio-supply = <&vcca1v8_codec>;
|
||||||
|
bt656-supply = <&vcc_3v0>;
|
||||||
|
gpio1830-supply = <&vcc_3v0>;
|
||||||
|
sdmmc-supply = <&vcc_sdio>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&pmu_io_domains {
|
||||||
|
pmu1830-supply = <&vcc_3v0>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&pinctrl {
|
||||||
|
buttons {
|
||||||
|
pwr_key_l: pwr-key-l {
|
||||||
|
rockchip,pins = <0 RK_PA5 RK_FUNC_GPIO &pcfg_pull_up>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
lcd-panel {
|
||||||
|
lcd_panel_reset: lcd-panel-reset {
|
||||||
|
rockchip,pins = <4 RK_PD5 RK_FUNC_GPIO &pcfg_pull_up>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
leds {
|
||||||
|
diy_led_gpio: diy_led-gpio {
|
||||||
|
rockchip,pins = <0 RK_PB5 RK_FUNC_GPIO &pcfg_pull_none>;
|
||||||
|
};
|
||||||
|
|
||||||
|
work_led_gpio: work_led-gpio {
|
||||||
|
rockchip,pins = <2 RK_PD3 RK_FUNC_GPIO &pcfg_pull_none>;
|
||||||
|
};
|
||||||
|
|
||||||
|
yellow_led_gpio: yellow_led-gpio {
|
||||||
|
rockchip,pins = <0 RK_PA2 RK_FUNC_GPIO &pcfg_pull_none>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
pmic {
|
||||||
|
vsel1_gpio: vsel1-gpio {
|
||||||
|
rockchip,pins = <1 RK_PC2 RK_FUNC_GPIO &pcfg_pull_down>;
|
||||||
|
};
|
||||||
|
|
||||||
|
vsel2_gpio: vsel2-gpio {
|
||||||
|
rockchip,pins = <1 RK_PB6 RK_FUNC_GPIO &pcfg_pull_down>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
sdio-pwrseq {
|
||||||
|
wifi_enable_h: wifi-enable-h {
|
||||||
|
rockchip,pins = <0 RK_PB2 RK_FUNC_GPIO &pcfg_pull_none>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
sdmmc {
|
||||||
|
vcc3v0_sd_en: vcc3v0-sd-en {
|
||||||
|
rockchip,pins = <4 RK_PD6 RK_FUNC_GPIO &pcfg_pull_none>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
pmic {
|
||||||
|
pmic_int_l: pmic-int-l {
|
||||||
|
rockchip,pins = <1 RK_PC5 RK_FUNC_GPIO &pcfg_pull_up>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
usb2 {
|
||||||
|
vcc5v0_host_en: vcc5v0-host-en {
|
||||||
|
rockchip,pins = <1 RK_PA0 RK_FUNC_GPIO &pcfg_pull_none>;
|
||||||
|
};
|
||||||
|
|
||||||
|
vcc_sys_en: vcc-sys-en {
|
||||||
|
rockchip,pins = <2 RK_PA6 RK_FUNC_GPIO &pcfg_pull_none>;
|
||||||
|
};
|
||||||
|
|
||||||
|
hub_rst: hub-rst {
|
||||||
|
rockchip,pins = <2 RK_PA4 RK_FUNC_GPIO &pcfg_output_high>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
usb-typec {
|
||||||
|
vcc_vbus_typec1_en: vcc-vbus-typec1-en {
|
||||||
|
rockchip,pins = <1 RK_PB5 RK_FUNC_GPIO &pcfg_pull_none>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
fusb30x {
|
||||||
|
fusb0_int: fusb0-int {
|
||||||
|
rockchip,pins = <1 RK_PA2 RK_FUNC_GPIO &pcfg_pull_up>;
|
||||||
|
};
|
||||||
|
|
||||||
|
fusb1_int: fusb1-int {
|
||||||
|
rockchip,pins = <1 RK_PA1 RK_FUNC_GPIO &pcfg_pull_up>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&pwm0 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&pwm2 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&saradc {
|
||||||
|
vref-supply = <&vcca1v8_s3>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&sdmmc {
|
||||||
|
bus-width = <4>;
|
||||||
|
cap-sd-highspeed;
|
||||||
|
cd-gpios = <&gpio0 RK_PA7 GPIO_ACTIVE_LOW>;
|
||||||
|
disable-wp;
|
||||||
|
max-frequency = <150000000>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&sdmmc_clk &sdmmc_cmd &sdmmc_bus4>;
|
||||||
|
sd-uhs-sdr104;
|
||||||
|
vmmc-supply = <&vcc3v0_sd>;
|
||||||
|
vqmmc-supply = <&vcc_sdio>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&sdhci {
|
||||||
|
bus-width = <8>;
|
||||||
|
non-removable;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&spi1 {
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
flash@0 {
|
||||||
|
compatible = "jedec,spi-nor";
|
||||||
|
reg = <0>;
|
||||||
|
spi-max-frequency = <10000000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&tcphy0 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&tcphy1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&tsadc {
|
||||||
|
/* tshut mode 0:CRU 1:GPIO */
|
||||||
|
rockchip,hw-tshut-mode = <1>;
|
||||||
|
/* tshut polarity 0:LOW 1:HIGH */
|
||||||
|
rockchip,hw-tshut-polarity = <1>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&u2phy0 {
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
u2phy0_otg: otg-port {
|
||||||
|
phy-supply = <&vcc_vbus_typec0>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
u2phy0_host: host-port {
|
||||||
|
phy-supply = <&vcc5v0_host>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&u2phy1 {
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
u2phy1_otg: otg-port {
|
||||||
|
phy-supply = <&vcc_vbus_typec1>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
u2phy1_host: host-port {
|
||||||
|
phy-supply = <&vcc5v0_host>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&uart0 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&uart0_xfer &uart0_cts>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&uart2 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&usb_host0_ehci {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&usb_host0_ohci {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&usb_host1_ehci {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&usb_host1_ohci {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&usbdrd3_0 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&usbdrd_dwc3_0 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&usbdrd3_1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&usbdrd_dwc3_1 {
|
||||||
|
status = "okay";
|
||||||
|
dr_mode = "host";
|
||||||
|
};
|
||||||
|
|
||||||
|
&vopb {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&vopb_mmu {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&vopl {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&vopl_mmu {
|
||||||
|
status = "okay";
|
||||||
|
};
|
|
@ -6,6 +6,10 @@
|
||||||
#include "rk3399-u-boot.dtsi"
|
#include "rk3399-u-boot.dtsi"
|
||||||
#include "rk3399-sdram-lpddr4-100.dtsi"
|
#include "rk3399-sdram-lpddr4-100.dtsi"
|
||||||
/ {
|
/ {
|
||||||
|
aliases {
|
||||||
|
spi0 = &spi1;
|
||||||
|
};
|
||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
u-boot,spl-boot-order = "same-as-spl", &sdmmc, &sdhci;
|
u-boot,spl-boot-order = "same-as-spl", &sdmmc, &sdhci;
|
||||||
};
|
};
|
||||||
|
|
21
arch/arm/dts/rockchip-u-boot.dtsi
Normal file
21
arch/arm/dts/rockchip-u-boot.dtsi
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
// SPDX-License-Identifier: GPL-2.0+
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2019 Jagan Teki <jagan@amarulasolutions.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
|
||||||
|
/ {
|
||||||
|
binman {
|
||||||
|
filename = "u-boot-rockchip.bin";
|
||||||
|
pad-byte = <0xff>;
|
||||||
|
|
||||||
|
blob {
|
||||||
|
filename = "idbloader.img";
|
||||||
|
};
|
||||||
|
|
||||||
|
u-boot-img {
|
||||||
|
offset = <CONFIG_SPL_PAD_TO>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
|
@ -153,10 +153,10 @@ void *rockchip_get_cru(void);
|
||||||
*/
|
*/
|
||||||
void *rockchip_get_pmucru(void);
|
void *rockchip_get_pmucru(void);
|
||||||
|
|
||||||
struct rk3288_cru;
|
struct rockchip_cru;
|
||||||
struct rk3288_grf;
|
struct rk3288_grf;
|
||||||
|
|
||||||
void rk3288_clk_configure_cpu(struct rk3288_cru *cru, struct rk3288_grf *grf);
|
void rk3288_clk_configure_cpu(struct rockchip_cru *cru, struct rk3288_grf *grf);
|
||||||
|
|
||||||
int rockchip_get_clk(struct udevice **devp);
|
int rockchip_get_clk(struct udevice **devp);
|
||||||
|
|
||||||
|
|
30
arch/arm/include/asm/arch-rockchip/cru.h
Normal file
30
arch/arm/include/asm/arch-rockchip/cru.h
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
||||||
|
/*
|
||||||
|
* (C) Copyright 2019 Amarula Solutions.
|
||||||
|
* Author: Jagan Teki <jagan@amarulasolutions.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _ROCKCHIP_CLOCK_H
|
||||||
|
#define _ROCKCHIP_CLOCK_H
|
||||||
|
|
||||||
|
#if defined(CONFIG_ROCKCHIP_RK3288)
|
||||||
|
# include <asm/arch-rockchip/cru_rk3288.h>
|
||||||
|
#elif defined(CONFIG_ROCKCHIP_RK3399)
|
||||||
|
# include <asm/arch-rockchip/cru_rk3399.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* CRU_GLB_RST_ST */
|
||||||
|
enum {
|
||||||
|
GLB_POR_RST,
|
||||||
|
FST_GLB_RST_ST = BIT(0),
|
||||||
|
SND_GLB_RST_ST = BIT(1),
|
||||||
|
FST_GLB_TSADC_RST_ST = BIT(2),
|
||||||
|
SND_GLB_TSADC_RST_ST = BIT(3),
|
||||||
|
FST_GLB_WDT_RST_ST = BIT(4),
|
||||||
|
SND_GLB_WDT_RST_ST = BIT(5),
|
||||||
|
GLB_RST_ST_MASK = GENMASK(5, 0),
|
||||||
|
};
|
||||||
|
|
||||||
|
#define MHz 1000000
|
||||||
|
|
||||||
|
#endif /* _ROCKCHIP_CLOCK_H */
|
|
@ -27,11 +27,11 @@
|
||||||
/* Private data for the clock driver - used by rockchip_get_cru() */
|
/* Private data for the clock driver - used by rockchip_get_cru() */
|
||||||
struct rk3288_clk_priv {
|
struct rk3288_clk_priv {
|
||||||
struct rk3288_grf *grf;
|
struct rk3288_grf *grf;
|
||||||
struct rk3288_cru *cru;
|
struct rockchip_cru *cru;
|
||||||
ulong rate;
|
ulong rate;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct rk3288_cru {
|
struct rockchip_cru {
|
||||||
struct rk3288_pll {
|
struct rk3288_pll {
|
||||||
u32 con0;
|
u32 con0;
|
||||||
u32 con1;
|
u32 con1;
|
||||||
|
@ -51,14 +51,14 @@ struct rk3288_cru {
|
||||||
u32 cru_glb_cnt_th;
|
u32 cru_glb_cnt_th;
|
||||||
u32 cru_glb_rst_con;
|
u32 cru_glb_rst_con;
|
||||||
u32 reserved3;
|
u32 reserved3;
|
||||||
u32 cru_glb_rst_st;
|
u32 glb_rst_st;
|
||||||
u32 reserved4;
|
u32 reserved4;
|
||||||
u32 cru_sdmmc_con[2];
|
u32 cru_sdmmc_con[2];
|
||||||
u32 cru_sdio0_con[2];
|
u32 cru_sdio0_con[2];
|
||||||
u32 cru_sdio1_con[2];
|
u32 cru_sdio1_con[2];
|
||||||
u32 cru_emmc_con[2];
|
u32 cru_emmc_con[2];
|
||||||
};
|
};
|
||||||
check_member(rk3288_cru, cru_emmc_con[1], 0x021c);
|
check_member(rockchip_cru, cru_emmc_con[1], 0x021c);
|
||||||
|
|
||||||
/* CRU_CLKSEL11_CON */
|
/* CRU_CLKSEL11_CON */
|
||||||
enum {
|
enum {
|
||||||
|
@ -227,16 +227,4 @@ enum {
|
||||||
CLKF_MASK = 0x1fff << CLKF_SHIFT,
|
CLKF_MASK = 0x1fff << CLKF_SHIFT,
|
||||||
};
|
};
|
||||||
|
|
||||||
/* CRU_GLB_RST_ST */
|
|
||||||
enum {
|
|
||||||
GLB_POR_RST,
|
|
||||||
FST_GLB_RST_ST = BIT(0),
|
|
||||||
SND_GLB_RST_ST = BIT(1),
|
|
||||||
FST_GLB_TSADC_RST_ST = BIT(2),
|
|
||||||
SND_GLB_TSADC_RST_ST = BIT(3),
|
|
||||||
FST_GLB_WDT_RST_ST = BIT(4),
|
|
||||||
SND_GLB_WDT_RST_ST = BIT(5),
|
|
||||||
GLB_RST_ST_MASK = GENMASK(5, 0),
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
/* Private data for the clock driver - used by rockchip_get_cru() */
|
/* Private data for the clock driver - used by rockchip_get_cru() */
|
||||||
struct rk3399_clk_priv {
|
struct rk3399_clk_priv {
|
||||||
struct rk3399_cru *cru;
|
struct rockchip_cru *cru;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct rk3399_pmuclk_priv {
|
struct rk3399_pmuclk_priv {
|
||||||
|
@ -33,7 +33,7 @@ struct rk3399_pmucru {
|
||||||
};
|
};
|
||||||
check_member(rk3399_pmucru, pmucru_gatedis_con[1], 0x134);
|
check_member(rk3399_pmucru, pmucru_gatedis_con[1], 0x134);
|
||||||
|
|
||||||
struct rk3399_cru {
|
struct rockchip_cru {
|
||||||
u32 apll_l_con[6];
|
u32 apll_l_con[6];
|
||||||
u32 reserved[2];
|
u32 reserved[2];
|
||||||
u32 apll_b_con[6];
|
u32 apll_b_con[6];
|
||||||
|
@ -65,8 +65,7 @@ struct rk3399_cru {
|
||||||
u32 sdio0_con[2];
|
u32 sdio0_con[2];
|
||||||
u32 sdio1_con[2];
|
u32 sdio1_con[2];
|
||||||
};
|
};
|
||||||
check_member(rk3399_cru, sdio1_con[1], 0x594);
|
check_member(rockchip_cru, sdio1_con[1], 0x594);
|
||||||
#define MHz 1000000
|
|
||||||
#define KHz 1000
|
#define KHz 1000
|
||||||
#define OSC_HZ (24*MHz)
|
#define OSC_HZ (24*MHz)
|
||||||
#define LPLL_HZ (600*MHz)
|
#define LPLL_HZ (600*MHz)
|
||||||
|
@ -107,9 +106,9 @@ enum apll_b_frequencies {
|
||||||
APLL_B_600_MHZ,
|
APLL_B_600_MHZ,
|
||||||
};
|
};
|
||||||
|
|
||||||
void rk3399_configure_cpu_l(struct rk3399_cru *cru,
|
void rk3399_configure_cpu_l(struct rockchip_cru *cru,
|
||||||
enum apll_l_frequencies apll_l_freq);
|
enum apll_l_frequencies apll_l_freq);
|
||||||
void rk3399_configure_cpu_b(struct rk3399_cru *cru,
|
void rk3399_configure_cpu_b(struct rockchip_cru *cru,
|
||||||
enum apll_b_frequencies apll_b_freq);
|
enum apll_b_frequencies apll_b_freq);
|
||||||
|
|
||||||
#endif /* __ASM_ARCH_CRU_RK3399_H_ */
|
#endif /* __ASM_ARCH_CRU_RK3399_H_ */
|
||||||
|
|
|
@ -244,6 +244,8 @@ config ROCKCHIP_RK3399
|
||||||
imply TPL_CLK
|
imply TPL_CLK
|
||||||
imply TPL_TINY_MEMSET
|
imply TPL_TINY_MEMSET
|
||||||
imply TPL_ROCKCHIP_COMMON_BOARD
|
imply TPL_ROCKCHIP_COMMON_BOARD
|
||||||
|
imply SYS_BOOTCOUNT_SINGLEWORD if BOOTCOUNT_LIMIT
|
||||||
|
imply CMD_BOOTCOUNT if BOOTCOUNT_LIMIT
|
||||||
help
|
help
|
||||||
The Rockchip RK3399 is a ARM-based SoC with a dual-core Cortex-A72
|
The Rockchip RK3399 is a ARM-based SoC with a dual-core Cortex-A72
|
||||||
and quad-core Cortex-A53.
|
and quad-core Cortex-A53.
|
||||||
|
|
|
@ -22,6 +22,7 @@ ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_TPL_BUILD),)
|
||||||
# we can have the preprocessor correctly recognise both 0x0 and 0
|
# we can have the preprocessor correctly recognise both 0x0 and 0
|
||||||
# meaning "turn it off".
|
# meaning "turn it off".
|
||||||
obj-y += boot_mode.o
|
obj-y += boot_mode.o
|
||||||
|
obj-$(CONFIG_DISPLAY_CPUINFO) += cpu-info.o
|
||||||
obj-$(CONFIG_ROCKCHIP_COMMON_BOARD) += board.o
|
obj-$(CONFIG_ROCKCHIP_COMMON_BOARD) += board.o
|
||||||
obj-$(CONFIG_MISC_INIT_R) += misc.o
|
obj-$(CONFIG_MISC_INIT_R) += misc.o
|
||||||
endif
|
endif
|
||||||
|
|
65
arch/arm/mach-rockchip/cpu-info.c
Normal file
65
arch/arm/mach-rockchip/cpu-info.c
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||||
|
/*
|
||||||
|
* (C) Copyright 2019 Amarula Solutions(India)
|
||||||
|
* Author: Jagan Teki <jagan@amarulasolutions.com>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <common.h>
|
||||||
|
#include <asm/io.h>
|
||||||
|
#include <asm/arch-rockchip/clock.h>
|
||||||
|
#include <asm/arch-rockchip/cru.h>
|
||||||
|
#include <asm/arch-rockchip/hardware.h>
|
||||||
|
#include <linux/err.h>
|
||||||
|
|
||||||
|
static char *get_reset_cause(void)
|
||||||
|
{
|
||||||
|
struct rockchip_cru *cru = rockchip_get_cru();
|
||||||
|
char *cause = NULL;
|
||||||
|
|
||||||
|
if (IS_ERR(cru))
|
||||||
|
return cause;
|
||||||
|
|
||||||
|
switch (cru->glb_rst_st) {
|
||||||
|
case GLB_POR_RST:
|
||||||
|
cause = "POR";
|
||||||
|
break;
|
||||||
|
case FST_GLB_RST_ST:
|
||||||
|
case SND_GLB_RST_ST:
|
||||||
|
cause = "RST";
|
||||||
|
break;
|
||||||
|
case FST_GLB_TSADC_RST_ST:
|
||||||
|
case SND_GLB_TSADC_RST_ST:
|
||||||
|
cause = "THERMAL";
|
||||||
|
break;
|
||||||
|
case FST_GLB_WDT_RST_ST:
|
||||||
|
case SND_GLB_WDT_RST_ST:
|
||||||
|
cause = "WDOG";
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
cause = "unknown reset";
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* reset_reason env is used by rk3288, due to special use case
|
||||||
|
* to figure it the boot behavior. so keep this as it is.
|
||||||
|
*/
|
||||||
|
env_set("reset_reason", cause);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Clear glb_rst_st, so we can determine the last reset cause
|
||||||
|
* for following resets.
|
||||||
|
*/
|
||||||
|
rk_clrreg(&cru->glb_rst_st, GLB_RST_ST_MASK);
|
||||||
|
|
||||||
|
return cause;
|
||||||
|
}
|
||||||
|
|
||||||
|
int print_cpuinfo(void)
|
||||||
|
{
|
||||||
|
printf("SoC: Rockchip %s\n", CONFIG_SYS_SOC);
|
||||||
|
printf("Reset cause: %s\n", get_reset_cause());
|
||||||
|
|
||||||
|
/* TODO print operating temparature and clock */
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
|
@ -8,7 +8,7 @@
|
||||||
#include <dm.h>
|
#include <dm.h>
|
||||||
#include <syscon.h>
|
#include <syscon.h>
|
||||||
#include <asm/arch-rockchip/clock.h>
|
#include <asm/arch-rockchip/clock.h>
|
||||||
#include <asm/arch-rockchip/cru_rk3288.h>
|
#include <asm/arch-rockchip/cru.h>
|
||||||
|
|
||||||
int rockchip_get_clk(struct udevice **devp)
|
int rockchip_get_clk(struct udevice **devp)
|
||||||
{
|
{
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/arch-rockchip/bootrom.h>
|
#include <asm/arch-rockchip/bootrom.h>
|
||||||
#include <asm/arch-rockchip/clock.h>
|
#include <asm/arch-rockchip/clock.h>
|
||||||
#include <asm/arch-rockchip/cru_rk3288.h>
|
#include <asm/arch-rockchip/cru.h>
|
||||||
#include <asm/arch-rockchip/hardware.h>
|
#include <asm/arch-rockchip/hardware.h>
|
||||||
#include <asm/arch-rockchip/grf_rk3288.h>
|
#include <asm/arch-rockchip/grf_rk3288.h>
|
||||||
#include <asm/arch-rockchip/pmu_rk3288.h>
|
#include <asm/arch-rockchip/pmu_rk3288.h>
|
||||||
|
@ -102,43 +102,6 @@ void board_debug_uart_init(void)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static void rk3288_detect_reset_reason(void)
|
|
||||||
{
|
|
||||||
struct rk3288_cru *cru = rockchip_get_cru();
|
|
||||||
const char *reason;
|
|
||||||
|
|
||||||
if (IS_ERR(cru))
|
|
||||||
return;
|
|
||||||
|
|
||||||
switch (cru->cru_glb_rst_st) {
|
|
||||||
case GLB_POR_RST:
|
|
||||||
reason = "POR";
|
|
||||||
break;
|
|
||||||
case FST_GLB_RST_ST:
|
|
||||||
case SND_GLB_RST_ST:
|
|
||||||
reason = "RST";
|
|
||||||
break;
|
|
||||||
case FST_GLB_TSADC_RST_ST:
|
|
||||||
case SND_GLB_TSADC_RST_ST:
|
|
||||||
reason = "THERMAL";
|
|
||||||
break;
|
|
||||||
case FST_GLB_WDT_RST_ST:
|
|
||||||
case SND_GLB_WDT_RST_ST:
|
|
||||||
reason = "WDOG";
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
reason = "unknown reset";
|
|
||||||
}
|
|
||||||
|
|
||||||
env_set("reset_reason", reason);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Clear cru_glb_rst_st, so we can determine the last reset cause
|
|
||||||
* for following resets.
|
|
||||||
*/
|
|
||||||
rk_clrreg(&cru->cru_glb_rst_st, GLB_RST_ST_MASK);
|
|
||||||
}
|
|
||||||
|
|
||||||
__weak int rk3288_board_late_init(void)
|
__weak int rk3288_board_late_init(void)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -146,8 +109,6 @@ __weak int rk3288_board_late_init(void)
|
||||||
|
|
||||||
int rk_board_late_init(void)
|
int rk_board_late_init(void)
|
||||||
{
|
{
|
||||||
rk3288_detect_reset_reason();
|
|
||||||
|
|
||||||
return rk3288_board_late_init();
|
return rk3288_board_late_init();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -113,6 +113,16 @@ config TPL_TEXT_BASE
|
||||||
config SPL_STACK_R_ADDR
|
config SPL_STACK_R_ADDR
|
||||||
default 0x04000000
|
default 0x04000000
|
||||||
|
|
||||||
|
if BOOTCOUNT_LIMIT
|
||||||
|
|
||||||
|
config BOOTCOUNT_BOOTLIMIT
|
||||||
|
default 3
|
||||||
|
|
||||||
|
config SYS_BOOTCOUNT_ADDR
|
||||||
|
default 0xff3100f0 # PMU_SYS_REG0
|
||||||
|
|
||||||
|
endif # BOOTCOUNT_LIMIT
|
||||||
|
|
||||||
source "board/rockchip/evb_rk3399/Kconfig"
|
source "board/rockchip/evb_rk3399/Kconfig"
|
||||||
source "board/theobroma-systems/puma_rk3399/Kconfig"
|
source "board/theobroma-systems/puma_rk3399/Kconfig"
|
||||||
source "board/vamrs/rock960_rk3399/Kconfig"
|
source "board/vamrs/rock960_rk3399/Kconfig"
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#include <dm.h>
|
#include <dm.h>
|
||||||
#include <syscon.h>
|
#include <syscon.h>
|
||||||
#include <asm/arch-rockchip/clock.h>
|
#include <asm/arch-rockchip/clock.h>
|
||||||
#include <asm/arch-rockchip/cru_rk3399.h>
|
#include <asm/arch-rockchip/cru.h>
|
||||||
|
|
||||||
static int rockchip_get_cruclk(struct udevice **devp)
|
static int rockchip_get_cruclk(struct udevice **devp)
|
||||||
{
|
{
|
||||||
|
|
|
@ -240,7 +240,7 @@ static void rk3399_force_power_on_reset(void)
|
||||||
void spl_board_init(void)
|
void spl_board_init(void)
|
||||||
{
|
{
|
||||||
#if defined(SPL_GPIO_SUPPORT)
|
#if defined(SPL_GPIO_SUPPORT)
|
||||||
struct rk3399_cru *cru = rockchip_get_cru();
|
struct rockchip_cru *cru = rockchip_get_cru();
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The RK3399 resets only 'almost all logic' (see also in the TRM
|
* The RK3399 resets only 'almost all logic' (see also in the TRM
|
||||||
|
|
|
@ -90,7 +90,6 @@ CONFIG_DEBUG_UART_SHIFT=2
|
||||||
CONFIG_DEBUG_UART_SKIP_INIT=y
|
CONFIG_DEBUG_UART_SKIP_INIT=y
|
||||||
CONFIG_SOUND=y
|
CONFIG_SOUND=y
|
||||||
CONFIG_SYSRESET=y
|
CONFIG_SYSRESET=y
|
||||||
CONFIG_OPTEE=y
|
|
||||||
CONFIG_DM_THERMAL=y
|
CONFIG_DM_THERMAL=y
|
||||||
CONFIG_USB=y
|
CONFIG_USB=y
|
||||||
CONFIG_USB_EHCI_HCD=y
|
CONFIG_USB_EHCI_HCD=y
|
||||||
|
|
|
@ -18,7 +18,6 @@ CONFIG_SPL_FIT_GENERATOR="arch/arm/mach-rockchip/fit_spl_optee.sh"
|
||||||
CONFIG_USE_PREBOOT=y
|
CONFIG_USE_PREBOOT=y
|
||||||
CONFIG_SILENT_CONSOLE=y
|
CONFIG_SILENT_CONSOLE=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rk3288-evb-rk808.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rk3288-evb-rk808.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x10000
|
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x10000
|
||||||
|
|
|
@ -8,7 +8,6 @@ CONFIG_DEBUG_UART_BASE=0xFF1A0000
|
||||||
CONFIG_DEBUG_UART_CLOCK=24000000
|
CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-evb.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-evb.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
|
|
@ -9,7 +9,6 @@ CONFIG_DEBUG_UART_BASE=0xFF1A0000
|
||||||
CONFIG_DEBUG_UART_CLOCK=24000000
|
CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_SPL_TEXT_BASE=0xff8c2000
|
CONFIG_SPL_TEXT_BASE=0xff8c2000
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
|
|
@ -91,7 +91,6 @@ CONFIG_DEBUG_UART_SHIFT=2
|
||||||
CONFIG_DEBUG_UART_SKIP_INIT=y
|
CONFIG_DEBUG_UART_SKIP_INIT=y
|
||||||
CONFIG_SOUND=y
|
CONFIG_SOUND=y
|
||||||
CONFIG_SYSRESET=y
|
CONFIG_SYSRESET=y
|
||||||
CONFIG_OPTEE=y
|
|
||||||
CONFIG_DM_THERMAL=y
|
CONFIG_DM_THERMAL=y
|
||||||
CONFIG_USB=y
|
CONFIG_USB=y
|
||||||
CONFIG_USB_EHCI_HCD=y
|
CONFIG_USB_EHCI_HCD=y
|
||||||
|
|
|
@ -14,7 +14,6 @@ CONFIG_DEBUG_UART=y
|
||||||
CONFIG_USE_PREBOOT=y
|
CONFIG_USE_PREBOOT=y
|
||||||
CONFIG_SILENT_CONSOLE=y
|
CONFIG_SILENT_CONSOLE=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rk3288-firefly.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rk3288-firefly.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
|
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
|
||||||
|
|
|
@ -8,7 +8,7 @@ CONFIG_DEBUG_UART_BASE=0xFF1A0000
|
||||||
CONFIG_DEBUG_UART_CLOCK=24000000
|
CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-firefly.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-firefly.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
CONFIG_MISC_INIT_R=y
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
@ -27,6 +27,8 @@ CONFIG_ENV_IS_IN_MMC=y
|
||||||
CONFIG_SYS_RELOC_GD_ENV_ADDR=y
|
CONFIG_SYS_RELOC_GD_ENV_ADDR=y
|
||||||
CONFIG_ROCKCHIP_GPIO=y
|
CONFIG_ROCKCHIP_GPIO=y
|
||||||
CONFIG_SYS_I2C_ROCKCHIP=y
|
CONFIG_SYS_I2C_ROCKCHIP=y
|
||||||
|
CONFIG_MISC=y
|
||||||
|
CONFIG_ROCKCHIP_EFUSE=y
|
||||||
CONFIG_MMC_DW=y
|
CONFIG_MMC_DW=y
|
||||||
CONFIG_MMC_DW_ROCKCHIP=y
|
CONFIG_MMC_DW_ROCKCHIP=y
|
||||||
CONFIG_MMC_SDHCI=y
|
CONFIG_MMC_SDHCI=y
|
||||||
|
|
|
@ -8,7 +8,6 @@ CONFIG_DEBUG_UART_BASE=0xFF1A0000
|
||||||
CONFIG_DEBUG_UART_CLOCK=24000000
|
CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-khadas-edge-captain.dtbi"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-khadas-edge-captain.dtbi"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
|
|
@ -8,7 +8,6 @@ CONFIG_DEBUG_UART_BASE=0xFF1A0000
|
||||||
CONFIG_DEBUG_UART_CLOCK=24000000
|
CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-khadas-edge.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-khadas-edge.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
|
|
@ -8,7 +8,6 @@ CONFIG_DEBUG_UART_BASE=0xFF1A0000
|
||||||
CONFIG_DEBUG_UART_CLOCK=24000000
|
CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-khadas-edge-v.dtbi"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-khadas-edge-v.dtbi"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
|
|
@ -8,7 +8,6 @@ CONFIG_DEBUG_UART_BASE=0xFF1A0000
|
||||||
CONFIG_DEBUG_UART_CLOCK=24000000
|
CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-leez-p710.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-leez-p710.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x10000
|
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x10000
|
||||||
|
|
|
@ -15,7 +15,6 @@ CONFIG_SPL_TEXT_BASE=0xff704000
|
||||||
CONFIG_USE_PREBOOT=y
|
CONFIG_USE_PREBOOT=y
|
||||||
CONFIG_SILENT_CONSOLE=y
|
CONFIG_SILENT_CONSOLE=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rk3288-miqi.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rk3288-miqi.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
|
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
|
||||||
|
|
|
@ -8,7 +8,6 @@ CONFIG_DEBUG_UART_BASE=0xFF1A0000
|
||||||
CONFIG_DEBUG_UART_CLOCK=24000000
|
CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-nanopc-t4.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-nanopc-t4.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
|
|
@ -8,7 +8,6 @@ CONFIG_DEBUG_UART_BASE=0xFF1A0000
|
||||||
CONFIG_DEBUG_UART_CLOCK=24000000
|
CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-nanopi-m4.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-nanopi-m4.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
|
|
@ -8,7 +8,6 @@ CONFIG_DEBUG_UART_BASE=0xFF1A0000
|
||||||
CONFIG_DEBUG_UART_CLOCK=24000000
|
CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-nanopi-neo4.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-nanopi-neo4.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
|
|
@ -8,7 +8,6 @@ CONFIG_DEBUG_UART_BASE=0xFF1A0000
|
||||||
CONFIG_DEBUG_UART_CLOCK=24000000
|
CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-orangepi.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-orangepi.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
|
|
@ -16,12 +16,9 @@ CONFIG_USE_PREBOOT=y
|
||||||
CONFIG_SILENT_CONSOLE=y
|
CONFIG_SILENT_CONSOLE=y
|
||||||
CONFIG_CONSOLE_MUX=y
|
CONFIG_CONSOLE_MUX=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rk3288-phycore-rdk.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rk3288-phycore-rdk.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
|
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
|
||||||
CONFIG_SPL_I2C_SUPPORT=y
|
|
||||||
CONFIG_SPL_POWER_SUPPORT=y
|
|
||||||
CONFIG_CMD_GPIO=y
|
CONFIG_CMD_GPIO=y
|
||||||
CONFIG_CMD_GPT=y
|
CONFIG_CMD_GPT=y
|
||||||
CONFIG_CMD_I2C=y
|
CONFIG_CMD_I2C=y
|
||||||
|
|
|
@ -16,7 +16,6 @@ CONFIG_USE_PREBOOT=y
|
||||||
CONFIG_SILENT_CONSOLE=y
|
CONFIG_SILENT_CONSOLE=y
|
||||||
CONFIG_CONSOLE_MUX=y
|
CONFIG_CONSOLE_MUX=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rk3288-popmetal.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rk3288-popmetal.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
|
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
|
||||||
|
|
|
@ -16,7 +16,6 @@ CONFIG_SPL_TEXT_BASE=0xff8c2000
|
||||||
CONFIG_SPL_FIT_GENERATOR="board/theobroma-systems/puma_rk3399/fit_spl_atf.sh"
|
CONFIG_SPL_FIT_GENERATOR="board/theobroma-systems/puma_rk3399/fit_spl_atf.sh"
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-puma-haikou.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-puma-haikou.dtb"
|
||||||
CONFIG_MISC_INIT_R=y
|
CONFIG_MISC_INIT_R=y
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
|
|
@ -8,7 +8,6 @@ CONFIG_DEBUG_UART_BASE=0xFF1A0000
|
||||||
CONFIG_DEBUG_UART_CLOCK=24000000
|
CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-roc-pc.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-roc-pc.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
@ -42,6 +41,8 @@ CONFIG_RAM_RK3399_LPDDR4=y
|
||||||
CONFIG_BAUDRATE=1500000
|
CONFIG_BAUDRATE=1500000
|
||||||
CONFIG_DEBUG_UART_SHIFT=2
|
CONFIG_DEBUG_UART_SHIFT=2
|
||||||
CONFIG_SYSRESET=y
|
CONFIG_SYSRESET=y
|
||||||
|
CONFIG_SPI_FLASH_WINBOND=y
|
||||||
|
CONFIG_ROCKCHIP_SPI=y
|
||||||
CONFIG_USB=y
|
CONFIG_USB=y
|
||||||
CONFIG_USB_XHCI_HCD=y
|
CONFIG_USB_XHCI_HCD=y
|
||||||
CONFIG_USB_XHCI_DWC3=y
|
CONFIG_USB_XHCI_DWC3=y
|
||||||
|
|
|
@ -9,7 +9,6 @@ CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-rock-pi-4.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-rock-pi-4.dtb"
|
||||||
CONFIG_MISC_INIT_R=y
|
CONFIG_MISC_INIT_R=y
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
|
|
@ -9,7 +9,6 @@ CONFIG_DEBUG_UART_BASE=0xFF1A0000
|
||||||
CONFIG_DEBUG_UART_CLOCK=24000000
|
CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-rock960.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-rock960.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
|
|
@ -10,7 +10,6 @@ CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
CONFIG_DEBUG_UART=y
|
CONFIG_DEBUG_UART=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-rockpro64.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-rockpro64.dtb"
|
||||||
CONFIG_MISC_INIT_R=y
|
CONFIG_MISC_INIT_R=y
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
|
@ -46,6 +45,8 @@ CONFIG_RAM_RK3399_LPDDR4=y
|
||||||
CONFIG_BAUDRATE=1500000
|
CONFIG_BAUDRATE=1500000
|
||||||
CONFIG_DEBUG_UART_SHIFT=2
|
CONFIG_DEBUG_UART_SHIFT=2
|
||||||
CONFIG_SYSRESET=y
|
CONFIG_SYSRESET=y
|
||||||
|
CONFIG_SPI_FLASH_GIGADEVICE=y
|
||||||
|
CONFIG_ROCKCHIP_SPI=y
|
||||||
CONFIG_USB=y
|
CONFIG_USB=y
|
||||||
CONFIG_USB_XHCI_HCD=y
|
CONFIG_USB_XHCI_HCD=y
|
||||||
CONFIG_USB_XHCI_DWC3=y
|
CONFIG_USB_XHCI_DWC3=y
|
||||||
|
|
|
@ -16,7 +16,6 @@ CONFIG_USE_PREBOOT=y
|
||||||
CONFIG_SILENT_CONSOLE=y
|
CONFIG_SILENT_CONSOLE=y
|
||||||
CONFIG_CONSOLE_MUX=y
|
CONFIG_CONSOLE_MUX=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rk3288-tinker.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rk3288-tinker.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
|
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
|
||||||
|
|
|
@ -15,7 +15,6 @@ CONFIG_DEBUG_UART=y
|
||||||
CONFIG_USE_PREBOOT=y
|
CONFIG_USE_PREBOOT=y
|
||||||
CONFIG_SILENT_CONSOLE=y
|
CONFIG_SILENT_CONSOLE=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rk3288-tinker-s.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rk3288-tinker-s.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x300000
|
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x300000
|
||||||
|
|
|
@ -14,7 +14,6 @@ CONFIG_DEBUG_UART=y
|
||||||
CONFIG_USE_PREBOOT=y
|
CONFIG_USE_PREBOOT=y
|
||||||
CONFIG_SILENT_CONSOLE=y
|
CONFIG_SILENT_CONSOLE=y
|
||||||
CONFIG_DEFAULT_FDT_FILE="rk3288-vyasa.dtb"
|
CONFIG_DEFAULT_FDT_FILE="rk3288-vyasa.dtb"
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
|
||||||
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
CONFIG_SPL_STACK_R=y
|
CONFIG_SPL_STACK_R=y
|
||||||
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
|
CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2000
|
||||||
|
|
10
doc/board/rockchip/index.rst
Normal file
10
doc/board/rockchip/index.rst
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
.. SPDX-License-Identifier: GPL-2.0+
|
||||||
|
.. Copyright (C) 2019 Jagan Teki <jagan@amarulasolutions.com>
|
||||||
|
|
||||||
|
Rockchip
|
||||||
|
========
|
||||||
|
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 2
|
||||||
|
|
||||||
|
rockchip
|
130
doc/board/rockchip/rockchip.rst
Normal file
130
doc/board/rockchip/rockchip.rst
Normal file
|
@ -0,0 +1,130 @@
|
||||||
|
.. SPDX-License-Identifier: GPL-2.0+
|
||||||
|
.. Copyright (C) 2019 Jagan Teki <jagan@amarulasolutions.com>
|
||||||
|
|
||||||
|
ROCKCHIP
|
||||||
|
========
|
||||||
|
|
||||||
|
About this
|
||||||
|
----------
|
||||||
|
|
||||||
|
This document describes the information about Rockchip supported boards
|
||||||
|
and it's usage steps.
|
||||||
|
|
||||||
|
Rockchip boards
|
||||||
|
---------------
|
||||||
|
|
||||||
|
Rockchip is SoC solutions provider for tablets & PCs, streaming media
|
||||||
|
TV boxes, AI audio & vision, IoT hardware.
|
||||||
|
|
||||||
|
A wide range of Rockchip SoCs with associated boardsare supported in
|
||||||
|
mainline U-Boot.
|
||||||
|
|
||||||
|
List of mainline supported rockchip boards:
|
||||||
|
|
||||||
|
* rk3288
|
||||||
|
- Evb-RK3288
|
||||||
|
- Firefly-RK3288
|
||||||
|
- mqmaker MiQi
|
||||||
|
- Phytec RK3288 PCM-947
|
||||||
|
- PopMetal-RK3288
|
||||||
|
- Radxa Rock 2 Square
|
||||||
|
- Tinker-RK3288
|
||||||
|
- Google Jerry
|
||||||
|
- Google Mickey
|
||||||
|
- Google Minnie
|
||||||
|
- Google Speedy
|
||||||
|
- Amarula Vyasa-RK3288
|
||||||
|
* rk3328
|
||||||
|
- Rockchip RK3328 EVB
|
||||||
|
- Pine64 Rock64
|
||||||
|
* rk3368
|
||||||
|
- GeekBox
|
||||||
|
- PX5 EVB
|
||||||
|
- Rockchip sheep board
|
||||||
|
- Theobroma Systems RK3368-uQ7 SoM
|
||||||
|
* rk3399
|
||||||
|
- 96boards RK3399 Ficus
|
||||||
|
- 96boards Rock960
|
||||||
|
- Firefly-RK3399 Board
|
||||||
|
- Firefly ROC-RK3399-PC Board
|
||||||
|
- FriendlyElec NanoPC-T4
|
||||||
|
- FriendlyElec NanoPi M4
|
||||||
|
- FriendlyARM NanoPi NEO4
|
||||||
|
- Google Bob
|
||||||
|
- Khadas Edge
|
||||||
|
- Khadas Edge-Captain
|
||||||
|
- Khadas Edge-V
|
||||||
|
- Orange Pi RK3399 Board
|
||||||
|
- Pine64 RockPro64
|
||||||
|
- Radxa ROCK Pi 4
|
||||||
|
- Rockchip RK3399 Evaluation Board
|
||||||
|
- Theobroma Systems RK3399-Q7 SoM
|
||||||
|
|
||||||
|
Building
|
||||||
|
--------
|
||||||
|
|
||||||
|
TF-A
|
||||||
|
^^^^
|
||||||
|
|
||||||
|
TF-A would require to build for ARM64 Rockchip SoCs platforms.
|
||||||
|
|
||||||
|
To build TF-A::
|
||||||
|
|
||||||
|
git clone https://github.com/ARM-software/arm-trusted-firmware.git
|
||||||
|
cd arm-trusted-firmware
|
||||||
|
make realclean
|
||||||
|
make CROSS_COMPILE=aarch64-linux-gnu- PLAT=rk3399
|
||||||
|
|
||||||
|
Specify the PLAT= with desired rockchip platform to build TF-A for.
|
||||||
|
|
||||||
|
U-Boot
|
||||||
|
^^^^^^
|
||||||
|
|
||||||
|
To build rk3328 boards::
|
||||||
|
|
||||||
|
export BL31=/path/to/arm-trusted-firmware/to/bl31.elf
|
||||||
|
make evb-rk3328_defconfig
|
||||||
|
make
|
||||||
|
|
||||||
|
To build rk3288 boards::
|
||||||
|
|
||||||
|
make evb-rk3288_defconfig
|
||||||
|
make
|
||||||
|
|
||||||
|
To build rk3368 boards::
|
||||||
|
|
||||||
|
export BL31=/path/to/arm-trusted-firmware/to/bl31.elf
|
||||||
|
make evb-px5_defconfig
|
||||||
|
make
|
||||||
|
|
||||||
|
To build rk3399 boards::
|
||||||
|
|
||||||
|
export BL31=/path/to/arm-trusted-firmware/to/bl31.elf
|
||||||
|
make evb-rk3399_defconfig
|
||||||
|
make
|
||||||
|
|
||||||
|
Flashing
|
||||||
|
--------
|
||||||
|
|
||||||
|
SD Card
|
||||||
|
^^^^^^^
|
||||||
|
|
||||||
|
All rockchip platforms, except rk3128 (which doesn't use SPL) are now
|
||||||
|
supporting single boot image using binman and pad_cat.
|
||||||
|
|
||||||
|
To write an image that boots from an SD card (assumed to be /dev/sda)::
|
||||||
|
|
||||||
|
sudo dd if=u-boot-rockchip.bin of=/dev/sda seek=64
|
||||||
|
sync
|
||||||
|
|
||||||
|
TODO
|
||||||
|
----
|
||||||
|
|
||||||
|
- Add rockchip idbloader image building
|
||||||
|
- Add rockchip TPL image building
|
||||||
|
- Document SPI flash boot
|
||||||
|
- Describe steps for eMMC flashing
|
||||||
|
- Add missing SoC's with it boards list
|
||||||
|
|
||||||
|
.. Jagan Teki <jagan@amarulasolutions.com>
|
||||||
|
.. Fri Jan 10 00:08:40 IST 2020
|
|
@ -14,7 +14,7 @@
|
||||||
#include <syscon.h>
|
#include <syscon.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/arch-rockchip/clock.h>
|
#include <asm/arch-rockchip/clock.h>
|
||||||
#include <asm/arch-rockchip/cru_rk3288.h>
|
#include <asm/arch-rockchip/cru.h>
|
||||||
#include <asm/arch-rockchip/grf_rk3288.h>
|
#include <asm/arch-rockchip/grf_rk3288.h>
|
||||||
#include <asm/arch-rockchip/hardware.h>
|
#include <asm/arch-rockchip/hardware.h>
|
||||||
#include <dt-bindings/clock/rk3288-cru.h>
|
#include <dt-bindings/clock/rk3288-cru.h>
|
||||||
|
@ -141,7 +141,7 @@ static const struct pll_div apll_init_cfg = PLL_DIVISORS(APLL_HZ, 1, 1);
|
||||||
static const struct pll_div gpll_init_cfg = PLL_DIVISORS(GPLL_HZ, 2, 2);
|
static const struct pll_div gpll_init_cfg = PLL_DIVISORS(GPLL_HZ, 2, 2);
|
||||||
static const struct pll_div cpll_init_cfg = PLL_DIVISORS(CPLL_HZ, 1, 2);
|
static const struct pll_div cpll_init_cfg = PLL_DIVISORS(CPLL_HZ, 1, 2);
|
||||||
|
|
||||||
static int rkclk_set_pll(struct rk3288_cru *cru, enum rk_clk_id clk_id,
|
static int rkclk_set_pll(struct rockchip_cru *cru, enum rk_clk_id clk_id,
|
||||||
const struct pll_div *div)
|
const struct pll_div *div)
|
||||||
{
|
{
|
||||||
int pll_id = rk_pll_id(clk_id);
|
int pll_id = rk_pll_id(clk_id);
|
||||||
|
@ -172,7 +172,7 @@ static int rkclk_set_pll(struct rk3288_cru *cru, enum rk_clk_id clk_id,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int rkclk_configure_ddr(struct rk3288_cru *cru, struct rk3288_grf *grf,
|
static int rkclk_configure_ddr(struct rockchip_cru *cru, struct rk3288_grf *grf,
|
||||||
unsigned int hz)
|
unsigned int hz)
|
||||||
{
|
{
|
||||||
static const struct pll_div dpll_cfg[] = {
|
static const struct pll_div dpll_cfg[] = {
|
||||||
|
@ -295,7 +295,7 @@ static int pll_para_config(ulong freq_hz, struct pll_div *div, uint *ext_div)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int rockchip_mac_set_clk(struct rk3288_cru *cru, uint freq)
|
static int rockchip_mac_set_clk(struct rockchip_cru *cru, uint freq)
|
||||||
{
|
{
|
||||||
ulong ret;
|
ulong ret;
|
||||||
|
|
||||||
|
@ -333,7 +333,7 @@ static int rockchip_mac_set_clk(struct rk3288_cru *cru, uint freq)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int rockchip_vop_set_clk(struct rk3288_cru *cru, struct rk3288_grf *grf,
|
static int rockchip_vop_set_clk(struct rockchip_cru *cru, struct rk3288_grf *grf,
|
||||||
int periph, unsigned int rate_hz)
|
int periph, unsigned int rate_hz)
|
||||||
{
|
{
|
||||||
struct pll_div npll_config = {0};
|
struct pll_div npll_config = {0};
|
||||||
|
@ -384,7 +384,7 @@ static u32 rockchip_clk_gcd(u32 a, u32 b)
|
||||||
return a;
|
return a;
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rockchip_i2s_get_clk(struct rk3288_cru *cru, uint gclk_rate)
|
static ulong rockchip_i2s_get_clk(struct rockchip_cru *cru, uint gclk_rate)
|
||||||
{
|
{
|
||||||
unsigned long long rate;
|
unsigned long long rate;
|
||||||
uint val;
|
uint val;
|
||||||
|
@ -400,7 +400,7 @@ static ulong rockchip_i2s_get_clk(struct rk3288_cru *cru, uint gclk_rate)
|
||||||
return (ulong)rate;
|
return (ulong)rate;
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rockchip_i2s_set_clk(struct rk3288_cru *cru, uint gclk_rate,
|
static ulong rockchip_i2s_set_clk(struct rockchip_cru *cru, uint gclk_rate,
|
||||||
uint freq)
|
uint freq)
|
||||||
{
|
{
|
||||||
int n, d;
|
int n, d;
|
||||||
|
@ -418,7 +418,7 @@ static ulong rockchip_i2s_set_clk(struct rk3288_cru *cru, uint gclk_rate,
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_SPL_BUILD */
|
#endif /* CONFIG_SPL_BUILD */
|
||||||
|
|
||||||
static void rkclk_init(struct rk3288_cru *cru, struct rk3288_grf *grf)
|
static void rkclk_init(struct rockchip_cru *cru, struct rk3288_grf *grf)
|
||||||
{
|
{
|
||||||
u32 aclk_div;
|
u32 aclk_div;
|
||||||
u32 hclk_div;
|
u32 hclk_div;
|
||||||
|
@ -492,7 +492,7 @@ static void rkclk_init(struct rk3288_cru *cru, struct rk3288_grf *grf)
|
||||||
CPLL_MODE_NORMAL << CPLL_MODE_SHIFT);
|
CPLL_MODE_NORMAL << CPLL_MODE_SHIFT);
|
||||||
}
|
}
|
||||||
|
|
||||||
void rk3288_clk_configure_cpu(struct rk3288_cru *cru, struct rk3288_grf *grf)
|
void rk3288_clk_configure_cpu(struct rockchip_cru *cru, struct rk3288_grf *grf)
|
||||||
{
|
{
|
||||||
/* pll enter slow-mode */
|
/* pll enter slow-mode */
|
||||||
rk_clrsetreg(&cru->cru_mode_con, APLL_MODE_MASK,
|
rk_clrsetreg(&cru->cru_mode_con, APLL_MODE_MASK,
|
||||||
|
@ -534,7 +534,7 @@ void rk3288_clk_configure_cpu(struct rk3288_cru *cru, struct rk3288_grf *grf)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Get pll rate by id */
|
/* Get pll rate by id */
|
||||||
static uint32_t rkclk_pll_get_rate(struct rk3288_cru *cru,
|
static uint32_t rkclk_pll_get_rate(struct rockchip_cru *cru,
|
||||||
enum rk_clk_id clk_id)
|
enum rk_clk_id clk_id)
|
||||||
{
|
{
|
||||||
uint32_t nr, no, nf;
|
uint32_t nr, no, nf;
|
||||||
|
@ -567,7 +567,7 @@ static uint32_t rkclk_pll_get_rate(struct rk3288_cru *cru,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rockchip_mmc_get_clk(struct rk3288_cru *cru, uint gclk_rate,
|
static ulong rockchip_mmc_get_clk(struct rockchip_cru *cru, uint gclk_rate,
|
||||||
int periph)
|
int periph)
|
||||||
{
|
{
|
||||||
uint src_rate;
|
uint src_rate;
|
||||||
|
@ -601,7 +601,7 @@ static ulong rockchip_mmc_get_clk(struct rk3288_cru *cru, uint gclk_rate,
|
||||||
return DIV_TO_RATE(src_rate, div);
|
return DIV_TO_RATE(src_rate, div);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rockchip_mmc_set_clk(struct rk3288_cru *cru, uint gclk_rate,
|
static ulong rockchip_mmc_set_clk(struct rockchip_cru *cru, uint gclk_rate,
|
||||||
int periph, uint freq)
|
int periph, uint freq)
|
||||||
{
|
{
|
||||||
int src_clk_div;
|
int src_clk_div;
|
||||||
|
@ -651,7 +651,7 @@ static ulong rockchip_mmc_set_clk(struct rk3288_cru *cru, uint gclk_rate,
|
||||||
return rockchip_mmc_get_clk(cru, gclk_rate, periph);
|
return rockchip_mmc_get_clk(cru, gclk_rate, periph);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rockchip_spi_get_clk(struct rk3288_cru *cru, uint gclk_rate,
|
static ulong rockchip_spi_get_clk(struct rockchip_cru *cru, uint gclk_rate,
|
||||||
int periph)
|
int periph)
|
||||||
{
|
{
|
||||||
uint div, mux;
|
uint div, mux;
|
||||||
|
@ -681,7 +681,7 @@ static ulong rockchip_spi_get_clk(struct rk3288_cru *cru, uint gclk_rate,
|
||||||
return DIV_TO_RATE(gclk_rate, div);
|
return DIV_TO_RATE(gclk_rate, div);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rockchip_spi_set_clk(struct rk3288_cru *cru, uint gclk_rate,
|
static ulong rockchip_spi_set_clk(struct rockchip_cru *cru, uint gclk_rate,
|
||||||
int periph, uint freq)
|
int periph, uint freq)
|
||||||
{
|
{
|
||||||
int src_clk_div;
|
int src_clk_div;
|
||||||
|
@ -715,7 +715,7 @@ static ulong rockchip_spi_set_clk(struct rk3288_cru *cru, uint gclk_rate,
|
||||||
return rockchip_spi_get_clk(cru, gclk_rate, periph);
|
return rockchip_spi_get_clk(cru, gclk_rate, periph);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rockchip_saradc_get_clk(struct rk3288_cru *cru)
|
static ulong rockchip_saradc_get_clk(struct rockchip_cru *cru)
|
||||||
{
|
{
|
||||||
u32 div, val;
|
u32 div, val;
|
||||||
|
|
||||||
|
@ -726,7 +726,7 @@ static ulong rockchip_saradc_get_clk(struct rk3288_cru *cru)
|
||||||
return DIV_TO_RATE(OSC_HZ, div);
|
return DIV_TO_RATE(OSC_HZ, div);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rockchip_saradc_set_clk(struct rk3288_cru *cru, uint hz)
|
static ulong rockchip_saradc_set_clk(struct rockchip_cru *cru, uint hz)
|
||||||
{
|
{
|
||||||
int src_clk_div;
|
int src_clk_div;
|
||||||
|
|
||||||
|
@ -785,7 +785,7 @@ static ulong rk3288_clk_get_rate(struct clk *clk)
|
||||||
static ulong rk3288_clk_set_rate(struct clk *clk, ulong rate)
|
static ulong rk3288_clk_set_rate(struct clk *clk, ulong rate)
|
||||||
{
|
{
|
||||||
struct rk3288_clk_priv *priv = dev_get_priv(clk->dev);
|
struct rk3288_clk_priv *priv = dev_get_priv(clk->dev);
|
||||||
struct rk3288_cru *cru = priv->cru;
|
struct rockchip_cru *cru = priv->cru;
|
||||||
ulong new_rate, gclk_rate;
|
ulong new_rate, gclk_rate;
|
||||||
|
|
||||||
gclk_rate = rkclk_pll_get_rate(priv->cru, CLK_GENERAL);
|
gclk_rate = rkclk_pll_get_rate(priv->cru, CLK_GENERAL);
|
||||||
|
@ -892,7 +892,7 @@ static ulong rk3288_clk_set_rate(struct clk *clk, ulong rate)
|
||||||
static int __maybe_unused rk3288_gmac_set_parent(struct clk *clk, struct clk *parent)
|
static int __maybe_unused rk3288_gmac_set_parent(struct clk *clk, struct clk *parent)
|
||||||
{
|
{
|
||||||
struct rk3288_clk_priv *priv = dev_get_priv(clk->dev);
|
struct rk3288_clk_priv *priv = dev_get_priv(clk->dev);
|
||||||
struct rk3288_cru *cru = priv->cru;
|
struct rockchip_cru *cru = priv->cru;
|
||||||
const char *clock_output_name;
|
const char *clock_output_name;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
@ -1008,15 +1008,15 @@ static int rk3288_clk_bind(struct udevice *dev)
|
||||||
debug("Warning: No sysreset driver: ret=%d\n", ret);
|
debug("Warning: No sysreset driver: ret=%d\n", ret);
|
||||||
} else {
|
} else {
|
||||||
priv = malloc(sizeof(struct sysreset_reg));
|
priv = malloc(sizeof(struct sysreset_reg));
|
||||||
priv->glb_srst_fst_value = offsetof(struct rk3288_cru,
|
priv->glb_srst_fst_value = offsetof(struct rockchip_cru,
|
||||||
cru_glb_srst_fst_value);
|
cru_glb_srst_fst_value);
|
||||||
priv->glb_srst_snd_value = offsetof(struct rk3288_cru,
|
priv->glb_srst_snd_value = offsetof(struct rockchip_cru,
|
||||||
cru_glb_srst_snd_value);
|
cru_glb_srst_snd_value);
|
||||||
sys_child->priv = priv;
|
sys_child->priv = priv;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if CONFIG_IS_ENABLED(RESET_ROCKCHIP)
|
#if CONFIG_IS_ENABLED(RESET_ROCKCHIP)
|
||||||
ret = offsetof(struct rk3288_cru, cru_softrst_con[0]);
|
ret = offsetof(struct rockchip_cru, cru_softrst_con[0]);
|
||||||
ret = rockchip_reset_bind(dev, ret, 12);
|
ret = rockchip_reset_bind(dev, ret, 12);
|
||||||
if (ret)
|
if (ret)
|
||||||
debug("Warning: software reset driver bind faile\n");
|
debug("Warning: software reset driver bind faile\n");
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
#include <bitfield.h>
|
#include <bitfield.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/arch-rockchip/clock.h>
|
#include <asm/arch-rockchip/clock.h>
|
||||||
#include <asm/arch-rockchip/cru_rk3399.h>
|
#include <asm/arch-rockchip/cru.h>
|
||||||
#include <asm/arch-rockchip/hardware.h>
|
#include <asm/arch-rockchip/hardware.h>
|
||||||
#include <dm/lists.h>
|
#include <dm/lists.h>
|
||||||
#include <dt-bindings/clock/rk3399-cru.h>
|
#include <dt-bindings/clock/rk3399-cru.h>
|
||||||
|
@ -418,7 +418,7 @@ static int pll_para_config(u32 freq_hz, struct pll_div *div)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void rk3399_configure_cpu_l(struct rk3399_cru *cru,
|
void rk3399_configure_cpu_l(struct rockchip_cru *cru,
|
||||||
enum apll_l_frequencies apll_l_freq)
|
enum apll_l_frequencies apll_l_freq)
|
||||||
{
|
{
|
||||||
u32 aclkm_div;
|
u32 aclkm_div;
|
||||||
|
@ -453,7 +453,7 @@ void rk3399_configure_cpu_l(struct rk3399_cru *cru,
|
||||||
atclk_div << ATCLK_CORE_L_DIV_SHIFT);
|
atclk_div << ATCLK_CORE_L_DIV_SHIFT);
|
||||||
}
|
}
|
||||||
|
|
||||||
void rk3399_configure_cpu_b(struct rk3399_cru *cru,
|
void rk3399_configure_cpu_b(struct rockchip_cru *cru,
|
||||||
enum apll_b_frequencies apll_b_freq)
|
enum apll_b_frequencies apll_b_freq)
|
||||||
{
|
{
|
||||||
u32 aclkm_div;
|
u32 aclkm_div;
|
||||||
|
@ -505,7 +505,7 @@ void rk3399_configure_cpu_b(struct rk3399_cru *cru,
|
||||||
#define I2C_PMUCLK_REG_VALUE(bus, clk_div) \
|
#define I2C_PMUCLK_REG_VALUE(bus, clk_div) \
|
||||||
((clk_div - 1) << CLK_I2C ##bus## _DIV_CON_SHIFT)
|
((clk_div - 1) << CLK_I2C ##bus## _DIV_CON_SHIFT)
|
||||||
|
|
||||||
static ulong rk3399_i2c_get_clk(struct rk3399_cru *cru, ulong clk_id)
|
static ulong rk3399_i2c_get_clk(struct rockchip_cru *cru, ulong clk_id)
|
||||||
{
|
{
|
||||||
u32 div, con;
|
u32 div, con;
|
||||||
|
|
||||||
|
@ -542,7 +542,7 @@ static ulong rk3399_i2c_get_clk(struct rk3399_cru *cru, ulong clk_id)
|
||||||
return DIV_TO_RATE(GPLL_HZ, div);
|
return DIV_TO_RATE(GPLL_HZ, div);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rk3399_i2c_set_clk(struct rk3399_cru *cru, ulong clk_id, uint hz)
|
static ulong rk3399_i2c_set_clk(struct rockchip_cru *cru, ulong clk_id, uint hz)
|
||||||
{
|
{
|
||||||
int src_clk_div;
|
int src_clk_div;
|
||||||
|
|
||||||
|
@ -619,7 +619,7 @@ static const struct spi_clkreg spi_clkregs[] = {
|
||||||
.sel_shift = CLK_SPI5_PLL_SEL_SHIFT, },
|
.sel_shift = CLK_SPI5_PLL_SEL_SHIFT, },
|
||||||
};
|
};
|
||||||
|
|
||||||
static ulong rk3399_spi_get_clk(struct rk3399_cru *cru, ulong clk_id)
|
static ulong rk3399_spi_get_clk(struct rockchip_cru *cru, ulong clk_id)
|
||||||
{
|
{
|
||||||
const struct spi_clkreg *spiclk = NULL;
|
const struct spi_clkreg *spiclk = NULL;
|
||||||
u32 div, val;
|
u32 div, val;
|
||||||
|
@ -641,7 +641,7 @@ static ulong rk3399_spi_get_clk(struct rk3399_cru *cru, ulong clk_id)
|
||||||
return DIV_TO_RATE(GPLL_HZ, div);
|
return DIV_TO_RATE(GPLL_HZ, div);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rk3399_spi_set_clk(struct rk3399_cru *cru, ulong clk_id, uint hz)
|
static ulong rk3399_spi_set_clk(struct rockchip_cru *cru, ulong clk_id, uint hz)
|
||||||
{
|
{
|
||||||
const struct spi_clkreg *spiclk = NULL;
|
const struct spi_clkreg *spiclk = NULL;
|
||||||
int src_clk_div;
|
int src_clk_div;
|
||||||
|
@ -668,7 +668,7 @@ static ulong rk3399_spi_set_clk(struct rk3399_cru *cru, ulong clk_id, uint hz)
|
||||||
return rk3399_spi_get_clk(cru, clk_id);
|
return rk3399_spi_get_clk(cru, clk_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rk3399_vop_set_clk(struct rk3399_cru *cru, ulong clk_id, u32 hz)
|
static ulong rk3399_vop_set_clk(struct rockchip_cru *cru, ulong clk_id, u32 hz)
|
||||||
{
|
{
|
||||||
struct pll_div vpll_config = {0};
|
struct pll_div vpll_config = {0};
|
||||||
int aclk_vop = 198 * MHz;
|
int aclk_vop = 198 * MHz;
|
||||||
|
@ -712,7 +712,7 @@ static ulong rk3399_vop_set_clk(struct rk3399_cru *cru, ulong clk_id, u32 hz)
|
||||||
return hz;
|
return hz;
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rk3399_mmc_get_clk(struct rk3399_cru *cru, uint clk_id)
|
static ulong rk3399_mmc_get_clk(struct rockchip_cru *cru, uint clk_id)
|
||||||
{
|
{
|
||||||
u32 div, con;
|
u32 div, con;
|
||||||
|
|
||||||
|
@ -739,7 +739,7 @@ static ulong rk3399_mmc_get_clk(struct rk3399_cru *cru, uint clk_id)
|
||||||
return DIV_TO_RATE(GPLL_HZ, div);
|
return DIV_TO_RATE(GPLL_HZ, div);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rk3399_mmc_set_clk(struct rk3399_cru *cru,
|
static ulong rk3399_mmc_set_clk(struct rockchip_cru *cru,
|
||||||
ulong clk_id, ulong set_rate)
|
ulong clk_id, ulong set_rate)
|
||||||
{
|
{
|
||||||
int src_clk_div;
|
int src_clk_div;
|
||||||
|
@ -792,7 +792,7 @@ static ulong rk3399_mmc_set_clk(struct rk3399_cru *cru,
|
||||||
return rk3399_mmc_get_clk(cru, clk_id);
|
return rk3399_mmc_get_clk(cru, clk_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rk3399_gmac_set_clk(struct rk3399_cru *cru, ulong rate)
|
static ulong rk3399_gmac_set_clk(struct rockchip_cru *cru, ulong rate)
|
||||||
{
|
{
|
||||||
ulong ret;
|
ulong ret;
|
||||||
|
|
||||||
|
@ -817,7 +817,7 @@ static ulong rk3399_gmac_set_clk(struct rk3399_cru *cru, ulong rate)
|
||||||
}
|
}
|
||||||
|
|
||||||
#define PMUSGRF_DDR_RGN_CON16 0xff330040
|
#define PMUSGRF_DDR_RGN_CON16 0xff330040
|
||||||
static ulong rk3399_ddr_set_clk(struct rk3399_cru *cru,
|
static ulong rk3399_ddr_set_clk(struct rockchip_cru *cru,
|
||||||
ulong set_rate)
|
ulong set_rate)
|
||||||
{
|
{
|
||||||
struct pll_div dpll_cfg;
|
struct pll_div dpll_cfg;
|
||||||
|
@ -863,7 +863,7 @@ static ulong rk3399_ddr_set_clk(struct rk3399_cru *cru,
|
||||||
return set_rate;
|
return set_rate;
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rk3399_saradc_get_clk(struct rk3399_cru *cru)
|
static ulong rk3399_saradc_get_clk(struct rockchip_cru *cru)
|
||||||
{
|
{
|
||||||
u32 div, val;
|
u32 div, val;
|
||||||
|
|
||||||
|
@ -874,7 +874,7 @@ static ulong rk3399_saradc_get_clk(struct rk3399_cru *cru)
|
||||||
return DIV_TO_RATE(OSC_HZ, div);
|
return DIV_TO_RATE(OSC_HZ, div);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ulong rk3399_saradc_set_clk(struct rk3399_cru *cru, uint hz)
|
static ulong rk3399_saradc_set_clk(struct rockchip_cru *cru, uint hz)
|
||||||
{
|
{
|
||||||
int src_clk_div;
|
int src_clk_div;
|
||||||
|
|
||||||
|
@ -1071,7 +1071,7 @@ static struct clk_ops rk3399_clk_ops = {
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef CONFIG_SPL_BUILD
|
#ifdef CONFIG_SPL_BUILD
|
||||||
static void rkclk_init(struct rk3399_cru *cru)
|
static void rkclk_init(struct rockchip_cru *cru)
|
||||||
{
|
{
|
||||||
u32 aclk_div;
|
u32 aclk_div;
|
||||||
u32 hclk_div;
|
u32 hclk_div;
|
||||||
|
@ -1188,15 +1188,15 @@ static int rk3399_clk_bind(struct udevice *dev)
|
||||||
debug("Warning: No sysreset driver: ret=%d\n", ret);
|
debug("Warning: No sysreset driver: ret=%d\n", ret);
|
||||||
} else {
|
} else {
|
||||||
priv = malloc(sizeof(struct sysreset_reg));
|
priv = malloc(sizeof(struct sysreset_reg));
|
||||||
priv->glb_srst_fst_value = offsetof(struct rk3399_cru,
|
priv->glb_srst_fst_value = offsetof(struct rockchip_cru,
|
||||||
glb_srst_fst_value);
|
glb_srst_fst_value);
|
||||||
priv->glb_srst_snd_value = offsetof(struct rk3399_cru,
|
priv->glb_srst_snd_value = offsetof(struct rockchip_cru,
|
||||||
glb_srst_snd_value);
|
glb_srst_snd_value);
|
||||||
sys_child->priv = priv;
|
sys_child->priv = priv;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if CONFIG_IS_ENABLED(RESET_ROCKCHIP)
|
#if CONFIG_IS_ENABLED(RESET_ROCKCHIP)
|
||||||
ret = offsetof(struct rk3399_cru, softrst_con[0]);
|
ret = offsetof(struct rockchip_cru, softrst_con[0]);
|
||||||
ret = rockchip_reset_bind(dev, ret, 21);
|
ret = rockchip_reset_bind(dev, ret, 21);
|
||||||
if (ret)
|
if (ret)
|
||||||
debug("Warning: software reset driver bind faile\n");
|
debug("Warning: software reset driver bind faile\n");
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
#include <syscon.h>
|
#include <syscon.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/arch-rockchip/clock.h>
|
#include <asm/arch-rockchip/clock.h>
|
||||||
#include <asm/arch-rockchip/cru_rk3288.h>
|
#include <asm/arch-rockchip/cru.h>
|
||||||
#include <asm/arch-rockchip/ddr_rk3288.h>
|
#include <asm/arch-rockchip/ddr_rk3288.h>
|
||||||
#include <asm/arch-rockchip/grf_rk3288.h>
|
#include <asm/arch-rockchip/grf_rk3288.h>
|
||||||
#include <asm/arch-rockchip/pmu_rk3288.h>
|
#include <asm/arch-rockchip/pmu_rk3288.h>
|
||||||
|
@ -37,7 +37,7 @@ struct dram_info {
|
||||||
struct chan_info chan[2];
|
struct chan_info chan[2];
|
||||||
struct ram_info info;
|
struct ram_info info;
|
||||||
struct clk ddr_clk;
|
struct clk ddr_clk;
|
||||||
struct rk3288_cru *cru;
|
struct rockchip_cru *cru;
|
||||||
struct rk3288_grf *grf;
|
struct rk3288_grf *grf;
|
||||||
struct rk3288_sgrf *sgrf;
|
struct rk3288_sgrf *sgrf;
|
||||||
struct rk3288_pmu *pmu;
|
struct rk3288_pmu *pmu;
|
||||||
|
@ -93,7 +93,7 @@ static void copy_to_reg(u32 *dest, const u32 *src, u32 n)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ddr_reset(struct rk3288_cru *cru, u32 ch, u32 ctl, u32 phy)
|
static void ddr_reset(struct rockchip_cru *cru, u32 ch, u32 ctl, u32 phy)
|
||||||
{
|
{
|
||||||
u32 phy_ctl_srstn_shift = 4 + 5 * ch;
|
u32 phy_ctl_srstn_shift = 4 + 5 * ch;
|
||||||
u32 ctl_psrstn_shift = 3 + 5 * ch;
|
u32 ctl_psrstn_shift = 3 + 5 * ch;
|
||||||
|
@ -110,7 +110,7 @@ static void ddr_reset(struct rk3288_cru *cru, u32 ch, u32 ctl, u32 phy)
|
||||||
phy << phy_srstn_shift);
|
phy << phy_srstn_shift);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ddr_phy_ctl_reset(struct rk3288_cru *cru, u32 ch, u32 n)
|
static void ddr_phy_ctl_reset(struct rockchip_cru *cru, u32 ch, u32 n)
|
||||||
{
|
{
|
||||||
u32 phy_ctl_srstn_shift = 4 + 5 * ch;
|
u32 phy_ctl_srstn_shift = 4 + 5 * ch;
|
||||||
|
|
||||||
|
@ -118,7 +118,7 @@ static void ddr_phy_ctl_reset(struct rk3288_cru *cru, u32 ch, u32 n)
|
||||||
1 << phy_ctl_srstn_shift, n << phy_ctl_srstn_shift);
|
1 << phy_ctl_srstn_shift, n << phy_ctl_srstn_shift);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void phy_pctrl_reset(struct rk3288_cru *cru,
|
static void phy_pctrl_reset(struct rockchip_cru *cru,
|
||||||
struct rk3288_ddr_publ *publ,
|
struct rk3288_ddr_publ *publ,
|
||||||
int channel)
|
int channel)
|
||||||
{
|
{
|
||||||
|
|
|
@ -377,16 +377,12 @@ static int sdram_init(struct dram_info *dram,
|
||||||
printf("data training error\n");
|
printf("data training error\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (data_training(dram, 1, sdram_params->base.dramtype) != 0) {
|
|
||||||
printf("data training error\n");
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (sdram_params->base.dramtype == DDR4)
|
if (sdram_params->base.dramtype == DDR4)
|
||||||
pctl_write_vrefdq(dram->pctl, 0x3, 5670,
|
pctl_write_vrefdq(dram->pctl, 0x3, 5670,
|
||||||
sdram_params->base.dramtype);
|
sdram_params->base.dramtype);
|
||||||
|
|
||||||
if (pre_init == 0) {
|
if (pre_init != 0) {
|
||||||
rx_deskew_switch_adjust(dram);
|
rx_deskew_switch_adjust(dram);
|
||||||
tx_deskew_switch_adjust(dram);
|
tx_deskew_switch_adjust(dram);
|
||||||
}
|
}
|
||||||
|
@ -482,7 +478,7 @@ static int sdram_init_detect(struct dram_info *dram,
|
||||||
memcpy(&sdram_ch, &sdram_params->ch,
|
memcpy(&sdram_ch, &sdram_params->ch,
|
||||||
sizeof(struct rk3328_sdram_channel));
|
sizeof(struct rk3328_sdram_channel));
|
||||||
|
|
||||||
sdram_init(dram, sdram_params, 1);
|
sdram_init(dram, sdram_params, 0);
|
||||||
dram_detect_cap(dram, sdram_params, 0);
|
dram_detect_cap(dram, sdram_params, 0);
|
||||||
|
|
||||||
/* modify bw, cs related timing */
|
/* modify bw, cs related timing */
|
||||||
|
@ -495,7 +491,7 @@ static int sdram_init_detect(struct dram_info *dram,
|
||||||
sdram_ch.noc_timings.ddrtiming.b.bwratio = 1;
|
sdram_ch.noc_timings.ddrtiming.b.bwratio = 1;
|
||||||
|
|
||||||
/* reinit sdram by real dram cap */
|
/* reinit sdram by real dram cap */
|
||||||
sdram_init(dram, sdram_params, 0);
|
sdram_init(dram, sdram_params, 1);
|
||||||
|
|
||||||
/* redetect cs1 row */
|
/* redetect cs1 row */
|
||||||
sdram_detect_cs1_row(cap_info, sdram_params->base.dramtype);
|
sdram_detect_cs1_row(cap_info, sdram_params->base.dramtype);
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
#include <syscon.h>
|
#include <syscon.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/arch-rockchip/clock.h>
|
#include <asm/arch-rockchip/clock.h>
|
||||||
#include <asm/arch-rockchip/cru_rk3399.h>
|
#include <asm/arch-rockchip/cru.h>
|
||||||
#include <asm/arch-rockchip/grf_rk3399.h>
|
#include <asm/arch-rockchip/grf_rk3399.h>
|
||||||
#include <asm/arch-rockchip/pmu_rk3399.h>
|
#include <asm/arch-rockchip/pmu_rk3399.h>
|
||||||
#include <asm/arch-rockchip/hardware.h>
|
#include <asm/arch-rockchip/hardware.h>
|
||||||
|
@ -66,7 +66,7 @@ struct dram_info {
|
||||||
u32 pwrup_srefresh_exit[2];
|
u32 pwrup_srefresh_exit[2];
|
||||||
struct chan_info chan[2];
|
struct chan_info chan[2];
|
||||||
struct clk ddr_clk;
|
struct clk ddr_clk;
|
||||||
struct rk3399_cru *cru;
|
struct rockchip_cru *cru;
|
||||||
struct rk3399_grf_regs *grf;
|
struct rk3399_grf_regs *grf;
|
||||||
struct rk3399_pmu_regs *pmu;
|
struct rk3399_pmu_regs *pmu;
|
||||||
struct rk3399_pmucru *pmucru;
|
struct rk3399_pmucru *pmucru;
|
||||||
|
@ -228,7 +228,7 @@ static void *get_ddrc0_con(struct dram_info *dram, u8 channel)
|
||||||
return (channel == 0) ? &dram->grf->ddrc0_con0 : &dram->grf->ddrc1_con0;
|
return (channel == 0) ? &dram->grf->ddrc0_con0 : &dram->grf->ddrc1_con0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void rkclk_ddr_reset(struct rk3399_cru *cru, u32 channel, u32 ctl,
|
static void rkclk_ddr_reset(struct rockchip_cru *cru, u32 channel, u32 ctl,
|
||||||
u32 phy)
|
u32 phy)
|
||||||
{
|
{
|
||||||
channel &= 0x1;
|
channel &= 0x1;
|
||||||
|
@ -239,7 +239,7 @@ static void rkclk_ddr_reset(struct rk3399_cru *cru, u32 channel, u32 ctl,
|
||||||
&cru->softrst_con[4]);
|
&cru->softrst_con[4]);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void phy_pctrl_reset(struct rk3399_cru *cru, u32 channel)
|
static void phy_pctrl_reset(struct rockchip_cru *cru, u32 channel)
|
||||||
{
|
{
|
||||||
rkclk_ddr_reset(cru, channel, 1, 1);
|
rkclk_ddr_reset(cru, channel, 1, 1);
|
||||||
udelay(10);
|
udelay(10);
|
||||||
|
@ -337,11 +337,9 @@ static void set_memory_map(const struct chan_info *chan, u32 channel,
|
||||||
writel(0x2EC7FFFF, &denali_pi[34]);
|
writel(0x2EC7FFFF, &denali_pi[34]);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int phy_io_config(const struct chan_info *chan,
|
static int phy_io_config(u32 *denali_phy, u32 *denali_ctl,
|
||||||
const struct rk3399_sdram_params *params, u32 mr5)
|
const struct rk3399_sdram_params *params, u32 mr5)
|
||||||
{
|
{
|
||||||
u32 *denali_phy = chan->publ->denali_phy;
|
|
||||||
u32 *denali_ctl = chan->pctl->denali_ctl;
|
|
||||||
u32 vref_mode_dq, vref_value_dq, vref_mode_ac, vref_value_ac;
|
u32 vref_mode_dq, vref_value_dq, vref_mode_ac, vref_value_ac;
|
||||||
u32 mode_sel;
|
u32 mode_sel;
|
||||||
u32 speed;
|
u32 speed;
|
||||||
|
@ -780,7 +778,7 @@ static void set_ds_odt(const struct chan_info *chan,
|
||||||
/* phy_pad_fdbk_term 1bit DENALI_PHY_930 offset_17 */
|
/* phy_pad_fdbk_term 1bit DENALI_PHY_930 offset_17 */
|
||||||
clrsetbits_le32(&denali_phy[930], 0x1 << 17, reg_value);
|
clrsetbits_le32(&denali_phy[930], 0x1 << 17, reg_value);
|
||||||
|
|
||||||
phy_io_config(chan, params, mr5);
|
phy_io_config(denali_phy, denali_ctl, params, mr5);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void pctl_start(struct dram_info *dram,
|
static void pctl_start(struct dram_info *dram,
|
||||||
|
@ -2945,7 +2943,7 @@ static int sdram_init(struct dram_info *dram,
|
||||||
for (channel = 0; channel < 2; channel++) {
|
for (channel = 0; channel < 2; channel++) {
|
||||||
const struct chan_info *chan =
|
const struct chan_info *chan =
|
||||||
&dram->chan[channel];
|
&dram->chan[channel];
|
||||||
struct rk3399_cru *cru = dram->cru;
|
struct rockchip_cru *cru = dram->cru;
|
||||||
struct rk3399_ddr_publ_regs *publ = chan->publ;
|
struct rk3399_ddr_publ_regs *publ = chan->publ;
|
||||||
|
|
||||||
phy_pctrl_reset(cru, channel);
|
phy_pctrl_reset(cru, channel);
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#include <dm/uclass-internal.h>
|
#include <dm/uclass-internal.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <asm/arch-rockchip/clock.h>
|
#include <asm/arch-rockchip/clock.h>
|
||||||
#include <asm/arch-rockchip/cru_rk3288.h>
|
#include <asm/arch-rockchip/cru.h>
|
||||||
#include <asm/arch-rockchip/grf_rk3288.h>
|
#include <asm/arch-rockchip/grf_rk3288.h>
|
||||||
#include <asm/arch-rockchip/hardware.h>
|
#include <asm/arch-rockchip/hardware.h>
|
||||||
#include <asm/arch-rockchip/rockchip_mipi_dsi.h>
|
#include <asm/arch-rockchip/rockchip_mipi_dsi.h>
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#include <dm/uclass-internal.h>
|
#include <dm/uclass-internal.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <asm/arch-rockchip/clock.h>
|
#include <asm/arch-rockchip/clock.h>
|
||||||
#include <asm/arch-rockchip/cru_rk3399.h>
|
#include <asm/arch-rockchip/cru.h>
|
||||||
#include <asm/arch-rockchip/grf_rk3399.h>
|
#include <asm/arch-rockchip/grf_rk3399.h>
|
||||||
#include <asm/arch-rockchip/hardware.h>
|
#include <asm/arch-rockchip/hardware.h>
|
||||||
#include <asm/arch-rockchip/rockchip_mipi_dsi.h>
|
#include <asm/arch-rockchip/rockchip_mipi_dsi.h>
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#include <dm/uclass-internal.h>
|
#include <dm/uclass-internal.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <asm/arch-rockchip/clock.h>
|
#include <asm/arch-rockchip/clock.h>
|
||||||
#include <asm/arch-rockchip/cru_rk3399.h>
|
#include <asm/arch-rockchip/cru.h>
|
||||||
#include <asm/arch-rockchip/grf_rk3399.h>
|
#include <asm/arch-rockchip/grf_rk3399.h>
|
||||||
#include <asm/arch-rockchip/rockchip_mipi_dsi.h>
|
#include <asm/arch-rockchip/rockchip_mipi_dsi.h>
|
||||||
|
|
||||||
|
|
8
env/Kconfig
vendored
8
env/Kconfig
vendored
|
@ -491,7 +491,8 @@ config ENV_OFFSET
|
||||||
hex "Environment offset"
|
hex "Environment offset"
|
||||||
depends on ENV_IS_IN_EEPROM || ENV_IS_IN_MMC || ENV_IS_IN_NAND || \
|
depends on ENV_IS_IN_EEPROM || ENV_IS_IN_MMC || ENV_IS_IN_NAND || \
|
||||||
ENV_IS_IN_SPI_FLASH
|
ENV_IS_IN_SPI_FLASH
|
||||||
default 0x3f8000 if ARCH_ROCKCHIP
|
default 0x3f8000 if ARCH_ROCKCHIP && ENV_IS_IN_MMC
|
||||||
|
default 0x140000 if ARCH_ROCKCHIP && ENV_IS_IN_SPI_FLASH
|
||||||
default 0x88000 if ARCH_SUNXI
|
default 0x88000 if ARCH_SUNXI
|
||||||
default 0xE0000 if ARCH_ZYNQ
|
default 0xE0000 if ARCH_ZYNQ
|
||||||
default 0x1E00000 if ARCH_ZYNQMP
|
default 0x1E00000 if ARCH_ZYNQMP
|
||||||
|
@ -514,7 +515,9 @@ config ENV_SIZE
|
||||||
hex "Environment Size"
|
hex "Environment Size"
|
||||||
default 0x40000 if ENV_IS_IN_SPI_FLASH && ARCH_ZYNQMP
|
default 0x40000 if ENV_IS_IN_SPI_FLASH && ARCH_ZYNQMP
|
||||||
default 0x20000 if ARCH_SUNXI || ARCH_ZYNQ || ARCH_OMAP2PLUS || ARCH_AT91
|
default 0x20000 if ARCH_SUNXI || ARCH_ZYNQ || ARCH_OMAP2PLUS || ARCH_AT91
|
||||||
default 0x8000 if ARCH_ROCKCHIP || ARCH_ZYNQMP || ARCH_VERSAL
|
default 0x8000 if ARCH_ROCKCHIP && ENV_IS_IN_MMC
|
||||||
|
default 0x2000 if ARCH_ROCKCHIP && ENV_IS_IN_SPI_FLASH
|
||||||
|
default 0x8000 if ARCH_ZYNQMP || ARCH_VERSAL
|
||||||
default 0x4000 if ARC
|
default 0x4000 if ARC
|
||||||
default 0x1f000
|
default 0x1f000
|
||||||
help
|
help
|
||||||
|
@ -523,6 +526,7 @@ config ENV_SIZE
|
||||||
config ENV_SECT_SIZE
|
config ENV_SECT_SIZE
|
||||||
hex "Environment Sector-Size"
|
hex "Environment Sector-Size"
|
||||||
depends on ENV_IS_IN_FLASH || ENV_IS_IN_SPI_FLASH
|
depends on ENV_IS_IN_FLASH || ENV_IS_IN_SPI_FLASH
|
||||||
|
default 0x2000 if ARCH_ROCKCHIP
|
||||||
default 0x40000 if ARCH_ZYNQMP || ARCH_VERSAL
|
default 0x40000 if ARCH_ZYNQMP || ARCH_VERSAL
|
||||||
default 0x20000 if ARCH_ZYNQ || ARCH_OMAP2PLUS || ARCH_AT91
|
default 0x20000 if ARCH_ZYNQ || ARCH_OMAP2PLUS || ARCH_AT91
|
||||||
help
|
help
|
||||||
|
|
|
@ -8,7 +8,9 @@
|
||||||
|
|
||||||
#include <configs/rk3399_common.h>
|
#include <configs/rk3399_common.h>
|
||||||
|
|
||||||
#define CONFIG_SYS_MMC_ENV_DEV 0
|
#if defined(CONFIG_ENV_IS_IN_MMC)
|
||||||
|
# define CONFIG_SYS_MMC_ENV_DEV 0
|
||||||
|
#endif
|
||||||
|
|
||||||
#define SDRAM_BANK_SIZE (2UL << 30)
|
#define SDRAM_BANK_SIZE (2UL << 30)
|
||||||
|
|
||||||
|
|
|
@ -63,7 +63,10 @@
|
||||||
"fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
|
"fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
|
||||||
"partitions=" PARTS_DEFAULT \
|
"partitions=" PARTS_DEFAULT \
|
||||||
ROCKCHIP_DEVICE_SETTINGS \
|
ROCKCHIP_DEVICE_SETTINGS \
|
||||||
BOOTENV
|
BOOTENV \
|
||||||
|
"altbootcmd=" \
|
||||||
|
"setenv boot_syslinux_conf extlinux/extlinux-rollback.conf;" \
|
||||||
|
"run distro_bootcmd\0"
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,9 @@
|
||||||
|
|
||||||
#define CONFIG_SYS_NS16550_MEM32
|
#define CONFIG_SYS_NS16550_MEM32
|
||||||
|
|
||||||
|
/* ((CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR - 64) * 512) */
|
||||||
|
#define CONFIG_SPL_PAD_TO 8355840
|
||||||
|
|
||||||
#ifndef CONFIG_SPL_BUILD
|
#ifndef CONFIG_SPL_BUILD
|
||||||
|
|
||||||
/* First try to boot from SD (index 0), then eMMC (index 1) */
|
/* First try to boot from SD (index 0), then eMMC (index 1) */
|
||||||
|
|
Loading…
Reference in a new issue