Searched refs:prop_size (Results 1 – 5 of 5) sorted by relevance
| /xnu-8020.101.4/pexpert/arm/ |
| H A D | pe_serial.c | 800 uint32_t prop_size; in serial_init() local 843 SecureDTGetProperty(entryP, "reg", (void const **)®_prop, &prop_size); in serial_init() 847 SecureDTGetProperty(entryP, "reg", (void const **)®_prop, &prop_size); in serial_init() 857 SecureDTGetProperty(entryP, "reg", (void const **)®_prop, &prop_size); in serial_init() 869 SecureDTGetProperty(entryP, "reg", (void const **)®_prop, &prop_size); in serial_init() 871 if (prop_size / sizeof(uintptr_t) != 4) { in serial_init() 880 SecureDTGetProperty(entryP, "max-aop-clk", (void const **)&prop_value, &prop_size); in serial_init() 883 SecureDTGetProperty(entryP, "enable-sw-drain", (void const **)&prop_value, &prop_size); in serial_init() 886 SecureDTGetProperty(entryP, "dock-wstat-mask", (void const **)&prop_value, &prop_size); in serial_init() 889 SecureDTGetProperty(entryP, "interrupts", (void const **)&prop_value, &prop_size); in serial_init() [all …]
|
| H A D | pe_identify_machine.c | 186 uint32_t prop_size; in pe_arm_get_soc_base_phys() local 191 SecureDTGetProperty(entryP, "device_type", (void const **)&tmpStr, &prop_size); in pe_arm_get_soc_base_phys() 195 SecureDTGetProperty(entryP, "ranges", (void const **)&ranges_prop, &prop_size); in pe_arm_get_soc_base_phys() 304 uint32_t prop_size, reg_window_size = 0; in pe_init_debug_command() local 312 if (SecureDTGetProperty(entryP, entry_name, (void const **)®_prop, &prop_size) != kSuccess) { in pe_init_debug_command() 316 if (prop_size % (2 * sizeof(*reg_prop))) { in pe_init_debug_command() 318 __func__, entry_name, prop_size, 2 * sizeof(*reg_prop)); in pe_init_debug_command() 322 for (; prop_size; reg_prop += 2, prop_size -= 2 * sizeof(*reg_prop)) { in pe_init_debug_command() 487 uint32_t prop_size; in pe_arm_init_debug() local 496 if (SecureDTGetProperty(entryP, "reg", (void const **)®_prop, &prop_size) == kSuccess) { in pe_arm_init_debug() [all …]
|
| H A D | pe_fiq.c | 92 unsigned int prop_size; in pe_init_fiq() local 93 error = SecureDTGetProperty(entry, "reg", &prop, &prop_size); in pe_init_fiq() 99 if (prop_size < 4 * sizeof(uint64_t)) { in pe_init_fiq() 100 …rrect reg property size in GIC DT node; expecting 32 bytes but got %u bytes", __func__, prop_size); in pe_init_fiq()
|
| /xnu-8020.101.4/osfmk/arm/pmap/ |
| H A D | pmap_data.c | 1998 unsigned int prop_size = 0; in pmap_compute_pv_targets() local 2003 if (kSuccess == SecureDTGetProperty(entry, "pmap-pv-count", &prop, &prop_size)) { in pmap_compute_pv_targets() 2004 if (prop_size != sizeof(pv_alloc_initial_target)) { in pmap_compute_pv_targets() 2010 if (kSuccess == SecureDTGetProperty(entry, "pmap-kern-pv-count", &prop, &prop_size)) { in pmap_compute_pv_targets() 2011 if (prop_size != sizeof(pv_kern_alloc_initial_target)) { in pmap_compute_pv_targets() 2017 if (kSuccess == SecureDTGetProperty(entry, "pmap-kern-pv-min", &prop, &prop_size)) { in pmap_compute_pv_targets() 2018 if (prop_size != sizeof(pv_kern_low_water_mark)) { in pmap_compute_pv_targets() 3463 unsigned int prop_size = 0; in pmap_compute_io_rgns() local 3464 if (kSuccess != SecureDTGetProperty(entry, "pmap-io-ranges", &prop, &prop_size)) { in pmap_compute_io_rgns() 3475 for (unsigned int i = 0; i < (prop_size / sizeof(*ranges)); ++i) { in pmap_compute_io_rgns() [all …]
|
| /xnu-8020.101.4/osfmk/arm/ |
| H A D | pmap.c | 1896 unsigned int prop_size; in pmap_compute_max_asids() local 1901 if (kSuccess != SecureDTGetProperty(entry, "pmap-max-asids", &prop, &prop_size)) { in pmap_compute_max_asids() 1907 if (prop_size != sizeof(max_asids)) { in pmap_compute_max_asids() 1990 unsigned int prop_size = 0; in pmap_set_srd_fusing() local 1997 if (kSuccess == SecureDTGetProperty(entry, "research-enabled", (const void**)&prop, &prop_size)) { in pmap_set_srd_fusing() 1998 if (prop_size == sizeof(uint32_t)) { in pmap_set_srd_fusing()
|