I saw in the reference manual that there is a DRC0 in the Db Memory Map, but also it says that the Db Memory map is accessible only by the SCU. Is this the DDR Controller?
I tried the following in my device tree, but this produces a kernel panic:
&ddr_subsys {
edacmc: memory-controller@5c000000 {
compatible = "snps,ddrc-3.80a";
reg = <0x5c000000 0x10000>;
interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>, /* Correctable error */
<GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>, /* Uncorrectable error */
<GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>; /* Address Channel Error */
interrupt-names = "ecc_ce", "ecc_ue", "ecc_ap";
};
};