Lines Matching defs:target
290 * This function sets the GICv2 target mask pattern for the current PE. The PE
291 * target mask is used to translate linear PE index (returned by platform core
303 /* Return if the target mask is already populated */
308 * Update target register corresponding to this CPU and flush for it to
418 * The proc_num parameter must be the linear index of the target PE in the
423 unsigned int sgir_val, target;
438 target = driver_data->target_masks[proc_num];
439 assert(target != 0U);
441 sgir_val = GICV2_SGIR_VALUE(SGIR_TGT_SPECIFIC, target, ns, sgi_num);
454 * linear index of the PE to target SPI. When proc_num < 0, the SPI may target
459 unsigned int target;
477 target = GIC_TARGET_CPU_MASK;
480 target = driver_data->target_masks[proc_num];
481 assert(target != 0U);
484 gicd_set_itargetsr(driver_data->gicd_base, id, target);