Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.3-rc4 24 lines 753 B view raw
1Milbeaut SRAM for smp bringup 2 3Milbeaut SoCs use a part of the sram for the bringup of the secondary cores. 4Once they get powered up in the bootloader, they stay at the specific part 5of the sram. 6Therefore the part needs to be added as the sub-node of mmio-sram. 7 8Required sub-node properties: 9- compatible : should be "socionext,milbeaut-smp-sram" 10 11Example: 12 13 sram: sram@0 { 14 compatible = "mmio-sram"; 15 reg = <0x0 0x10000>; 16 #address-cells = <1>; 17 #size-cells = <1>; 18 ranges = <0 0x0 0x10000>; 19 20 smp-sram@f100 { 21 compatible = "socionext,milbeaut-smp-sram"; 22 reg = <0xf100 0x20>; 23 }; 24 };