Home
last modified time | relevance | path

Searched refs:mv (Results 1 – 25 of 121) sorted by relevance

12345

/linux-5.19.10/arch/riscv/kernel/
Dkexec_relocate.S29 mv s0, a0
30 mv s1, a1
31 mv s2, a2
32 mv s3, a3
33 mv s4, zero
36 mv s7, a4
37 mv s8, zero
38 mv s9, zero
39 mv s10, zero
40 mv s11, zero
[all …]
Dmcount.S67 mv t6, s0
71 mv a0, t6
74 mv a1, a0
105 mv a1, ra
121 mv a0, ra
/linux-5.19.10/drivers/gpu/drm/nouveau/nvkm/subdev/volt/
Dgk20a.c54 int mv; in gk20a_volt_get_cvb_voltage() local
56 mv = DIV_ROUND_CLOSEST(coef->c2 * speedo, s_scale); in gk20a_volt_get_cvb_voltage()
57 mv = DIV_ROUND_CLOSEST((mv + coef->c1) * speedo, s_scale) + coef->c0; in gk20a_volt_get_cvb_voltage()
58 return mv; in gk20a_volt_get_cvb_voltage()
70 int cvb_mv, mv; in gk20a_volt_get_cvb_t_voltage() local
74 mv = DIV_ROUND_CLOSEST(coef->c3 * speedo, s_scale) + coef->c4 + in gk20a_volt_get_cvb_t_voltage()
76 mv = DIV_ROUND_CLOSEST(mv * temp, t_scale) + cvb_mv; in gk20a_volt_get_cvb_t_voltage()
77 return mv; in gk20a_volt_get_cvb_t_voltage()
84 int mv; in gk20a_volt_calc_voltage() local
86 mv = gk20a_volt_get_cvb_t_voltage(speedo, -10, 100, 10, coef); in gk20a_volt_calc_voltage()
[all …]
/linux-5.19.10/arch/sh/kernel/
Dmachvec.c22 #define for_each_mv(mv) \ argument
23 for ((mv) = (struct sh_machine_vector *)&__machvec_start; \
24 (mv) && (unsigned long)(mv) < (unsigned long)&__machvec_end; \
25 (mv)++)
29 struct sh_machine_vector *mv; in get_mv_byname() local
31 for_each_mv(mv) in get_mv_byname()
32 if (strcasecmp(name, mv->mv_name) == 0) in get_mv_byname()
33 return mv; in get_mv_byname()
/linux-5.19.10/include/dt-bindings/usb/
Dpd.h29 #define PDO_FIXED_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_FIXED_VOLT_SHIFT) argument
32 #define PDO_FIXED(mv, ma, flags) \ argument
34 PDO_FIXED_VOLT(mv) | PDO_FIXED_CURR(ma))
42 #define PDO_BATT_MIN_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_BATT_MIN_VOLT_SHIFT) argument
43 #define PDO_BATT_MAX_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_BATT_MAX_VOLT_SHIFT) argument
54 #define PDO_VAR_MIN_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_VAR_MIN_VOLT_SHIFT) argument
55 #define PDO_VAR_MAX_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_VAR_MAX_VOLT_SHIFT) argument
76 #define PDO_PPS_APDO_MIN_VOLT(mv) \ argument
77 ((((mv) / 100) & PDO_PPS_APDO_VOLT_MASK) << PDO_PPS_APDO_MIN_VOLT_SHIFT)
78 #define PDO_PPS_APDO_MAX_VOLT(mv) \ argument
[all …]
/linux-5.19.10/drivers/clk/tegra/
Dcvb.c17 int mv; in get_cvb_voltage() local
20 mv = DIV_ROUND_CLOSEST(cvb->c2 * speedo, s_scale); in get_cvb_voltage()
21 mv = DIV_ROUND_CLOSEST((mv + cvb->c1) * speedo, s_scale) + cvb->c0; in get_cvb_voltage()
22 return mv; in get_cvb_voltage()
25 static int round_cvb_voltage(int mv, int v_scale, in round_cvb_voltage() argument
33 uv = max(mv * 1000, offset) - offset; in round_cvb_voltage()
43 static int round_voltage(int mv, const struct rail_alignment *align, int up) in round_voltage() argument
48 uv = max(mv * 1000, align->offset_uv) - align->offset_uv; in round_voltage()
52 return mv; in round_voltage()
/linux-5.19.10/include/linux/usb/
Dpd.h234 #define PDO_FIXED_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_FIXED_VOLT_SHIFT) argument
237 #define PDO_FIXED(mv, ma, flags) \ argument
239 PDO_FIXED_VOLT(mv) | PDO_FIXED_CURR(ma))
247 #define PDO_BATT_MIN_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_BATT_MIN_VOLT_SHIFT) argument
248 #define PDO_BATT_MAX_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_BATT_MAX_VOLT_SHIFT) argument
259 #define PDO_VAR_MIN_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_VAR_MIN_VOLT_SHIFT) argument
260 #define PDO_VAR_MAX_VOLT(mv) ((((mv) / 50) & PDO_VOLT_MASK) << PDO_VAR_MAX_VOLT_SHIFT) argument
283 #define PDO_PPS_APDO_MIN_VOLT(mv) \ argument
284 ((((mv) / 100) & PDO_PPS_APDO_VOLT_MASK) << PDO_PPS_APDO_MIN_VOLT_SHIFT)
285 #define PDO_PPS_APDO_MAX_VOLT(mv) \ argument
[all …]
/linux-5.19.10/drivers/media/v4l2-core/
Dv4l2-vp9.c1075 .mv = {
1361 u8 *p = probs->mv.joint; in update_mv_probs()
1362 const u8 *d = deltas->mv.joint; in update_mv_probs()
1369 for (i = 0; i < ARRAY_SIZE(probs->mv.sign); i++) { in update_mv_probs()
1370 p = probs->mv.sign; in update_mv_probs()
1371 d = deltas->mv.sign; in update_mv_probs()
1374 p = probs->mv.classes[i]; in update_mv_probs()
1375 d = deltas->mv.classes[i]; in update_mv_probs()
1376 for (j = 0; j < ARRAY_SIZE(probs->mv.classes[0]); j++) in update_mv_probs()
1379 p = probs->mv.class0_bit; in update_mv_probs()
[all …]
/linux-5.19.10/net/sched/
Dsch_dsmark.c49 struct mask_value *mv; member
142 p->mv[*arg - 1].value = nla_get_u8(tb[TCA_DSMARK_VALUE]); in dsmark_change()
145 p->mv[*arg - 1].mask = nla_get_u8(tb[TCA_DSMARK_MASK]); in dsmark_change()
161 p->mv[arg - 1].mask = 0xff; in dsmark_delete()
162 p->mv[arg - 1].value = 0; in dsmark_delete()
179 if (p->mv[i].mask == 0xff && !p->mv[i].value) in dsmark_walk()
309 ipv4_change_dsfield(ip_hdr(skb), p->mv[index].mask, in dsmark_dequeue()
310 p->mv[index].value); in dsmark_dequeue()
313 ipv6_change_dsfield(ipv6_hdr(skb), p->mv[index].mask, in dsmark_dequeue()
314 p->mv[index].value); in dsmark_dequeue()
[all …]
/linux-5.19.10/drivers/media/platform/mediatek/vcodec/vdec/
Dvdec_vp9_req_lat_if.c361 struct vdec_vp9_slice_mem mv[2]; member
471 struct mtk_vcodec_mem mv[2]; member
592 if (instance->mv[i].va) in vdec_vp9_slice_alloc_working_buffer()
593 mtk_vcodec_mem_free(ctx, &instance->mv[i]); in vdec_vp9_slice_alloc_working_buffer()
594 instance->mv[i].size = size; in vdec_vp9_slice_alloc_working_buffer()
595 if (mtk_vcodec_mem_alloc(ctx, &instance->mv[i])) in vdec_vp9_slice_alloc_working_buffer()
639 for (i = 0; i < ARRAY_SIZE(instance->mv); i++) { in vdec_vp9_slice_free_working_buffer()
640 if (instance->mv[i].va) in vdec_vp9_slice_free_working_buffer()
641 mtk_vcodec_mem_free(ctx, &instance->mv[i]); in vdec_vp9_slice_free_working_buffer()
971 vsi->mv[i].dma_addr = instance->mv[i].dma_addr; in vdec_vp9_slice_setup_lat_buffer()
[all …]
/linux-5.19.10/drivers/scsi/
Dch.c701 struct changer_move mv; in ch_ioctl() local
703 if (copy_from_user(&mv, argp, sizeof (mv))) in ch_ioctl()
706 if (0 != ch_checkrange(ch, mv.cm_fromtype, mv.cm_fromunit) || in ch_ioctl()
707 0 != ch_checkrange(ch, mv.cm_totype, mv.cm_tounit )) { in ch_ioctl()
714 ch->firsts[mv.cm_fromtype] + mv.cm_fromunit, in ch_ioctl()
715 ch->firsts[mv.cm_totype] + mv.cm_tounit, in ch_ioctl()
716 mv.cm_flags & CM_INVERT); in ch_ioctl()
723 struct changer_exchange mv; in ch_ioctl() local
725 if (copy_from_user(&mv, argp, sizeof (mv))) in ch_ioctl()
728 if (0 != ch_checkrange(ch, mv.ce_srctype, mv.ce_srcunit ) || in ch_ioctl()
[all …]
Dhptiop.c163 u32 inbound_head = readl(&hba->u.mv.mu->inbound_head); in mv_inbound_write()
169 memcpy_toio(&hba->u.mv.mu->inbound_q[inbound_head], &p, 8); in mv_inbound_write()
170 writel(head, &hba->u.mv.mu->inbound_head); in mv_inbound_write()
172 &hba->u.mv.regs->inbound_doorbell); in mv_inbound_write()
208 status = readl(&hba->u.mv.regs->outbound_doorbell); in iop_intr_mv()
209 writel(~status, &hba->u.mv.regs->outbound_doorbell); in iop_intr_mv()
213 msg = readl(&hba->u.mv.mu->outbound_msg); in iop_intr_mv()
222 while ((tag = mv_outbound_read(hba->u.mv.mu))) in iop_intr_mv()
323 struct hpt_iop_request_header *reqhdr = hba->u.mv.internal_req; in iop_send_sync_request_mv()
328 mv_inbound_write(hba->u.mv.internal_req_phy | in iop_send_sync_request_mv()
[all …]
/linux-5.19.10/arch/riscv/purgatory/
Dentry.S21 mv s0, a0 /* The hartid of the current hart */
22 mv s1, a1 /* Phys address of the FDT image */
27 mv a0, s0
28 mv a1, s1
/linux-5.19.10/arch/riscv/lib/
Dtishift.S20 mv a1,a2
27 mv a1,a2
43 mv a1,a2
50 mv a1,a2
66 mv a0,a2
73 mv a0,a2
/linux-5.19.10/drivers/staging/media/rkvdec/
Drkvdec-vp9.c69 } mv; member
289 memcpy(rkprobs->mv.joint, probs->mv.joint, in init_inter_probs()
290 sizeof(rkprobs->mv.joint)); in init_inter_probs()
291 memcpy(rkprobs->mv.sign, probs->mv.sign, in init_inter_probs()
292 sizeof(rkprobs->mv.sign)); in init_inter_probs()
293 memcpy(rkprobs->mv.classes, probs->mv.classes, in init_inter_probs()
294 sizeof(rkprobs->mv.classes)); in init_inter_probs()
295 memcpy(rkprobs->mv.class0_bit, probs->mv.class0_bit, in init_inter_probs()
296 sizeof(rkprobs->mv.class0_bit)); in init_inter_probs()
297 memcpy(rkprobs->mv.bits, probs->mv.bits, in init_inter_probs()
[all …]
/linux-5.19.10/drivers/staging/media/hantro/
Dhantro_g2_vp9_dec.c662 struct hantro_g2_mv_probs *mv; in config_probs() local
739 mv = &adaptive->mv; in config_probs()
741 memcpy(mv->joint, probs->mv.joint, sizeof(mv->joint)); in config_probs()
742 memcpy(mv->sign, probs->mv.sign, sizeof(mv->sign)); in config_probs()
743 memcpy(mv->class0_bit, probs->mv.class0_bit, sizeof(mv->class0_bit)); in config_probs()
744 memcpy(mv->fr, probs->mv.fr, sizeof(mv->fr)); in config_probs()
745 memcpy(mv->class0_hp, probs->mv.class0_hp, sizeof(mv->class0_hp)); in config_probs()
746 memcpy(mv->hp, probs->mv.hp, sizeof(mv->hp)); in config_probs()
747 memcpy(mv->classes, probs->mv.classes, sizeof(mv->classes)); in config_probs()
748 memcpy(mv->class0_fr, probs->mv.class0_fr, sizeof(mv->class0_fr)); in config_probs()
[all …]
/linux-5.19.10/net/bridge/
Dbr_mst.c148 int br_mst_vlan_set_msti(struct net_bridge_vlan *mv, u16 msti) in br_mst_vlan_set_msti() argument
152 .orig_dev = mv->br->dev, in br_mst_vlan_set_msti()
154 .vid = mv->vid, in br_mst_vlan_set_msti()
163 if (mv->msti == msti) in br_mst_vlan_set_msti()
166 err = switchdev_port_attr_set(mv->br->dev, &attr, NULL); in br_mst_vlan_set_msti()
170 mv->msti = msti; in br_mst_vlan_set_msti()
172 list_for_each_entry(p, &mv->br->port_list, list) { in br_mst_vlan_set_msti()
175 pv = br_vlan_find(vg, mv->vid); in br_mst_vlan_set_msti()
/linux-5.19.10/arch/hexagon/
DMakefile22 cflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
23 aflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
24 ldflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
/linux-5.19.10/drivers/scsi/aic7xxx/aicasm/
DMakefile70 mv $(<:.y=).tab.c $(OUTDIR)/$(<:.y=.c)
71 mv $(<:.y=).tab.h $(OUTDIR)/$(<:.y=.h)
79 mv $(<:.y=).tab.c $(OUTDIR)/$(<:.y=.c)
80 mv $(<:.y=).tab.h $(OUTDIR)/$(<:.y=.h)
/linux-5.19.10/tools/power/cpupower/debug/i386/
Dcentrino-decode.c66 unsigned int mv; in decode() local
70 mv = (((msr & 0xFF) * 16) + 700); in decode()
72 printf("0x%x means multiplier %d @ %d mV\n", msr, multiplier, mv); in decode()
/linux-5.19.10/Documentation/devicetree/bindings/input/
Dti,drv260x.txt30 - vib-rated-mv - The rated voltage of the actuator in millivolts.
33 - vib-overdrive-mv - The overdrive voltage of the actuator in millivolts.
45 vib-rated-mv = <3200>;
46 vib-overdrive-mv = <3200>;
/linux-5.19.10/arch/sparc/boot/
Dinstall.sh20 mv $4/vmlinuz $4/vmlinuz.old
24 mv $4/System.map $4/System.old
/linux-5.19.10/arch/nios2/boot/
Dinstall.sh20 mv $4/vmlinuz $4/vmlinuz.old
24 mv $4/System.map $4/System.old
/linux-5.19.10/arch/m68k/
Dinstall.sh20 mv $4/vmlinuz $4/vmlinuz.old
24 mv $4/System.map $4/System.old
/linux-5.19.10/arch/s390/boot/
Dinstall.sh20 if [ -f $4/vmlinuz-$1 ]; then mv $4/vmlinuz-$1 $4/vmlinuz-$1.old; fi
21 if [ -f $4/System.map-$1 ]; then mv $4/System.map-$1 $4/System.map-$1.old; fi

12345