Lines Matching refs:set
276 * @msg_flags: Flag to set for the message
844 * ti_sci_cmd_set_device_resets() - command to set resets for device managed
919 * Each device has it's own set of clock inputs. This indexes
984 * Each device has it's own set of clock inputs. This indexes
1059 * Each device has it's own set of clock inputs. This indexes
1086 * Each device has it's own set of clock inputs. This indexes
1106 * Each device has it's own set of clock inputs. This indexes
1126 * Each device has it's own set of clock inputs. This indexes
1154 * Each device has it's own set of clock inputs. This indexes
1187 * Each device has it's own set of clock inputs. This indexes
1220 * Each device has it's own set of clock inputs. This indexes
1222 * @parent_id: Parent clock identifier to set
1288 * Each device has it's own set of clock inputs. This indexes
1357 * Each device has it's own set of clock inputs. This indexes
1427 * Each device has it's own set of clock inputs. This indexes
1505 * Each device has it's own set of clock inputs. This indexes
1578 * Each device has it's own set of clock inputs. This indexes
1812 * @type: Request type irq set or release.
1895 pr_debug("%s: IRQ set with valid_params = 0x%x from src = %d, index = %d, to dst = %d, irq = %d,via ia_id = %d, vint = %d, global event = %d,status_bit = %d\n",
2672 * ti_sci_cmd_proc_set_config() - Command to set the processor boot
2676 * @config_flags_set: Configuration flags to be set
2734 * ti_sci_cmd_proc_set_control() - Command to set the processor boot
2738 * @control_flags_set: Control flags to be set
3143 u16 set, free_bit;
3146 for (set = 0; set < res->sets; set++) {
3147 free_bit = find_first_zero_bit(res->desc[set].res_map,
3148 res->desc[set].num);
3149 if (free_bit != res->desc[set].num) {
3150 set_bit(free_bit, res->desc[set].res_map);
3152 return res->desc[set].start + free_bit;
3169 u16 set;
3172 for (set = 0; set < res->sets; set++) {
3173 if (res->desc[set].start <= id &&
3174 (res->desc[set].num + res->desc[set].start) > id)
3175 clear_bit(id - res->desc[set].start,
3176 res->desc[set].res_map);
3190 u32 set, count = 0;
3192 for (set = 0; set < res->sets; set++)
3193 count += res->desc[set].num;