Home
last modified time | relevance | path

Searched full:ports (Results 1 – 25 of 2631) sorted by relevance

12345678910>>...106

/linux/Documentation/devicetree/bindings/soundwire/
H A Dqcom,soundwire.yaml68 qcom,din-ports:
70 description: count of data in ports
72 qcom,dout-ports:
74 description: count of data out ports
76 qcom,ports-word-length:
86 qcom,ports-sinterval-low:
90 Out ports followed by In ports. Used for Sample Interval calculation.
97 qcom,ports-sinterval:
101 Out ports followed by In ports. Used for Sample Interval calculation.
108 qcom,ports-offset1:
[all …]
/linux/drivers/thunderbolt/
H A Dtest.c54 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 …]
/linux/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp_nsp.h172 * @max_index: max of @index fields of all @ports
173 * @ports: table of ports
175 * @ports.eth_index: port index according to legacy ethX numbering
176 * @ports.index: chip-wide first channel index
177 * @ports.nbi: NBI index
178 * @ports.base: first channel index (within NBI)
179 * @ports.lanes: number of channels
180 * @ports.speed: interface speed (in Mbps)
181 * @ports.interface: interface (module) plugged in
182 * @ports.media: media type of the @interface
[all …]
/linux/drivers/net/ethernet/microchip/lan966x/
H A Dlan966x_mdb.c11 u16 ports; member
18 u16 ports; member
97 mac[1] = mdb_entry->ports >> 8; in lan966x_mdb_encode_mac()
98 mac[2] = mdb_entry->ports & 0xff; in lan966x_mdb_encode_mac()
100 mac[0] = mdb_entry->ports >> 8; in lan966x_mdb_encode_mac()
101 mac[1] = mdb_entry->ports & 0xff; in lan966x_mdb_encode_mac()
128 mdb_entry->ports |= BIT(port->chip_port); in lan966x_mdb_ip_add()
148 u16 ports; in lan966x_mdb_ip_del() local
154 ports = mdb_entry->ports; in lan966x_mdb_ip_del()
163 ports &= ~BIT(port->chip_port); in lan966x_mdb_ip_del()
[all …]
/linux/arch/arm64/boot/dts/hisilicon/
H A Dhi3660-coresight.dtsi21 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 …]
H A Dhi6220-coresight.dtsi19 out-ports {
28 in-ports {
44 in-ports {
53 out-ports {
68 in-ports {
77 out-ports {
105 in-ports {
121 in-ports {
137 out-ports {
146 in-ports {
[all …]
/linux/drivers/video/fbdev/omap2/omapfb/dss/
H A Ddss-of.c28 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 …]
/linux/drivers/net/ethernet/mellanox/mlx5/core/lag/
H A Dlag.c75 mlx5_infer_tx_enabled(&ldev->tracker, ldev->ports, enabled_ports, in lag_active_port_bits()
83 static int mlx5_cmd_create_lag(struct mlx5_core_dev *dev, u8 *ports, int mode, in mlx5_cmd_create_lag() argument
98 MLX5_SET(lagc, lag_ctx, tx_remap_affinity_1, ports[0]); in mlx5_cmd_create_lag()
99 MLX5_SET(lagc, lag_ctx, tx_remap_affinity_2, ports[1]); in mlx5_cmd_create_lag()
117 u8 *ports) in mlx5_cmd_modify_lag() argument
125 MLX5_SET(lagc, lag_ctx, tx_remap_affinity_1, ports[0]); in mlx5_cmd_modify_lag()
126 MLX5_SET(lagc, lag_ctx, tx_remap_affinity_2, ports[1]); in mlx5_cmd_modify_lag()
152 u8 *ports, int *num_disabled) in mlx5_infer_tx_disabled() argument
160 ports[(*num_disabled)++] = i; in mlx5_infer_tx_disabled()
165 u8 *ports, int *num_enabled) in mlx5_infer_tx_enabled() argument
[all …]
/linux/tools/testing/selftests/drivers/net/hw/
H A Ddevlink_port_split.py15 # 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
45 Class that holds information on the devlink ports, required to the tests;
46 if_names: A list of interfaces in the devlink ports.
51 Get a list of physical devlink ports.
60 ports = json.loads(stdout)['port']
62 validate_devlink_output(ports, 'flavour')
64 for port in ports:
66 if ports[port]['flavour'] == 'physical':
67 arr.append(Port(bus_info=port, name=ports[port]['netdev']))
[all …]
/linux/arch/arm/boot/dts/hisilicon/
H A Dhip04.dtsi277 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 …]
/linux/Documentation/networking/dsa/
H A Dconfiguration.rst100 # brought up manually before the user ports.
112 # brought up manually before the user ports.
123 # add ports to bridge
138 # brought up manually before the user ports.
152 # add ports to bridge
182 # brought up manually before the user ports.
199 # add ports to bridges
204 # tag traffic on ports
225 # brought up manually before the user ports.
240 # add ports to bridge
[all …]
/linux/drivers/usb/host/
H A Dxen-hcd.c72 struct rhport_status ports[XENUSB_MAX_PORTNR]; member
153 if (info->ports[port].status & USB_PORT_STAT_POWER) { in xenhcd_set_connect_state()
156 info->ports[port].status &= in xenhcd_set_connect_state()
164 info->ports[port].status |= USB_PORT_STAT_CONNECTION; in xenhcd_set_connect_state()
165 info->ports[port].status |= USB_PORT_STAT_LOW_SPEED; in xenhcd_set_connect_state()
168 info->ports[port].status |= USB_PORT_STAT_CONNECTION; in xenhcd_set_connect_state()
171 info->ports[port].status |= USB_PORT_STAT_CONNECTION; in xenhcd_set_connect_state()
172 info->ports[port].status |= USB_PORT_STAT_HIGH_SPEED; in xenhcd_set_connect_state()
177 info->ports[port].status |= (USB_PORT_STAT_C_CONNECTION << 16); in xenhcd_set_connect_state()
207 info->ports[port].c_connection = true; in xenhcd_rhport_connect()
[all …]
/linux/sound/core/seq/
H A Dseq_dummy.c33 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");
155 * register client and create ports
[all …]
H A Dseq_midi.c10 - automatic opening of midi ports on first received event or subscription
55 struct seq_midisynth *ports[SNDRV_RAWMIDI_DEVICES]; member
277 unsigned int p, ports; in snd_seq_midisynth_probe() local
297 ports = output_count; in snd_seq_midisynth_probe()
298 if (ports < input_count) in snd_seq_midisynth_probe()
299 ports = input_count; in snd_seq_midisynth_probe()
300 if (ports == 0) in snd_seq_midisynth_probe()
302 if (ports > (256 / SNDRV_RAWMIDI_DEVICES)) in snd_seq_midisynth_probe()
303 ports = 256 / SNDRV_RAWMIDI_DEVICES; in snd_seq_midisynth_probe()
322 msynth = kcalloc(ports, sizeof(struct seq_midisynth), GFP_KERNEL); in snd_seq_midisynth_probe()
[all …]
/linux/tools/testing/selftests/drivers/net/mlxsw/
H A Dsharedbuffer_configuration.py249 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 …]
/linux/tools/testing/selftests/bpf/progs/
H A Dxdp_flowtable.c45 static bool xdp_flowtable_offload_check_tcp_state(void *ports, void *data_end, in xdp_flowtable_offload_check_tcp_state() argument
49 struct tcphdr *tcph = ports; in xdp_flowtable_offload_check_tcp_state()
76 struct flow_ports___local *ports; in xdp_flowtable_do_lookup() local
86 ports = (struct flow_ports___local *)(iph + 1); in xdp_flowtable_do_lookup()
87 if (ports + 1 > data_end) in xdp_flowtable_do_lookup()
94 if (!xdp_flowtable_offload_check_tcp_state(ports, data_end, in xdp_flowtable_do_lookup()
104 tuple.sport = ports->source; in xdp_flowtable_do_lookup()
105 tuple.dport = ports->dest; in xdp_flowtable_do_lookup()
113 ports = (struct flow_ports___local *)(ip6h + 1); in xdp_flowtable_do_lookup()
114 if (ports + 1 > data_end) in xdp_flowtable_do_lookup()
[all …]
/linux/drivers/bus/
H A Darm-cci.c113 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 …]
/linux/Documentation/hwmon/
H A Dit87.rst10 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)
24 Addresses scanned: from Super I/O config space (8 I/O ports)
32 Addresses scanned: from Super I/O config space (8 I/O ports)
40 Addresses scanned: from Super I/O config space (8 I/O ports)
48 Addresses scanned: from Super I/O config space (8 I/O ports)
56 Addresses scanned: from Super I/O config space (8 I/O ports)
64 Addresses scanned: from Super I/O config space (8 I/O ports)
72 Addresses scanned: from Super I/O config space (8 I/O ports)
80 Addresses scanned: from Super I/O config space (8 I/O ports)
[all …]
/linux/Documentation/leds/
H A Dledtrig-usbport.rst9 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
/linux/Documentation/devicetree/bindings/arm/
H A Darm,coresight-static-replicator.yaml33 in-ports:
34 $ref: /schemas/graph.yaml#/properties/ports
42 out-ports:
43 $ref: /schemas/graph.yaml#/properties/ports
52 - in-ports
53 - out-ports
66 out-ports {
70 /* replicator output ports */
86 in-ports {
/linux/Documentation/devicetree/bindings/soc/fsl/cpm_qe/
H A Dgpio.txt4 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
/linux/sound/soc/generic/
H A Daudio-graph-card2.c22 ports {
36 You can set daifmt at ports/port/endpoint.
99 ports@0 {
104 ports@1 {
113 ports {
122 ports {
156 ports@0 {
162 ports@1 {
171 ports {
181 ports {
242 struct device_node *ports = of_get_parent(port); port_to_ports() local
335 struct device_node *ports = port_to_ports(*port); graph_get_next_multi_ep() local
381 struct device_node *ports = port_to_ports(port); graph_parse_convert() local
987 struct device_node *port0, *port1, *ports; audio_graph2_link_c2c() local
1143 struct device_node *ports = port_to_ports(lnk); graph_counter() local
1240 struct device_node *ports = port_to_ports(lnk); graph_count_c2c() local
[all...]
/linux/Documentation/devicetree/bindings/net/dsa/
H A Dmscc,ocelot.yaml31 - phy-mode = "internal": on ports 8 and 9
32 - phy-mode = "sgmii": on ports 0, 1, 2, 3, 4, 5, 6, 7
33 - phy-mode = "qsgmii": on ports 0, 1, 2, 3, 4, 5, 6, 7
34 - phy-mode = "1000base-x": on ports 0, 1, 2, 3, 4, 5, 6, 7
50 - phy-mode = "internal": on ports 4 and 5
51 - phy-mode = "sgmii": on ports 0, 1, 2, 3
52 - phy-mode = "qsgmii": on ports 0, 1, 2, 3
53 - phy-mode = "usxgmii": on ports 0, 1, 2, 3
54 - phy-mode = "1000base-x": on ports 0, 1, 2, 3
55 - phy-mode = "2500base-x": on ports 0, 1, 2, 3
[all …]
/linux/drivers/tty/serial/8250/
H A DKconfig14 serial ports. The standard answer is Y. People who might say N
23 non-standard serial ports, since the configuration information will
35 modems and similar devices connecting to the standard serial ports.
146 Note that serial ports on NetMos 9835 Multi-I/O cards are handled
191 int "Maximum number of 8250/16550 serial ports"
195 Set this to the number of serial ports you want the driver
196 to support. This includes any ports discovered via ACPI or
197 PCI enumeration and any ports that may be added at run-time
201 int "Number of 8250/16550 serial ports to register at runtime"
206 Set this to the maximum number of serial ports you want
[all …]
/linux/Documentation/devicetree/bindings/net/
H A Dethernet-switch.yaml19 ports.
45 "^(ethernet-)?ports$":
58 description: Ethernet switch ports
66 - ports
68 - ethernet-ports
73 ethernet-ports:
78 "^(ethernet-)?ports$":
81 description: Ethernet switch ports

12345678910>>...106