| /Linux-v5.15/drivers/usb/typec/ |
| D | bus.c | 36 port_altmode = is_port ? to_altmode(adev) : to_altmode(adev)->partner; in typec_altmode_set_state() 62 struct altmode *partner; in typec_altmode_notify() local 70 if (!altmode->partner) in typec_altmode_notify() 74 partner = altmode->partner; in typec_altmode_notify() 76 ret = typec_altmode_set_mux(is_port ? altmode : partner, conf, data); in typec_altmode_notify() 80 if (partner->adev.ops && partner->adev.ops->notify) in typec_altmode_notify() 81 return partner->adev.ops->notify(&partner->adev, conf, data); in typec_altmode_notify() 99 struct altmode *partner = to_altmode(adev)->partner; in typec_altmode_enter() local 100 struct typec_altmode *pdev = &partner->adev; in typec_altmode_enter() 130 struct altmode *partner = to_altmode(adev)->partner; in typec_altmode_exit() local [all …]
|
| D | class.c | 61 struct typec_partner *partner = to_typec_partner(dev); in get_pd_identity() local 63 return partner->identity; in get_pd_identity() 239 struct altmode *partner; in typec_altmode_set_partner() local 247 partner = to_altmode(to_typec_altmode(dev)); in typec_altmode_set_partner() 248 altmode->partner = partner; in typec_altmode_set_partner() 254 partner->plug[plug->index] = altmode; in typec_altmode_set_partner() 256 partner->partner = altmode; in typec_altmode_set_partner() 262 struct altmode *partner = altmode->partner; in typec_altmode_put_partner() local 265 if (!partner) in typec_altmode_put_partner() 268 adev = &partner->adev; in typec_altmode_put_partner() [all …]
|
| D | stusb160x.c | 157 struct typec_partner *partner; member 364 chip->partner = typec_register_partner(chip->port, &desc); in stusb160x_attach() 365 if (IS_ERR(chip->partner)) { in stusb160x_attach() 366 ret = PTR_ERR(chip->partner); in stusb160x_attach() 388 typec_unregister_partner(chip->partner); in stusb160x_detach() 389 chip->partner = NULL; in stusb160x_detach() 467 if (chip->partner) { in stusb160x_irq_init() 468 typec_unregister_partner(chip->partner); in stusb160x_irq_init() 469 chip->partner = NULL; in stusb160x_irq_init() 808 if (chip->partner) { in stusb160x_remove() [all …]
|
| D | bus.h | 23 struct altmode *partner; member
|
| /Linux-v5.15/drivers/net/dsa/xrs700x/ |
| D | xrs700x.c | 560 struct dsa_port *partner = NULL, *dp; in xrs700x_hsr_join() local 584 partner = dp; in xrs700x_hsr_join() 592 if (!partner) in xrs700x_hsr_join() 595 regmap_fields_write(priv->ps_forward, partner->index, in xrs700x_hsr_join() 599 regmap_write(priv->regmap, XRS_HSR_CFG(partner->index), in xrs700x_hsr_join() 609 val &= ~BIT(partner->index); in xrs700x_hsr_join() 614 regmap_write(priv->regmap, XRS_PORT_FWD_MASK(partner->index), val); in xrs700x_hsr_join() 617 regmap_fields_write(priv->ps_forward, partner->index, in xrs700x_hsr_join() 626 ret = xrs700x_port_add_hsrsup_ipf(ds, partner->index, fwd ? port : -1); in xrs700x_hsr_join() 630 ret = xrs700x_port_add_hsrsup_ipf(ds, port, fwd ? partner->index : -1); in xrs700x_hsr_join() [all …]
|
| /Linux-v5.15/Documentation/ABI/testing/ |
| D | sysfs-class-typec | 57 when both the port and the partner support USB Power Delivery. 115 What: /sys/class/typec/<port>-{partner|cable}/usb_power_delivery_revision 120 specification of the port partner or cable, or 0.0 when USB 144 USB Type-C partner devices (eg. /sys/class/typec/port0-partner/) 146 What: /sys/class/typec/<port>-partner/accessory_mode 150 Shows the Accessory Mode name when the partner is an Accessory. 153 What: /sys/class/typec/<port>-partner/supports_usb_power_delivery 157 Shows if the partner supports USB Power Delivery communication: 160 What: /sys/class/typec/<port>-partner/number_of_alternate_modes 164 Shows the number of alternate modes which are advertised by the partner [all …]
|
| D | sysfs-bus-pci-devices-aer_stats | 7 counters may increment at its link partner (e.g. root port) because the 8 errors may be "seen" / reported by the link partner and not the
|
| /Linux-v5.15/Documentation/driver-api/usb/ |
| D | typec_bus.rst | 8 Alternate modes require communication with the partner using Vendor Defined 13 USB Type-C bus allows binding a driver to the discovered partner alternate 17 mode a port supports, and separate device for every alternate mode the partner 18 supports. The drivers for the alternate modes are bound to the partner alternate 22 When a new partner alternate mode device is registered, it is linked to the 23 alternate mode device of the port that the partner is attached to, that has 27 The port alternate mode devices are used as a proxy between the partner and the 29 specific commands from the alternate mode drivers to the partner, and from the 33 drivers need to provide them for the partner alternate mode devices. 47 will be used to deliver all the SVID specific commands from the partner to the [all …]
|
| D | typec.rst | 33 When connected, the partner will be presented also as its own device under 34 /sys/class/typec/. The parent of the partner device will always be the port it 35 is attached to. The partner attached to port "port0" will be named 36 "port0-partner". Full path to the device would be 37 /sys/class/typec/port0/port0-partner/. 46 If the port, partner or cable plug supports Alternate Modes, every supported 50 mode of port0-partner will be presented under /sys/class/typec/port0-partner/. 78 After successful connection of a partner, the port driver needs to register the 79 partner with the class. Details about the partner need to be described in struct 80 typec_partner_desc. The class copies the details of the partner during [all …]
|
| /Linux-v5.15/net/dsa/ |
| D | tag_xrs700x.c | 14 struct dsa_port *partner, *dp = dsa_slave_to_port(dev); in xrs700x_xmit() local 21 dsa_hsr_foreach_port(partner, dp->ds, dp->hsr_dev) in xrs700x_xmit() 22 if (partner != dp) in xrs700x_xmit() 23 trailer[0] |= BIT(partner->index); in xrs700x_xmit()
|
| /Linux-v5.15/include/linux/usb/ |
| D | typec.h | 109 int typec_partner_set_identity(struct typec_partner *partner); 130 void typec_partner_set_pd_revision(struct typec_partner *partner, u16 pd_revision); 131 int typec_partner_set_num_altmodes(struct typec_partner *partner, int num_altmodes); 133 *typec_partner_register_altmode(struct typec_partner *partner, 272 void typec_unregister_partner(struct typec_partner *partner); 304 void typec_partner_set_svdm_version(struct typec_partner *partner,
|
| /Linux-v5.15/Documentation/ABI/obsolete/ |
| D | sysfs-class-typec | 4 What: /sys/class/typec/<port|partner|cable>/<dev>/svid 11 What: /sys/class/typec/<port|partner|cable>/<dev>/mode<index>/ 20 What: /sys/class/typec/<port|partner|cable>/<dev>/mode<index>/description 27 What: /sys/class/typec/<port|partner|cable>/<dev>/mode<index>/vdo 34 What: /sys/class/typec/<port|partner|cable>/<dev>/mode<index>/active
|
| /Linux-v5.15/drivers/usb/typec/tipd/ |
| D | core.c | 86 struct typec_partner *partner; member 226 if (tps->partner) in tps6598x_connect() 251 tps->partner = typec_register_partner(tps->port, &desc); in tps6598x_connect() 252 if (IS_ERR(tps->partner)) in tps6598x_connect() 253 return PTR_ERR(tps->partner); in tps6598x_connect() 256 typec_partner_set_identity(tps->partner); in tps6598x_connect() 265 if (!IS_ERR(tps->partner)) in tps6598x_disconnect() 266 typec_unregister_partner(tps->partner); in tps6598x_disconnect() 267 tps->partner = NULL; in tps6598x_disconnect()
|
| /Linux-v5.15/drivers/usb/typec/ucsi/ |
| D | ucsi.c | 308 alt = typec_partner_register_altmode(con->partner, desc); in ucsi_register_altmode() 569 struct typec_partner *partner; in ucsi_register_partner() local 571 if (con->partner) in ucsi_register_partner() 589 partner = typec_register_partner(con->port, &desc); in ucsi_register_partner() 590 if (IS_ERR(partner)) { in ucsi_register_partner() 593 PTR_ERR(partner)); in ucsi_register_partner() 594 return PTR_ERR(partner); in ucsi_register_partner() 597 con->partner = partner; in ucsi_register_partner() 604 if (!con->partner) in ucsi_unregister_partner() 608 typec_unregister_partner(con->partner); in ucsi_unregister_partner() [all …]
|
| /Linux-v5.15/drivers/platform/chrome/ |
| D | cros_ec_typec.c | 46 struct typec_partner *partner; member 183 port->partner = typec_register_partner(port->port, &p_desc); in cros_typec_add_partner() 184 if (IS_ERR(port->partner)) { in cros_typec_add_partner() 185 ret = PTR_ERR(port->partner); in cros_typec_add_partner() 186 port->partner = NULL; in cros_typec_add_partner() 224 if (!port->partner) in cros_typec_remove_partner() 231 typec_unregister_partner(port->partner); in cros_typec_remove_partner() 232 port->partner = NULL; in cros_typec_remove_partner() 649 if (typec->ports[port_num]->partner) in cros_typec_set_port_params_v1() 698 amode = typec_partner_register_altmode(port->partner, &desc); in cros_typec_register_altmodes() [all …]
|
| /Linux-v5.15/drivers/net/bonding/ |
| D | bond_3ad.c | 483 struct port_params *partner = &port->partner_oper; in __record_pdu() local 489 partner->port_number = ntohs(lacpdu->actor_port); in __record_pdu() 490 partner->port_priority = ntohs(lacpdu->actor_port_priority); in __record_pdu() 491 partner->system = lacpdu->actor_system; in __record_pdu() 492 partner->system_priority = ntohs(lacpdu->actor_system_priority); in __record_pdu() 493 partner->key = ntohs(lacpdu->actor_key); in __record_pdu() 494 partner->port_state = lacpdu->actor_state; in __record_pdu() 504 partner->port_state |= LACP_STATE_SYNCHRONIZATION; in __record_pdu() 508 partner->port_state &= ~LACP_STATE_SYNCHRONIZATION; in __record_pdu() 551 const struct port_params *partner = &port->partner_oper; in __update_selected() local [all …]
|
| /Linux-v5.15/drivers/net/ethernet/3com/ |
| D | 3c574_cs.c | 199 u16 advertising, partner; /* NWay media advertisement */ member 866 unsigned short /* cable, */ media, partner; in media_check() local 893 partner = mdio_read(ioaddr, lp->phys, 5); in media_check() 901 lp->partner = 0; in media_check() 904 } else if (partner) { in media_check() 905 partner &= lp->advertising; in media_check() 906 lp->partner = partner; in media_check() 909 (partner & 0x0180) ? 100 : 10, in media_check() 910 (partner & 0x0140) ? 'F' : 'H'); in media_check() 916 outb((partner & 0x0140 ? 0x20 : 0) | in media_check()
|
| /Linux-v5.15/arch/sh/include/mach-ecovec24/mach/ |
| D | partner-jet-setup.txt | 2 LIST "partner-jet-setup.txt" 8 LIST "> < partner-jet-setup.txt"
|
| /Linux-v5.15/arch/sh/include/mach-kfr2r09/mach/ |
| D | partner-jet-setup.txt | 2 LIST "partner-jet-setup.txt - 20090729 Magnus Damm" 7 LIST "> < partner-jet-setup.txt"
|
| /Linux-v5.15/Documentation/powerpc/ |
| D | hvcs.rst | 335 partner vty removals but not the addition of partner vtys. Since an HMC 336 Super Admin can add partner info dynamically we have provided the hvcs 338 firmware and update the partner info for all the vty-servers that this 371 provide lists of easily parsed partner vty data: "partner_vtys" and 388 Reading partner_vtys returns a list of partner vtys. Vty unit address 394 adapter. The first vty partner corresponds to the first clc item, the 395 second vty partner to the second clc item, etc. 398 "current_vty" prints the clc of the currently selected partner vty when 401 The current_vty can be changed by writing a valid partner clc to the entry
|
| /Linux-v5.15/arch/arm/boot/dts/ |
| D | s5pv210-smdkc110.dts | 7 * Mateusz Krawczuk <m.krawczuk@partner.samsung.com>
|
| D | s5pv210-torbreck.dts | 7 * Mateusz Krawczuk <m.krawczuk@partner.samsung.com>
|
| /Linux-v5.15/Documentation/networking/device_drivers/ethernet/intel/ |
| D | e1000e.rst | 330 connections will attempt to auto-negotiate with its link partner to determine 331 the best setting. If the adapter cannot establish link with the link partner 333 partner to identical settings to establish link and pass packets. This should 336 duplex mode. Your link partner must match the setting you choose. 1 Gbps speeds 350 will not attempt to auto-negotiate with its link partner since those adapters
|
| /Linux-v5.15/Documentation/misc-devices/ |
| D | ibmvmc.rst | 84 communicate capabilities to their partner. HMC Interface messages are used 96 client or from the server to its partner partition. DMA refers 101 between partner partitions. Transport events which are signaled
|
| /Linux-v5.15/sound/soc/sunxi/ |
| D | sun8i-codec.c | 533 int partner = (SUN8I_CODEC_AIF2 + SUN8I_CODEC_AIF3) - dai->id; in sun8i_codec_hw_params() local 534 const struct sun8i_codec_aif *partner_aif = &scodec->aifs[partner]; in sun8i_codec_hw_params() 535 const char *partner_name = sun8i_codec_dais[partner].name; in sun8i_codec_hw_params()
|