Lines Matching refs:parent

72 	struct itr_desc parent;  member
277 return &exti->hierarchy[it]->parent; in stm32_exti_get_parent_itr()
284 struct itr_desc *parent = stm32_exti_get_parent_itr(exti, it); in stm32_exti_op_enable() local
288 interrupt_enable(parent->chip, parent->itr_num); in stm32_exti_op_enable()
295 struct itr_desc *parent = stm32_exti_get_parent_itr(exti, it); in stm32_exti_op_disable() local
299 interrupt_disable(parent->chip, parent->itr_num); in stm32_exti_op_disable()
306 struct itr_desc *parent = stm32_exti_get_parent_itr(exti, it); in stm32_exti_op_mask() local
310 interrupt_mask(parent->chip, parent->itr_num); in stm32_exti_op_mask()
317 struct itr_desc *parent = stm32_exti_get_parent_itr(exti, it); in stm32_exti_op_unmask() local
321 interrupt_unmask(parent->chip, parent->itr_num); in stm32_exti_op_unmask()
328 struct itr_desc *parent = stm32_exti_get_parent_itr(exti, it); in stm32_exti_op_raise_pi() local
330 if (interrupt_can_raise_pi(parent->chip)) in stm32_exti_op_raise_pi()
331 interrupt_raise_pi(parent->chip, parent->itr_num); in stm32_exti_op_raise_pi()
339 struct itr_desc *parent = stm32_exti_get_parent_itr(exti, it); in stm32_exti_op_raise_sgi() local
341 if (interrupt_can_raise_sgi(parent->chip)) in stm32_exti_op_raise_sgi()
342 interrupt_raise_sgi(parent->chip, parent->itr_num, cpu_mask); in stm32_exti_op_raise_sgi()
350 struct itr_desc *parent = stm32_exti_get_parent_itr(exti, it); in stm32_exti_op_set_affinity() local
352 if (interrupt_can_set_affinity(parent->chip)) in stm32_exti_op_set_affinity()
353 interrupt_set_affinity(parent->chip, parent->itr_num, in stm32_exti_op_set_affinity()
362 struct itr_desc *parent = stm32_exti_get_parent_itr(exti, it); in stm32_exti_op_set_wake() local
369 if (interrupt_can_set_wake(parent->chip)) in stm32_exti_op_set_wake()
370 interrupt_set_wake(parent->chip, parent->itr_num, on); in stm32_exti_op_set_wake()
718 &hierarchy->parent.chip, in stm32_exti_dt_get_chip_cb()
719 &hierarchy->parent.itr_num); in stm32_exti_dt_get_chip_cb()
723 res = interrupt_create_handler(hierarchy->parent.chip, in stm32_exti_dt_get_chip_cb()
724 hierarchy->parent.itr_num, in stm32_exti_dt_get_chip_cb()