Home
last modified time | relevance | path

Searched refs:entryP (Results 1 – 5 of 5) sorted by relevance

/xnu-11215/pexpert/arm/
H A Dpe_identify_machine.c165 DTEntry entryP; in pe_arm_get_soc_base_phys() local
170 if (SecureDTFindEntry("name", "arm-io", &entryP) == kSuccess) { in pe_arm_get_soc_base_phys()
172 SecureDTGetProperty(entryP, "device_type", (void const **)&tmpStr, &prop_size); in pe_arm_get_soc_base_phys()
176 SecureDTGetProperty(entryP, "ranges", (void const **)&ranges_prop, &prop_size); in pe_arm_get_soc_base_phys()
193 DTEntry entryP; in pe_arm_map_interrupt_controller() local
206 if (SecureDTFindEntry("interrupt-controller", "master", &entryP) == kSuccess) { in pe_arm_map_interrupt_controller()
208 SecureDTGetProperty(entryP, "reg", (void const **)&reg_prop, &prop_size); in pe_arm_map_interrupt_controller()
217 if (SecureDTFindEntry("device_type", "timer", &entryP) == kSuccess) { in pe_arm_map_interrupt_controller()
219 SecureDTGetProperty(entryP, "reg", (void const **)&reg_prop, &prop_size); in pe_arm_map_interrupt_controller()
H A Dpe_consistent_debug.c76 DTEntry entryP; in PE_consistent_debug_inherit() local
81 if ((SecureDTLookupEntry(NULL, "/chosen", &entryP) == kSuccess)) { in PE_consistent_debug_inherit()
82 …if (SecureDTGetProperty(entryP, "consistent-debug-root", (void const **)&prop_data, &size) == kSuc… in PE_consistent_debug_inherit()
/xnu-11215/pexpert/arm/hwtrace/
H A Dhwtrace.c191 pe_init_debug_command(DTEntry entryP, command_buffer_element_t **command_buffer, const char* entry_… in pe_init_debug_command() argument
209 if (SecureDTGetProperty(entryP, entry_name, (void const **)&reg_prop, &prop_size) != kSuccess) { in pe_init_debug_command()
349 DTEntry entryP = NULL; in panic_trace_apply_stress_rack_policy() local
355 (void)entryP; in panic_trace_apply_stress_rack_policy()
500 DTEntry entryP; in pe_arm_init_debug() local
528 if (SecureDTFindEntry("device_type", "cpu-debug-interface", &entryP) == kSuccess) { in pe_arm_init_debug()
530 if (SecureDTGetProperty(entryP, "reg", (void const **)&reg_prop, &prop_size) == kSuccess) { in pe_arm_init_debug()
543 pe_init_debug_command(entryP, &enable_stop_clocks, "enable_stop_clocks"); in pe_arm_init_debug()
544 pe_init_debug_command(entryP, &stop_clocks, "stop_clocks"); in pe_arm_init_debug()
/xnu-11215/pexpert/gen/
H A Dpe_gen.c175 DTEntry entryP; in PE_get_random_seed() local
177 if ((SecureDTLookupEntry(NULL, "/chosen", &entryP) != kSuccess) in PE_get_random_seed()
178 || (SecureDTGetProperty(entryP, "random-seed", in PE_get_random_seed()
/xnu-11215/osfmk/arm64/
H A Dmachine_routines.c1110 DTEntry entryP; in ml_read_chip_revision() local
1112 if ((SecureDTFindEntry("name", "arm-io", &entryP) == kSuccess)) { in ml_read_chip_revision()
1113 *rev = (unsigned int)ml_readprop(entryP, "chip-revision", CPU_VERSION_UNKNOWN); in ml_read_chip_revision()