| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/soundwire/ |
| D | qcom,sdw.txt | 42 - qcom,dout-ports: 45 Definition: must be count of data out ports 47 - qcom,din-ports: 50 Definition: must be count of data in ports 52 - qcom,ports-offset1: 56 data port. Out ports followed by In ports. 59 - qcom,ports-offset2: 63 data port. Out ports followed by In ports. 66 - qcom,ports-sinterval-low: 70 Out ports followed by In ports. Used for Sample Interval [all …]
|
| /kernel/linux/linux-5.10/drivers/thunderbolt/ |
| D | test.c | 54 size = (sw->config.max_port_number + 1) * sizeof(*sw->ports); in alloc_switch() 55 sw->ports = kunit_kzalloc(test, size, GFP_KERNEL); in alloc_switch() 56 if (!sw->ports) in alloc_switch() 60 sw->ports[i].sw = sw; in alloc_switch() 61 sw->ports[i].port = i; in alloc_switch() 62 sw->ports[i].config.port_number = i; in alloc_switch() 64 kunit_ida_init(test, &sw->ports[i].in_hopids); in alloc_switch() 65 kunit_ida_init(test, &sw->ports[i].out_hopids); in alloc_switch() 83 sw->ports[0].config.type = TB_TYPE_PORT; in alloc_host() 84 sw->ports[0].config.max_in_hop_id = 7; in alloc_host() [all …]
|
| /kernel/linux/linux-4.19/drivers/net/ethernet/netronome/nfp/nfpcore/ |
| D | nfp_nsp.h | 98 * @max_index: max of @index fields of all @ports 99 * @ports: table of ports 101 * @ports.eth_index: port index according to legacy ethX numbering 102 * @ports.index: chip-wide first channel index 103 * @ports.nbi: NBI index 104 * @ports.base: first channel index (within NBI) 105 * @ports.lanes: number of channels 106 * @ports.speed: interface speed (in Mbps) 107 * @ports.interface: interface (module) plugged in 108 * @ports.media: media type of the @interface [all …]
|
| /kernel/linux/linux-5.10/drivers/net/ethernet/netronome/nfp/nfpcore/ |
| D | nfp_nsp.h | 123 * @max_index: max of @index fields of all @ports 124 * @ports: table of ports 126 * @ports.eth_index: port index according to legacy ethX numbering 127 * @ports.index: chip-wide first channel index 128 * @ports.nbi: NBI index 129 * @ports.base: first channel index (within NBI) 130 * @ports.lanes: number of channels 131 * @ports.speed: interface speed (in Mbps) 132 * @ports.interface: interface (module) plugged in 133 * @ports.media: media type of the @interface [all …]
|
| /kernel/linux/linux-5.10/arch/arm64/boot/dts/hisilicon/ |
| D | hi3660-coresight.dtsi | 21 out-ports { 38 out-ports { 55 out-ports { 72 out-ports { 88 out-ports { 97 in-ports { 137 in-ports { 146 out-ports { 164 out-ports { 181 out-ports { [all …]
|
| /kernel/linux/linux-4.19/Documentation/ABI/stable/ |
| D | sysfs-class-infiniband | 37 What: /sys/class/infiniband/<device>/ports/<port-num>/lid 38 What: /sys/class/infiniband/<device>/ports/<port-num>/rate 39 What: /sys/class/infiniband/<device>/ports/<port-num>/lid_mask_count 40 What: /sys/class/infiniband/<device>/ports/<port-num>/sm_sl 41 What: /sys/class/infiniband/<device>/ports/<port-num>/sm_lid 42 What: /sys/class/infiniband/<device>/ports/<port-num>/state 43 What: /sys/class/infiniband/<device>/ports/<port-num>/phys_state 44 What: /sys/class/infiniband/<device>/ports/<port-num>/cap_mask 73 What: /sys/class/infiniband/<device>/ports/<port-num>/link_layer 81 What: /sys/class/infiniband/<device>/ports/<port-num>/counters/symbol_error [all …]
|
| /kernel/linux/linux-5.10/drivers/video/fbdev/omap2/omapfb/dss/ |
| D | dss-of.c | 28 struct device_node *ports; in omapdss_of_get_next_port() local 31 * within this node or within an optional 'ports' node. in omapdss_of_get_next_port() 33 ports = of_get_child_by_name(parent, "ports"); in omapdss_of_get_next_port() 34 if (ports) in omapdss_of_get_next_port() 35 parent = ports; in omapdss_of_get_next_port() 39 /* release the 'ports' node */ in omapdss_of_get_next_port() 40 of_node_put(ports); in omapdss_of_get_next_port() 42 struct device_node *ports; in omapdss_of_get_next_port() local 44 ports = of_get_parent(prev); in omapdss_of_get_next_port() 45 if (!ports) in omapdss_of_get_next_port() [all …]
|
| /kernel/linux/linux-5.10/sound/core/seq/ |
| D | seq_dummy.c | 33 The number of ports to be created can be specified via the module 34 parameter "ports". For example, to create four ports, add the 37 option snd-seq-dummy ports=4 40 In duplex mode, a pair of ports are created instead of single port, 41 and events are tunneled between pair-ports. For example, input to 53 static int ports = 1; variable 56 module_param(ports, int, 0444); 57 MODULE_PARM_DESC(ports, "number of ports to be created"); 59 MODULE_PARM_DESC(duplex, "create DUPLEX ports"); 147 * register client and create ports [all …]
|
| /kernel/linux/linux-4.19/drivers/video/fbdev/omap2/omapfb/dss/ |
| D | dss-of.c | 36 struct device_node *ports; in omapdss_of_get_next_port() local 39 * within this node or within an optional 'ports' node. in omapdss_of_get_next_port() 41 ports = of_get_child_by_name(parent, "ports"); in omapdss_of_get_next_port() 42 if (ports) in omapdss_of_get_next_port() 43 parent = ports; in omapdss_of_get_next_port() 47 /* release the 'ports' node */ in omapdss_of_get_next_port() 48 of_node_put(ports); in omapdss_of_get_next_port() 50 struct device_node *ports; in omapdss_of_get_next_port() local 52 ports = of_get_parent(prev); in omapdss_of_get_next_port() 53 if (!ports) in omapdss_of_get_next_port() [all …]
|
| /kernel/linux/linux-5.10/tools/testing/selftests/net/ |
| D | devlink_port_split.py | 15 # First, check that all the ports with 1 lane fail to split. 16 # Second, check that all the ports with more than 1 lane can be split 43 Class that holds information on the devlink ports, required to the tests; 44 if_names: A list of interfaces in the devlink ports. 49 Get a list of physical devlink ports. 58 ports = json.loads(stdout)['port'] 60 for port in ports: 62 if ports[port]['flavour'] == 'physical': 63 arr.append(Port(bus_info=port, name=ports[port]['netdev'])) 105 Split $port into $k ports. [all …]
|
| /kernel/linux/linux-5.10/arch/arm/boot/dts/ |
| D | hip04.dtsi | 277 in-ports { 292 in-ports { 307 in-ports { 322 in-ports { 337 in-ports { 352 out-ports { 356 /* replicator output ports */ 372 in-ports { 387 out-ports { 391 /* replicator output ports */ [all …]
|
| /kernel/linux/linux-5.10/Documentation/ABI/stable/ |
| D | sysfs-class-infiniband | 39 What: /sys/class/infiniband/<device>/ports/<port-num>/lid 40 What: /sys/class/infiniband/<device>/ports/<port-num>/rate 41 What: /sys/class/infiniband/<device>/ports/<port-num>/lid_mask_count 42 What: /sys/class/infiniband/<device>/ports/<port-num>/sm_sl 43 What: /sys/class/infiniband/<device>/ports/<port-num>/sm_lid 44 What: /sys/class/infiniband/<device>/ports/<port-num>/state 45 What: /sys/class/infiniband/<device>/ports/<port-num>/phys_state 46 What: /sys/class/infiniband/<device>/ports/<port-num>/cap_mask 77 What: /sys/class/infiniband/<device>/ports/<port-num>/link_layer 85 What: /sys/class/infiniband/<device>/ports/<port-num>/counters/symbol_error [all …]
|
| /kernel/linux/linux-4.19/Documentation/leds/ |
| D | ledtrig-usbport.txt | 8 It requires selecting USB ports that should be observed. All available ones are 9 listed as separated entries in a "ports" subdirectory. Selecting is handled by 12 Please note that this trigger allows selecting multiple USB ports for a single 15 1) Device with single USB LED and few physical ports 24 only one LED user will most likely want to assign ports from all 3 hubs. 38 echo 1 > ports/usb1-port1 39 echo 1 > ports/usb2-port1 40 cat ports/usb1-port1 41 echo 0 > ports/usb1-port1
|
| /kernel/linux/linux-4.19/sound/core/seq/ |
| D | seq_dummy.c | 47 The number of ports to be created can be specified via the module 48 parameter "ports". For example, to create four ports, add the 51 option snd-seq-dummy ports=4 54 In duplex mode, a pair of ports are created instead of single port, 55 and events are tunneled between pair-ports. For example, input to 67 static int ports = 1; variable 70 module_param(ports, int, 0444); 71 MODULE_PARM_DESC(ports, "number of ports to be created"); 73 MODULE_PARM_DESC(duplex, "create DUPLEX ports"); 161 * register client and create ports [all …]
|
| /kernel/linux/linux-5.10/tools/testing/selftests/drivers/net/mlxsw/ |
| D | sharedbuffer_configuration.py | 249 def get_tcbinds(ports, verify_existence=False): argument 252 for port in ports: 264 def do_check_tcbind(ports, tcbinds, vp): argument 266 pre_tcbinds = get_tcbinds(ports) 272 post_tcbinds = get_tcbinds(ports) 290 def check_tcbind(dlname, ports, pools): argument 291 tcbinds = get_tcbinds(ports, verify_existence=True) 298 do_check_tcbind(ports, tcbinds, RandomValuePicker(pools)) 301 do_check_tcbind(ports, tcbinds, record_vp) 321 def get_portpools(ports, verify_existence=False): argument [all …]
|
| /kernel/linux/linux-5.10/drivers/usb/host/ |
| D | xhci-hub.c | 170 struct usb_hub_descriptor *desc, int ports) in xhci_common_hub_descriptor() argument 177 desc->bNbrPorts = ports; in xhci_common_hub_descriptor() 187 /* Bits 6:5 - no TTs in root ports */ in xhci_common_hub_descriptor() 196 int ports; in xhci_usb2_hub_descriptor() local 204 ports = rhub->num_ports; in xhci_usb2_hub_descriptor() 205 xhci_common_hub_descriptor(xhci, desc, ports); in xhci_usb2_hub_descriptor() 207 temp = 1 + (ports / 8); in xhci_usb2_hub_descriptor() 214 for (i = 0; i < ports; i++) { in xhci_usb2_hub_descriptor() 215 portsc = readl(rhub->ports[i]->addr); in xhci_usb2_hub_descriptor() 227 * ports on it. The USB 2.0 specification says that there are two in xhci_usb2_hub_descriptor() [all …]
|
| /kernel/linux/linux-4.19/drivers/usb/host/ |
| D | xhci-hub.c | 170 struct usb_hub_descriptor *desc, int ports) in xhci_common_hub_descriptor() argument 177 desc->bNbrPorts = ports; in xhci_common_hub_descriptor() 187 /* Bits 6:5 - no TTs in root ports */ in xhci_common_hub_descriptor() 196 int ports; in xhci_usb2_hub_descriptor() local 204 ports = rhub->num_ports; in xhci_usb2_hub_descriptor() 205 xhci_common_hub_descriptor(xhci, desc, ports); in xhci_usb2_hub_descriptor() 207 temp = 1 + (ports / 8); in xhci_usb2_hub_descriptor() 214 for (i = 0; i < ports; i++) { in xhci_usb2_hub_descriptor() 215 portsc = readl(rhub->ports[i]->addr); in xhci_usb2_hub_descriptor() 227 * ports on it. The USB 2.0 specification says that there are two in xhci_usb2_hub_descriptor() [all …]
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/arm/ |
| D | coresight.txt | 64 * port or ports: see "Graph bindings for Coresight" below. 95 * port or ports: see "Graph bindings for Coresight" below. 147 * All output ports must be listed inside a child node named "out-ports" 148 * All input ports must be listed inside a child node named "in-ports". 160 in-ports { 175 in-ports { 190 in-ports { 198 out-ports { 214 out-ports { 218 /* replicator output ports */ [all …]
|
| /kernel/linux/linux-5.10/Documentation/leds/ |
| D | ledtrig-usbport.rst | 9 It requires selecting USB ports that should be observed. All available ones are 10 listed as separated entries in a "ports" subdirectory. Selecting is handled by 13 Please note that this trigger allows selecting multiple USB ports for a single 18 1) Device with single USB LED and few physical ports 29 only one LED user will most likely want to assign ports from all 3 hubs. 43 echo 1 > ports/usb1-port1 44 echo 1 > ports/usb2-port1 45 cat ports/usb1-port1 46 echo 0 > ports/usb1-port1
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/net/dsa/ |
| D | ocelot.txt | 25 For the external switch ports, depending on board configuration, "phy-mode" and 26 "phy-handle" are populated by board specific device tree instances. Ports 4 and 27 5 are fixed as internal ports in the NXP LS1028A instantiation. 49 * phy_mode = "internal": on ports 4 and 5 50 * phy_mode = "sgmii": on ports 0, 1, 2, 3 51 * phy_mode = "qsgmii": on ports 0, 1, 2, 3 52 * phy_mode = "usxgmii": on ports 0, 1, 2, 3 53 * phy_mode = "2500base-x": on ports 0, 1, 2, 3 70 ports { 74 /* External ports */ [all …]
|
| /kernel/linux/linux-4.19/drivers/bus/ |
| D | arm-cci.c | 113 static struct cci_ace_port *ports; variable 124 * Code disabling CCI cpu ports runs with D-cache invalidated 169 ace_match = ports[i].type == type; in __cci_ace_get_port() 170 if (ace_match && cci_portn == ports[i].dn) in __cci_ace_get_port() 188 * Port index look-up speeds up the function disabling ports by CPU, in cci_ace_init_ports() 235 void __iomem *base = ports[port].base; in cci_port_control() 257 * controlling that CPU cluster. Code disabling CPU CCI ports 330 /* Use matched port index to look up the corresponding ports entry */ in cci_enable_port_for_self() 335 " ldr r0, [r0, r2] @ *(&ports) \n" in cci_enable_port_for_self() 337 " mla r0, r2, r3, r0 @ &ports[index] \n" in cci_enable_port_for_self() [all …]
|
| /kernel/linux/linux-5.10/drivers/bus/ |
| D | arm-cci.c | 113 static struct cci_ace_port *ports; variable 124 * Code disabling CCI cpu ports runs with D-cache invalidated 169 ace_match = ports[i].type == type; in __cci_ace_get_port() 170 if (ace_match && cci_portn == ports[i].dn) in __cci_ace_get_port() 188 * Port index look-up speeds up the function disabling ports by CPU, in cci_ace_init_ports() 235 void __iomem *base = ports[port].base; in cci_port_control() 257 * controlling that CPU cluster. Code disabling CPU CCI ports 330 /* Use matched port index to look up the corresponding ports entry */ in cci_enable_port_for_self() 335 " ldr r0, [r0, r2] @ *(&ports) \n" in cci_enable_port_for_self() 337 " mla r0, r2, r3, r0 @ &ports[index] \n" in cci_enable_port_for_self() [all …]
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/soc/fsl/cpm_qe/ |
| D | gpio.txt | 4 On CPM1 devices, all ports are using slightly different register layouts. 5 Ports A, C and D are 16bit ports and Ports B and E are 32bit ports. 7 On CPM2 devices, all ports are 32bit ports and use a common register layout. 18 on CPM1), this item tells which ports have an associated interrupt (ports are
|
| /kernel/linux/linux-4.19/Documentation/devicetree/bindings/soc/fsl/cpm_qe/ |
| D | gpio.txt | 4 On CPM1 devices, all ports are using slightly different register layouts. 5 Ports A, C and D are 16bit ports and Ports B and E are 32bit ports. 7 On CPM2 devices, all ports are 32bit ports and use a common register layout. 18 on CPM1), this item tells which ports have an associated interrupt (ports are
|
| /kernel/linux/linux-4.19/Documentation/hwmon/ |
| D | it87 | 7 Addresses scanned: from Super I/O config space (8 I/O ports) 11 Addresses scanned: from Super I/O config space (8 I/O ports) 14 Addresses scanned: from Super I/O config space (8 I/O ports) 18 Addresses scanned: from Super I/O config space (8 I/O ports) 22 Addresses scanned: from Super I/O config space (8 I/O ports) 26 Addresses scanned: from Super I/O config space (8 I/O ports) 30 Addresses scanned: from Super I/O config space (8 I/O ports) 34 Addresses scanned: from Super I/O config space (8 I/O ports) 38 Addresses scanned: from Super I/O config space (8 I/O ports) 42 Addresses scanned: from Super I/O config space (8 I/O ports) [all …]
|