Searched refs:curr_state (Results 1 – 2 of 2) sorted by relevance
/trusted-firmware-a-3.7.0/plat/ti/k3/common/drivers/ti_sci/ |
D | ti_sci.h | 61 int ti_sci_device_is_stop(uint32_t id, bool *r_state, bool *curr_state); 62 int ti_sci_device_is_on(uint32_t id, bool *r_state, bool *curr_state); 63 int ti_sci_device_is_trans(uint32_t id, bool *curr_state); 123 bool *req_state, bool *curr_state); 125 bool *req_state, bool *curr_state);
|
D | ti_sci.c | 537 int ti_sci_device_is_stop(uint32_t id, bool *r_state, bool *curr_state) in ti_sci_device_is_stop() argument 542 if (!r_state && !curr_state) in ti_sci_device_is_stop() 551 if (curr_state) in ti_sci_device_is_stop() 552 *curr_state = (c_state == MSG_DEVICE_HW_STATE_OFF); in ti_sci_device_is_stop() 566 int ti_sci_device_is_on(uint32_t id, bool *r_state, bool *curr_state) in ti_sci_device_is_on() argument 571 if (!r_state && !curr_state) in ti_sci_device_is_on() 581 if (curr_state) in ti_sci_device_is_on() 582 *curr_state = (c_state == MSG_DEVICE_HW_STATE_ON); in ti_sci_device_is_on() 595 int ti_sci_device_is_trans(uint32_t id, bool *curr_state) in ti_sci_device_is_trans() argument 600 if (!curr_state) in ti_sci_device_is_trans() [all …]
|