/Linux-v5.4/drivers/gpu/drm/radeon/ |
D | rs690.c | 81 tmp.full = dfixed_const(100); in rs690_pm_info() 82 rdev->pm.igp_sideport_mclk.full = dfixed_const(le32_to_cpu(info->info.ulBootUpMemoryClock)); in rs690_pm_info() 83 rdev->pm.igp_sideport_mclk.full = dfixed_div(rdev->pm.igp_sideport_mclk, tmp); in rs690_pm_info() 85 rdev->pm.igp_system_mclk.full = dfixed_const(le16_to_cpu(info->info.usK8MemoryClock)); in rs690_pm_info() 87 rdev->pm.igp_system_mclk.full = dfixed_const(rdev->clock.default_mclk); in rs690_pm_info() 88 rdev->pm.igp_system_mclk.full = dfixed_div(rdev->pm.igp_system_mclk, tmp); in rs690_pm_info() 90 rdev->pm.igp_system_mclk.full = dfixed_const(400); in rs690_pm_info() 91 rdev->pm.igp_ht_link_clk.full = dfixed_const(le16_to_cpu(info->info.usFSBClock)); in rs690_pm_info() 92 rdev->pm.igp_ht_link_width.full = dfixed_const(info->info.ucHTLinkWidth); in rs690_pm_info() 95 tmp.full = dfixed_const(100); in rs690_pm_info() [all …]
|
D | rv515.c | 981 a.full = dfixed_const(100); in rv515_crtc_bandwidth_compute() 982 sclk.full = dfixed_const(selected_sclk); in rv515_crtc_bandwidth_compute() 983 sclk.full = dfixed_div(sclk, a); in rv515_crtc_bandwidth_compute() 985 if (crtc->vsc.full > dfixed_const(2)) in rv515_crtc_bandwidth_compute() 986 wm->num_line_pair.full = dfixed_const(2); in rv515_crtc_bandwidth_compute() 988 wm->num_line_pair.full = dfixed_const(1); in rv515_crtc_bandwidth_compute() 990 b.full = dfixed_const(mode->crtc_hdisplay); in rv515_crtc_bandwidth_compute() 991 c.full = dfixed_const(256); in rv515_crtc_bandwidth_compute() 992 a.full = dfixed_div(b, c); in rv515_crtc_bandwidth_compute() 993 request_fifo_depth.full = dfixed_mul(a, wm->num_line_pair); in rv515_crtc_bandwidth_compute() [all …]
|
D | r100.c | 3244 min_mem_eff.full = dfixed_const_8(0); in r100_bandwidth_update() 3265 temp_ff.full = dfixed_const(temp); in r100_bandwidth_update() 3266 mem_bw.full = dfixed_mul(mclk_ff, temp_ff); in r100_bandwidth_update() 3268 pix_clk.full = 0; in r100_bandwidth_update() 3269 pix_clk2.full = 0; in r100_bandwidth_update() 3270 peak_disp_bw.full = 0; in r100_bandwidth_update() 3272 temp_ff.full = dfixed_const(1000); in r100_bandwidth_update() 3273 pix_clk.full = dfixed_const(mode1->clock); /* convert to fixed point */ in r100_bandwidth_update() 3274 pix_clk.full = dfixed_div(pix_clk, temp_ff); in r100_bandwidth_update() 3275 temp_ff.full = dfixed_const(pixel_bytes1); in r100_bandwidth_update() [all …]
|
/Linux-v5.4/kernel/trace/ |
D | trace_seq.c | 89 if (s->full) in trace_seq_printf() 101 s->full = 1; in trace_seq_printf() 119 if (s->full) in trace_seq_bitmask() 128 s->full = 1; in trace_seq_bitmask() 148 if (s->full) in trace_seq_vprintf() 158 s->full = 1; in trace_seq_vprintf() 182 if (s->full) in trace_seq_bprintf() 192 s->full = 1; in trace_seq_bprintf() 212 if (s->full) in trace_seq_puts() 218 s->full = 1; in trace_seq_puts() [all …]
|
/Linux-v5.4/drivers/gpu/drm/amd/powerplay/hwmgr/ |
D | ppevvmath.h | 42 int full; member 223 temp.full = (X << SHIFT_AMOUNT); in ConvertToFraction() 225 temp.full = 0; in ConvertToFraction() 241 temp.full = (X << SHIFT_AMOUNT); in Convert_ULONG_ToFraction() 243 temp.full = 0; in Convert_ULONG_ToFraction() 280 fValue.full = 0; in GetScaledFraction() 290 fValue.full = fValue.full << times_shifted; in GetScaledFraction() 291 fValue.full = fValue.full >> factor_shifted; in GetScaledFraction() 301 Sum.full = X.full + Y.full; in fAdd() 311 Difference.full = X.full - Y.full; in fSubtract() [all …]
|
/Linux-v5.4/drivers/acpi/acpica/ |
D | utmath.c | 22 u64 full; member 56 multiplicand_ovl.full = multiplicand; in acpi_ut_short_multiply() 73 *out_product = product.full; in acpi_ut_short_multiply() 97 operand_ovl.full = operand; in acpi_ut_short_shift_left() 110 *out_result = operand_ovl.full; in acpi_ut_short_shift_left() 134 operand_ovl.full = operand; in acpi_ut_short_shift_right() 147 *out_result = operand_ovl.full; in acpi_ut_short_shift_right() 272 dividend_ovl.full = dividend; in acpi_ut_short_divide() 287 *out_quotient = quotient.full; in acpi_ut_short_divide() 334 divisor.full = in_divisor; in acpi_ut_divide() [all …]
|
/Linux-v5.4/drivers/power/supply/ |
D | apm_power.c | 40 union power_supply_propval full; member 57 if (!PSY_PROP(bp->bat, CHARGE_FULL_DESIGN, &bp->full) || in __find_main_battery() 58 !PSY_PROP(bp->bat, CHARGE_FULL, &bp->full)) { in __find_main_battery() 59 if (bp->full.intval > bp->max_charge) { in __find_main_battery() 61 bp->max_charge = bp->full.intval; in __find_main_battery() 63 } else if (!PSY_PROP(bp->bat, ENERGY_FULL_DESIGN, &bp->full) || in __find_main_battery() 64 !PSY_PROP(bp->bat, ENERGY_FULL, &bp->full)) { in __find_main_battery() 65 if (bp->full.intval > bp->max_energy) { in __find_main_battery() 67 bp->max_energy = bp->full.intval; in __find_main_battery() 93 &bp.full)) { in find_main_battery() [all …]
|
/Linux-v5.4/scripts/tracing/ |
D | ftrace-bisect.sh | 80 full=$1 84 x=`cat $full | wc -l` 87 cat $full 94 if [ ! -f $full ]; then 95 echo "$full does not exist" 115 sed -ne "1,${x}p" $full > $test 116 sed -ne "$y,\$p" $full > $nontest
|
/Linux-v5.4/sound/soc/intel/atom/sst/ |
D | sst_loader.c | 60 csr.full = sst_shim_read64(sst_drv_ctx->shim, SST_CSR); in intel_sst_reset_dsp_mrfld() 62 dev_dbg(sst_drv_ctx->dev, "value:0x%llx\n", csr.full); in intel_sst_reset_dsp_mrfld() 64 csr.full |= 0x7; in intel_sst_reset_dsp_mrfld() 65 sst_shim_write64(sst_drv_ctx->shim, SST_CSR, csr.full); in intel_sst_reset_dsp_mrfld() 66 csr.full = sst_shim_read64(sst_drv_ctx->shim, SST_CSR); in intel_sst_reset_dsp_mrfld() 68 dev_dbg(sst_drv_ctx->dev, "value:0x%llx\n", csr.full); in intel_sst_reset_dsp_mrfld() 70 csr.full &= ~(0x1); in intel_sst_reset_dsp_mrfld() 71 sst_shim_write64(sst_drv_ctx->shim, SST_CSR, csr.full); in intel_sst_reset_dsp_mrfld() 73 csr.full = sst_shim_read64(sst_drv_ctx->shim, SST_CSR); in intel_sst_reset_dsp_mrfld() 74 dev_dbg(sst_drv_ctx->dev, "value:0x%llx\n", csr.full); in intel_sst_reset_dsp_mrfld() [all …]
|
D | sst_ipc.c | 127 header.full = sst_shim_read64(sst_drv_ctx->shim, SST_IPCX); in sst_post_message_mrfld() 138 header.full = sst_shim_read64(sst_drv_ctx->shim, SST_IPCX); in sst_post_message_mrfld() 161 msg->mrfld_header.p.header_high.full); in sst_post_message_mrfld() 170 sst_shim_write64(sst_drv_ctx->shim, SST_IPCX, msg->mrfld_header.full); in sst_post_message_mrfld() 187 imr.full = sst_shim_read64(sst_drv_ctx->shim, SST_IMRX); in intel_sst_clear_intr_mrfld() 188 isr.full = sst_shim_read64(sst_drv_ctx->shim, SST_ISRX); in intel_sst_clear_intr_mrfld() 192 sst_shim_write64(sst_drv_ctx->shim, SST_ISRX, isr.full); in intel_sst_clear_intr_mrfld() 195 clear_ipc.full = sst_shim_read64(sst_drv_ctx->shim, SST_IPCD); in intel_sst_clear_intr_mrfld() 200 sst_shim_write64(sst_drv_ctx->shim, SST_IPCD, clear_ipc.full); in intel_sst_clear_intr_mrfld() 203 sst_shim_write64(sst_drv_ctx->shim, SST_IMRX, imr.full); in intel_sst_clear_intr_mrfld() [all …]
|
/Linux-v5.4/include/drm/ |
D | drm_fixed.h | 31 u32 full; member 39 #define dfixed_mul(A, B) ((u64)((u64)(A).full * (B).full + 2048) >> 12) 40 #define dfixed_init(A) { .full = dfixed_const((A)) } 41 #define dfixed_init_half(A) { .full = dfixed_const_half((A)) } 42 #define dfixed_trunc(A) ((A).full >> 12) 43 #define dfixed_frac(A) ((A).full & ((1 << 12) - 1)) 56 if (A.full > dfixed_const(non_frac)) in dfixed_ceil() 64 u64 tmp = ((u64)A.full << 13); in dfixed_div() 66 do_div(tmp, B.full); in dfixed_div()
|
/Linux-v5.4/Documentation/ABI/testing/ |
D | sysfs-driver-ufs | 19 device descriptor parameters. The full information about 27 device descriptor parameters. The full information about 35 the UFS device descriptor parameters. The full information 44 The full information about the descriptor could be found 52 the UFS device descriptor parameters. The full information 61 The full information about the descriptor could be found 70 parameters. The full information about the descriptor could 80 parameters. The full information about the descriptor could 89 the UFS device descriptor parameters. The full information 97 the UFS device descriptor parameters. The full information [all …]
|
D | sysfs-bus-pci-drivers-ehci_hcd | 9 "companion" full/low-speed USB-1.1 controllers. When a 11 to the EHCI controller; when a full- or low-speed device 16 at full speed, which can be accomplished by forcing the 24 port 4 on bus 2 to run at full speed: 40 connect at full speed.
|
/Linux-v5.4/Documentation/networking/device_drivers/3com/ |
D | 3c509.txt | 25 3c509B (later revision of the ISA card; supports full-duplex) 27 3c589B (later revision of the 3c589; supports full-duplex) 42 needed except to enable full-duplex mode (see below). An example of the syntax 59 The v1.18c driver added support for the 3c509B's full-duplex capabilities. 60 In order to enable and successfully use full-duplex mode, three conditions 63 (a) You must have a Etherlink III card model whose hardware supports full- 65 positively known to support full-duplex are the 3c509B (ISA bus) and 3c589B 67 full-duplex mode; these include the original 3c509 (no "B"), the original 72 AUI and 10base2 network cabling is physically incapable of full-duplex 76 itself full-duplex capable. This is almost certainly one of two things: a full- [all …]
|
/Linux-v5.4/drivers/gpu/drm/amd/amdgpu/ |
D | dce_v6_0.c | 520 a.full = dfixed_const(1000); in dce_v6_0_dram_bandwidth() 521 yclk.full = dfixed_const(wm->yclk); in dce_v6_0_dram_bandwidth() 522 yclk.full = dfixed_div(yclk, a); in dce_v6_0_dram_bandwidth() 523 dram_channels.full = dfixed_const(wm->dram_channels * 4); in dce_v6_0_dram_bandwidth() 524 a.full = dfixed_const(10); in dce_v6_0_dram_bandwidth() 525 dram_efficiency.full = dfixed_const(7); in dce_v6_0_dram_bandwidth() 526 dram_efficiency.full = dfixed_div(dram_efficiency, a); in dce_v6_0_dram_bandwidth() 527 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce_v6_0_dram_bandwidth() 528 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in dce_v6_0_dram_bandwidth() 549 a.full = dfixed_const(1000); in dce_v6_0_dram_bandwidth_for_display() [all …]
|
D | dce_v8_0.c | 656 a.full = dfixed_const(1000); in dce_v8_0_dram_bandwidth() 657 yclk.full = dfixed_const(wm->yclk); in dce_v8_0_dram_bandwidth() 658 yclk.full = dfixed_div(yclk, a); in dce_v8_0_dram_bandwidth() 659 dram_channels.full = dfixed_const(wm->dram_channels * 4); in dce_v8_0_dram_bandwidth() 660 a.full = dfixed_const(10); in dce_v8_0_dram_bandwidth() 661 dram_efficiency.full = dfixed_const(7); in dce_v8_0_dram_bandwidth() 662 dram_efficiency.full = dfixed_div(dram_efficiency, a); in dce_v8_0_dram_bandwidth() 663 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce_v8_0_dram_bandwidth() 664 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in dce_v8_0_dram_bandwidth() 685 a.full = dfixed_const(1000); in dce_v8_0_dram_bandwidth_for_display() [all …]
|
D | dce_v10_0.c | 721 a.full = dfixed_const(1000); in dce_v10_0_dram_bandwidth() 722 yclk.full = dfixed_const(wm->yclk); in dce_v10_0_dram_bandwidth() 723 yclk.full = dfixed_div(yclk, a); in dce_v10_0_dram_bandwidth() 724 dram_channels.full = dfixed_const(wm->dram_channels * 4); in dce_v10_0_dram_bandwidth() 725 a.full = dfixed_const(10); in dce_v10_0_dram_bandwidth() 726 dram_efficiency.full = dfixed_const(7); in dce_v10_0_dram_bandwidth() 727 dram_efficiency.full = dfixed_div(dram_efficiency, a); in dce_v10_0_dram_bandwidth() 728 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce_v10_0_dram_bandwidth() 729 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in dce_v10_0_dram_bandwidth() 750 a.full = dfixed_const(1000); in dce_v10_0_dram_bandwidth_for_display() [all …]
|
D | dce_v11_0.c | 747 a.full = dfixed_const(1000); in dce_v11_0_dram_bandwidth() 748 yclk.full = dfixed_const(wm->yclk); in dce_v11_0_dram_bandwidth() 749 yclk.full = dfixed_div(yclk, a); in dce_v11_0_dram_bandwidth() 750 dram_channels.full = dfixed_const(wm->dram_channels * 4); in dce_v11_0_dram_bandwidth() 751 a.full = dfixed_const(10); in dce_v11_0_dram_bandwidth() 752 dram_efficiency.full = dfixed_const(7); in dce_v11_0_dram_bandwidth() 753 dram_efficiency.full = dfixed_div(dram_efficiency, a); in dce_v11_0_dram_bandwidth() 754 bandwidth.full = dfixed_mul(dram_channels, yclk); in dce_v11_0_dram_bandwidth() 755 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in dce_v11_0_dram_bandwidth() 776 a.full = dfixed_const(1000); in dce_v11_0_dram_bandwidth_for_display() [all …]
|
/Linux-v5.4/Documentation/devicetree/bindings/iio/afe/ |
D | voltage-divider.txt | 5 interesting voltage is often the voltage over the full resistance 27 See full-ohms. 28 - full-ohms : Resistance R + Rout for the full divider. The io-channel 41 full-ohms = <222>; /* 200 + 22 */
|
/Linux-v5.4/Documentation/devicetree/bindings/power/supply/ |
D | bq27xxx.txt | 37 + energy-full-design-microwatt-hours 38 + charge-full-design-microamp-hours 40 Both or neither of the *-full-design-*-hours properties must be set. 48 energy-full-design-microwatt-hours = <5290000>; 49 charge-full-design-microamp-hours = <1430000>;
|
/Linux-v5.4/sound/usb/line6/ |
D | midibuf.c | 39 return (this->pos_read == this->pos_write) && !this->full; in midibuf_is_empty() 44 return this->full; in midibuf_is_full() 49 this->pos_read = this->pos_write = this->full = 0; in line6_midibuf_reset() 121 this->full = 1; in line6_midibuf_write() 228 this->full = 0; in line6_midibuf_read() 240 this->full = 0; in line6_midibuf_ignore()
|
/Linux-v5.4/Documentation/devicetree/bindings/net/dsa/ |
D | dsa.txt | 37 towards the phandle ports. The full routing 112 full-duplex; 121 full-duplex; 165 full-duplex; 175 full-duplex; 228 full-duplex; 239 full-duplex; 252 full-duplex;
|
/Linux-v5.4/drivers/hwmon/ |
D | max197.c | 125 int full = data->limit; in max197_store_range() local 131 if (value <= -full) in max197_store_range() 132 value = -full; in max197_store_range() 138 if (value >= full) in max197_store_range() 139 value = full; in max197_store_range() 153 } else if (value == -full) { in max197_store_range() 159 } else if (value == full) { in max197_store_range()
|
/Linux-v5.4/net/dccp/ |
D | qpolicy.c | 71 bool (*full) (struct sock *sk); member 78 .full = qpolicy_simple_full, 84 .full = qpolicy_prio_full, 100 return qpol_table[dccp_sk(sk)->dccps_qpolicy].full(sk); in dccp_qpolicy_full()
|
/Linux-v5.4/Documentation/networking/device_drivers/toshiba/ |
D | spider_net.txt | 27 "full" and "not-in-use". An "empty" or "ready" descriptor is ready 28 to receive data from the hardware. A "full" descriptor has data in it, 30 descriptor is neither empty or full; it is simply not ready. It may 37 buffers, and marks them "full". The OS follows up, taking the full 44 marks it full, and advances the GDACTDPA by one. Thus, when there is 45 flowing RX traffic, every descr behind it should be marked "full", 51 hardware is ahead, the tail pointer will be pointing at a "full" 54 all of the descrs in front of the tail pointer should be "full", and 100 The status x4... corresponds to "full" and status xa... corresponds 107 "full" == SPIDER_NET_DESCR_FRAME_END == 0x4 [all …]
|