Home
last modified time | relevance | path

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

12345678910>>...145

/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/soundwire/
H A Dqcom,sdw.txt42 - 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 …]
/OK3568_Linux_fs/buildroot/dl/mpg123/
HDmpg123-1.25.15.tar.bz2mpg123-1.25.15/ mpg123-1.25.15/man1/ mpg123-1.25.15 ...
/OK3568_Linux_fs/kernel/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 …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp_nsp.h123 * @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 …]
/OK3568_Linux_fs/kernel/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 …]
/OK3568_Linux_fs/kernel/Documentation/ABI/stable/
H A Dsysfs-class-infiniband39 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 …]
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
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 …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/net/
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
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 …]
/OK3568_Linux_fs/kernel/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");
147 * register client and create ports
[all …]
H A Dseq_midi.c10 - automatic opening of midi ports on first received event or subscription
54 struct seq_midisynth *ports[SNDRV_RAWMIDI_DEVICES]; member
267 unsigned int p, ports; in snd_seq_midisynth_probe() local
287 ports = output_count; in snd_seq_midisynth_probe()
288 if (ports < input_count) in snd_seq_midisynth_probe()
289 ports = input_count; in snd_seq_midisynth_probe()
290 if (ports == 0) { in snd_seq_midisynth_probe()
294 if (ports > (256 / SNDRV_RAWMIDI_DEVICES)) in snd_seq_midisynth_probe()
295 ports = 256 / SNDRV_RAWMIDI_DEVICES; in snd_seq_midisynth_probe()
319 msynth = kcalloc(ports, sizeof(struct seq_midisynth), GFP_KERNEL); in snd_seq_midisynth_probe()
[all …]
/OK3568_Linux_fs/kernel/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 …]
/OK3568_Linux_fs/kernel/drivers/usb/host/
H A Dxhci-hub.c170 struct usb_hub_descriptor *desc, int ports) in xhci_common_hub_descriptor() argument
176 desc->bNbrPorts = ports; in xhci_common_hub_descriptor()
186 /* Bits 6:5 - no TTs in root ports */ in xhci_common_hub_descriptor()
195 int ports; in xhci_usb2_hub_descriptor() local
203 ports = rhub->num_ports; in xhci_usb2_hub_descriptor()
204 xhci_common_hub_descriptor(xhci, desc, ports); in xhci_usb2_hub_descriptor()
206 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 …]
/OK3568_Linux_fs/kernel/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 …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/arm/
H A Dcoresight.txt67 * port or ports: see "Graph bindings for Coresight" below.
98 * port or ports: see "Graph bindings for Coresight" below.
150 * All output ports must be listed inside a child node named "out-ports"
151 * All input ports must be listed inside a child node named "in-ports".
163 in-ports {
178 in-ports {
193 in-ports {
201 out-ports {
217 out-ports {
221 /* replicator output ports */
[all …]
/OK3568_Linux_fs/kernel/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 …]
/OK3568_Linux_fs/buildroot/dl/ntp/
HDntp-4.2.8p15.tar.gz ... /libjsmn/ ntp-4.2.8p15/ports/ ntp-4.2.8p15/deps- ...
/OK3568_Linux_fs/kernel/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 …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/net/dsa/
H A Docelot.txt25 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 …]
/OK3568_Linux_fs/kernel/net/dsa/
H A Ddsa2.c33 list_for_each_entry(dp, &dst->ports, list) { in dsa_switch_find()
68 INIT_LIST_HEAD(&dst->ports); in dsa_tree_alloc()
138 list_for_each_entry(dp, &dst->ports, list) in dsa_tree_find_port_by_node()
203 list_for_each_entry(dp, &dst->ports, list) { in dsa_tree_setup_routing_table()
218 list_for_each_entry(dp, &dst->ports, list) in dsa_tree_find_first_cpu()
235 /* Assign the default CPU port to all ports of the fabric */ in dsa_tree_setup_default_cpu()
236 list_for_each_entry(dp, &dst->ports, list) in dsa_tree_setup_default_cpu()
247 list_for_each_entry(dp, &dst->ports, list) in dsa_tree_teardown_default_cpu()
441 * setup() can register regions etc, against the ports in dsa_switch_setup()
443 list_for_each_entry(dp, &ds->dst->ports, list) { in dsa_switch_setup()
[all …]
/OK3568_Linux_fs/kernel/drivers/tty/serial/8250/
H A DKconfig14 serial ports. The standard answer is Y. People who might say N
24 non-standard serial ports, since the configuration information will
36 modems and similar devices connecting to the standard serial ports.
141 Note that serial ports on NetMos 9835 Multi-I/O cards are handled
185 int "Maximum number of 8250/16550 serial ports"
189 Set this to the number of serial ports you want the driver
190 to support. This includes any ports discovered via ACPI or
191 PCI enumeration and any ports that may be added at run-time
195 int "Number of 8250/16550 serial ports to register at runtime"
200 Set this to the maximum number of serial ports you want
[all …]
/OK3568_Linux_fs/kernel/drivers/tty/serial/
H A DKconfig160 properly when DMA is enabled. Make sure that ports where
243 provide all of these ports, depending on how the serial port
259 Select the number of available UART ports for the Samsung S3C
268 Allow selection of the S3C24XX on-board serial ports for use as
285 provide all of these ports, depending on how the serial port
307 provide all of these ports, depending on how the serial port
385 for serial ports in newer DECstation systems. These include the
440 can enable its onboard serial ports by enabling this option.
550 int "Maximum number of uartlite serial ports"
569 This driver supports the Zilog8530 serial ports found on many Sparc
[all …]
/OK3568_Linux_fs/kernel/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
/OK3568_Linux_fs/kernel/drivers/infiniband/core/
H A Dcma_configfs.c55 struct cma_dev_port_group *ports; member
206 struct cma_dev_port_group *ports; in make_cma_ports() local
215 ports = kcalloc(ports_num, sizeof(*cma_dev_group->ports), in make_cma_ports()
218 if (!ports) { in make_cma_ports()
226 ports[i].port_num = i + 1; in make_cma_ports()
228 ports[i].cma_dev_group = cma_dev_group; in make_cma_ports()
229 config_group_init_type_name(&ports[i].group, in make_cma_ports()
232 configfs_add_default_group(&ports[i].group, in make_cma_ports()
236 cma_dev_group->ports = ports; in make_cma_ports()
240 kfree(ports); in make_cma_ports()
[all …]
/OK3568_Linux_fs/kernel/drivers/firewire/
H A Dcore-topology.c103 node = kzalloc(struct_size(node, ports, port_count), GFP_ATOMIC); in fw_node_create()
141 if (node->ports[i] == NULL) in update_hop_count()
144 if (node->ports[i]->max_hops > max_child_hops) in update_hop_count()
145 max_child_hops = node->ports[i]->max_hops; in update_hop_count()
147 if (node->ports[i]->max_depth > depths[0]) { in update_hop_count()
149 depths[0] = node->ports[i]->max_depth; in update_hop_count()
150 } else if (node->ports[i]->max_depth > depths[1]) in update_hop_count()
151 depths[1] = node->ports[i]->max_depth; in update_hop_count()
244 * node->ports array where the parent in build_tree()
254 node->ports[i] = child; in build_tree()
[all …]

12345678910>>...145