Home
last modified time | relevance | path

Searched full:sel (Results 1 – 25 of 552) sorted by relevance

12345678910>>...23

/linux/drivers/hid/amd-sfh-hid/hid_descriptor/
H A Damd_sfh_hid_report_desc.h28 0x0A, 0x30, 0x08, /* Sensor property connection type intergated sel*/
29 0x0A, 0x31, 0x08, /* Sensor property connection type attached sel */
30 0x0A, 0x32, 0x08, /* Sensor property connection type external sel */
39 0x0A, 0x40, 0x08, /* Sensor property report state no events sel */
40 0x0A, 0x41, 0x08, /* Sensor property report state all events sel */
41 0x0A, 0x42, 0x08, /* Sensor property report state threshold events sel */
42 0x0A, 0x43, 0x08, /* Sensor property report state no events wake sel */
43 0x0A, 0x44, 0x08, /* Sensor property report state all events wake sel */
44 0x0A, 0x45, 0x08, /* Sensor property report state threshold events wake sel */
53 0x0A, 0x50, 0x08, /* Sensor property power state undefined sel */
[all …]
/linux/sound/soc/meson/
H A Daxg-frddr.c132 SND_SOC_DAPM_DEMUX("SINK SEL", SND_SOC_NOPM, 0, 0,
145 { "SINK SEL", NULL, "Playback" },
146 { "OUT 0", "OUT 0", "SINK SEL" },
147 { "OUT 1", "OUT 1", "SINK SEL" },
148 { "OUT 2", "OUT 2", "SINK SEL" },
149 { "OUT 3", "OUT 3", "SINK SEL" },
150 { "OUT 4", "OUT 4", "SINK SEL" },
151 { "OUT 5", "OUT 5", "SINK SEL" },
152 { "OUT 6", "OUT 6", "SINK SEL" },
153 { "OUT 7", "OUT 7", "SINK SEL" },
[all …]
H A Daxg-toddr.c151 SND_SOC_DAPM_MUX("SRC SEL", SND_SOC_NOPM, 0, 0, &axg_toddr_in_mux),
163 { "Capture", NULL, "SRC SEL" },
164 { "SRC SEL", "IN 0", "IN 0" },
165 { "SRC SEL", "IN 1", "IN 1" },
166 { "SRC SEL", "IN 2", "IN 2" },
167 { "SRC SEL", "IN 3", "IN 3" },
168 { "SRC SEL", "IN 4", "IN 4" },
169 { "SRC SEL", "IN 5", "IN 5" },
170 { "SRC SEL", "IN 6", "IN 6" },
171 { "SRC SEL", "IN 7", "IN 7" },
[all …]
H A Daxg-tdmin.c184 SND_SOC_DAPM_MUX("SRC SEL", SND_SOC_NOPM, 0, 0, &axg_tdmin_in_mux),
192 { "SRC SEL", "IN 0", "IN 0" },
193 { "SRC SEL", "IN 1", "IN 1" },
194 { "SRC SEL", "IN 2", "IN 2" },
195 { "SRC SEL", "IN 3", "IN 3" },
196 { "SRC SEL", "IN 4", "IN 4" },
197 { "SRC SEL", "IN 5", "IN 5" },
198 { "SRC SEL", "IN 6", "IN 6" },
199 { "SRC SEL", "IN 7", "IN 7" },
200 { "SRC SEL", "IN 8", "IN 8" },
[all …]
/linux/Documentation/devicetree/bindings/mmc/
H A Dsdhci-am654.yaml61 ti,otap-del-sel-legacy:
67 ti,otap-del-sel-mmc-hs:
73 ti,otap-del-sel-sd-hs:
79 ti,otap-del-sel-sdr12:
85 ti,otap-del-sel-sdr25:
91 ti,otap-del-sel-sdr50:
97 ti,otap-del-sel-sdr104:
103 ti,otap-del-sel-ddr50:
109 ti,otap-del-sel-ddr52:
115 ti,otap-del-sel-hs200:
[all …]
/linux/Documentation/devicetree/bindings/phy/
H A Dti,phy-gmii-sel.yaml5 $id: http://devicetree.org/schemas/phy/ti,phy-gmii-sel.yaml#
51 - ti,am3352-phy-gmii-sel
52 - ti,dra7xx-phy-gmii-sel
53 - ti,am43xx-phy-gmii-sel
54 - ti,dm814-phy-gmii-sel
55 - ti,am654-phy-gmii-sel
56 - ti,j7200-cpsw5g-phy-gmii-sel
57 - ti,j721e-cpsw9g-phy-gmii-sel
58 - ti,j784s4-cpsw9g-phy-gmii-sel
86 - ti,dra7xx-phy-gmii-sel
[all …]
/linux/drivers/media/platform/renesas/vsp1/
H A Dvsp1_uif.c86 struct v4l2_subdev_selection *sel) in uif_get_selection() argument
93 if (sel->pad != UIF_PAD_SINK) in uif_get_selection()
98 state = vsp1_entity_get_state(&uif->entity, sd_state, sel->which); in uif_get_selection()
104 switch (sel->target) { in uif_get_selection()
108 sel->r.left = 0; in uif_get_selection()
109 sel->r.top = 0; in uif_get_selection()
110 sel->r.width = format->width; in uif_get_selection()
111 sel->r.height = format->height; in uif_get_selection()
115 sel->r = *v4l2_subdev_state_get_crop(state, sel->pad); in uif_get_selection()
130 struct v4l2_subdev_selection *sel) in uif_set_selection() argument
[all …]
/linux/Documentation/userspace-api/media/v4l/
H A Dselection-api-examples.rst16 struct v4l2_selection sel = {
20 ret = ioctl(fd, VIDIOC_G_SELECTION, &sel);
23 sel.target = V4L2_SEL_TGT_CROP;
24 ret = ioctl(fd, VIDIOC_S_SELECTION, &sel);
36 struct v4l2_selection sel = {
42 ret = ioctl(fd, VIDIOC_G_SELECTION, &sel);
46 r.width = sel.r.width / 2;
47 r.height = sel.r.height / 2;
48 r.left = sel.r.width / 4;
49 r.top = sel.r.height / 4;
[all …]
/linux/drivers/regulator/
H A Danatop-regulator.c31 int sel; member
63 int sel; in anatop_regmap_enable() local
65 sel = anatop_reg->bypass ? LDO_FET_FULL_ON : anatop_reg->sel; in anatop_regmap_enable()
66 return regulator_set_voltage_sel_regmap(reg, sel); in anatop_regmap_enable()
86 anatop_reg->sel = selector; in anatop_regmap_core_set_voltage_sel()
92 anatop_reg->sel = selector; in anatop_regmap_core_set_voltage_sel()
101 return anatop_reg->sel; in anatop_regmap_core_get_voltage_sel()
109 int sel; in anatop_regmap_get_bypass() local
111 sel = regulator_get_voltage_sel_regmap(reg); in anatop_regmap_get_bypass()
112 if (sel == LDO_FET_FULL_ON) in anatop_regmap_get_bypass()
[all …]
H A Dhelpers.c165 unsigned int sel, unsigned int range) in write_separate_vsel_and_range() argument
184 rdev->desc->vsel_mask, sel); in write_separate_vsel_and_range()
187 rdev->desc->vsel_mask, sel); in write_separate_vsel_and_range()
194 * @sel: Selector to set
202 unsigned int sel) in regulator_set_voltage_sel_pickable_regmap() argument
214 if (sel < voltages_in_range) in regulator_set_voltage_sel_pickable_regmap()
216 sel -= voltages_in_range; in regulator_set_voltage_sel_pickable_regmap()
222 sel <<= ffs(rdev->desc->vsel_mask) - 1; in regulator_set_voltage_sel_pickable_regmap()
223 sel += rdev->desc->linear_ranges[i].min_sel; in regulator_set_voltage_sel_pickable_regmap()
231 rdev->desc->vsel_mask, sel | range); in regulator_set_voltage_sel_pickable_regmap()
[all …]
/linux/Documentation/devicetree/bindings/net/
H A Dcpsw-phy-sel.txt5 - compatible : Should be "ti,am3352-cpsw-phy-sel" for am335x platform and
6 "ti,dra7xx-cpsw-phy-sel" for dra7xx platform
7 "ti,am43xx-cpsw-phy-sel" for am43xx platform
18 phy_sel: cpsw-phy-sel@44e10650 {
19 compatible = "ti,am3352-cpsw-phy-sel";
21 reg-names = "gmii-sel";
25 phy_sel: cpsw-phy-sel@44e10650 {
26 compatible = "ti,am3352-cpsw-phy-sel";
28 reg-names = "gmii-sel";
/linux/arch/arm/mach-dove/
H A Dmpp.c68 static void __init dove_mpp_cfg_nfc(int sel) in dove_mpp_cfg_nfc() argument
73 mpp_gen_cfg |= sel; in dove_mpp_cfg_nfc()
79 static void __init dove_mpp_cfg_au1(int sel) in dove_mpp_cfg_au1() argument
91 if (!sel || sel == 0x2) in dove_mpp_cfg_au1()
96 if (sel & 0x1) { in dove_mpp_cfg_au1()
100 if (sel & 0x2) { in dove_mpp_cfg_au1()
104 if (sel & 0x4) { in dove_mpp_cfg_au1()
108 if (sel & 0x8) in dove_mpp_cfg_au1()
117 /* Configure the group registers, enabling GPIO if sel indicates the
126 unsigned int sel = MPP_SEL(*mpp_grp_list); in dove_mpp_conf_grp() local
[all …]
/linux/drivers/clk/bcm/
H A Dclk-bcm281xx.c38 .sel = SELECTOR(0x0a10, 0, 2),
47 .sel = SELECTOR(0x0a04, 0, 2),
55 .sel = SELECTOR(0x0a00, 0, 2),
79 .sel = SELECTOR(0x0e74, 0, 2),
101 .sel = SELECTOR(0x0a28, 0, 3),
113 .sel = SELECTOR(0x0a2c, 0, 3),
125 .sel = SELECTOR(0x0a34, 0, 3),
137 .sel = SELECTOR(0x0a30, 0, 3),
148 .sel = SELECTOR(0x0a24, 0, 2),
158 .sel = SELECTOR(0x0a38, 0, 2),
[all …]
H A Dclk-kona-setup.c13 #define selector_clear_exists(sel) ((sel)->width = 0) argument
46 struct bcm_clk_sel *sel; in clk_requires_trigger() local
52 sel = &peri->sel; in clk_requires_trigger()
53 if (sel->parent_count && selector_exists(sel)) in clk_requires_trigger()
76 struct bcm_clk_sel *sel; in peri_clk_data_offsets_valid() local
140 sel = &peri->sel; in peri_clk_data_offsets_valid()
141 if (selector_exists(sel)) { in peri_clk_data_offsets_valid()
142 if (sel->offset > limit) { in peri_clk_data_offsets_valid()
144 __func__, name, sel->offset, limit); in peri_clk_data_offsets_valid()
283 static bool sel_valid(struct bcm_clk_sel *sel, const char *field_name, in sel_valid() argument
[all …]
H A Dclk-kona.c796 static u8 parent_index(struct bcm_clk_sel *sel, u8 parent_sel) in parent_index() argument
800 BUG_ON(sel->parent_count > (u32)U8_MAX); in parent_index()
801 for (i = 0; i < sel->parent_count; i++) in parent_index()
802 if (sel->parent_sel[i] == parent_sel) in parent_index()
815 static u8 selector_read_index(struct ccu_data *ccu, struct bcm_clk_sel *sel) in selector_read_index() argument
823 if (!selector_exists(sel)) in selector_read_index()
828 reg_val = __ccu_read(ccu, sel->offset); in selector_read_index()
831 parent_sel = bitfield_extract(reg_val, sel->shift, sel->width); in selector_read_index()
834 index = parent_index(sel, parent_sel); in selector_read_index()
837 __func__, parent_sel, ccu->name, sel->offset); in selector_read_index()
[all …]
H A Dclk-bcm21664.c38 .sel = SELECTOR(0x0a10, 0, 2),
64 .sel = SELECTOR(0x0a28, 0, 3),
76 .sel = SELECTOR(0x0a2c, 0, 3),
88 .sel = SELECTOR(0x0a34, 0, 3),
100 .sel = SELECTOR(0x0a30, 0, 3),
159 .sel = SELECTOR(0x0a10, 0, 2),
169 .sel = SELECTOR(0x0a14, 0, 2),
179 .sel = SELECTOR(0x0a18, 0, 2),
191 .sel = SELECTOR(0x0a64, 0, 3),
202 .sel = SELECTOR(0x0a68, 0, 3),
[all …]
/linux/drivers/clk/qcom/
H A Dclk-krait.c23 static void __krait_mux_set_sel(struct krait_mux_clk *mux, int sel) in __krait_mux_set_sel() argument
39 regval |= (sel & mux->mask) << mux->shift; in __krait_mux_set_sel()
42 regval |= (sel & mux->mask) << (mux->shift + LPL_SHIFT); in __krait_mux_set_sel()
66 u32 sel; in krait_mux_set_parent() local
68 sel = clk_mux_index_to_val(mux->parent_map, 0, index); in krait_mux_set_parent()
69 mux->en_mask = sel; in krait_mux_set_parent()
72 __krait_mux_set_sel(mux, sel); in krait_mux_set_parent()
82 u32 sel; in krait_mux_get_parent() local
84 sel = krait_get_l2_indirect_reg(mux->offset); in krait_mux_get_parent()
85 sel >>= mux->shift; in krait_mux_get_parent()
[all …]
/linux/tools/testing/selftests/syscall_user_dispatch/
H A Dsud_test.c67 char sel = SYSCALL_DISPATCH_FILTER_ALLOW; in TEST_SIGNAL() local
74 ret = prctl(PR_SET_SYSCALL_USER_DISPATCH, PR_SYS_DISPATCH_EXCLUSIVE_ON, 0, 0, &sel); in TEST_SIGNAL()
79 SYSCALL_DISPATCH_ON(sel); in TEST_SIGNAL()
90 unsigned long size, void *sel) in prctl_valid() argument
92 EXPECT_EQ(0, prctl(PR_SET_SYSCALL_USER_DISPATCH, op, off, size, sel)); in prctl_valid()
97 unsigned long size, void *sel, int err) in prctl_invalid() argument
99 EXPECT_EQ(-1, prctl(PR_SET_SYSCALL_USER_DISPATCH, op, off, size, sel)); in prctl_invalid()
105 char sel = SYSCALL_DISPATCH_FILTER_ALLOW; in TEST() local
110 prctl_invalid(_metadata, op, 0, 0, &sel, EINVAL); in TEST()
121 /* sel != NULL */ in TEST()
[all …]
/linux/drivers/accessibility/speakup/
H A Dselection.c21 struct tiocl_selection sel; member
31 struct tiocl_selection sel; in __speakup_set_selection() local
33 sel = ssw->sel; in __speakup_set_selection()
35 /* this ensures we copy sel before releasing the lock below */ in __speakup_set_selection()
51 set_selection_kernel(&sel, tty); in __speakup_set_selection()
81 speakup_sel_work.sel.xs = spk_xs + 1; in speakup_set_selection()
82 speakup_sel_work.sel.ys = spk_ys + 1; in speakup_set_selection()
83 speakup_sel_work.sel.xe = spk_xe + 1; in speakup_set_selection()
84 speakup_sel_work.sel.ye = spk_ye + 1; in speakup_set_selection()
85 speakup_sel_work.sel.sel_mode = TIOCL_SELCHAR; in speakup_set_selection()
/linux/net/ipv6/
H A Dmip6.c203 struct xfrm_selector sel; in mip6_destopt_reject() local
226 memset(&sel, 0, sizeof(sel)); in mip6_destopt_reject()
227 memcpy(&sel.daddr, (xfrm_address_t *)&ipv6_hdr(skb)->daddr, in mip6_destopt_reject()
228 sizeof(sel.daddr)); in mip6_destopt_reject()
229 sel.prefixlen_d = 128; in mip6_destopt_reject()
230 memcpy(&sel.saddr, (xfrm_address_t *)&ipv6_hdr(skb)->saddr, in mip6_destopt_reject()
231 sizeof(sel.saddr)); in mip6_destopt_reject()
232 sel.prefixlen_s = 128; in mip6_destopt_reject()
233 sel.family = AF_INET6; in mip6_destopt_reject()
234 sel.proto = fl6->flowi6_proto; in mip6_destopt_reject()
[all …]
/linux/Documentation/devicetree/bindings/clock/
H A Drenesas,rcar-usb2-clock-sel.yaml4 $id: http://devicetree.org/schemas/clock/renesas,rcar-usb2-clock-sel.yaml#
38 - renesas,r8a774a1-rcar-usb2-clock-sel # RZ/G2M
39 - renesas,r8a774b1-rcar-usb2-clock-sel # RZ/G2N
40 - renesas,r8a774e1-rcar-usb2-clock-sel # RZ/G2H
41 - renesas,r8a7795-rcar-usb2-clock-sel # R-Car H3
42 - renesas,r8a7796-rcar-usb2-clock-sel # R-Car M3-W
43 - renesas,r8a77961-rcar-usb2-clock-sel # R-Car M3-W+
44 - const: renesas,rcar-gen3-usb2-clock-sel
91 compatible = "renesas,r8a7795-rcar-usb2-clock-sel",
92 "renesas,rcar-gen3-usb2-clock-sel";
/linux/drivers/media/tuners/
H A Dmt20xx.c108 unsigned int fref,lo1,lo1n,lo1a,s,sel,lo1freq, desired_lo1, in mt2032_compute_freq() local
121 if(s>1890) sel=0; in mt2032_compute_freq()
122 else if(s>1720) sel=1; in mt2032_compute_freq()
123 else if(s>1530) sel=2; in mt2032_compute_freq()
124 else if(s>1370) sel=3; in mt2032_compute_freq()
125 else sel=4; // >1090 in mt2032_compute_freq()
128 if(s>1790) sel=0; // <1958 in mt2032_compute_freq()
129 else if(s>1617) sel=1; in mt2032_compute_freq()
130 else if(s>1449) sel=2; in mt2032_compute_freq()
131 else if(s>1291) sel=3; in mt2032_compute_freq()
[all …]
/linux/drivers/clk/imx/
H A Dclk-imx35.c33 unsigned char arm, ahb, sel; member
37 { .arm = 1, .ahb = 4, .sel = 0},
38 { .arm = 1, .ahb = 3, .sel = 1},
39 { .arm = 2, .ahb = 2, .sel = 0},
40 { .arm = 0, .ahb = 0, .sel = 0},
41 { .arm = 0, .ahb = 0, .sel = 0},
42 { .arm = 0, .ahb = 0, .sel = 0},
43 { .arm = 4, .ahb = 1, .sel = 0},
44 { .arm = 1, .ahb = 5, .sel = 0},
45 { .arm = 1, .ahb = 8, .sel = 0},
[all …]
/linux/arch/x86/kernel/
H A Dtls.c120 unsigned short __maybe_unused sel, modified_sel; in do_set_thread_area() local
157 savesegment(ds, sel); in do_set_thread_area()
158 if (sel == modified_sel) in do_set_thread_area()
159 loadsegment(ds, sel); in do_set_thread_area()
161 savesegment(es, sel); in do_set_thread_area()
162 if (sel == modified_sel) in do_set_thread_area()
163 loadsegment(es, sel); in do_set_thread_area()
165 savesegment(fs, sel); in do_set_thread_area()
166 if (sel == modified_sel) in do_set_thread_area()
167 loadsegment(fs, sel); in do_set_thread_area()
[all …]
/linux/drivers/watchdog/
H A Dbd96801_wdt.c102 static int find_closest_fast(unsigned int target, int *sel, unsigned int *val) in find_closest_fast() argument
114 *sel = i; in find_closest_fast()
123 int sel; in find_closest_slow_by_fast() local
125 for (sel = 0; sel < ARRAY_SIZE(multipliers) && in find_closest_slow_by_fast()
126 multipliers[sel] * fast_val < *target; sel++) in find_closest_slow_by_fast()
129 if (sel == ARRAY_SIZE(multipliers)) in find_closest_slow_by_fast()
132 *slowsel = sel; in find_closest_slow_by_fast()
133 *target = multipliers[sel] * fast_val; in find_closest_slow_by_fast()
241 unsigned int val, sel, fast; in bd96801_set_heartbeat_from_hw() local
257 sel = FIELD_GET(BD96801_WD_TMO_SHORT_MASK, val); in bd96801_set_heartbeat_from_hw()
[all …]

12345678910>>...23