/Linux-v4.19/drivers/net/wireless/broadcom/b43/ |
D | tables_lpphy.c | 1083 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 152, }, 1084 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 147, }, 1085 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 143, }, 1086 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 139, }, 1087 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 135, }, 1088 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 131, }, 1089 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 128, }, 1090 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 124, }, 1091 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 121, }, 1092 { .gm = 7, .pga = 15, .pad = 14, .dac = 0, .bb_mult = 117, }, [all …]
|
D | lo.c | 79 u16 lna, u16 pga, u16 trsw_rx) in lo_measure_feedthrough() argument 87 pga <<= B43_PHY_RFOVERVAL_PGA_SHIFT; in lo_measure_feedthrough() 90 B43_WARN_ON(pga & ~B43_PHY_RFOVERVAL_PGA); in lo_measure_feedthrough() 98 rfover |= pga; in lo_measure_feedthrough() 116 pga |= B43_PHY_PGACTL_UNKNOWN; in lo_measure_feedthrough() 117 b43_phy_write(dev, B43_PHY_PGACTL, pga); in lo_measure_feedthrough() 119 pga |= B43_PHY_PGACTL_LOWBANDW; in lo_measure_feedthrough() 120 b43_phy_write(dev, B43_PHY_PGACTL, pga); in lo_measure_feedthrough() 122 pga |= B43_PHY_PGACTL_LPF; in lo_measure_feedthrough() 123 b43_phy_write(dev, B43_PHY_PGACTL, pga); in lo_measure_feedthrough() [all …]
|
D | tables_lpphy.h | 33 u8 gm, pga, pad, dac, bb_mult; member
|
D | tables_phy_lcn.c | 32 u8 pga; member 647 (gain_table[i].pga << 8) | in b43_phy_lcn_load_tx_gain_tab()
|
D | phy_lp.c | 801 struct lpphy_tx_gains { u16 gm, pga, pad, dac; }; member 867 gains.pga = (tmp & 0x0078) >> 3; in lpphy_get_tx_gains() 873 gains.pga = (tmp >> 8) & 0xFF; in lpphy_get_tx_gains() 903 rf_gain = (gains.pad << 7) | (gains.pga << 3) | gains.gm; in lpphy_set_tx_gains() 909 (gains.pga << 8) | gains.gm); in lpphy_set_tx_gains() 917 (gains.pga << 8) | gains.gm); in lpphy_set_tx_gains() 1396 gains.pga = (tx_gain >> 8) & 0xFF; in lpphy_set_tx_power_by_index() 1554 gains.pga = 12; in lpphy_tx_pctl_init_sw() 1559 gains.pga = 15; in lpphy_tx_pctl_init_sw()
|
D | phy_n.c | 42 u16 pga[2]; member 50 u16 pga; member 3573 params->pga = target.pga[core]; in b43_nphy_iq_cal_gain_params() 3579 …params->cal_gain = (params->txgm << 12) | (params->pga << 8) | (params->pad << 3) | (params->ipa) … in b43_nphy_iq_cal_gain_params() 3581 … params->cal_gain = (params->txgm << 12) | (params->pga << 8) | (params->pad << 4) | (params->ipa); in b43_nphy_iq_cal_gain_params() 3586 gain = (target.pad[core]) | (target.pga[core] << 4) | in b43_nphy_iq_cal_gain_params() 3597 params->pga = tbl_iqcal_gainparams[indx][i][2]; in b43_nphy_iq_cal_gain_params() 3599 params->cal_gain = (params->txgm << 7) | (params->pga << 4) | in b43_nphy_iq_cal_gain_params() 5039 target.pga[i] = (curr_gain[i] & 0x0F00) >> 8; in b43_nphy_get_tx_gains() 5045 target.pga[i] = (curr_gain[i] & 0x0F00) >> 8; in b43_nphy_get_tx_gains() [all …]
|
/Linux-v4.19/drivers/hwmon/ |
D | ads1015.c | 78 unsigned int pga = data->channel_data[channel].pga; in ads1015_read_adc() local 98 config |= (pga & 0x0007) << 9; in ads1015_read_adc() 128 unsigned int pga = data->channel_data[channel].pga; in ads1015_reg_to_mv() local 129 int fullscale = fullscale_table[pga]; in ads1015_reg_to_mv() 190 unsigned int pga = ADS1015_DEFAULT_PGA; in ads1015_get_channels_config_of() local 207 pga = pval; in ads1015_get_channels_config_of() 208 if (pga > 6) { in ads1015_get_channels_config_of() 225 data->channel_data[channel].pga = pga; in ads1015_get_channels_config_of() 254 data->channel_data[k].pga = ADS1015_DEFAULT_PGA; in ads1015_get_channels_config()
|
/Linux-v4.19/drivers/iio/adc/ |
D | mcp3422.c | 94 u8 pga[4]; member 149 config |= MCP3422_PGA_VALUE(adc->pga[req_channel]); in mcp3422_read_channel() 167 u8 pga = MCP3422_PGA(adc->config); in mcp3422_read_raw() local 179 *val2 = mcp3422_scales[sample_rate][pga]; in mcp3422_read_raw() 211 adc->pga[req_channel] = i; in mcp3422_write_raw() 216 config |= MCP3422_PGA_VALUE(adc->pga[req_channel]); in mcp3422_write_raw()
|
D | ti-ads1015.c | 335 int ret, pga, dr, dr_old, conv_time; in ads1015_get_adc_result() local 345 pga = data->channel_data[chan].pga; in ads1015_get_adc_result() 349 cfg = chan << ADS1015_CFG_MUX_SHIFT | pga << ADS1015_CFG_PGA_SHIFT | in ads1015_get_adc_result() 420 data->channel_data[chan->address].pga = i; in ads1015_set_scale() 486 idx = data->channel_data[chan->address].pga; in ads1015_read_raw() 857 unsigned int pga = ADS1015_DEFAULT_PGA; in ads1015_get_channels_config_of() local 875 pga = pval; in ads1015_get_channels_config_of() 876 if (pga > 6) { in ads1015_get_channels_config_of() 895 data->channel_data[channel].pga = pga; in ads1015_get_channels_config_of() 924 data->channel_data[k].pga = ADS1015_DEFAULT_PGA; in ads1015_get_channels_config()
|
/Linux-v4.19/Documentation/hwmon/ |
D | ads1015 | 45 - pga is the programmable gain amplifier (values are full scale) 64 [2] = { .enabled = true, .pga = 1, .data_rate = 0 }, 65 [4] = { .enabled = true, .pga = 4, .data_rate = 5 },
|
/Linux-v4.19/include/linux/platform_data/ |
D | ads1015.h | 28 unsigned int pga; member
|
/Linux-v4.19/drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/ |
D | phytbl_lcn.h | 44 unsigned char pga; member
|
D | phy_n.c | 185 u16 pga; member 23317 target_gain.pga[core_no] = in wlc_phy_get_tx_gain_nphy() 23328 target_gain.pga[core_no] = in wlc_phy_get_tx_gain_nphy() 23337 target_gain.pga[core_no] = in wlc_phy_get_tx_gain_nphy() 23361 target_gain.pga[core_no] = in wlc_phy_get_tx_gain_nphy() 23382 target_gain.pga[core_no] = in wlc_phy_get_tx_gain_nphy() 23398 target_gain.pga[core_no] = in wlc_phy_get_tx_gain_nphy() 23426 params->pga = target_gain.pga[core_no]; in wlc_phy_iqcal_gainparams_nphy() 23432 (params->pga << 8) | in wlc_phy_iqcal_gainparams_nphy() 23436 ((params->txgm << 12) | (params->pga << 8) | in wlc_phy_iqcal_gainparams_nphy() [all …]
|
D | phy_int.h | 440 u16 pga[2]; member
|
D | phy_lcn.c | 4386 (gain_table[j].pga << 8) | gm_gain); in wlc_lcnphy_load_tx_gain_table()
|
/Linux-v4.19/Documentation/devicetree/bindings/hwmon/ |
D | ads1015.txt | 18 - pga is the programmable gain amplifier (values are full scale)
|
/Linux-v4.19/drivers/media/dvb-frontends/ |
D | dib0090.c | 1641 u8 pga:1; member 1743 if (state->dc->pga && state->adc_diff < 0) in dib0090_dc_offset_calibration() 1745 if (state->dc->pga == 0 && state->adc_diff > 0) in dib0090_dc_offset_calibration()
|