/linux-4.4.14/sound/firewire/ |
D | iso-resources.c | 109 int bandwidth, channel, err; in fw_iso_resources_allocate() local 114 r->bandwidth = packet_bandwidth(max_payload_bytes, speed); in fw_iso_resources_allocate() 128 bandwidth = r->bandwidth + r->bandwidth_overhead; in fw_iso_resources_allocate() 130 &channel, &bandwidth, true); in fw_iso_resources_allocate() 167 int bandwidth, channel; in fw_iso_resources_update() local 181 bandwidth = r->bandwidth + r->bandwidth_overhead; in fw_iso_resources_update() 184 &channel, &bandwidth, true); in fw_iso_resources_update() 214 int bandwidth, channel; in fw_iso_resources_free() local 219 bandwidth = r->bandwidth + r->bandwidth_overhead; in fw_iso_resources_free() 221 &channel, &bandwidth, false); in fw_iso_resources_free()
|
D | iso-resources.h | 23 unsigned int bandwidth; /* in bandwidth units, without overhead */ member
|
/linux-4.4.14/drivers/media/dvb-frontends/ |
D | stb6100_cfg.h | 59 static int stb6100_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in stb6100_get_bandwidth() argument 72 *bandwidth = t_state.bandwidth; in stb6100_get_bandwidth() 77 static int stb6100_set_bandwidth(struct dvb_frontend *fe, u32 bandwidth) in stb6100_set_bandwidth() argument 84 t_state.bandwidth = bandwidth; in stb6100_set_bandwidth()
|
D | stb6100.c | 251 static int stb6100_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in stb6100_get_bandwidth() argument 262 state->status.bandwidth = (f + 5) * 2000; /* x2 for ZIF */ in stb6100_get_bandwidth() 264 *bandwidth = state->bandwidth = state->status.bandwidth * 1000; in stb6100_get_bandwidth() 265 dprintk(verbose, FE_DEBUG, 1, "bandwidth = %u Hz", state->bandwidth); in stb6100_get_bandwidth() 269 static int stb6100_set_bandwidth(struct dvb_frontend *fe, u32 bandwidth) in stb6100_set_bandwidth() argument 275 dprintk(verbose, FE_DEBUG, 1, "set bandwidth to %u Hz", bandwidth); in stb6100_set_bandwidth() 277 bandwidth /= 2; /* ZIF */ in stb6100_set_bandwidth() 279 if (bandwidth >= 36000000) /* F[4:0] BW/2 max =31+5=36 mhz for F=31 */ in stb6100_set_bandwidth() 281 else if (bandwidth <= 5000000) /* bw/2 min = 5Mhz for F=0 */ in stb6100_set_bandwidth() 284 tmp = (bandwidth + 500000) / 1000000 - 5; in stb6100_set_bandwidth() [all …]
|
D | stb6100_proc.h | 73 static int stb6100_get_bandw(struct dvb_frontend *fe, u32 *bandwidth) in stb6100_get_bandw() argument 93 *bandwidth = state.bandwidth; in stb6100_get_bandw() 99 static int stb6100_set_bandw(struct dvb_frontend *fe, u32 bandwidth) in stb6100_set_bandw() argument 106 state.bandwidth = bandwidth; in stb6100_set_bandw()
|
D | tda826x.c | 81 u32 bandwidth; in tda826x_set_params() local 92 bandwidth = (878 * ksyms + 6500000) / 1000000 + 1; in tda826x_set_params() 93 if (bandwidth < 5) in tda826x_set_params() 94 bandwidth = 5; in tda826x_set_params() 95 else if (bandwidth > 36) in tda826x_set_params() 96 bandwidth = 36; in tda826x_set_params() 105 buf[5] = ((bandwidth - 5) << 3) | 7; /* baseband cut-off */ in tda826x_set_params()
|
D | tda8261_cfg.h | 59 static int tda8261_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in tda8261_get_bandwidth() argument 72 *bandwidth = t_state.bandwidth; in tda8261_get_bandwidth() 73 printk("%s: Bandwidth=%d\n", __func__, t_state.bandwidth); in tda8261_get_bandwidth()
|
D | stb6000.c | 85 int bandwidth; in stb6000_set_params() local 97 bandwidth = p->symbol_rate / 1000000; in stb6000_set_params() 99 if (bandwidth > 31) in stb6000_set_params() 100 bandwidth = 31; in stb6000_set_params() 138 buf[6] = (unsigned char)(bandwidth); in stb6000_set_params()
|
D | stv6110.c | 180 static int stv6110_set_bandwidth(struct dvb_frontend *fe, u32 bandwidth) in stv6110_set_bandwidth() argument 186 if ((bandwidth / 2) > 36000000) /*BW/2 max=31+5=36 mhz for r8=31*/ in stv6110_set_bandwidth() 188 else if ((bandwidth / 2) < 5000000) /* BW/2 min=5Mhz for F=0 */ in stv6110_set_bandwidth() 191 r8 = (bandwidth / 2) / 1000000 - 5; in stv6110_set_bandwidth() 363 u32 bandwidth = carrier_width(c->symbol_rate, c->rolloff); in stv6110_set_params() local 366 stv6110_set_bandwidth(fe, bandwidth); in stv6110_set_params() 371 static int stv6110_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in stv6110_get_bandwidth() argument 380 *bandwidth = (r8 + 5) * 2000000;/* x2 for ZIF tuner BW/2 = F+5 Mhz */ in stv6110_get_bandwidth()
|
D | si2168.c | 200 u8 bandwidth, delivery_system; in si2168_set_frontend() local 232 bandwidth = 0x02; in si2168_set_frontend() 234 bandwidth = 0x05; in si2168_set_frontend() 236 bandwidth = 0x06; in si2168_set_frontend() 238 bandwidth = 0x07; in si2168_set_frontend() 240 bandwidth = 0x08; in si2168_set_frontend() 242 bandwidth = 0x09; in si2168_set_frontend() 244 bandwidth = 0x0a; in si2168_set_frontend() 246 bandwidth = 0x0f; in si2168_set_frontend() 323 cmd.args[4] = delivery_system | bandwidth; in si2168_set_frontend()
|
D | stv6110x.h | 47 int (*tuner_set_bandwidth) (struct dvb_frontend *fe, u32 bandwidth); 48 int (*tuner_get_bandwidth) (struct dvb_frontend *fe, u32 *bandwidth);
|
D | as102_fe.c | 77 tune_args.bandwidth = BW_8_MHZ; in as102_fe_set_frontend() 80 tune_args.bandwidth = BW_7_MHZ; in as102_fe_set_frontend() 83 tune_args.bandwidth = BW_6_MHZ; in as102_fe_set_frontend() 86 tune_args.bandwidth = BW_8_MHZ; in as102_fe_set_frontend() 154 tune_args.bandwidth, in as102_fe_set_frontend()
|
D | stv090x.h | 97 int (*tuner_set_bandwidth)(struct dvb_frontend *fe, u32 bandwidth); 98 int (*tuner_get_bandwidth)(struct dvb_frontend *fe, u32 *bandwidth);
|
D | stb0899_drv.h | 139 int (*tuner_set_bandwidth)(struct dvb_frontend *fe, u32 bandwidth); 140 int (*tuner_get_bandwidth)(struct dvb_frontend *fe, u32 *bandwidth);
|
D | dvb-pll.c | 41 u32 bandwidth; member 664 priv->bandwidth = c->bandwidth_hz; in dvb_pll_set_params() 689 priv->bandwidth = c->bandwidth_hz; in dvb_pll_calc_regs() 701 static int dvb_pll_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in dvb_pll_get_bandwidth() argument 704 *bandwidth = priv->bandwidth; in dvb_pll_get_bandwidth()
|
D | cxd2841er.c | 422 u32 bandwidth); 425 u32 bandwidth); 428 u32 bandwidth); 1001 u32 bandwidth, int *offset) in cxd2841er_get_carrier_offset_t2() argument 1021 switch (bandwidth) { in cxd2841er_get_carrier_offset_t2() 1029 *offset *= (bandwidth / 1000000); in cxd2841er_get_carrier_offset_t2() 1034 __func__, bandwidth); in cxd2841er_get_carrier_offset_t2() 1574 u32 bandwidth) in cxd2841er_sleep_tc_to_active_t2_band() argument 1583 switch (bandwidth) { in cxd2841er_sleep_tc_to_active_t2_band() 1719 (bandwidth == 1712000 ? 0x03 : 0x00), 0x0f); in cxd2841er_sleep_tc_to_active_t2_band() [all …]
|
D | rtl2832_sdr.c | 158 struct v4l2_ctrl *bandwidth; member 836 struct v4l2_ctrl *bandwidth; in rtl2832_sdr_set_tuner_freq() local 849 bandwidth = v4l2_ctrl_find(&dev->hdl, V4L2_CID_RF_TUNER_BANDWIDTH); in rtl2832_sdr_set_tuner_freq() 852 v4l2_ctrl_s_ctrl(bandwidth, dev->f_adc); in rtl2832_sdr_set_tuner_freq() 854 c->bandwidth_hz = v4l2_ctrl_g_ctrl(bandwidth); in rtl2832_sdr_set_tuner_freq() 1321 s32 val = dev->f_adc + div_u64(dev->bandwidth->step, 2); in rtl2832_sdr_s_ctrl() 1324 val = clamp_t(s32, val, dev->bandwidth->minimum, in rtl2832_sdr_s_ctrl() 1325 dev->bandwidth->maximum); in rtl2832_sdr_s_ctrl() 1326 offset = val - dev->bandwidth->minimum; in rtl2832_sdr_s_ctrl() 1327 offset = dev->bandwidth->step * in rtl2832_sdr_s_ctrl() [all …]
|
D | stv6110x.c | 197 static int stv6110x_set_bandwidth(struct dvb_frontend *fe, u32 bandwidth) in stv6110x_set_bandwidth() argument 203 halfbw = bandwidth >> 1; in stv6110x_set_bandwidth() 231 static int stv6110x_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in stv6110x_get_bandwidth() argument 236 *bandwidth = (STV6110x_GETFIELD(CTRL3_CF, stv6110x->regs[STV6110x_CTRL3]) + 5) * 2000000; in stv6110x_get_bandwidth()
|
D | zl10353.c | 40 u32 bandwidth; member 125 u32 bandwidth, in zl10353_calc_nominal_rate() argument 131 u8 bw = bandwidth / 1000000; in zl10353_calc_nominal_rate() 230 state->bandwidth = c->bandwidth_hz; in zl10353_set_parameters() 459 c->bandwidth_hz = state->bandwidth; in zl10353_get_parameters()
|
D | tda8261.c | 36 u32 bandwidth; member 98 tstate->bandwidth = 40000000; /* FIXME! need to calculate Bandwidth */ in tda8261_get_state()
|
D | stb6100.h | 93 u32 bandwidth; member
|
D | stv0900_priv.h | 374 u32 bandwidth); 375 extern void stv0900_set_bandwidth(struct dvb_frontend *fe, u32 bandwidth);
|
D | as102_fe_types.h | 125 uint8_t bandwidth; member
|
D | s5h1432.c | 97 u32 bandwidth) in s5h1432_set_channel_bandwidth() argument 106 switch (bandwidth) { in s5h1432_set_channel_bandwidth()
|
D | tda10048.c | 156 u32 bandwidth; member 414 state->bandwidth = bw; in tda10048_set_bandwidth() 735 if (p->bandwidth_hz != state->bandwidth) { in tda10048_set_frontend() 1115 state->bandwidth = 8000000; in tda10048_attach()
|
D | nxt6000.c | 84 static int nxt6000_set_bandwidth(struct nxt6000_state *state, u32 bandwidth) in nxt6000_set_bandwidth() argument 89 switch (bandwidth) { in nxt6000_set_bandwidth()
|
D | drxd_hard.c | 1594 u32 bandwidth = 0; in CorrectSysClockDeviation() local 1622 bandwidth = DRXD_BANDWIDTH_8MHZ_IN_HZ; in CorrectSysClockDeviation() 1625 bandwidth = DRXD_BANDWIDTH_7MHZ_IN_HZ; in CorrectSysClockDeviation() 1628 bandwidth = DRXD_BANDWIDTH_6MHZ_IN_HZ; in CorrectSysClockDeviation() 1638 sysClockInHz = MulDiv32(incr, bandwidth, 1 << 21); in CorrectSysClockDeviation() 1915 u32 bandwidth = 0; in DRX_Start() local 2337 bandwidth = DRXD_BANDWIDTH_8MHZ_IN_HZ; in DRX_Start() 2345 bandwidth = DRXD_BANDWIDTH_7MHZ_IN_HZ; in DRX_Start() 2352 bandwidth = DRXD_BANDWIDTH_6MHZ_IN_HZ; in DRX_Start() 2405 (1ULL << 21), bandwidth) - (1 << 23); in DRX_Start()
|
D | mt352.c | 114 u32 bandwidth, in mt352_calc_nominal_rate() argument 120 switch (bandwidth) { in mt352_calc_nominal_rate()
|
D | stb0899_algo.c | 150 u32 bandwidth = 0; in stb0899_first_subrange() local 154 config->tuner_get_bandwidth(&state->frontend, &bandwidth); in stb0899_first_subrange() 156 range = bandwidth - stb0899_carr_width(state) / 2; in stb0899_first_subrange() 511 u32 bandwidth = 0; in stb0899_dvbs_algo() local 620 config->tuner_get_bandwidth(&state->frontend, &bandwidth); in stb0899_dvbs_algo() 625 if (params->srate <= bandwidth / 2) in stb0899_dvbs_algo()
|
D | tda1004x.c | 227 u32 bandwidth) in tda10045h_set_bandwidth() argument 233 switch (bandwidth) { in tda10045h_set_bandwidth() 256 u32 bandwidth) in tda10046h_set_bandwidth() argument 272 switch (bandwidth) { in tda10046h_set_bandwidth()
|
D | tda665x.c | 34 u32 bandwidth; member
|
D | stv0900_core.c | 522 u32 bandwidth) in stv0900_set_tuner() argument 539 if ((tuner_ops->set_bandwidth(fe, bandwidth)) < 0) in stv0900_set_tuner() 542 dprintk("%s: Bandwidth=%d\n", __func__, bandwidth); in stv0900_set_tuner() 547 void stv0900_set_bandwidth(struct dvb_frontend *fe, u32 bandwidth) in stv0900_set_bandwidth() argument 556 if ((tuner_ops->set_bandwidth(fe, bandwidth)) < 0) in stv0900_set_bandwidth() 559 dprintk("%s: Bandwidth=%d\n", __func__, bandwidth); in stv0900_set_bandwidth()
|
D | itd1000.c | 287 static int itd1000_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in itd1000_get_bandwidth() argument
|
/linux-4.4.14/net/wireless/ |
D | chan.c | 241 u32 bandwidth, in cfg80211_set_chans_dfs_state() argument 247 for (freq = center_freq - bandwidth/2 + 10; in cfg80211_set_chans_dfs_state() 248 freq <= center_freq + bandwidth/2 - 10; in cfg80211_set_chans_dfs_state() 282 u32 bandwidth) in cfg80211_get_start_freq() argument 286 if (bandwidth <= 20) in cfg80211_get_start_freq() 289 start_freq = center_freq - bandwidth/2 + 10; in cfg80211_get_start_freq() 295 u32 bandwidth) in cfg80211_get_end_freq() argument 299 if (bandwidth <= 20) in cfg80211_get_end_freq() 302 end_freq = center_freq + bandwidth/2 - 10; in cfg80211_get_end_freq() 309 u32 bandwidth) in cfg80211_get_chans_dfs_required() argument [all …]
|
/linux-4.4.14/Documentation/scheduler/ |
D | sched-bwc.txt | 4 [ This document only discusses CPU bandwidth control for SCHED_NORMAL. 7 CFS bandwidth control is a CONFIG_FAIR_GROUP_SCHED extension which allows the 8 specification of the maximum CPU bandwidth available to a group or hierarchy. 10 The bandwidth allowed for a group is specified using a quota and period. Within 12 "quota" microseconds of CPU time. When the CPU bandwidth consumption of a 18 above at each period boundary. As threads consume this bandwidth it is 35 bandwidth restriction in place, such a group is described as an unconstrained 36 bandwidth group. This represents the traditional work-conserving behavior for 39 Writing any (valid) positive value(s) will enact the specified bandwidth limit. 42 bandwidth limits are used in a hierarchical fashion, these are explained in [all …]
|
D | sched-rt-group.txt | 43 the amount of bandwidth (eg. CPU time) being constant. In order to schedule 90 The scheduling period that is equivalent to 100% CPU bandwidth 95 processes. With CONFIG_RT_GROUP_SCHED it signifies the total bandwidth 114 By default all bandwidth is assigned to the root group and new groups get the 116 want to assign bandwidth to another group, reduce the root group's bandwidth 120 bandwidth to the group before it will accept realtime tasks. Therefore you will 130 CPU bandwidth to task groups. 158 Consider two sibling groups A and B; both have 50% bandwidth, but A's
|
D | 00-INDEX | 6 - CFS bandwidth control overview.
|
D | sched-deadline.txt | 61 interference between different tasks (bandwidth isolation), while the EDF[1] 350 "bandwidth". 351 The interface used to control the CPU bandwidth that can be allocated 358 figure out how we want to manage SCHED_DEADLINE bandwidth at the task group 361 A main difference between deadline bandwidth management and RT-throttling 362 is that -deadline tasks have bandwidth on their own (while -rt ones don't!), 364 desired bandwidth. In other words, this means that interface parameters are 367 parameters, so that CPU bandwidth is allocated to SCHED_DEADLINE tasks 381 run -rt tasks from a -deadline server; in which case the -rt bandwidth is a 389 It is also possible to disable this bandwidth management logic, and [all …]
|
/linux-4.4.14/drivers/firewire/ |
D | core-iso.c | 236 int bandwidth, bool allocate) in manage_bandwidth() argument 247 new = allocate ? old - bandwidth : old + bandwidth; in manage_bandwidth() 259 return allocate ? -EAGAIN : bandwidth; in manage_bandwidth() 263 return bandwidth; in manage_bandwidth() 363 u64 channels_mask, int *channel, int *bandwidth, in fw_iso_resource_manage() argument 388 *bandwidth = 0; in fw_iso_resource_manage() 390 if (*bandwidth == 0) in fw_iso_resource_manage() 393 ret = manage_bandwidth(card, irm_id, generation, *bandwidth, allocate); in fw_iso_resource_manage() 395 *bandwidth = 0; in fw_iso_resource_manage()
|
D | core-cdev.c | 145 s32 bandwidth; member 1253 int generation, channel, bandwidth, todo; in iso_resource_work() local 1279 bandwidth = r->bandwidth; in iso_resource_work() 1282 r->channels, &channel, &bandwidth, in iso_resource_work() 1295 success = channel >= 0 || bandwidth > 0; in iso_resource_work() 1332 e->iso_resource.bandwidth = bandwidth; in iso_resource_work() 1366 if ((request->channels == 0 && request->bandwidth == 0) || in init_iso_resource() 1367 request->bandwidth > BANDWIDTH_AVAILABLE_INITIAL) in init_iso_resource() 1383 r->bandwidth = request->bandwidth; in init_iso_resource()
|
D | core-card.c | 273 int channel, bandwidth = 0; in allocate_broadcast_channel() local 277 &channel, &bandwidth, true); in allocate_broadcast_channel()
|
/linux-4.4.14/arch/arm/mach-rpc/include/mach/ |
D | acornfb.h | 122 unsigned long bandwidth = acornfb_bandwidth(var); in acornfb_vidc20_find_rates() local 125 if (bandwidth > 33334) /* < 30.0MB/s */ in acornfb_vidc20_find_rates() 127 else if (bandwidth > 26666) /* < 37.5MB/s */ in acornfb_vidc20_find_rates() 129 else if (bandwidth > 22222) /* < 45.0MB/s */ in acornfb_vidc20_find_rates()
|
/linux-4.4.14/drivers/media/tuners/ |
D | msi001.c | 46 struct v4l2_ctrl *bandwidth; member 141 unsigned int bandwidth; in msi001_set_tuner() local 184 bandwidth = dev->bandwidth->val; in msi001_set_tuner() 185 bandwidth = clamp(bandwidth, 200000U, 8000000U); in msi001_set_tuner() 188 if (bandwidth <= bandwidth_lut[i].freq) { in msi001_set_tuner() 189 bandwidth = bandwidth_lut[i].val; in msi001_set_tuner() 198 dev->bandwidth->val = bandwidth_lut[i].freq; in msi001_set_tuner() 254 reg |= bandwidth << 14; in msi001_set_tuner() 465 dev->bandwidth = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops, in msi001_probe()
|
D | fc0011.c | 76 u32 bandwidth; member 185 u32 bandwidth = p->bandwidth_hz / 1000; in fc0011_set_params() local 258 switch (bandwidth) { in fc0011_set_params() 267 bandwidth); in fc0011_set_params() 268 bandwidth = 6000; in fc0011_set_params() 448 (unsigned int)bandwidth); in fc0011_set_params() 451 priv->bandwidth = p->bandwidth_hz; in fc0011_set_params() 472 static int fc0011_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in fc0011_get_bandwidth() argument 476 *bandwidth = priv->bandwidth; in fc0011_get_bandwidth()
|
D | mt2266.c | 41 u32 bandwidth; member 164 priv->bandwidth = c->bandwidth_hz; in mt2266_set_params() 271 static int mt2266_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in mt2266_get_bandwidth() argument 274 *bandwidth = priv->bandwidth; in mt2266_get_bandwidth()
|
D | tuner-simple.c | 117 u32 bandwidth; member 791 priv->bandwidth = 0; in simple_set_params() 799 const u32 bandwidth) in simple_set_dvb() argument 806 if (bandwidth == 8000000 && in simple_set_dvb() 816 if (bandwidth == 8000000) in simple_set_dvb() 908 priv->bandwidth = c->bandwidth_hz; in simple_dvb_calc_regs() 929 prev_bw = priv->bandwidth; in simple_dvb_set_params() 938 priv->bandwidth = bw; in simple_dvb_set_params() 957 priv->bandwidth = prev_bw; in simple_dvb_set_params() 1031 static int simple_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in simple_get_bandwidth() argument [all …]
|
D | si2157.c | 260 u8 bandwidth, delivery_system; in si2157_set_params() local 273 bandwidth = 0x06; in si2157_set_params() 275 bandwidth = 0x07; in si2157_set_params() 277 bandwidth = 0x08; in si2157_set_params() 279 bandwidth = 0x0f; in si2157_set_params() 303 cmd.args[4] = delivery_system | bandwidth; in si2157_set_params()
|
D | fc0012.c | 320 priv->bandwidth = p->bandwidth_hz; in fc0012_set_params() 344 static int fc0012_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in fc0012_get_bandwidth() argument 347 *bandwidth = priv->bandwidth; in fc0012_get_bandwidth()
|
D | fc0012-priv.h | 29 u32 bandwidth; member
|
D | max2165_priv.h | 50 u32 bandwidth; member
|
D | fc0013-priv.h | 41 u32 bandwidth; member
|
D | fc0013.c | 480 priv->bandwidth = p->bandwidth_hz; in fc0013_set_params() 504 static int fc0013_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in fc0013_get_bandwidth() argument 507 *bandwidth = priv->bandwidth; in fc0013_get_bandwidth()
|
D | mxl5007t.c | 171 u32 bandwidth; member 669 state->bandwidth = c->bandwidth_hz; in mxl5007t_set_params() 728 static int mxl5007t_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in mxl5007t_get_bandwidth() argument 731 *bandwidth = state->bandwidth; in mxl5007t_get_bandwidth()
|
D | e4000_priv.h | 43 struct v4l2_ctrl *bandwidth; member
|
D | fc2580_priv.h | 144 struct v4l2_ctrl *bandwidth; member
|
D | tda827x.c | 47 u32 bandwidth; member 222 priv->bandwidth = c->bandwidth_hz; in tda827xo_set_params() 650 priv->bandwidth = c->bandwidth_hz; in tda827xa_set_params() 784 static int tda827x_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in tda827x_get_bandwidth() argument 787 *bandwidth = priv->bandwidth; in tda827x_get_bandwidth()
|
D | fc2580.c | 507 dev->f_bandwidth = dev->bandwidth->val; in fc2580_s_ctrl() 584 dev->bandwidth = v4l2_ctrl_new_std(&dev->hdl, &fc2580_ctrl_ops, in fc2580_probe() 596 dev->f_bandwidth = dev->bandwidth->val; in fc2580_probe()
|
D | tda18271-fe.c | 990 priv->bandwidth = bw; in tda18271_set_params() 1046 priv->bandwidth = 0; in tda18271_set_analog_params() 1074 static int tda18271_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in tda18271_get_bandwidth() argument 1077 *bandwidth = priv->bandwidth; in tda18271_get_bandwidth()
|
D | e4000.c | 562 dev->f_bandwidth = dev->bandwidth->val; in e4000_s_ctrl() 685 dev->bandwidth = v4l2_ctrl_new_std(&dev->hdl, &e4000_ctrl_ops, in e4000_probe() 714 dev->f_bandwidth = dev->bandwidth->val; in e4000_probe()
|
D | xc5000.c | 60 u32 bandwidth; member 757 priv->bandwidth = bw; in xc5000_tune_digital() 1112 *bw = priv->bandwidth; in xc5000_get_bandwidth() 1418 priv->bandwidth = 6000000; in xc5000_attach()
|
D | tda18271-priv.h | 128 u32 bandwidth; member
|
D | xc4000.c | 97 u32 bandwidth; member 1227 priv->bandwidth = c->bandwidth_hz; in xc4000_set_params() 1567 *bw = priv->bandwidth; in xc4000_get_bandwidth() 1690 priv->bandwidth = 6000000; in xc4000_attach()
|
D | max2165.c | 310 *bw = priv->bandwidth; in max2165_get_bandwidth()
|
D | mxl5005s.c | 321 u32 bandwidth); 323 u32 bandwidth); 3923 u32 bandwidth) in mxl5005s_reconfigure() argument 3931 dprintk(1, "%s(type=%d, bw=%d)\n", __func__, mod_type, bandwidth); in mxl5005s_reconfigure() 3942 mxl5005s_AssignTunerMode(fe, mod_type, bandwidth); in mxl5005s_reconfigure() 3953 u32 bandwidth) in mxl5005s_AssignTunerMode() argument 3965 bandwidth, in mxl5005s_AssignTunerMode() 4046 static int mxl5005s_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in mxl5005s_get_bandwidth() argument 4051 *bandwidth = state->Chan_Bandwidth; in mxl5005s_get_bandwidth()
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-kernel-uids | 7 to set the cpu bandwidth a user is allowed. This is a 10 shares, then they will get equal CPU bandwidth. Another 13 bandwidth user A will. For more details refer
|
D | sysfs-module | 24 However there are cases, when 80% max isochronous bandwidth is 26 microseconds of isochronous bandwidth per microframe to work 31 microseconds of periodic bandwidth per microframe.
|
D | sysfs-class-net-mesh | 47 Defines the bandwidth which is propagated by this
|
D | sysfs-class-net-cdc_ncm | 17 between USB bus bandwidth and device DMA optimization.
|
D | sysfs-devices-edac | 71 writing a minimum bandwidth in bytes/sec to the attribute file.
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/ |
D | rf.c | 35 void rtl92ee_phy_rf6052_set_bandwidth(struct ieee80211_hw *hw, u8 bandwidth) in rtl92ee_phy_rf6052_set_bandwidth() argument 40 switch (bandwidth) { in rtl92ee_phy_rf6052_set_bandwidth() 59 "unknown bandwidth: %#X\n", bandwidth); in rtl92ee_phy_rf6052_set_bandwidth()
|
D | rf.h | 32 u8 bandwidth);
|
/linux-4.4.14/drivers/media/usb/gspca/ |
D | gspca.c | 632 u32 bandwidth; in which_bandwidth() local 635 bandwidth = gspca_dev->pixfmt.sizeimage; in which_bandwidth() 639 bandwidth < gspca_dev->pixfmt.width * in which_bandwidth() 641 bandwidth = bandwidth * 3 / 8; /* 0.375 */ in which_bandwidth() 648 bandwidth *= parm.parm.capture.timeperframe.denominator; in which_bandwidth() 649 bandwidth /= parm.parm.capture.timeperframe.numerator; in which_bandwidth() 656 bandwidth *= 15; /* 15 fps */ in which_bandwidth() 658 bandwidth *= 30; /* 30 fps */ in which_bandwidth() 661 PDEBUG(D_STREAM, "min bandwidth: %d", bandwidth); in which_bandwidth() 662 return bandwidth; in which_bandwidth() [all …]
|
/linux-4.4.14/drivers/media/usb/dvb-usb/ |
D | cinergyT2.h | 70 uint8_t bandwidth; member 86 uint8_t bandwidth; member
|
D | cinergyT2-fe.c | 281 param.bandwidth = 8; in cinergyt2_fe_set_frontend() 284 param.bandwidth = 7; in cinergyt2_fe_set_frontend() 287 param.bandwidth = 6; in cinergyt2_fe_set_frontend()
|
/linux-4.4.14/drivers/media/usb/dvb-usb-v2/ |
D | mxl111sf-tuner.c | 44 u32 bandwidth; member 318 state->bandwidth = c->bandwidth_hz; in mxl111sf_tuner_set_params() 403 static int mxl111sf_tuner_get_bandwidth(struct dvb_frontend *fe, u32 *bandwidth) in mxl111sf_tuner_get_bandwidth() argument 406 *bandwidth = state->bandwidth; in mxl111sf_tuner_get_bandwidth()
|
/linux-4.4.14/drivers/media/usb/uvc/ |
D | uvc_video.c | 134 u32 bandwidth; in uvc_fixup_video_ctrl() local 146 bandwidth = frame->wWidth * frame->wHeight / 8 * format->bpp; in uvc_fixup_video_ctrl() 147 bandwidth *= 10000000 / interval + 1; in uvc_fixup_video_ctrl() 148 bandwidth /= 1000; in uvc_fixup_video_ctrl() 150 bandwidth /= 8; in uvc_fixup_video_ctrl() 151 bandwidth += 12; in uvc_fixup_video_ctrl() 160 bandwidth = max_t(u32, bandwidth, 1024); in uvc_fixup_video_ctrl() 162 ctrl->dwMaxPayloadTransferSize = bandwidth; in uvc_fixup_video_ctrl() 304 __u16 bandwidth; in uvc_probe_video() local 342 bandwidth = probe->dwMaxPayloadTransferSize; in uvc_probe_video() [all …]
|
/linux-4.4.14/drivers/edac/ |
D | edac_mc_sysfs.c | 675 unsigned long bandwidth = 0; in mci_sdram_scrub_rate_store() local 678 if (kstrtoul(data, 10, &bandwidth) < 0) in mci_sdram_scrub_rate_store() 681 new_bw = mci->set_sdram_scrub_rate(mci, bandwidth); in mci_sdram_scrub_rate_store() 684 "Error setting scrub rate to: %lu\n", bandwidth); in mci_sdram_scrub_rate_store() 699 int bandwidth = 0; in mci_sdram_scrub_rate_show() local 701 bandwidth = mci->get_sdram_scrub_rate(mci); in mci_sdram_scrub_rate_show() 702 if (bandwidth < 0) { in mci_sdram_scrub_rate_show() 704 return bandwidth; in mci_sdram_scrub_rate_show() 707 return sprintf(data, "%d\n", bandwidth); in mci_sdram_scrub_rate_show()
|
D | e752x_edac.c | 280 u32 bandwidth; /* bandwidth consumed by scrubbing in bytes/sec */ member 1006 for (i = 0; scrubrates[i].bandwidth != SDRATE_EOT; i++) in set_sdram_scrub_rate() 1007 if (scrubrates[i].bandwidth >= new_bw) in set_sdram_scrub_rate() 1010 if (scrubrates[i].bandwidth == SDRATE_EOT) in set_sdram_scrub_rate() 1015 return scrubrates[i].bandwidth; in set_sdram_scrub_rate() 1036 for (i = 0; scrubrates[i].bandwidth != SDRATE_EOT; i++) in get_sdram_scrub_rate() 1040 if (scrubrates[i].bandwidth == SDRATE_EOT) { in get_sdram_scrub_rate() 1045 return scrubrates[i].bandwidth; in get_sdram_scrub_rate()
|
D | i5100_edac.c | 605 static int i5100_set_scrub_rate(struct mem_ctl_info *mci, u32 bandwidth) in i5100_set_scrub_rate() argument 611 if (bandwidth) { in i5100_set_scrub_rate() 625 bandwidth = 5900000 * i5100_mc_scrben(dw); in i5100_set_scrub_rate() 627 return bandwidth; in i5100_set_scrub_rate()
|
D | amd64_edac.c | 35 u32 bandwidth; /* bandwidth consumed (bytes/sec) */ member 198 if (scrubrates[i].bandwidth <= new_bw) in __set_scrub_rate() 214 return scrubrates[i].bandwidth; in __set_scrub_rate() 258 retval = scrubrates[i].bandwidth; in get_scrub_rate()
|
/linux-4.4.14/arch/cris/arch-v32/mach-a3/ |
D | dma.c | 20 unsigned options, unsigned int bandwidth, enum dma_owner owner) in crisv32_request_dma() argument 28 bandwidth)) in crisv32_request_dma()
|
D | arbiter.c | 286 unsigned long bandwidth) in crisv32_arbiter_allocate_bandwidth() argument 307 req = bandwidth == 0 in crisv32_arbiter_allocate_bandwidth() 308 ? 0 : NBR_OF_SLOTS / (max_bandwidth[region] / bandwidth); in crisv32_arbiter_allocate_bandwidth() 328 EXT_REGION, bandwidth); in crisv32_arbiter_allocate_bandwidth()
|
/linux-4.4.14/Documentation/devicetree/bindings/display/ |
D | arm,pl11x.txt | 34 - max-memory-bandwidth: maximum bandwidth in bytes per second that the 78 max-memory-bandwidth = <94371840>; /* Bps, 1024x768@60 16bpp */
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/ |
D | fw-api-tof.h | 147 u8 bandwidth; member 220 u8 bandwidth; member
|
D | debugfs-vif.c | 678 mvm->tof_data.responder_cfg.bandwidth = value; in iwl_dbgfs_tof_responder_params_write() 805 cmd->bandwidth); in iwl_dbgfs_tof_responder_params_read() 945 &i, &ap.channel_num, &ap.bandwidth, in iwl_dbgfs_tof_range_request_write() 1027 i, ap->channel_num, ap->bandwidth, in iwl_dbgfs_tof_range_request_read()
|
/linux-4.4.14/drivers/staging/rtl8188eu/include/ |
D | rf.h | 5 enum ht_channel_width bandwidth);
|
D | phy.h | 21 void phy_set_bw_mode(struct adapter *adapt, enum ht_channel_width bandwidth,
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/ |
D | rf.h | 32 u8 bandwidth);
|
D | rf.c | 35 void rtl8723e_phy_rf6052_set_bandwidth(struct ieee80211_hw *hw, u8 bandwidth) in rtl8723e_phy_rf6052_set_bandwidth() argument 40 switch (bandwidth) { in rtl8723e_phy_rf6052_set_bandwidth() 55 "unknown bandwidth: %#X\n", bandwidth); in rtl8723e_phy_rf6052_set_bandwidth()
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192se/ |
D | rf.h | 35 u8 bandwidth);
|
D | rf.c | 512 void rtl92s_phy_rf6052_set_bandwidth(struct ieee80211_hw *hw, u8 bandwidth) in rtl92s_phy_rf6052_set_bandwidth() argument 517 switch (bandwidth) { in rtl92s_phy_rf6052_set_bandwidth() 532 "unknown bandwidth: %#X\n", bandwidth); in rtl92s_phy_rf6052_set_bandwidth()
|
/linux-4.4.14/arch/cris/include/arch-v32/mach-fs/mach/ |
D | arbiter.h | 22 unsigned long bandwidth);
|
D | dma.h | 70 unsigned options, unsigned bandwidth,
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/ |
D | rf.h | 36 void rtl92ce_phy_rf6052_set_bandwidth(struct ieee80211_hw *hw, u8 bandwidth);
|
D | rf.c | 39 void rtl92ce_phy_rf6052_set_bandwidth(struct ieee80211_hw *hw, u8 bandwidth) in rtl92ce_phy_rf6052_set_bandwidth() argument 44 switch (bandwidth) { in rtl92ce_phy_rf6052_set_bandwidth() 59 "unknown bandwidth: %#X\n", bandwidth); in rtl92ce_phy_rf6052_set_bandwidth()
|
/linux-4.4.14/arch/cris/arch-v32/mach-fs/ |
D | arbiter.c | 201 unsigned long bandwidth) in crisv32_arbiter_allocate_bandwidth() argument 216 req = bandwidth == 0 in crisv32_arbiter_allocate_bandwidth() 217 ? 0 : NBR_OF_SLOTS / (max_bandwidth[region] / bandwidth); in crisv32_arbiter_allocate_bandwidth()
|
D | dma.c | 20 unsigned options, unsigned int bandwidth, in crisv32_request_dma() argument 30 bandwidth)) in crisv32_request_dma()
|
/linux-4.4.14/drivers/media/dvb-core/ |
D | dvb_frontend.h | 159 u32 bandwidth; member 266 int (*get_bandwidth)(struct dvb_frontend *fe, u32 *bandwidth); 278 int (*set_bandwidth)(struct dvb_frontend *fe, u32 bandwidth);
|
D | dvb_frontend.c | 1221 switch (p->u.ofdm.bandwidth) { in dtv_property_cache_sync() 1303 p->u.ofdm.bandwidth = BANDWIDTH_10_MHZ; in dtv_property_legacy_params_sync() 1306 p->u.ofdm.bandwidth = BANDWIDTH_8_MHZ; in dtv_property_legacy_params_sync() 1309 p->u.ofdm.bandwidth = BANDWIDTH_7_MHZ; in dtv_property_legacy_params_sync() 1312 p->u.ofdm.bandwidth = BANDWIDTH_6_MHZ; in dtv_property_legacy_params_sync() 1315 p->u.ofdm.bandwidth = BANDWIDTH_5_MHZ; in dtv_property_legacy_params_sync() 1318 p->u.ofdm.bandwidth = BANDWIDTH_1_712_MHZ; in dtv_property_legacy_params_sync() 1322 p->u.ofdm.bandwidth = BANDWIDTH_AUTO; in dtv_property_legacy_params_sync()
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/ |
D | rf.h | 32 u8 bandwidth);
|
D | phy.c | 1508 u8 regulation = 0, bandwidth = 0, rate_section = 0, channel; in _rtl8812ae_phy_set_txpower_limit() local 1550 bandwidth = 0; in _rtl8812ae_phy_set_txpower_limit() 1552 bandwidth = 1; in _rtl8812ae_phy_set_txpower_limit() 1554 bandwidth = 2; in _rtl8812ae_phy_set_txpower_limit() 1556 bandwidth = 3; in _rtl8812ae_phy_set_txpower_limit() 1569 [bandwidth][rate_section] in _rtl8812ae_phy_set_txpower_limit() 1573 rtlphy->txpwr_limit_2_4g[regulation][bandwidth] in _rtl8812ae_phy_set_txpower_limit() 1579 regulation, bandwidth, rate_section, channel_index, in _rtl8812ae_phy_set_txpower_limit() 1580 rtlphy->txpwr_limit_2_4g[regulation][bandwidth] in _rtl8812ae_phy_set_txpower_limit() 1592 prev_power_limit = rtlphy->txpwr_limit_5g[regulation][bandwidth] in _rtl8812ae_phy_set_txpower_limit() [all …]
|
D | rf.c | 35 void rtl8821ae_phy_rf6052_set_bandwidth(struct ieee80211_hw *hw, u8 bandwidth) in rtl8821ae_phy_rf6052_set_bandwidth() argument 39 switch (bandwidth) { in rtl8821ae_phy_rf6052_set_bandwidth() 54 "unknown bandwidth: %#X\n", bandwidth); in rtl8821ae_phy_rf6052_set_bandwidth()
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/ |
D | rf.h | 32 u8 bandwidth);
|
D | rf.c | 35 void rtl88e_phy_rf6052_set_bandwidth(struct ieee80211_hw *hw, u8 bandwidth) in rtl88e_phy_rf6052_set_bandwidth() argument 40 switch (bandwidth) { in rtl88e_phy_rf6052_set_bandwidth() 55 "unknown bandwidth: %#X\n", bandwidth); in rtl88e_phy_rf6052_set_bandwidth()
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8723be/ |
D | rf.h | 32 u8 bandwidth);
|
D | rf.c | 35 void rtl8723be_phy_rf6052_set_bandwidth(struct ieee80211_hw *hw, u8 bandwidth) in rtl8723be_phy_rf6052_set_bandwidth() argument 40 switch (bandwidth) { in rtl8723be_phy_rf6052_set_bandwidth() 55 "unknown bandwidth: %#X\n", bandwidth); in rtl8723be_phy_rf6052_set_bandwidth()
|
/linux-4.4.14/drivers/usb/host/ |
D | ehci-sched.c | 243 ehci->bandwidth[i] += usecs; in reserve_release_intr_bandwidth() 252 ehci->bandwidth[i+j] += c_usecs; in reserve_release_intr_bandwidth() 267 tt->bandwidth[i] += tt_usecs; in reserve_release_intr_bandwidth() 397 if (tt->bandwidth[frame] + usecs > 900) in tt_available() 784 if (ehci->bandwidth[uframe] > usecs) in check_period() 1095 stream->bandwidth = stream->ps.usecs * 8 / in iso_stream_init() 1139 stream->bandwidth = (stream->ps.usecs + stream->ps.c_usecs) / in iso_stream_init() 1357 ehci->bandwidth[i] += usecs; in reserve_release_iso_bandwidth() 1369 ehci->bandwidth[i+j] += usecs; in reserve_release_iso_bandwidth() 1371 ehci->bandwidth[i+j] += c_usecs; in reserve_release_iso_bandwidth() [all …]
|
D | ehci.h | 260 u8 bandwidth[EHCI_BANDWIDTH_SIZE]; member 490 unsigned bandwidth; member 623 u16 bandwidth[EHCI_BANDWIDTH_FRAMES]; member
|
D | ehci-sysfs.c | 131 ehci->bandwidth[uframe]); in store_uframe_periodic_max()
|
D | fotg210.h | 520 unsigned bandwidth; member
|
D | ehci-dbg.c | 562 bw = &ehci->bandwidth[i]; in fill_bandwidth_buffer() 580 bf = tt->bandwidth; in fill_bandwidth_buffer()
|
/linux-4.4.14/arch/cris/include/arch-v32/mach-a3/mach/ |
D | arbiter.h | 28 unsigned long bandwidth);
|
D | dma.h | 50 unsigned options, unsigned bandwidth, enum dma_owner owner);
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192de/ |
D | rf.h | 33 void rtl92d_phy_rf6052_set_bandwidth(struct ieee80211_hw *hw, u8 bandwidth);
|
D | rf.c | 38 void rtl92d_phy_rf6052_set_bandwidth(struct ieee80211_hw *hw, u8 bandwidth) in rtl92d_phy_rf6052_set_bandwidth() argument 44 switch (bandwidth) { in rtl92d_phy_rf6052_set_bandwidth() 71 "unknown bandwidth: %#X\n", bandwidth); in rtl92d_phy_rf6052_set_bandwidth()
|
/linux-4.4.14/drivers/media/common/siano/ |
D | smscoreapi.h | 708 u32 bandwidth; /* bandwidth in MHz, valid only for DVB-T/H */ member 827 u32 bandwidth; /* bandwidth in MHz */ member 869 u32 bandwidth; /* bandwidth in MHz */ member 926 #define CORRECT_STAT_BANDWIDTH(_stat) (_stat.bandwidth = 8 - _stat.bandwidth) 937 u32 bandwidth; /* bandwidth in MHz */ member
|
D | smsdvb-debugfs.c | 90 "bandwidth = %d\n", p->bandwidth); in smsdvb_print_dvb_stats() 186 "bandwidth = %d\t\t", p->bandwidth); in smsdvb_print_isdb_stats() 276 "bandwidth = %d\t\t", p->bandwidth); in smsdvb_print_isdb_stats_ex()
|
D | smsdvb-main.c | 231 c->bandwidth_hz = sms_to_bw(p->bandwidth); in smsdvb_update_tx_params() 294 c->bandwidth_hz = sms_to_bw(p->bandwidth); in smsdvb_update_dvb_stats() 358 c->bandwidth_hz = sms_to_bw(p->bandwidth); in smsdvb_update_isdbt_stats() 442 c->bandwidth_hz = sms_to_bw(p->bandwidth); in smsdvb_update_isdbt_stats_ex()
|
/linux-4.4.14/include/linux/ |
D | bma150.h | 50 unsigned char bandwidth; /* one of BMA0150_BW_xxx */ member
|
D | firewire.h | 467 u64 channels_mask, int *channel, int *bandwidth,
|
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/ |
D | dce_v8_0.c | 872 fixed20_12 yclk, dram_channels, bandwidth; in dce_v8_0_dram_bandwidth() local 882 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce_v8_0_dram_bandwidth() 883 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in dce_v8_0_dram_bandwidth() 885 return dfixed_trunc(bandwidth); in dce_v8_0_dram_bandwidth() 901 fixed20_12 yclk, dram_channels, bandwidth; in dce_v8_0_dram_bandwidth_for_display() local 911 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce_v8_0_dram_bandwidth_for_display() 912 bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation); in dce_v8_0_dram_bandwidth_for_display() 914 return dfixed_trunc(bandwidth); in dce_v8_0_dram_bandwidth_for_display() 930 fixed20_12 sclk, bandwidth; in dce_v8_0_data_return_bandwidth() local 940 bandwidth.full = dfixed_mul(a, sclk); in dce_v8_0_data_return_bandwidth() [all …]
|
D | dce_v11_0.c | 917 fixed20_12 yclk, dram_channels, bandwidth; in dce_v11_0_dram_bandwidth() local 927 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce_v11_0_dram_bandwidth() 928 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in dce_v11_0_dram_bandwidth() 930 return dfixed_trunc(bandwidth); in dce_v11_0_dram_bandwidth() 946 fixed20_12 yclk, dram_channels, bandwidth; in dce_v11_0_dram_bandwidth_for_display() local 956 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce_v11_0_dram_bandwidth_for_display() 957 bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation); in dce_v11_0_dram_bandwidth_for_display() 959 return dfixed_trunc(bandwidth); in dce_v11_0_dram_bandwidth_for_display() 975 fixed20_12 sclk, bandwidth; in dce_v11_0_data_return_bandwidth() local 985 bandwidth.full = dfixed_mul(a, sclk); in dce_v11_0_data_return_bandwidth() [all …]
|
D | dce_v10_0.c | 929 fixed20_12 yclk, dram_channels, bandwidth; in dce_v10_0_dram_bandwidth() local 939 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce_v10_0_dram_bandwidth() 940 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in dce_v10_0_dram_bandwidth() 942 return dfixed_trunc(bandwidth); in dce_v10_0_dram_bandwidth() 958 fixed20_12 yclk, dram_channels, bandwidth; in dce_v10_0_dram_bandwidth_for_display() local 968 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce_v10_0_dram_bandwidth_for_display() 969 bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation); in dce_v10_0_dram_bandwidth_for_display() 971 return dfixed_trunc(bandwidth); in dce_v10_0_dram_bandwidth_for_display() 987 fixed20_12 sclk, bandwidth; in dce_v10_0_data_return_bandwidth() local 997 bandwidth.full = dfixed_mul(a, sclk); in dce_v10_0_data_return_bandwidth() [all …]
|
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/ |
D | rf.h | 36 void rtl92cu_phy_rf6052_set_bandwidth(struct ieee80211_hw *hw, u8 bandwidth);
|
D | rf.c | 39 void rtl92cu_phy_rf6052_set_bandwidth(struct ieee80211_hw *hw, u8 bandwidth) in rtl92cu_phy_rf6052_set_bandwidth() argument 44 switch (bandwidth) { in rtl92cu_phy_rf6052_set_bandwidth() 59 "unknown bandwidth: %#X\n", bandwidth); in rtl92cu_phy_rf6052_set_bandwidth()
|
D | mac.h | 132 u32 bandwidth:1; member
|
/linux-4.4.14/Documentation/usb/ |
D | proc_usb_info.txt | 148 are the only transfers that reserve bandwidth. Control and bulk 149 transfers use all other bandwidth, including reserved bandwidth that 152 The percentage is how much of the "reserved" bandwidth is scheduled by 154 90% of the bus bandwidth is reserved. For a high speed bus (loosely, 245 amount of periodic bandwidth. To use significant fractions 246 of bus bandwidth, drivers must select a non-default altsetting. 267 the per-microframe data transfer size. For "high bandwidth" 271 With the Linux-USB stack, periodic bandwidth reservations use the
|
D | WUSB-Design-overview.txt | 87 control bandwidth assignment, beaconing, scanning, etc 156 now on), such as to start/stop beaconing, scan, allocate bandwidth, etc. 247 local copy is currently used to present the current bandwidth 249 /sys/class/uwb_rc/uwbx/bw_avail. In the future the bandwidth 250 availability information will be used by the bandwidth reservation 253 The bandwidth reservation routines are in progress and are thus not 257 bandwidth management done by the UWB stack will include callbacks to the 259 completion. [Note: The bandwidth reservation work is in progress and 282 We reserve UWB bandwidth for our Wireless USB Cluster, create a Cluster 294 among them are the bandwidth allocations that tell each device
|
D | ehci.txt | 20 high speed "split transactions" that don't waste transfer bandwidth. 129 can't, such as "high bandwidth" periodic (interrupt or ISO) transfers. 193 going to waste more than half the USB 2.0 bandwidth. Delays between the 211 to trigger "high bandwidth" modes. 213 TBD: More than standard 80% periodic bandwidth allocation is possible
|
D | URB.txt | 34 This maximizes use of USB bandwidth, and supports seamless streaming 243 bandwidth utilization allows).
|
D | error-codes.txt | 54 -ENOSPC This request would overcommit the usb bandwidth reserved
|
/linux-4.4.14/drivers/staging/iio/gyro/ |
D | Kconfig | 10 Say Y (yes) here to build support for Analog Devices adis16060 wide bandwidth
|
/linux-4.4.14/drivers/usb/core/ |
D | devices.c | 185 unsigned interval, bandwidth = 1; in usb_dump_endpoint_descriptor() local 195 bandwidth = 2; break; in usb_dump_endpoint_descriptor() 197 bandwidth = 3; break; in usb_dump_endpoint_descriptor() 244 bandwidth, in usb_dump_endpoint_descriptor()
|
/linux-4.4.14/drivers/net/bonding/ |
D | bond_3ad.c | 653 u32 bandwidth = 0; in __get_agg_bandwidth() local 658 bandwidth = aggregator->num_of_ports; in __get_agg_bandwidth() 661 bandwidth = aggregator->num_of_ports * 10; in __get_agg_bandwidth() 664 bandwidth = aggregator->num_of_ports * 100; in __get_agg_bandwidth() 667 bandwidth = aggregator->num_of_ports * 1000; in __get_agg_bandwidth() 670 bandwidth = aggregator->num_of_ports * 2500; in __get_agg_bandwidth() 673 bandwidth = aggregator->num_of_ports * 10000; in __get_agg_bandwidth() 676 bandwidth = aggregator->num_of_ports * 20000; in __get_agg_bandwidth() 679 bandwidth = aggregator->num_of_ports * 40000; in __get_agg_bandwidth() 682 bandwidth = aggregator->num_of_ports * 56000; in __get_agg_bandwidth() [all …]
|
/linux-4.4.14/drivers/staging/rtl8192u/ieee80211/ |
D | ieee80211_softmac_wx.c | 306 HT_CHANNEL_WIDTH bandwidth = 0; in ieee80211_wx_sync_scan_wq() local 323 bandwidth = (HT_CHANNEL_WIDTH)ieee->pHTInfo->bCurBW40MHz; in ieee80211_wx_sync_scan_wq() 324 printk("Scan in 40M, force to 20M first:%d, %d\n", chan_offset, bandwidth); in ieee80211_wx_sync_scan_wq() 336 ieee->SetBWModeHandler(ieee->dev, bandwidth, chan_offset); in ieee80211_wx_sync_scan_wq()
|
/linux-4.4.14/include/uapi/linux/ |
D | firewire-cdev.h | 328 __s32 bandwidth; member 971 __u32 bandwidth; member
|
/linux-4.4.14/drivers/staging/rtl8192e/ |
D | rtllib_softmac_wx.c | 336 enum ht_channel_width bandwidth = 0; in rtllib_wx_sync_scan_wq() local 369 bandwidth = (enum ht_channel_width)ieee->pHTInfo->bCurBW40MHz; in rtllib_wx_sync_scan_wq() 371 chan_offset, bandwidth); in rtllib_wx_sync_scan_wq() 386 ieee->SetBWModeHandler(ieee->dev, bandwidth, chan_offset); in rtllib_wx_sync_scan_wq()
|
/linux-4.4.14/Documentation/vm/ |
D | numa | 28 Memory access time and effective memory bandwidth varies depending on how far 37 memory bandwidth. However, to achieve scalable memory bandwidth, system and 50 faster access times and higher effective bandwidth than accesses to more 57 a given node will see the same local memory access times and bandwidth.
|
/linux-4.4.14/drivers/net/wireless/ti/wl18xx/ |
D | cmd.h | 83 u8 bandwidth; member
|
D | cmd.c | 192 cmd->bandwidth = wlcore_get_native_channel_type(wlvif->channel_type); in wl18xx_cmd_set_cac()
|
D | acx.c | 129 acx->bandwidth = wide ? WLCORE_BANDWIDTH_40MHZ : WLCORE_BANDWIDTH_20MHZ; in wl18xx_acx_peer_ht_operation_mode()
|
D | acx.h | 311 u8 bandwidth; /* enum wlcore_bandwidth */ member
|
/linux-4.4.14/net/mac80211/ |
D | vht.c | 280 sta->sta.bandwidth = ieee80211_sta_cur_vht_bw(sta); in ieee80211_vht_cap_ie_to_sta_vht_cap() 420 if (new_bw != sta->sta.bandwidth) { in __ieee80211_vht_handle_opmode() 421 sta->sta.bandwidth = new_bw; in __ieee80211_vht_handle_opmode()
|
D | mesh_plink.c | 173 if (sta->sta.bandwidth > IEEE80211_STA_RX_BW_20) in mesh_set_ht_prot_mode() 389 enum ieee80211_sta_rx_bandwidth bw = sta->sta.bandwidth; in mesh_sta_info_init() 414 if (bw != sta->sta.bandwidth) in mesh_sta_info_init() 421 if (sta->sta.bandwidth != IEEE80211_STA_RX_BW_20) in mesh_sta_info_init() 423 sta->sta.bandwidth = IEEE80211_STA_RX_BW_20; in mesh_sta_info_init()
|
D | ht.c | 255 sta->sta.bandwidth = bw; in ieee80211_ht_cap_ie_to_sta_ht_cap()
|
/linux-4.4.14/drivers/devfreq/event/ |
D | Kconfig | 11 (e.g., raw data, utilization, latency, bandwidth). The events
|
/linux-4.4.14/net/dcb/ |
D | Kconfig | 17 framework for assigning bandwidth guarantees to traffic classes.
|
/linux-4.4.14/drivers/staging/rtl8188eu/hal/ |
D | hal_intf.c | 249 enum ht_channel_width bandwidth, u8 offset) in rtw_hal_set_bwmode() argument 252 adapt->HalFunc.set_bwmode_handler(adapt, bandwidth, in rtw_hal_set_bwmode()
|
D | rf.c | 27 enum ht_channel_width bandwidth) in rtl88eu_phy_rf6052_set_bandwidth() argument 31 switch (bandwidth) { in rtl88eu_phy_rf6052_set_bandwidth()
|
/linux-4.4.14/Documentation/mic/ |
D | scif_overview.txt | 19 7. Remote DMA (RDMA) for high bandwidth DMA transfers 32 DMA bandwidth comparison between the TCP (over ethernet over PCIe) stack versus
|
/linux-4.4.14/drivers/gpu/drm/radeon/ |
D | evergreen.c | 2045 fixed20_12 yclk, dram_channels, bandwidth; in evergreen_dram_bandwidth() local 2055 bandwidth.full = dfixed_mul(dram_channels, yclk); in evergreen_dram_bandwidth() 2056 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in evergreen_dram_bandwidth() 2058 return dfixed_trunc(bandwidth); in evergreen_dram_bandwidth() 2065 fixed20_12 yclk, dram_channels, bandwidth; in evergreen_dram_bandwidth_for_display() local 2075 bandwidth.full = dfixed_mul(dram_channels, yclk); in evergreen_dram_bandwidth_for_display() 2076 bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation); in evergreen_dram_bandwidth_for_display() 2078 return dfixed_trunc(bandwidth); in evergreen_dram_bandwidth_for_display() 2085 fixed20_12 sclk, bandwidth; in evergreen_data_return_bandwidth() local 2095 bandwidth.full = dfixed_mul(a, sclk); in evergreen_data_return_bandwidth() [all …]
|
D | si.c | 2017 fixed20_12 yclk, dram_channels, bandwidth; in dce6_dram_bandwidth() local 2027 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce6_dram_bandwidth() 2028 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in dce6_dram_bandwidth() 2030 return dfixed_trunc(bandwidth); in dce6_dram_bandwidth() 2037 fixed20_12 yclk, dram_channels, bandwidth; in dce6_dram_bandwidth_for_display() local 2047 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce6_dram_bandwidth_for_display() 2048 bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation); in dce6_dram_bandwidth_for_display() 2050 return dfixed_trunc(bandwidth); in dce6_dram_bandwidth_for_display() 2057 fixed20_12 sclk, bandwidth; in dce6_data_return_bandwidth() local 2067 bandwidth.full = dfixed_mul(a, sclk); in dce6_data_return_bandwidth() [all …]
|
D | cik.c | 9220 fixed20_12 yclk, dram_channels, bandwidth; in dce8_dram_bandwidth() local 9230 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce8_dram_bandwidth() 9231 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in dce8_dram_bandwidth() 9233 return dfixed_trunc(bandwidth); in dce8_dram_bandwidth() 9249 fixed20_12 yclk, dram_channels, bandwidth; in dce8_dram_bandwidth_for_display() local 9259 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce8_dram_bandwidth_for_display() 9260 bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation); in dce8_dram_bandwidth_for_display() 9262 return dfixed_trunc(bandwidth); in dce8_dram_bandwidth_for_display() 9278 fixed20_12 sclk, bandwidth; in dce8_data_return_bandwidth() local 9288 bandwidth.full = dfixed_mul(a, sclk); in dce8_data_return_bandwidth() [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/display/msm/ |
D | gpu.txt | 20 configure memory bandwidth scaling per OPP.
|
/linux-4.4.14/drivers/staging/rtl8712/ |
D | rtl871x_mp_ioctl.c | 851 u32 bandwidth; in oid_rt_set_bandwidth_hdl() local 857 bandwidth = *((u32 *)poid_par_priv->information_buf);/*4*/ in oid_rt_set_bandwidth_hdl() 858 if (bandwidth != HT_CHANNEL_WIDTH_20) in oid_rt_set_bandwidth_hdl() 859 bandwidth = HT_CHANNEL_WIDTH_40; in oid_rt_set_bandwidth_hdl() 860 Adapter->mppriv.curr_bandwidth = (u8)bandwidth; in oid_rt_set_bandwidth_hdl()
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | omap-gpmc-smsc9221.dtsi | 6 * bandwidth.
|
D | vexpress-v2p-ca9.dts | 77 max-memory-bandwidth = <130000000>; /* 16bpp @ 63.5MHz */
|
D | vexpress-v2m-rs1.dtsi | 256 max-memory-bandwidth = <50350000>; /* 16bpp @ 25.175MHz */
|
D | vexpress-v2m.dtsi | 255 max-memory-bandwidth = <50350000>; /* 16bpp @ 25.175MHz */
|
/linux-4.4.14/Documentation/devicetree/bindings/display/tilcdc/ |
D | tilcdc.txt | 14 - max-bandwidth: The maximum pixels per second that the memory
|
/linux-4.4.14/drivers/staging/rtl8192u/ |
D | r819xU_phy.h | 81 void rtl8192_SetBWMode(struct net_device *dev, HT_CHANNEL_WIDTH bandwidth,
|
D | r819xU_cmdpkt.h | 33 u8 bandwidth:1; member
|
/linux-4.4.14/Documentation/ABI/stable/ |
D | firewire-cdev | 29 resources (channels, bandwidth) at the bus's IRM 98 bandwidth at the IRM that were marked for kernel-assisted
|
/linux-4.4.14/drivers/media/pci/bt8xx/ |
D | dst_common.h | 127 u32 bandwidth; member
|
D | dst.c | 389 static int dst_set_bandwidth(struct dst_state *state, u32 bandwidth) in dst_set_bandwidth() argument 391 state->bandwidth = bandwidth; in dst_set_bandwidth() 396 switch (bandwidth) { in dst_set_bandwidth() 1567 state->bandwidth = 7000000; in bt8xx_dst_init() 1703 p->bandwidth_hz = state->bandwidth; in dst_get_frontend()
|
/linux-4.4.14/drivers/gpu/ipu-v3/ |
D | ipu-dmfc.c | 235 unsigned long bandwidth) in dmfc_bandwidth_to_slots() argument 239 while (slots * priv->bandwidth_per_slot < bandwidth) in dmfc_bandwidth_to_slots()
|
/linux-4.4.14/drivers/gpu/drm/tilcdc/ |
D | tilcdc_crtc.c | 470 unsigned int bandwidth; in tilcdc_crtc_mode_valid() local 545 bandwidth = mode->hdisplay * mode->vdisplay * in tilcdc_crtc_mode_valid() 547 if (bandwidth > priv->max_bandwidth) { in tilcdc_crtc_mode_valid()
|
/linux-4.4.14/net/dccp/ccids/ |
D | Kconfig | 19 be reasonably fair when competing for bandwidth with TCP-like flows,
|
/linux-4.4.14/block/ |
D | Kconfig.iosched | 28 The CFQ I/O scheduler tries to distribute bandwidth equally
|
/linux-4.4.14/Documentation/video4linux/ |
D | si476x.txt | 42 | | bandwidth is less than threshold 53 0x07 | chbw | Channel filter bandwidth in kHz
|
/linux-4.4.14/Documentation/networking/ |
D | eql.txt | 7 to increase your bandwidth. It will not reduce your latency (i.e. ping 18 It's probably the former. If you find yourself craving more bandwidth, 21 bandwidth. All without having to have a special black box on either 387 second, third, and fourth line's bandwidth. (The bad news is
|
D | vxge.txt | 23 inside the ASIC. Features like independent hw reset, statistics, bandwidth/
|
D | ieee802154.txt | 121 taking into account limited bandwidth, memory, or energy resources that are
|
/linux-4.4.14/net/ipv4/ |
D | Kconfig | 9 intend to participate in the MBONE, a high bandwidth network on top 221 MBONE, a high bandwidth network on top of the Internet which carries 480 control. It is based on end-to-end bandwidth estimation to set 484 account the bandwidth used at the time congestion is experienced. 514 long-RTT, large-bandwidth connections, like when satellite legs are 523 the onset of congestion by estimating the bandwidth. TCP Vegas 542 to utilize only the excess network bandwidth as compared to the 543 ``fair share`` of bandwidth as targeted by TCP.
|
/linux-4.4.14/drivers/net/wan/ |
D | hdlc_fr.c | 133 unsigned int bandwidth; /* Cisco LMI reporting only */ member 593 pvc->state.bandwidth = 0; in fr_set_link_state() 836 bw != pvc->state.bandwidth || in fr_lmi_recv() 840 pvc->state.bandwidth = bw; in fr_lmi_recv() 856 pvc->state.bandwidth = 0; in fr_lmi_recv()
|
/linux-4.4.14/drivers/media/usb/as102/ |
D | as10x_cmd.c | 125 preq->body.set_tune.req.args.bandwidth = ptune->bandwidth; in as10x_cmd_set_tune()
|
/linux-4.4.14/Documentation/i2c/ |
D | summary | 7 types of devices with infrequent or low bandwidth communications needs.
|
/linux-4.4.14/drivers/input/misc/ |
D | bma150.c | 163 .bandwidth = BMA150_BW_50HZ 424 error = bma150_set_bandwidth(bma150, cfg->bandwidth); in bma150_initialize()
|
/linux-4.4.14/drivers/staging/lustre/ |
D | README.txt | 11 hundreds of gigabytes per second of I/O bandwidth.
|
/linux-4.4.14/drivers/uwb/ |
D | Kconfig | 9 UWB is a high-bandwidth, low-power, point-to-point radio
|
/linux-4.4.14/drivers/net/wireless/ath/carl9170/ |
D | wlan.h | 222 u8 bandwidth:2; member
|
/linux-4.4.14/net/atm/ |
D | Kconfig | 11 bandwidth requirements.
|
/linux-4.4.14/include/uapi/linux/dvb/ |
D | frontend.h | 539 fe_bandwidth_t bandwidth; member
|
/linux-4.4.14/drivers/gpu/drm/mgag200/ |
D | mgag200_mode.c | 1567 int64_t active_area, pixels_per_second, bandwidth; in mga_vga_calculate_mode_bandwidth() local 1581 bandwidth = pixels_per_second * bytes_per_pixel * 100; in mga_vga_calculate_mode_bandwidth() 1582 do_div(bandwidth, divisor); in mga_vga_calculate_mode_bandwidth() 1584 return (uint32_t)(bandwidth); in mga_vga_calculate_mode_bandwidth()
|
/linux-4.4.14/drivers/media/usb/msi2500/ |
D | msi2500.c | 697 struct v4l2_ctrl *bandwidth; in msi2500_set_usb_adc() local 705 bandwidth = v4l2_ctrl_find(&dev->hdl, in msi2500_set_usb_adc() 707 v4l2_ctrl_s_ctrl(bandwidth, dev->f_adc); in msi2500_set_usb_adc()
|
/linux-4.4.14/arch/arm64/boot/dts/arm/ |
D | rtsm_ve-motherboard.dtsi | 190 max-memory-bandwidth = <130000000>; /* 16bpp @ 63.5MHz */
|
/linux-4.4.14/Documentation/block/ |
D | ioprio.txt | 31 determines how much io bandwidth the process will get, it's directly mappable
|
/linux-4.4.14/drivers/media/usb/pwc/ |
D | philips.txt | 34 framerates; in addition the webcam uses less bandwidth on the USB bus (handy 100 High compression takes less bandwidth of course, but it could also
|
/linux-4.4.14/Documentation/filesystems/pohmelfs/ |
D | design_notes.txt | 55 workloads and can fully utilize the bandwidth to the servers when doing bulk
|
/linux-4.4.14/arch/avr32/ |
D | Kconfig | 132 will cover even the most exceptional need of memory bandwidth. Together with the onboard
|
/linux-4.4.14/Documentation/device-mapper/ |
D | switch.txt | 36 increased network bandwidth. An initiator could use a simple round
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/bcm/ |
D | brcm,brcmstb.txt | 30 controller (MEMC) to maximize write bandwidth.
|
/linux-4.4.14/drivers/gpu/drm/exynos/ |
D | exynos_dp_core.c | 642 u8 *bandwidth) in exynos_dp_get_max_rx_bandwidth() argument 651 *bandwidth = data; in exynos_dp_get_max_rx_bandwidth()
|
/linux-4.4.14/drivers/media/dvb-frontends/drx39xyj/ |
D | drx_driver.h | 1010 enum drx_bandwidth bandwidth; member 1071 enum drx_bandwidth bandwidth; member
|
D | drxj.c | 10438 int bandwidth = 0; in ctrl_set_channel() local 10466 switch (channel->bandwidth) { in ctrl_set_channel() 10469 channel->bandwidth = DRX_BANDWIDTH_6MHZ; in ctrl_set_channel() 10510 bandwidth = bandwidth_temp / 100; in ctrl_set_channel() 10513 bandwidth++; in ctrl_set_channel() 10515 if (bandwidth <= 6100000) { in ctrl_set_channel() 10516 channel->bandwidth = DRX_BANDWIDTH_6MHZ; in ctrl_set_channel() 10517 } else if ((bandwidth > 6100000) in ctrl_set_channel() 10518 && (bandwidth <= 7100000)) { in ctrl_set_channel() 10519 channel->bandwidth = DRX_BANDWIDTH_7MHZ; in ctrl_set_channel() [all …]
|
/linux-4.4.14/Documentation/ |
D | xillybus.txt | 135 * Being bandwidth efficient under load (using DMA) but also handle small 291 balances between bus bandwidth efficiency (preventing a lot of partially 380 be configured not to send them for a slight reduction of bandwidth.
|
/linux-4.4.14/Documentation/cgroups/ |
D | blkio-controller.txt | 20 Proportional Weight division of bandwidth 77 - Specify a bandwidth rate on particular device for root group. The format 401 to their current writeback bandwidth.
|
/linux-4.4.14/drivers/net/wireless/ath/ath10k/ |
D | mac.c | 2120 if (sta->bandwidth >= IEEE80211_STA_RX_BW_40) { in ath10k_peer_assoc_h_ht() 2343 if (sta->bandwidth == IEEE80211_STA_RX_BW_80) in ath10k_peer_assoc_h_vht() 2421 if (sta->bandwidth == IEEE80211_STA_RX_BW_40) in ath10k_peer_assoc_h_phymode() 2427 if (sta->bandwidth == IEEE80211_STA_RX_BW_40) in ath10k_peer_assoc_h_phymode() 2444 if (sta->bandwidth == IEEE80211_STA_RX_BW_80) in ath10k_peer_assoc_h_phymode() 2446 else if (sta->bandwidth == IEEE80211_STA_RX_BW_40) in ath10k_peer_assoc_h_phymode() 2448 else if (sta->bandwidth == IEEE80211_STA_RX_BW_20) in ath10k_peer_assoc_h_phymode() 2452 if (sta->bandwidth >= IEEE80211_STA_RX_BW_40) in ath10k_peer_assoc_h_phymode() 6282 sta->addr, changed, sta->bandwidth, sta->rx_nss, in ath10k_sta_rc_update() 6288 switch (sta->bandwidth) { in ath10k_sta_rc_update() [all …]
|
/linux-4.4.14/Documentation/fmc/ |
D | mezzanine.txt | 16 structure. This may be needed for high-bandwidth peripherals like fast
|
/linux-4.4.14/Documentation/dmaengine/ |
D | pxa_dma.txt | 32 The high prorities get twice as much bandwidth as the normal, which get twice
|