Home
last modified time | relevance | path

Searched refs:role (Results 1 – 25 of 382) sorted by relevance

12345678910>>...16

/linux-6.1.9/drivers/usb/cdns3/
Dcore.c28 static int cdns_role_start(struct cdns *cdns, enum usb_role role) in cdns_role_start() argument
32 if (WARN_ON(role > USB_ROLE_DEVICE)) in cdns_role_start()
36 cdns->role = role; in cdns_role_start()
39 if (!cdns->roles[role]) in cdns_role_start()
42 if (cdns->roles[role]->state == CDNS_ROLE_STATE_ACTIVE) in cdns_role_start()
46 ret = cdns->roles[role]->start(cdns); in cdns_role_start()
48 cdns->roles[role]->state = CDNS_ROLE_STATE_ACTIVE; in cdns_role_start()
56 enum usb_role role = cdns->role; in cdns_role_stop() local
58 if (WARN_ON(role > USB_ROLE_DEVICE)) in cdns_role_stop()
61 if (cdns->roles[role]->state == CDNS_ROLE_STATE_INACTIVE) in cdns_role_stop()
[all …]
/linux-6.1.9/drivers/usb/dwc2/
Ddrd.c85 static int dwc2_drd_role_sw_set(struct usb_role_switch *sw, enum usb_role role) in dwc2_drd_role_sw_set() argument
92 if ((role == USB_ROLE_DEVICE && hsotg->dr_mode == USB_DR_MODE_HOST) || in dwc2_drd_role_sw_set()
93 (role == USB_ROLE_HOST && hsotg->dr_mode == USB_DR_MODE_PERIPHERAL)) in dwc2_drd_role_sw_set()
99 if (role == USB_ROLE_NONE && hsotg->test_mode) { in dwc2_drd_role_sw_set()
121 if (role == USB_ROLE_NONE) { in dwc2_drd_role_sw_set()
124 role = USB_ROLE_HOST; in dwc2_drd_role_sw_set()
126 role = USB_ROLE_DEVICE; in dwc2_drd_role_sw_set()
129 if (role == USB_ROLE_HOST) { in dwc2_drd_role_sw_set()
131 } else if (role == USB_ROLE_DEVICE) { in dwc2_drd_role_sw_set()
151 dwc2_force_mode(hsotg, role == USB_ROLE_HOST); in dwc2_drd_role_sw_set()
[all …]
/linux-6.1.9/drivers/staging/r8188eu/include/
Drtw_p2p.h44 void init_wifidirect_info(struct adapter *padapter, enum P2P_ROLE role);
45 int rtw_p2p_enable(struct adapter *padapter, enum P2P_ROLE role);
62 enum P2P_ROLE role) in _rtw_p2p_set_role() argument
64 if (wdinfo->role != role) in _rtw_p2p_set_role()
65 wdinfo->role = role; in _rtw_p2p_set_role()
80 return wdinfo->role; in _rtw_p2p_role()
90 enum P2P_ROLE role) in _rtw_p2p_chk_role() argument
92 return wdinfo->role == role; in _rtw_p2p_chk_role()
98 #define rtw_p2p_set_role(wdinfo, role) _rtw_p2p_set_role(wdinfo, role) argument
104 #define rtw_p2p_chk_role(wdinfo, role) _rtw_p2p_chk_role(wdinfo, role) argument
/linux-6.1.9/drivers/usb/chipidea/
Dci.h214 enum ci_role role; member
263 BUG_ON(ci->role >= CI_ROLE_END || !ci->roles[ci->role]); in ci_role()
264 return ci->roles[ci->role]; in ci_role()
267 static inline int ci_role_start(struct ci_hdrc *ci, enum ci_role role) in ci_role_start() argument
271 if (role >= CI_ROLE_END) in ci_role_start()
274 if (!ci->roles[role]) in ci_role_start()
277 ret = ci->roles[role]->start(ci); in ci_role_start()
279 ci->role = role; in ci_role_start()
285 enum ci_role role = ci->role; in ci_role_stop() local
287 if (role == CI_ROLE_END) in ci_role_stop()
[all …]
Dotg.c124 enum ci_role role = hw_read_otgsc(ci, OTGSC_ID) in ci_otg_role() local
128 return role; in ci_otg_role()
170 enum ci_role role = ci_otg_role(ci); in ci_handle_id_switch() local
172 if (role != ci->role) { in ci_handle_id_switch()
174 ci_role(ci)->name, ci->roles[role]->name); in ci_handle_id_switch()
176 if (ci->vbus_active && ci->role == CI_ROLE_GADGET) in ci_handle_id_switch()
185 if (role == CI_ROLE_GADGET && in ci_handle_id_switch()
196 ci_role_start(ci, role); in ci_handle_id_switch()
198 if (role == CI_ROLE_GADGET) in ci_handle_id_switch()
Ddebug.c127 if (ci->role != CI_ROLE_GADGET) { in ci_qheads_show()
161 if (ci->role != CI_ROLE_GADGET) { in ci_requests_show()
254 if (ci->role != CI_ROLE_END) in ci_role_show()
265 enum ci_role role; in ci_role_write() local
272 for (role = CI_ROLE_HOST; role < CI_ROLE_END; role++) in ci_role_write()
273 if (ci->roles[role] && in ci_role_write()
274 !strncmp(buf, ci->roles[role]->name, in ci_role_write()
275 strlen(ci->roles[role]->name))) in ci_role_write()
278 if (role == CI_ROLE_END || role == ci->role) in ci_role_write()
284 ret = ci_role_start(ci, role); in ci_role_write()
/linux-6.1.9/drivers/usb/typec/
Dqcom-pmic-typec.c69 enum usb_role role; in qcom_pmic_typec_check_connection() local
82 role = (stat & SNK_SRC_MODE) ? USB_ROLE_HOST : USB_ROLE_DEVICE; in qcom_pmic_typec_check_connection()
83 if (role == USB_ROLE_HOST) in qcom_pmic_typec_check_connection()
88 role = USB_ROLE_NONE; in qcom_pmic_typec_check_connection()
93 usb_role_switch_set_role(qcom_usb->role_sw, role); in qcom_pmic_typec_check_connection()
136 int ret, irq, role; in qcom_pmic_typec_probe() local
168 role = typec_find_port_power_role(buf); in qcom_pmic_typec_probe()
169 if (role < 0) in qcom_pmic_typec_probe()
170 role = TYPEC_PORT_SNK; in qcom_pmic_typec_probe()
172 role = TYPEC_PORT_SNK; in qcom_pmic_typec_probe()
[all …]
/linux-6.1.9/drivers/usb/roles/
Dclass.c22 enum usb_role role; member
42 int usb_role_switch_set_role(struct usb_role_switch *sw, enum usb_role role) in usb_role_switch_set_role() argument
51 ret = sw->set(sw, role); in usb_role_switch_set_role()
53 sw->role = role; in usb_role_switch_set_role()
72 enum usb_role role; in usb_role_switch_get_role() local
80 role = sw->get(sw); in usb_role_switch_get_role()
82 role = sw->role; in usb_role_switch_get_role()
86 return role; in usb_role_switch_get_role()
220 const char *usb_role_string(enum usb_role role) in usb_role_string() argument
222 if (role < 0 || role >= ARRAY_SIZE(usb_roles)) in usb_role_string()
[all …]
Dintel-xhci-usb-role-switch.c56 enum usb_role role) in intel_xhci_usb_set_role() argument
84 switch (role) { in intel_xhci_usb_set_role()
116 if (!!(val & HOST_MODE) == (role == USB_ROLE_HOST)) { in intel_xhci_usb_set_role()
134 enum usb_role role; in intel_xhci_usb_get_role() local
142 role = USB_ROLE_HOST; in intel_xhci_usb_get_role()
144 role = USB_ROLE_DEVICE; in intel_xhci_usb_get_role()
146 role = USB_ROLE_NONE; in intel_xhci_usb_get_role()
148 return role; in intel_xhci_usb_get_role()
/linux-6.1.9/drivers/net/ethernet/intel/ice/
Dice_lag.c29 if (lag->role != ICE_LAG_UNSET && lag->role != ICE_LAG_BACKUP) { in ice_lag_set_primary()
35 lag->role = ICE_LAG_PRIMARY; in ice_lag_set_primary()
49 if (lag->role != ICE_LAG_UNSET && lag->role != ICE_LAG_PRIMARY) { in ice_lag_set_backup()
55 lag->role = ICE_LAG_BACKUP; in ice_lag_set_backup()
64 const char *name, *peer, *upper, *role, *bonded, *primary; in ice_display_lag_info() local
73 switch (lag->role) { in ice_display_lag_info()
75 role = "NONE"; in ice_display_lag_info()
78 role = "PRIMARY"; in ice_display_lag_info()
81 role = "BACKUP"; in ice_display_lag_info()
84 role = "UNSET"; in ice_display_lag_info()
[all …]
/linux-6.1.9/include/linux/usb/
Dtypec.h57 static inline int is_sink(enum typec_role role) in is_sink() argument
59 return role == TYPEC_SINK; in is_sink()
62 static inline int is_source(enum typec_role role) in is_source() argument
64 return role == TYPEC_SOURCE; in is_source()
232 int (*try_role)(struct typec_port *port, int role);
233 int (*dr_set)(struct typec_port *port, enum typec_data_role role);
234 int (*pr_set)(struct typec_port *port, enum typec_role role);
235 int (*vconn_set)(struct typec_port *port, enum typec_role role);
305 void typec_set_data_role(struct typec_port *port, enum typec_data_role role);
306 void typec_set_pwr_role(struct typec_port *port, enum typec_role role);
[all …]
Drole.h17 enum usb_role role);
52 int usb_role_switch_set_role(struct usb_role_switch *sw, enum usb_role role);
68 const char *usb_role_string(enum usb_role role);
71 enum usb_role role) in usb_role_switch_set_role() argument
119 static inline const char *usb_role_string(enum usb_role role) in usb_role_string() argument
/linux-6.1.9/drivers/extcon/
Dextcon-usbc-cros-ec.c152 pd_control.role = USB_PD_CTRL_ROLE_NO_CHANGE; in cros_ec_usb_get_role()
166 return resp.role; in cros_ec_usb_get_role()
188 static const char *cros_ec_usb_role_string(unsigned int role) in cros_ec_usb_role_string() argument
190 return role == DR_NONE ? "DISCONNECTED" : in cros_ec_usb_role_string()
191 (role == DR_HOST ? "DFP" : "UFP"); in cros_ec_usb_role_string()
223 unsigned int role) in cros_ec_usb_power_type_is_wall_wart() argument
251 int role, power_type; in extcon_cros_ec_detect_cable() local
266 role = cros_ec_usb_get_role(info, &polarity); in extcon_cros_ec_detect_cable()
267 if (role < 0) { in extcon_cros_ec_detect_cable()
268 if (role != -ENOTCONN) { in extcon_cros_ec_detect_cable()
[all …]
/linux-6.1.9/Documentation/devicetree/bindings/usb/
Dmediatek,mtu3.yaml98 Regulator of USB VBUS5v, needed when supports dual-role mode.
126 when supports dual-role mode.
128 new bindings, and use "usb-role-switch" property instead.
130 usb-role-switch:
132 description: Support role switch.
135 role-switch-default-mode:
142 Connector for dual role switch, especially for "gpio-usb-b-connector"
148 using the OF graph bindings specified, if the "usb-role-switch"
155 supports manual dual-role switch via debugfs; usually used when
156 receptacle is TYPE-A and also wants to support dual-role mode.
[all …]
Danalogix,anx7411.yaml35 power-role: true
37 data-role: true
39 try-power-role: true
66 power-role = "dual";
67 data-role = "dual";
68 try-power-role = "source";
/linux-6.1.9/net/bridge/
Dbr_mrp_switchdev.c66 enum br_mrp_ring_role_type role) in br_mrp_switchdev_set_ring_role() argument
71 .ring_role = role, in br_mrp_switchdev_set_ring_role()
82 role != BR_MRP_RING_ROLE_DISABLED); in br_mrp_switchdev_set_ring_role()
90 if (role != BR_MRP_RING_ROLE_DISABLED) in br_mrp_switchdev_set_ring_role()
142 enum br_mrp_in_role_type role) in br_mrp_switchdev_set_in_role() argument
147 .in_role = role, in br_mrp_switchdev_set_in_role()
160 role != BR_MRP_IN_ROLE_DISABLED); in br_mrp_switchdev_set_in_role()
168 if (role != BR_MRP_IN_ROLE_DISABLED) in br_mrp_switchdev_set_in_role()
229 enum br_mrp_port_role_type role) in br_mrp_port_switchdev_set_role() argument
234 .u.mrp_port_role = role, in br_mrp_port_switchdev_set_role()
Dbr_mrp_netlink.c109 enum br_mrp_port_role_type role; in br_mrp_port_role_parse() local
122 role = nla_get_u32(tb[IFLA_BRIDGE_MRP_PORT_ROLE_ROLE]); in br_mrp_port_role_parse()
124 return br_mrp_set_port_role(p, role); in br_mrp_port_role_parse()
172 struct br_mrp_ring_role role; in br_mrp_ring_role_parse() local
187 memset(&role, 0x0, sizeof(role)); in br_mrp_ring_role_parse()
189 role.ring_id = nla_get_u32(tb[IFLA_BRIDGE_MRP_RING_ROLE_RING_ID]); in br_mrp_ring_role_parse()
190 role.ring_role = nla_get_u32(tb[IFLA_BRIDGE_MRP_RING_ROLE_ROLE]); in br_mrp_ring_role_parse()
192 return br_mrp_set_ring_role(br, &role); in br_mrp_ring_role_parse()
288 struct br_mrp_in_role role; in br_mrp_in_role_parse() local
305 memset(&role, 0x0, sizeof(role)); in br_mrp_in_role_parse()
[all …]
/linux-6.1.9/drivers/s390/net/
Dqeth_l2_sys.c28 &card->options.sbp.role, &state); in qeth_bridge_port_role_state_show()
42 switch (card->options.sbp.role) { in qeth_bridge_port_role_state_show()
54 card->options.sbp.role, state); in qeth_bridge_port_role_state_show()
79 enum qeth_sbp_roles role; in qeth_bridge_port_role_store() local
82 role = QETH_SBP_ROLE_PRIMARY; in qeth_bridge_port_role_store()
84 role = QETH_SBP_ROLE_SECONDARY; in qeth_bridge_port_role_store()
86 role = QETH_SBP_ROLE_NONE; in qeth_bridge_port_role_store()
99 rc = qeth_bridgeport_setrole(card, role); in qeth_bridge_port_role_store()
101 card->options.sbp.role = role; in qeth_bridge_port_role_store()
103 card->options.sbp.role = role; in qeth_bridge_port_role_store()
[all …]
/linux-6.1.9/arch/x86/kvm/mmu/
Dmmu.c536 int level = sptep_to_sp(sptep)->role.level; in mmu_spte_clear_track_bits()
685 if (sp->role.passthrough) in kvm_mmu_page_get_gfn()
688 if (!sp->role.direct) in kvm_mmu_page_get_gfn()
691 return sp->gfn + (index << ((sp->role.level - 1) * SPTE_LEVEL_BITS)); in kvm_mmu_page_get_gfn()
717 return sp->role.access; in kvm_mmu_page_get_access()
730 sp->role.passthrough ? "passthrough" : "direct", in kvm_mmu_page_set_translation()
735 sp->role.passthrough ? "passthrough" : "direct", in kvm_mmu_page_set_translation()
791 slots = kvm_memslots_for_spte_role(kvm, sp->role); in account_shadowed()
795 if (sp->role.level > PG_LEVEL_4K) in account_shadowed()
824 slots = kvm_memslots_for_spte_role(kvm, sp->role); in unaccount_shadowed()
[all …]
Dmmutrace.h14 __field(__u32, role) \
21 __entry->role = sp->role.word; \
30 union kvm_mmu_page_role role; \
32 role.word = __entry->role; \
37 __entry->gfn, role.level, \
38 role.has_4_byte_gpte ? 4 : 8, \
39 role.quadrant, \
40 role.direct ? " direct" : "", \
41 access_str[role.access], \
42 role.invalid ? " invalid" : "", \
[all …]
/linux-6.1.9/drivers/misc/
Dhisi_hikey_usb.c44 enum usb_role role; member
98 enum usb_role role; in relay_set_role_switch() local
104 switch (hisi_hikey_usb->role) { in relay_set_role_switch()
124 role = hisi_hikey_usb->role; in relay_set_role_switch()
127 usb_role_switch_set_role(sw, role); in relay_set_role_switch()
130 static int hub_usb_role_switch_set(struct usb_role_switch *sw, enum usb_role role) in hub_usb_role_switch_set() argument
138 hisi_hikey_usb->role = role; in hub_usb_role_switch_set()
/linux-6.1.9/scripts/
Dget_maintainer.pl1270 my $role = "unknown";
1279 $role = $pvalue;
1284 $role = lc($role);
1285 if ($role eq "supported") {
1286 $role = "supporter";
1287 } elsif ($role eq "maintained") {
1288 $role = "maintainer";
1289 } elsif ($role eq "odd fixes") {
1290 $role = "odd fixer";
1291 } elsif ($role eq "orphan") {
[all …]
/linux-6.1.9/Documentation/ABI/testing/
Dsysfs-platform-chipidea-usb21 What: /sys/bus/platform/devices/ci_hdrc.0/role
6 the current controller role.
8 It will do role switch when "gadget" or "host" is written to it.
9 Only controller at dual-role configuration supports writing.
/linux-6.1.9/net/netfilter/
Dnf_conntrack_proto_dccp.c409 ct->proto.dccp.role[IP_CT_DIR_ORIGINAL] = CT_DCCP_ROLE_CLIENT; in dccp_new()
410 ct->proto.dccp.role[IP_CT_DIR_REPLY] = CT_DCCP_ROLE_SERVER; in dccp_new()
480 enum ct_dccp_roles role; in nf_conntrack_dccp_packet() local
503 role = ct->proto.dccp.role[dir]; in nf_conntrack_dccp_packet()
505 new_state = dccp_state_table[role][type][old_state]; in nf_conntrack_dccp_packet()
510 role == CT_DCCP_ROLE_SERVER) { in nf_conntrack_dccp_packet()
513 ct->proto.dccp.role[dir] = CT_DCCP_ROLE_CLIENT; in nf_conntrack_dccp_packet()
514 ct->proto.dccp.role[!dir] = CT_DCCP_ROLE_SERVER; in nf_conntrack_dccp_packet()
536 ct->proto.dccp.role[!dir] = CT_DCCP_ROLE_CLIENT; in nf_conntrack_dccp_packet()
537 ct->proto.dccp.role[dir] = CT_DCCP_ROLE_SERVER; in nf_conntrack_dccp_packet()
[all …]
/linux-6.1.9/tools/lib/traceevent/plugins/
Dplugin_kvm.c385 union kvm_mmu_page_role role; in kvm_mmu_print_role() local
390 role.word = (int)val; in kvm_mmu_print_role()
400 role.level, in kvm_mmu_print_role()
401 role.quadrant, in kvm_mmu_print_role()
402 role.direct ? " direct" : "", in kvm_mmu_print_role()
403 access_str[role.access], in kvm_mmu_print_role()
404 role.invalid ? " invalid" : "", in kvm_mmu_print_role()
405 role.cr4_pae ? "" : "!", in kvm_mmu_print_role()
406 role.efer_nx ? "" : "!", in kvm_mmu_print_role()
407 role.cr0_wp ? "" : "!", in kvm_mmu_print_role()
[all …]

12345678910>>...16