| /linux/drivers/irqchip/ |
| H A D | irq-alpine-msi.c | 53 static void alpine_msix_free_sgi(struct alpine_msix_data *priv, unsigned int sgi, int num_req) in alpine_msix_free_sgi() argument 55 int first = sgi - priv->spi_first; in alpine_msix_free_sgi() 81 static int alpine_msix_gic_domain_alloc(struct irq_domain *domain, unsigned int virq, int sgi) in alpine_msix_gic_domain_alloc() argument 93 fwspec.param[1] = sgi; in alpine_msix_gic_domain_alloc() 109 int sgi, err, i; in alpine_msix_middle_domain_alloc() local 111 sgi = alpine_msix_allocate_sgi(priv, nr_irqs); in alpine_msix_middle_domain_alloc() 112 if (sgi < 0) in alpine_msix_middle_domain_alloc() 113 return sgi; in alpine_msix_middle_domain_alloc() 116 err = alpine_msix_gic_domain_alloc(domain, virq + i, sgi + i); in alpine_msix_middle_domain_alloc() 120 irq_domain_set_hwirq_and_chip(domain, virq + i, sgi + i, in alpine_msix_middle_domain_alloc() [all …]
|
| /linux/drivers/net/ethernet/freescale/enetc/ |
| H A D | enetc_qos.c | 740 struct enetc_psfp_gate *sgi, in enetc_streamgate_hw_set() argument 754 cbd.index = cpu_to_le16(sgi->index); in enetc_streamgate_hw_set() 763 if (!sgi->num_entries) in enetc_streamgate_hw_set() 766 if (sgi->num_entries > priv->psfp_cap.max_psfp_gatelist || in enetc_streamgate_hw_set() 767 !sgi->cycletime) in enetc_streamgate_hw_set() 776 sgi_config->oipv = (sgi->init_ipv < 0) ? in enetc_streamgate_hw_set() 777 0x0 : ((sgi->init_ipv & 0x7) | 0x8); in enetc_streamgate_hw_set() 788 cbd.index = cpu_to_le16(sgi->index); in enetc_streamgate_hw_set() 795 sgcl_config->acl_len = (sgi->num_entries - 1) & 0x3; in enetc_streamgate_hw_set() 797 data_size = struct_size(sgcl_data, sgcl, sgi->num_entries); in enetc_streamgate_hw_set() [all …]
|
| /linux/sound/mips/ |
| H A D | Makefile | 6 snd-sgi-o2-y := sgio2audio.o ad1843.o 7 snd-sgi-hal2-y := hal2.o 10 obj-$(CONFIG_SND_SGI_O2) += snd-sgi-o2.o 11 obj-$(CONFIG_SND_SGI_HAL2) += snd-sgi-hal2.o
|
| /linux/arch/mips/ |
| H A D | Kbuild.platforms | 26 platform-$(CONFIG_SGI_IP22) += sgi-ip22/ 27 platform-$(CONFIG_SGI_IP27) += sgi-ip27/ 28 platform-$(CONFIG_SGI_IP28) += sgi-ip22/ 29 platform-$(CONFIG_SGI_IP30) += sgi-ip30/ 30 platform-$(CONFIG_SGI_IP32) += sgi-ip32/
|
| /linux/drivers/net/dsa/ocelot/ |
| H A D | felix_vsc9959.c | 2100 struct felix_stream_gate *sgi) in vsc9959_psfp_parse_gate() argument 2102 sgi->index = entry->hw_index; in vsc9959_psfp_parse_gate() 2103 sgi->ipv_valid = (entry->gate.prio < 0) ? 0 : 1; in vsc9959_psfp_parse_gate() 2104 sgi->init_ipv = (sgi->ipv_valid) ? entry->gate.prio : 0; in vsc9959_psfp_parse_gate() 2105 sgi->basetime = entry->gate.basetime; in vsc9959_psfp_parse_gate() 2106 sgi->cycletime = entry->gate.cycletime; in vsc9959_psfp_parse_gate() 2107 sgi->num_entries = entry->gate.num_entries; in vsc9959_psfp_parse_gate() 2108 sgi->enable = 1; in vsc9959_psfp_parse_gate() 2110 memcpy(sgi->entries, entry->gate.entries, in vsc9959_psfp_parse_gate() 2120 struct felix_stream_gate *sgi) in vsc9959_psfp_sgi_set() argument [all …]
|
| /linux/net/mac80211/ |
| H A D | airtime.c | 24 #define MCS_SYMBOL_TIME(sgi, ksyms) \ argument 25 (sgi ? \ 31 #define MCS_DURATION(streams, sgi, bps) \ argument 32 ((u32)MCS_SYMBOL_TIME(sgi, MCS_N_KSYMS((streams) * (bps)))) 34 #define MCS_DURATION_S(shift, streams, sgi, bps) \ argument 35 ((u16)((MCS_DURATION(streams, sgi, bps) >> shift))) 510 bool sgi = status->enc_flags & RX_ENC_FLAG_SHORT_GI; in ieee80211_get_rate_duration() local 540 group = VHT_GROUP_IDX(streams, sgi, bw); in ieee80211_get_rate_duration() 545 group = HT_GROUP_IDX(streams, sgi, bw); in ieee80211_get_rate_duration()
|
| /linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/ |
| H A D | rate.h | 61 static inline uint mcs_2_rate(u8 mcs, bool is40, bool sgi) in mcs_2_rate() argument 63 if (sgi) { in mcs_2_rate()
|
| H A D | ampdu.c | 550 u8 plcp0, plcp3, is40, sgi, mcs; in brcms_c_ampdu_add_frame() local 565 sgi = plcp3_issgi(plcp3) ? 1 : 0; in brcms_c_ampdu_add_frame() 568 ampdu->max_txlen[mcs][is40][sgi]); in brcms_c_ampdu_add_frame()
|
| /linux/Documentation/translations/zh_CN/admin-guide/ |
| H A D | numastat.rst | 41 你可以使用numactl软件包(http://oss.sgi.com/projects/libnuma/)中的numastat工具
|
| /linux/arch/arm64/kvm/vgic/ |
| H A D | vgic-mmio-v3.c | 1053 static void vgic_v3_queue_sgi(struct kvm_vcpu *vcpu, u32 sgi, bool allow_group1) in vgic_v3_queue_sgi() argument 1055 struct vgic_irq *irq = vgic_get_vcpu_irq(vcpu, sgi); in vgic_v3_queue_sgi() 1107 u32 sgi, aff0; in vgic_v3_dispatch_sgi() local 1110 sgi = FIELD_GET(ICC_SGI1R_SGI_ID_MASK, reg); in vgic_v3_dispatch_sgi() 1119 vgic_v3_queue_sgi(c_vcpu, sgi, allow_group1); in vgic_v3_dispatch_sgi() 1134 vgic_v3_queue_sgi(c_vcpu, sgi, allow_group1); in vgic_v3_dispatch_sgi()
|
| /linux/Documentation/translations/zh_CN/mm/ |
| H A D | numa.rst | 10 始于1999年11月,作者: <kanoj@sgi.com>
|
| /linux/drivers/net/ethernet/mellanox/mlx5/core/fpga/ |
| H A D | conn.c | 146 unsigned int ix, sgi; in mlx5_fpga_conn_post_send() local 154 for (sgi = 0; sgi < ARRAY_SIZE(buf->sg); sgi++) { in mlx5_fpga_conn_post_send() 155 if (!buf->sg[sgi].data) in mlx5_fpga_conn_post_send() 157 data->byte_count = cpu_to_be32(buf->sg[sgi].size); in mlx5_fpga_conn_post_send() 159 data->addr = cpu_to_be64(buf->sg[sgi].dma_addr); in mlx5_fpga_conn_post_send()
|
| /linux/drivers/net/wireless/ath/ath12k/ |
| H A D | dp_mon.c | 114 u8 rate_mcs, nss, sgi; in ath12k_dp_mon_fill_rx_rate() local 120 sgi = ppdu_info->gi; in ath12k_dp_mon_fill_rx_rate() 144 if (sgi) in ath12k_dp_mon_fill_rx_rate() 156 if (sgi) in ath12k_dp_mon_fill_rx_rate() 168 rx_status->he_gi = ath12k_he_gi_to_nl80211_he_gi(sgi); in ath12k_dp_mon_fill_rx_rate() 179 rx_status->he_gi = ath12k_he_gi_to_nl80211_he_gi(sgi); in ath12k_dp_mon_fill_rx_rate()
|
| H A D | dp_htt.c | 198 u8 flags, mcs, nss, bw, sgi, dcm, ppdu_type, rate_idx = 0; in ath12k_update_per_peer_tx_stats() local 239 sgi = HTT_USR_RATE_GI(user_rate->rate_flags); in ath12k_update_per_peer_tx_stats() 300 if (sgi) in ath12k_update_per_peer_tx_stats() 306 if (sgi) in ath12k_update_per_peer_tx_stats() 313 peer->txrate.he_gi = ath12k_he_gi_to_nl80211_he_gi(sgi); in ath12k_update_per_peer_tx_stats() 325 peer->txrate.eht_gi = ath12k_mac_eht_gi_to_nl80211_eht_gi(sgi); in ath12k_update_per_peer_tx_stats()
|
| H A D | dp_rx.c | 1231 u8 bw = rx_info->bw, sgi = rx_info->sgi; in ath12k_dp_rx_h_rate() local 1254 if (sgi) in ath12k_dp_rx_h_rate() 1268 if (sgi) in ath12k_dp_rx_h_rate() 1282 rx_status->he_gi = ath12k_he_gi_to_nl80211_he_gi(sgi); in ath12k_dp_rx_h_rate() 1297 rx_status->eht.gi = ath12k_mac_eht_gi_to_nl80211_eht_gi(sgi); in ath12k_dp_rx_h_rate()
|
| H A D | hal.h | 662 u8 sgi; member 754 u8 sgi; member
|
| /linux/drivers/net/wireless/ath/ath12k/wifi7/ |
| H A D | dp_tx.c | 677 if (ts->sgi) in ath12k_wifi7_dp_tx_update_txcompl() 689 if (ts->sgi) in ath12k_wifi7_dp_tx_update_txcompl() 700 txrate.he_gi = ath12k_he_gi_to_nl80211_he_gi(ts->sgi); in ath12k_wifi7_dp_tx_update_txcompl() 710 txrate.eht_gi = ath12k_mac_eht_gi_to_nl80211_eht_gi(ts->sgi); in ath12k_wifi7_dp_tx_update_txcompl() 903 ts->sgi = u32_get_bits(info0, HAL_TX_RATE_STATS_INFO0_SGI); in ath12k_wifi7_dp_tx_status_parse()
|
| /linux/tools/testing/selftests/kvm/arm64/ |
| H A D | vgic_irq.c | 99 bool sgi, ppi, spi; member 436 if (f->sgi) { in test_injection() 469 if (f->sgi) in test_preemption() 481 if (f->sgi) in test_restore_active()
|
| /linux/drivers/net/ethernet/ |
| H A D | Makefile | 88 obj-$(CONFIG_NET_VENDOR_SGI) += sgi/
|
| /linux/drivers/net/wireless/realtek/rtl8xxxu/ |
| H A D | core.c | 4543 u32 ramask, u8 rateid, int sgi, int txbw_40mhz, in rtl8xxxu_update_rate_mask() argument 4555 if (sgi) in rtl8xxxu_update_rate_mask() 4564 u32 ramask, u8 rateid, int sgi, int txbw_40mhz, in rtl8xxxu_gen2_update_rate_mask() argument 4585 if (sgi) in rtl8xxxu_gen2_update_rate_mask() 4591 __func__, ramask, rateid, sgi, sizeof(h2c.b_macid_cfg)); in rtl8xxxu_gen2_update_rate_mask() 4855 u8 rate, u8 sgi, u8 bw) in rtl8xxxu_update_ra_report() argument 4870 if (sgi) in rtl8xxxu_update_ra_report() 4904 int sgi = 0; in rtl8xxxu_bss_info_changed() local 4929 sgi = 1; in rtl8xxxu_bss_info_changed() 4941 rtl8xxxu_update_ra_report(rarpt, highest_rate, sgi, bw); in rtl8xxxu_bss_info_changed() [all …]
|
| /linux/Documentation/admin-guide/ |
| H A D | numastat.rst | 45 (http://oss.sgi.com/projects/libnuma/). Note that it only works
|
| /linux/drivers/net/wireless/ath/ath6kl/ |
| H A D | cfg80211.c | 1738 static bool is_rate_ht20(s32 rate, u8 *mcs, bool *sgi) in is_rate_ht20() argument 1749 *sgi = true; in is_rate_ht20() 1751 *sgi = false; in is_rate_ht20() 1760 static bool is_rate_ht40(s32 rate, u8 *mcs, bool *sgi) in is_rate_ht40() argument 1772 *sgi = true; in is_rate_ht40() 1774 *sgi = false; in is_rate_ht40() 1791 bool sgi; in ath6kl_get_station() local 1844 } else if (is_rate_ht20(rate, &mcs, &sgi)) { in ath6kl_get_station() 1845 if (sgi) { in ath6kl_get_station() 1854 } else if (is_rate_ht40(rate, &mcs, &sgi)) { in ath6kl_get_station() [all …]
|
| /linux/drivers/staging/rtl8723bs/include/ |
| H A D | rtl8723b_cmd.h | 173 void rtl8723b_set_FwMacIdConfig_cmd(struct adapter *padapter, u8 mac_id, u8 raid, u8 bw, u8 sgi, u3…
|
| /linux/drivers/net/wireless/ath/ath10k/ |
| H A D | htt_rx.c | 989 u8 cck, rate, bw, sgi, mcs, nss; in ath10k_htt_rx_h_rates() local 1031 sgi = (info3 >> 7) & 1; in ath10k_htt_rx_h_rates() 1035 if (sgi) in ath10k_htt_rx_h_rates() 1046 sgi = info3 & 1; in ath10k_htt_rx_h_rates() 1098 if (sgi) in ath10k_htt_rx_h_rates() 3793 u8 rate = 0, sgi; in ath10k_update_per_peer_tx_stats() local 3804 sgi = ATH10K_HW_GI(peer_stats->flags); in ath10k_update_per_peer_tx_stats() 3854 if (sgi) in ath10k_update_per_peer_tx_stats() 3862 if (sgi) in ath10k_update_per_peer_tx_stats() 3870 if (sgi) in ath10k_update_per_peer_tx_stats() [all …]
|
| /linux/drivers/net/wireless/rsi/ |
| H A D | rsi_main.h | 192 bool sgi; member
|