|
Posted at 7/19/2021 11:45:34
Only Author
2#
Hi,
The AIO-3568J can only boot from SATA storage.
You can refer to this patch:
- diff --git a/arch/arm/dts/rk3568-u-boot.dtsi b/arch/arm/dts/rk3568-u-boot.dtsi
- index f4a466e327..f1236742be 100644
- --- a/arch/arm/dts/rk3568-u-boot.dtsi
- +++ b/arch/arm/dts/rk3568-u-boot.dtsi
- @@ -427,3 +427,22 @@
- u-boot,dm-pre-reloc;
- status = "okay";
- };
- +
- +&sata1 {
- + u-boot,dm-pre-reloc;
- + status = "okay";
- +};
- +
- +&combphy1_usq {
- + u-boot,dm-pre-reloc;
- + status = "okay";
- +};
- +
- +&pipegrf {
- + u-boot,dm-pre-reloc;
- +};
- +
- +&pipe_phy_grf1{
- + u-boot,dm-pre-reloc;
- +};
- +
- diff --git a/configs/rk3568-sata.config b/configs/rk3568-sata.config
- new file mode 100644
- index 0000000000..110e611bab
- --- /dev/null
- +++ b/configs/rk3568-sata.config
- @@ -0,0 +1,11 @@
- +# CONFIG_AHCI_PCI is not set
- +CONFIG_AHCI=y
- +CONFIG_BASE_DEFCONFIG="rk3568_defconfig"
- +CONFIG_CMD_SCSI=y
- +CONFIG_DM_SCSI=y
- +CONFIG_DWC_AHCI=y
- +CONFIG_LIBATA=y
- +CONFIG_PHY_ROCKCHIP_NANENG_COMBOPHY=y
- +# CONFIG_SATA_CEVA is not set
- +CONFIG_SCSI_AHCI=y
- +CONFIG_SCSI=y
Copy the code |
|