Lines Matching refs:prop

478 	const __be32 *prop;  in __reserved_mem_reserve_reg()  local
481 prop = of_get_flat_dt_prop(node, "reg", &len); in __reserved_mem_reserve_reg()
482 if (!prop) in __reserved_mem_reserve_reg()
494 base = dt_mem_next_cell(dt_root_addr_cells, &prop); in __reserved_mem_reserve_reg()
495 size = dt_mem_next_cell(dt_root_size_cells, &prop); in __reserved_mem_reserve_reg()
521 const __be32 *prop; in __reserved_mem_check_root() local
523 prop = of_get_flat_dt_prop(node, "#size-cells", NULL); in __reserved_mem_check_root()
524 if (!prop || be32_to_cpup(prop) != dt_root_size_cells) in __reserved_mem_check_root()
527 prop = of_get_flat_dt_prop(node, "#address-cells", NULL); in __reserved_mem_check_root()
528 if (!prop || be32_to_cpup(prop) != dt_root_addr_cells) in __reserved_mem_check_root()
531 prop = of_get_flat_dt_prop(node, "ranges", NULL); in __reserved_mem_check_root()
532 if (!prop) in __reserved_mem_check_root()
740 const char *prop; in of_flat_dt_match_machine() local
745 prop = of_get_flat_dt_prop(dt_root, "compatible", &size); in of_flat_dt_match_machine()
746 if (prop) { in of_flat_dt_match_machine()
748 printk("'%s' ", prop); in of_flat_dt_match_machine()
749 size -= strlen(prop) + 1; in of_flat_dt_match_machine()
750 prop += strlen(prop) + 1; in of_flat_dt_match_machine()
771 const __be32 *prop; in early_init_dt_check_for_initrd() local
775 prop = of_get_flat_dt_prop(node, "linux,initrd-start", &len); in early_init_dt_check_for_initrd()
776 if (!prop) in early_init_dt_check_for_initrd()
778 start = of_read_number(prop, len/4); in early_init_dt_check_for_initrd()
780 prop = of_get_flat_dt_prop(node, "linux,initrd-end", &len); in early_init_dt_check_for_initrd()
781 if (!prop) in early_init_dt_check_for_initrd()
783 end = of_read_number(prop, len/4); in early_init_dt_check_for_initrd()
863 const __be32 *prop; in early_init_dt_scan_root() local
871 prop = of_get_flat_dt_prop(node, "#size-cells", NULL); in early_init_dt_scan_root()
872 if (prop) in early_init_dt_scan_root()
873 dt_root_size_cells = be32_to_cpup(prop); in early_init_dt_scan_root()
876 prop = of_get_flat_dt_prop(node, "#address-cells", NULL); in early_init_dt_scan_root()
877 if (prop) in early_init_dt_scan_root()
878 dt_root_addr_cells = be32_to_cpup(prop); in early_init_dt_scan_root()