1Rockchip devinfo reserved memory device tree bindings 2======================================================= 3 4Dev Info Device Node: 5======================= 6static allocation a specific range of reserved memory 7 8Required properties: 9----------------- 10- compatible: Should be 11 "rockchip,stb-devinfo" 12- reg: standard definition 13 14Example: 15----- 16/* RK3399 */ 17 reserved-memory { 18 #address-cells = <2>; 19 #size-cells = <2>; 20 ranges; 21 22 ... 23 24 stb_devinfo: stb-devinfo@00000000 { 25 compatible = "rockchip,stb-devinfo"; 26 reg = <0x0 0x0 0x0 0x0>; 27 }; 28 }; 29