Home
last modified time | relevance | path

Searched refs:property_u32 (Results 1 – 4 of 4) sorted by relevance

/external/crosvm/aarch64/src/
Dfdt.rs72 fdt.property_u32("#address-cells", 0x1)?; in create_cpu_nodes()
73 fdt.property_u32("#size-cells", 0x0)?; in create_cpu_nodes()
83 fdt.property_u32("reg", cpu_id)?; in create_cpu_nodes()
103 fdt.property_u32("#interrupt-cells", GIC_FDT_IRQ_NUM_CELLS)?; in create_gic_node()
106 fdt.property_u32("phandle", PHANDLE_GIC)?; in create_gic_node()
107 fdt.property_u32("#address-cells", 2)?; in create_gic_node()
108 fdt.property_u32("#size-cells", 2)?; in create_gic_node()
161 fdt.property_u32("clock-frequency", AARCH64_SERIAL_SPEED)?; in create_serial_node()
202 fdt.property_u32("linux,pci-probe-only", 1)?; in create_chosen_node()
224 fdt.property_u32("linux,initrd-start", initrd_start)?; in create_chosen_node()
[all …]
/external/crosvm/arch/src/
Dfdt.rs270 pub fn property_u32(&mut self, name: &str, val: u32) -> Result<()> { in property_u32() method
474 fdt.property_u32("u32", 0x12345678).unwrap(); in prop_u32()
511 fdt.property_u32("u32", 0x12345678).unwrap(); in all_props()
589 fdt.property_u32("abc", 0x13579024).unwrap(); in nested_nodes()
591 fdt.property_u32("def", 0x12121212).unwrap(); in nested_nodes()
637 fdt.property_u32("abc", 0x13579024).unwrap(); in prop_name_string_reuse()
639 fdt.property_u32("def", 0x12121212).unwrap(); in prop_name_string_reuse()
640 fdt.property_u32("abc", 0x12121212).unwrap(); // This should reuse the "abc" string. in prop_name_string_reuse()
696 fdt.property_u32("abc\0def", 0) in invalid_prop_name_nul()
719 fdt.property_u32("ok_prop", 1234).unwrap(); in invalid_prop_after_end_node()
[all …]
/external/dtc/tests/
Dpylibfdt_tests.py513 sw.property_u32('prop-int', TEST_VALUE_1)
515 sw.property_u32('prop-int', TEST_VALUE_1)
518 sw.property_u32('#address-cells', 1)
519 sw.property_u32('#size-cells', 0)
523 sw.property_u32('reg', 1)
536 sw.property_u32('reg', 2)
539 sw.property_u32('#address-cells', 1)
540 sw.property_u32('#size-cells', 0)
542 sw.property_u32('reg', 0)
556 sw.property_u32('reg', 3)
/external/dtc/pylibfdt/
Dlibfdt.i879 def property_u32(self, name, val):