1Freescale DCFG 2 3DCFG is the device configuration unit, that provides general purpose 4configuration and status for the device. Such as setting the secondary 5core start address and release the secondary core from holdoff and startup. 6 7Required properties: 8 - compatible: Should contain a chip-specific compatible string, 9 Chip-specific strings are of the form "fsl,<chip>-dcfg", 10 The following <chip>s are known to be supported: 11 ls1012a, ls1021a, ls1043a, ls1046a, ls2080a. 12 13 - reg : should contain base address and length of DCFG memory-mapped registers 14 15Example: 16 dcfg: dcfg@1ee0000 { 17 compatible = "fsl,ls1021a-dcfg"; 18 reg = <0x0 0x1ee0000 0x0 0x10000>; 19 }; 20