mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
5feb5e3215
Update these 3 files from Linux:. - socfpga_arria10.dtsi (Commit ID c1459a9d7e92) - socfpga_arria10_socdk.dtsi (Commit ID d9b9f805ee2b) - socfpga_arria10_socdk_sdmmc.dts (Commit ID 17808d445b6f) Change in socfpga_arria10.dtsi: - Add clkmgr label, so that can reference to it in u-boot.dtsi. Change in socfpga_arria10-u-boot.dtsi: - Add compatible and altr,sysmgr-syscon for uboot. Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
27 lines
535 B
Text
27 lines
535 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2014-2015 Altera Corporation <www.altera.com>
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include "socfpga_arria10_socdk.dtsi"
|
|
|
|
&mmc {
|
|
status = "okay";
|
|
cap-sd-highspeed;
|
|
cap-mmc-highspeed;
|
|
broken-cd;
|
|
bus-width = <4>;
|
|
};
|
|
|
|
&eccmgr {
|
|
sdmmca-ecc@ff8c2c00 {
|
|
compatible = "altr,socfpga-sdmmc-ecc";
|
|
reg = <0xff8c2c00 0x400>;
|
|
altr,ecc-parent = <&mmc>;
|
|
interrupts = <15 IRQ_TYPE_LEVEL_HIGH>,
|
|
<47 IRQ_TYPE_LEVEL_HIGH>,
|
|
<16 IRQ_TYPE_LEVEL_HIGH>,
|
|
<48 IRQ_TYPE_LEVEL_HIGH>;
|
|
};
|
|
};
|