Home
last modified time | relevance | path

Searched refs:selector (Results 1 – 25 of 341) sorted by relevance

12345678910>>...14

/linux-5.19.10/lib/
Dlinear_ranges.c87 int linear_range_get_value(const struct linear_range *r, unsigned int selector, in linear_range_get_value() argument
90 if (r->min_sel > selector || r->max_sel < selector) in linear_range_get_value()
93 *val = r->min + (selector - r->min_sel) * r->step; in linear_range_get_value()
112 unsigned int selector, unsigned int *val) in linear_range_get_value_array() argument
117 if (r[i].min_sel <= selector && r[i].max_sel >= selector) in linear_range_get_value_array()
118 return linear_range_get_value(&r[i], selector, val); in linear_range_get_value_array()
139 unsigned int val, unsigned int *selector, in linear_range_get_selector_low() argument
148 *selector = r->max_sel; in linear_range_get_selector_low()
155 *selector = r->min_sel; in linear_range_get_selector_low()
157 *selector = (val - r->min) / r->step + r->min_sel; in linear_range_get_selector_low()
[all …]
/linux-5.19.10/kernel/entry/
Dsyscall_user_dispatch.c45 if (likely(sd->selector)) { in syscall_user_dispatch()
50 if (unlikely(__get_user(state, sd->selector))) { in syscall_user_dispatch()
72 unsigned long len, char __user *selector) in set_syscall_user_dispatch() argument
76 if (offset || len || selector) in set_syscall_user_dispatch()
89 if (selector && !access_ok(selector, sizeof(*selector))) in set_syscall_user_dispatch()
97 current->syscall_dispatch.selector = selector; in set_syscall_user_dispatch()
/linux-5.19.10/drivers/pinctrl/
Dpinctrl-da850-pupd.c41 unsigned int selector) in da850_pupd_get_group_name() argument
43 return da850_pupd_group_names[selector]; in da850_pupd_get_group_name()
47 unsigned int selector, in da850_pupd_get_group_pins() argument
65 unsigned int selector, in da850_pupd_pin_config_group_get() argument
74 arg = !!(~val & BIT(selector)); in da850_pupd_pin_config_group_get()
89 arg = !!(val & BIT(selector)); in da850_pupd_pin_config_group_get()
101 unsigned int selector, in da850_pupd_pin_config_group_set() argument
118 ena &= ~BIT(selector); in da850_pupd_pin_config_group_set()
121 ena |= BIT(selector); in da850_pupd_pin_config_group_set()
122 sel |= BIT(selector); in da850_pupd_pin_config_group_set()
[all …]
Dpinmux.c36 unsigned selector = 0; in pinmux_check_ops() local
49 while (selector < nfuncs) { in pinmux_check_ops()
51 selector); in pinmux_check_ops()
54 selector); in pinmux_check_ops()
57 selector++; in pinmux_check_ops()
325 unsigned selector = 0; in pinmux_func_name_to_selector() local
328 while (selector < nfuncs) { in pinmux_func_name_to_selector()
329 const char *fname = ops->get_function_name(pctldev, selector); in pinmux_func_name_to_selector()
332 return selector; in pinmux_func_name_to_selector()
334 selector++; in pinmux_func_name_to_selector()
[all …]
Dpinconf.c75 int selector, ret; in pin_config_group_get() local
94 selector = pinctrl_get_group_selector(pctldev, pin_group); in pin_config_group_get()
95 if (selector < 0) { in pin_config_group_get()
96 ret = selector; in pin_config_group_get()
100 ret = ops->pin_config_group_get(pctldev, selector, config); in pin_config_group_get()
334 struct seq_file *s, unsigned selector, in pinconf_dump_group() argument
342 ops->pin_config_group_dbg_show(pctldev, s, selector); in pinconf_dump_group()
350 unsigned selector = 0; in pinconf_groups_show() local
355 while (selector < ngroups) { in pinconf_groups_show()
356 const char *gname = pctlops->get_group_name(pctldev, selector); in pinconf_groups_show()
[all …]
Dpinctrl-lantiq.c25 unsigned selector) in ltq_get_group_name() argument
28 if (selector >= info->num_grps) in ltq_get_group_name()
30 return info->grps[selector].name; in ltq_get_group_name()
34 unsigned selector, in ltq_get_group_pins() argument
39 if (selector >= info->num_grps) in ltq_get_group_pins()
41 *pins = info->grps[selector].pins; in ltq_get_group_pins()
42 *num_pins = info->grps[selector].npins; in ltq_get_group_pins()
188 unsigned selector) in ltq_pmx_func_name() argument
192 if (selector >= info->num_funcs) in ltq_pmx_func_name()
195 return info->funcs[selector].name; in ltq_pmx_func_name()
/linux-5.19.10/drivers/media/usb/uvc/
Duvc_ctrl.c39 .selector = UVC_PU_BRIGHTNESS_CONTROL,
48 .selector = UVC_PU_CONTRAST_CONTROL,
57 .selector = UVC_PU_HUE_CONTROL,
67 .selector = UVC_PU_SATURATION_CONTROL,
76 .selector = UVC_PU_SHARPNESS_CONTROL,
85 .selector = UVC_PU_GAMMA_CONTROL,
94 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_CONTROL,
104 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_CONTROL,
114 .selector = UVC_PU_BACKLIGHT_COMPENSATION_CONTROL,
123 .selector = UVC_PU_GAIN_CONTROL,
[all …]
/linux-5.19.10/include/linux/
Dlinear_range.h34 int linear_range_get_value(const struct linear_range *r, unsigned int selector,
37 unsigned int selector, unsigned int *val);
39 unsigned int val, unsigned int *selector,
42 unsigned int val, unsigned int *selector,
45 unsigned int val, unsigned int *selector);
48 unsigned int *selector, bool *found);
/linux-5.19.10/drivers/regulator/
Dhelpers.c296 int selector = 0; in regulator_map_voltage_iterate() local
309 selector = i; in regulator_map_voltage_iterate()
314 return selector; in regulator_map_voltage_iterate()
462 unsigned int selector = 0; in regulator_map_voltage_pickable_linear_range() local
478 selector += linear_range_values_in_range(range); in regulator_map_voltage_pickable_linear_range()
485 selector += linear_range_values_in_range(range); in regulator_map_voltage_pickable_linear_range()
489 ret = selector + sel - range->min_sel; in regulator_map_voltage_pickable_linear_range()
499 selector += linear_range_values_in_range(range); in regulator_map_voltage_pickable_linear_range()
524 unsigned int selector) in regulator_desc_list_voltage_linear() argument
526 if (selector >= desc->n_voltages) in regulator_desc_list_voltage_linear()
[all …]
Dad5398.c31 unsigned selector) in ad5398_calc_current() argument
35 return chip->min_uA + (selector * range_uA / chip->current_level); in ad5398_calc_current()
89 unsigned selector; in ad5398_set_current_limit() local
101 selector = DIV_ROUND_UP((min_uA - chip->min_uA) * chip->current_level, in ad5398_set_current_limit()
103 if (ad5398_calc_current(chip, selector) > max_uA) in ad5398_set_current_limit()
107 ad5398_calc_current(chip, selector)); in ad5398_set_current_limit()
115 selector = (selector << chip->current_offset) & chip->current_mask; in ad5398_set_current_limit()
116 data = (unsigned short)selector | (data & AD5398_CURRENT_EN_MASK); in ad5398_set_current_limit()
Dtps65910-regulator.c596 unsigned selector) in tps65910_set_voltage_dcdc_sel() argument
604 dcdc_mult = (selector / VDD1_2_NUM_VOLT_FINE) + 1; in tps65910_set_voltage_dcdc_sel()
607 vsel = (selector % VDD1_2_NUM_VOLT_FINE) + 3; in tps65910_set_voltage_dcdc_sel()
614 dcdc_mult = (selector / VDD1_2_NUM_VOLT_FINE) + 1; in tps65910_set_voltage_dcdc_sel()
617 vsel = (selector % VDD1_2_NUM_VOLT_FINE) + 3; in tps65910_set_voltage_dcdc_sel()
624 vsel = selector + 3; in tps65910_set_voltage_dcdc_sel()
633 unsigned selector) in tps65910_set_voltage_sel() argument
654 selector << LDO_SEL_SHIFT); in tps65910_set_voltage_sel()
657 selector << BBCH_BBSEL_SHIFT); in tps65910_set_voltage_sel()
664 unsigned selector) in tps65911_set_voltage_sel() argument
[all …]
Dmax8660.c127 u8 selector = max8660->shadow_regs[reg]; in max8660_dcdc_get_voltage_sel() local
129 return selector; in max8660_dcdc_get_voltage_sel()
133 unsigned int selector) in max8660_dcdc_set_voltage_sel() argument
140 ret = max8660_write(max8660, reg, 0, selector); in max8660_dcdc_set_voltage_sel()
166 u8 selector = max8660->shadow_regs[MAX8660_MDTV2]; in max8660_ldo5_get_voltage_sel() local
167 return selector; in max8660_ldo5_get_voltage_sel()
171 unsigned int selector) in max8660_ldo5_set_voltage_sel() argument
176 ret = max8660_write(max8660, MAX8660_MDTV2, 0, selector); in max8660_ldo5_set_voltage_sel()
225 u8 selector = (max8660->shadow_regs[MAX8660_L12VCR] >> shift) & 0xf; in max8660_ldo67_get_voltage_sel() local
227 return selector; in max8660_ldo67_get_voltage_sel()
[all …]
Dmax1586.c64 unsigned selector) in max1586_v3_set_voltage_sel() argument
72 regulator_list_voltage_linear(rdev, selector) / 1000); in max1586_v3_set_voltage_sel()
74 v3_prog = I2C_V3_SELECT | (u8) selector; in max1586_v3_set_voltage_sel()
79 max1586->v3_curr_sel = selector; in max1586_v3_set_voltage_sel()
92 unsigned int selector) in max1586_v6_set_voltage_sel() argument
100 rdev->desc->volt_table[selector] / 1000); in max1586_v6_set_voltage_sel()
102 v6_prog = I2C_V6_SELECT | (u8) selector; in max1586_v6_set_voltage_sel()
107 max1586->v6_curr_sel = selector; in max1586_v6_set_voltage_sel()
Dwm8994-regulator.c42 unsigned int selector) in wm8994_ldo2_list_voltage() argument
46 if (selector > WM8994_LDO2_MAX_SELECTOR) in wm8994_ldo2_list_voltage()
51 return (selector * 100000) + 900000; in wm8994_ldo2_list_voltage()
53 return (selector * 100000) + 1000000; in wm8994_ldo2_list_voltage()
55 switch (selector) { in wm8994_ldo2_list_voltage()
59 return (selector * 100000) + 950000; in wm8994_ldo2_list_voltage()
/linux-5.19.10/drivers/pinctrl/visconti/
Dpinctrl-common.c123 unsigned int selector, in visconti_pin_config_group_set() argument
132 pins = priv->devdata->groups[selector].pins; in visconti_pin_config_group_set()
133 num_pins = priv->devdata->groups[selector].nr_pins; in visconti_pin_config_group_set()
136 __func__, selector, num_pins, num_configs); in visconti_pin_config_group_set()
163 unsigned int selector) in visconti_get_group_name() argument
167 return priv->devdata->groups[selector].name; in visconti_get_group_name()
171 unsigned int selector, in visconti_get_group_pins() argument
177 *pins = priv->devdata->groups[selector].pins; in visconti_get_group_pins()
178 *num_pins = priv->devdata->groups[selector].nr_pins; in visconti_get_group_pins()
200 unsigned int selector) in visconti_get_function_name() argument
[all …]
/linux-5.19.10/drivers/md/
Ddm-ps-round-robin.c46 struct selector { struct
52 static struct selector *alloc_selector(void) in alloc_selector() argument
54 struct selector *s = kmalloc(sizeof(*s), GFP_KERNEL); in alloc_selector()
67 struct selector *s; in rr_create()
79 struct selector *s = ps->context; in rr_destroy()
120 struct selector *s = ps->context; in rr_add_path()
164 struct selector *s = ps->context; in rr_fail_path()
175 struct selector *s = ps->context; in rr_reinstate_path()
188 struct selector *s = ps->context; in rr_select_path()
Ddm-ps-queue-length.c29 struct selector { struct
42 static struct selector *alloc_selector(void) in alloc_selector() argument
44 struct selector *s = kmalloc(sizeof(*s), GFP_KERNEL); in alloc_selector()
57 struct selector *s = alloc_selector(); in ql_create()
78 struct selector *s = ps->context; in ql_destroy()
117 struct selector *s = ps->context; in ql_add_path()
165 struct selector *s = ps->context; in ql_fail_path()
176 struct selector *s = ps->context; in ql_reinstate_path()
192 struct selector *s = ps->context; in ql_select_path()
Ddm-ps-historical-service-time.c44 struct selector { struct
130 static struct selector *alloc_selector(void) in alloc_selector()
132 struct selector *s = kmalloc(sizeof(*s), GFP_KERNEL); in alloc_selector()
149 struct selector *s = ps->context; in hst_weight()
164 struct selector *s = ps->context; in hst_set_weights()
177 struct selector *s; in hst_create()
229 struct selector *s = ps->context; in hst_destroy()
244 struct selector *s = ps->context; in hst_status()
270 struct selector *s = ps->context; in hst_add_path()
321 struct selector *s = ps->context; in hst_fail_path()
[all …]
Ddm-ps-service-time.c24 struct selector { struct
38 static struct selector *alloc_selector(void) in alloc_selector() argument
40 struct selector *s = kmalloc(sizeof(*s), GFP_KERNEL); in alloc_selector()
53 struct selector *s = alloc_selector(); in st_create()
74 struct selector *s = ps->context; in st_destroy()
114 struct selector *s = ps->context; in st_add_path()
178 struct selector *s = ps->context; in st_fail_path()
189 struct selector *s = ps->context; in st_reinstate_path()
279 struct selector *s = ps->context; in st_select_path()
Ddm-ps-io-affinity.c21 struct selector { struct
27 static void ioa_free_path(struct selector *s, unsigned int cpu) in ioa_free_path() argument
46 struct selector *s = ps->context; in ioa_add_path()
113 struct selector *s; in ioa_create()
140 struct selector *s = ps->context; in ioa_destroy()
156 struct selector *s = ps->context; in ioa_status()
200 struct selector *s = ps->context; in ioa_select_path()
/linux-5.19.10/drivers/pinctrl/cirrus/
Dpinctrl-madera-core.c454 unsigned int selector) in madera_get_group_name() argument
458 if (selector < priv->chip->n_pin_groups) in madera_get_group_name()
459 return priv->chip->pin_groups[selector].name; in madera_get_group_name()
461 selector -= priv->chip->n_pin_groups; in madera_get_group_name()
462 return madera_pin_single_group_names[selector]; in madera_get_group_name()
466 unsigned int selector, in madera_get_group_pins() argument
472 if (selector < priv->chip->n_pin_groups) { in madera_get_group_pins()
473 *pins = priv->chip->pin_groups[selector].pins; in madera_get_group_pins()
474 *num_pins = priv->chip->pin_groups[selector].n_pins; in madera_get_group_pins()
477 selector -= priv->chip->n_pin_groups; in madera_get_group_pins()
[all …]
/linux-5.19.10/arch/x86/include/asm/
Dspecial_insns.h123 extern asmlinkage void asm_load_gs_index(unsigned int selector);
125 static inline void native_load_gs_index(unsigned int selector) in native_load_gs_index() argument
130 asm_load_gs_index(selector); in native_load_gs_index()
188 static inline void load_gs_index(unsigned int selector) in load_gs_index() argument
191 native_load_gs_index(selector); in load_gs_index()
193 loadsegment(gs, selector); in load_gs_index()
/linux-5.19.10/include/linux/regulator/
Ddriver.h162 int (*list_voltage) (struct regulator_dev *, unsigned selector);
166 unsigned *selector);
168 int (*set_voltage_sel) (struct regulator_dev *, unsigned selector);
720 unsigned int selector);
722 unsigned int selector);
724 unsigned int selector);
726 unsigned int selector);
767 unsigned int selector);
770 unsigned int selector);
/linux-5.19.10/tools/testing/selftests/syscall_user_dispatch/
Dsud_benchmark.c59 char selector; variable
60 #define SYSCALL_BLOCK (selector = SYSCALL_DISPATCH_FILTER_BLOCK)
61 #define SYSCALL_UNBLOCK (selector = SYSCALL_DISPATCH_FILTER_ALLOW)
166 &selector)) { in main()
175 if (selector == SYSCALL_DISPATCH_FILTER_ALLOW) { in main()
/linux-5.19.10/drivers/pinctrl/renesas/
Dpinctrl-rzn1.c303 unsigned int selector) in rzn1_get_group_name() argument
307 return ipctl->groups[selector].name; in rzn1_get_group_name()
311 unsigned int selector, const unsigned int **pins, in rzn1_get_group_pins() argument
316 if (selector >= ipctl->ngroups) in rzn1_get_group_pins()
319 *pins = ipctl->groups[selector].pins; in rzn1_get_group_pins()
320 *npins = ipctl->groups[selector].npins; in rzn1_get_group_pins()
440 unsigned int selector) in rzn1_pmx_get_func_name() argument
444 return ipctl->functions[selector].name; in rzn1_pmx_get_func_name()
448 unsigned int selector, in rzn1_pmx_get_groups() argument
454 *groups = ipctl->functions[selector].groups; in rzn1_pmx_get_groups()
[all …]

12345678910>>...14