Home
last modified time | relevance | path

Searched refs:station (Results 1 – 25 of 50) sorted by relevance

12

/linux-6.15/Documentation/ABI/testing/
H A Dsysfs-devices-platform-dock7 laptop is docked in a docking station.
22 (RO) Displays the docking station the laptop is docked to.
29 (RO) Show dock station flags, useful for checking if undock
38 (RO) Display the dock station type- dock_station, ata_bay or
H A Dsysfs-devices-physical_location35 station or a port replicator. "No" otherwise.
/linux-6.15/drivers/net/wireless/purelifi/plfxlc/
H A Dusb.c50 skb = skb_peek(&tx->station[usb->sidx].data_list); in plfxlc_send_packet_from_data_queue()
54 skb = skb_dequeue(&tx->station[usb->sidx].data_list); in plfxlc_send_packet_from_data_queue()
137 tx->station[sidx].flag |= STATION_FIFO_FULL_FLAG; in rx_urb_complete()
143 tx->station[sidx].flag &= STATION_ACTIVE_FLAG; in rx_urb_complete()
566 if (tx->station[sidx].flag & STATION_HEARTBEAT_FLAG) { in sta_queue_cleanup_timer_callb()
567 tx->station[sidx].flag ^= STATION_HEARTBEAT_FLAG; in sta_queue_cleanup_timer_callb()
569 eth_zero_addr(tx->station[sidx].mac); in sta_queue_cleanup_timer_callb()
570 tx->station[sidx].flag = 0; in sta_queue_cleanup_timer_callb()
672 skb_queue_head_init(&tx->station[i].data_list); in probe()
673 tx->station[i].flag = 0; in probe()
[all …]
H A Dmac.c307 if (!(tx->station[sidx].flag & STATION_CONNECTED_FLAG)) in plfxlc_op_tx()
309 if (memcmp(tx->station[sidx].mac, dst_mac, ETH_ALEN)) in plfxlc_op_tx()
320 if (skb_queue_len(&tx->station[sidx].data_list) > 60) in plfxlc_op_tx()
324 if (skb_queue_len(&tx->station[sidx].data_list) > 256) in plfxlc_op_tx()
326 skb_queue_tail(&tx->station[sidx].data_list, skb); in plfxlc_op_tx()
455 if (tx->station[sidx].flag & STATION_CONNECTED_FLAG) { in plfxlc_mac_rx()
456 tx->station[sidx].flag |= STATION_HEARTBEAT_FLAG; in plfxlc_mac_rx()
463 if (tx->station[sidx].flag & STATION_CONNECTED_FLAG) in plfxlc_mac_rx()
465 memcpy(tx->station[sidx].mac, &buffer[10], ETH_ALEN); in plfxlc_mac_rx()
466 tx->station[sidx].flag |= STATION_CONNECTED_FLAG; in plfxlc_mac_rx()
[all …]
H A Dusb.h120 struct plf_station station[MAX_STA_NUM]; member
/linux-6.15/drivers/ptp/
H A Dptp_pch.c127 u8 station[STATION_ADDR_LEN]; member
501 if (strcmp(pch_param.station, "00:00:00:00:00:00") != 0) { in pch_probe()
502 if (pch_set_station_address(pch_param.station, pdev) != 0) { in pch_probe()
537 module_param_string(station,
538 pch_param.station, sizeof(pch_param.station), 0444);
539 MODULE_PARM_DESC(station,
/linux-6.15/Documentation/networking/mac80211_hwsim/
H A Dmac80211_hwsim.rst39 point and a station) or large scale tests (multiple access points with
58 one to act as an access point and the other as a station that
74 # Run wpa_supplicant (station) for wlan1
/linux-6.15/drivers/net/wireless/intel/iwlegacy/
H A Ddebug.c393 struct il_station_entry *station; in il_dbgfs_stations_read() local
410 station = &il->stations[i]; in il_dbgfs_stations_read()
411 if (!station->used) in il_dbgfs_stations_read()
416 station->sta.sta.addr, in il_dbgfs_stations_read()
417 station->sta.station_flags_msk); in il_dbgfs_stations_read()
429 j, station->tid[j].seq_number, in il_dbgfs_stations_read()
430 station->tid[j].agg.txq_id, in il_dbgfs_stations_read()
432 station->tid[j].tfds_in_queue, in il_dbgfs_stations_read()
433 station->tid[j].agg.start_idx, in il_dbgfs_stations_read()
434 station->tid[j].agg.bitmap, in il_dbgfs_stations_read()
[all …]
H A D3945.c733 struct il_station_entry *station; in il3945_sync_sta() local
739 station = &il->stations[sta_id]; in il3945_sync_sta()
741 station->sta.sta.modify_mask = STA_MODIFY_TX_RATE_MSK; in il3945_sync_sta()
742 station->sta.rate_n_flags = cpu_to_le16(tx_rate); in il3945_sync_sta()
743 station->sta.mode = STA_CONTROL_MODIFY_MSK; in il3945_sync_sta()
744 il_send_add_sta(il, &station->sta, CMD_ASYNC); in il3945_sync_sta()
H A Dcommon.c1925 struct il_station_entry *station; in il_prep_station() local
1972 station = &il->stations[sta_id]; in il_prep_station()
1973 station->used = IL_STA_DRIVER_ACTIVE; in il_prep_station()
1978 memset(&station->sta, 0, sizeof(struct il_addsta_cmd)); in il_prep_station()
1979 memcpy(station->sta.sta.addr, addr, ETH_ALEN); in il_prep_station()
1980 station->sta.mode = 0; in il_prep_station()
1981 station->sta.sta.sta_id = sta_id; in il_prep_station()
1982 station->sta.station_flags = 0; in il_prep_station()
1994 station->sta.rate_n_flags = cpu_to_le16(rate | RATE_MCS_ANT_AB_MSK); in il_prep_station()
/linux-6.15/drivers/net/wireless/intel/iwlwifi/dvm/
H A Dsta.c240 struct iwl_station_entry *station; in iwl_prep_station() local
287 station = &priv->stations[sta_id]; in iwl_prep_station()
288 station->used = IWL_STA_DRIVER_ACTIVE; in iwl_prep_station()
294 memset(&station->sta, 0, sizeof(struct iwl_addsta_cmd)); in iwl_prep_station()
295 memcpy(station->sta.sta.addr, addr, ETH_ALEN); in iwl_prep_station()
296 station->sta.mode = 0; in iwl_prep_station()
297 station->sta.sta.sta_id = sta_id; in iwl_prep_station()
298 station->sta.station_flags = ctx->station_flags; in iwl_prep_station()
299 station->ctxid = ctx->ctxid; in iwl_prep_station()
/linux-6.15/Documentation/devicetree/bindings/regulator/
H A Drichtek,rt6190.yaml17 used for the application like as BuckBoost bus supply, docking station and USB
/linux-6.15/drivers/pnp/pnpbios/
H A DKconfig14 Some features (e.g. event notification, docking station information,
/linux-6.15/Documentation/devicetree/bindings/net/
H A Drenesas,ethertsn.yaml7 title: Renesas Ethernet TSN End-station
/linux-6.15/Documentation/driver-api/
H A Dextcon.rst33 2. Laptop docking station:
34 When a laptop is connected to a docking station, multiple connections are
/linux-6.15/Documentation/networking/device_drivers/fddi/
H A Ddefza.rst12 model 200 workstation. The board is a single attachment station and
/linux-6.15/Documentation/sound/designs/
H A Dcontrol-names.rst47 Dock on docking station
/linux-6.15/net/wireless/
H A DKconfig123 bool "cfg80211 regulatory support for cellular base station hints"
128 claims support for parsing cellular base station hints the
/linux-6.15/Documentation/driver-api/80211/
H A Dmac80211.rst9 This part of the book only covers station and monitor mode
/linux-6.15/net/atm/
H A DKconfig46 network. Besides operating as a normal ATM end station client, Linux
/linux-6.15/Documentation/netlink/specs/
H A Dnl80211.yaml31 - get-station
32 - set-station
33 - new-station
34 - del-station
1629 name: station
1711 name: station
/linux-6.15/net/mac80211/
H A DKconfig155 bool "Verbose station debugging"
159 debugging messages for station addition/removal.
/linux-6.15/drivers/net/ethernet/smsc/
H A DKconfig29 option if you have a DELL laptop with the docking station, or
/linux-6.15/drivers/net/ethernet/oki-semi/pch_gbe/
H A Dpch_gbe_main.c206 u8 station[20]; in hwtstamp_ioctl() local
232 strcpy(station, PTP_L4_MULTICAST_SA); in hwtstamp_ioctl()
233 pch_set_station_address(station, pdev); in hwtstamp_ioctl()
238 strcpy(station, PTP_L2_MULTICAST_SA); in hwtstamp_ioctl()
239 pch_set_station_address(station, pdev); in hwtstamp_ioctl()
/linux-6.15/Documentation/userspace-api/media/v4l/
H A Ddev-rds.rst11 format, for example the station name or travel information, on an

12