Lines Matching refs:prop
318 const __be32 *prop; in check_cpu_feature_properties() local
321 prop = of_get_flat_dt_prop(node, fp->name, NULL); in check_cpu_feature_properties()
322 if (prop && be32_to_cpup(prop) >= fp->min_value) { in check_cpu_feature_properties()
335 const __be32 *prop; in early_init_dt_scan_cpus() local
421 prop = of_get_flat_dt_prop(node, "cpu-version", NULL); in early_init_dt_scan_cpus()
422 if (prop && (be32_to_cpup(prop) & 0xff000000) == 0x0f000000) { in early_init_dt_scan_cpus()
423 identify_cpu(0, be32_to_cpup(prop)); in early_init_dt_scan_cpus()
424 cpu_version = prop; in early_init_dt_scan_cpus()
648 const __be32 *prop; in early_reserve_mem_dt() local
655 prop = of_get_flat_dt_prop(dt_root, "reserved-ranges", &len); in early_reserve_mem_dt()
657 if (!prop) in early_reserve_mem_dt()
664 for (i = 0; i < len / (sizeof(*prop) * 4); i++) { in early_reserve_mem_dt()
667 base = of_read_number(prop + (i * 4) + 0, 2); in early_reserve_mem_dt()
668 size = of_read_number(prop + (i * 4) + 2, 2); in early_reserve_mem_dt()
757 const char *prop; in early_init_dt_scan_model() local
762 prop = of_get_flat_dt_prop(node, "model", NULL); in early_init_dt_scan_model()
763 if (prop) in early_init_dt_scan_model()
764 seq_buf_printf(&ppc_hw_desc, "%s ", prop); in early_init_dt_scan_model()