forked from Qortal/Brooklyn
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
20 lines
672 B
Plaintext
20 lines
672 B
Plaintext
Freescale DCFG
|
|
|
|
DCFG is the device configuration unit, that provides general purpose
|
|
configuration and status for the device. Such as setting the secondary
|
|
core start address and release the secondary core from holdoff and startup.
|
|
|
|
Required properties:
|
|
- compatible: Should contain a chip-specific compatible string,
|
|
Chip-specific strings are of the form "fsl,<chip>-dcfg",
|
|
The following <chip>s are known to be supported:
|
|
ls1012a, ls1021a, ls1043a, ls1046a, ls2080a, lx2160a
|
|
|
|
- reg : should contain base address and length of DCFG memory-mapped registers
|
|
|
|
Example:
|
|
dcfg: dcfg@1ee0000 {
|
|
compatible = "fsl,ls1021a-dcfg";
|
|
reg = <0x0 0x1ee0000 0x0 0x10000>;
|
|
};
|