Home
last modified time | relevance | path

Searched refs:save (Results 1 – 25 of 517) sorted by relevance

12345678910>>...21

/Linux-v5.4/arch/arm/plat-samsung/
Dpm-debug.c27 struct pm_uart_save *save) {} in s3c_pm_arch_update_uart() argument
65 struct pm_uart_save *save = &uart_save; in s3c_pm_save_uarts() local
67 save->ulcon = __raw_readl(regs + S3C2410_ULCON); in s3c_pm_save_uarts()
68 save->ucon = __raw_readl(regs + S3C2410_UCON); in s3c_pm_save_uarts()
69 save->ufcon = __raw_readl(regs + S3C2410_UFCON); in s3c_pm_save_uarts()
70 save->umcon = __raw_readl(regs + S3C2410_UMCON); in s3c_pm_save_uarts()
71 save->ubrdiv = __raw_readl(regs + S3C2410_UBRDIV); in s3c_pm_save_uarts()
74 save->udivslot = __raw_readl(regs + S3C2443_DIVSLOT); in s3c_pm_save_uarts()
77 regs, save->ulcon, save->ucon, save->ufcon, save->ubrdiv); in s3c_pm_save_uarts()
83 struct pm_uart_save *save = &uart_save; in s3c_pm_restore_uarts() local
[all …]
/Linux-v5.4/arch/x86/kvm/
Dsvm.c746 to_svm(vcpu)->vmcb->save.efer = efer | EFER_SVME; in svm_set_efer()
830 svm->int3_rip = rip + svm->vmcb->save.cs.base; in svm_queue_exception()
1173 svm->vmcb->save.rflags &= ~X86_EFLAGS_TF; in disable_nmi_singlestep()
1175 svm->vmcb->save.rflags &= ~X86_EFLAGS_RF; in disable_nmi_singlestep()
1498 struct vmcb_save_area *save = &svm->vmcb->save; in init_vmcb() local
1564 init_seg(&save->es); in init_vmcb()
1565 init_seg(&save->ss); in init_vmcb()
1566 init_seg(&save->ds); in init_vmcb()
1567 init_seg(&save->fs); in init_vmcb()
1568 init_seg(&save->gs); in init_vmcb()
[all …]
/Linux-v5.4/arch/arm/mach-s3c64xx/include/mach/
Dpm-core.h67 struct pm_uart_save *save) in s3c_pm_arch_update_uart() argument
71 u32 save_clk = save->ucon & S3C6400_UCON_CLKMASK; in s3c_pm_arch_update_uart()
78 save->ucon |= S3C2410_UCON_TXILEVEL | S3C2410_UCON_RXILEVEL; in s3c_pm_arch_update_uart()
86 new_ucon = save->ucon; in s3c_pm_arch_update_uart()
103 ucon, new_ucon, save->ucon); in s3c_pm_arch_update_uart()
104 save->ucon = new_ucon; in s3c_pm_arch_update_uart()
/Linux-v5.4/arch/ia64/lib/
Dxor.S14 .save ar.pfs, r31
16 .save ar.lc, r30
18 .save pr, r29
52 .save ar.pfs, r31
54 .save ar.lc, r30
56 .save pr, r29
93 .save ar.pfs, r31
95 .save ar.lc, r30
97 .save pr, r29
137 .save ar.pfs, r31
[all …]
/Linux-v5.4/arch/arm/common/
Dsa1111.c978 struct sa1111_save_data *save; in sa1111_suspend_noirq() local
983 save = kmalloc(sizeof(struct sa1111_save_data), GFP_KERNEL); in sa1111_suspend_noirq()
984 if (!save) in sa1111_suspend_noirq()
986 sachip->saved_state = save; in sa1111_suspend_noirq()
994 save->skcr = readl_relaxed(base + SA1111_SKCR); in sa1111_suspend_noirq()
995 save->skpcr = readl_relaxed(base + SA1111_SKPCR); in sa1111_suspend_noirq()
996 save->skcdr = readl_relaxed(base + SA1111_SKCDR); in sa1111_suspend_noirq()
997 save->skaud = readl_relaxed(base + SA1111_SKAUD); in sa1111_suspend_noirq()
998 save->skpwm0 = readl_relaxed(base + SA1111_SKPWM0); in sa1111_suspend_noirq()
999 save->skpwm1 = readl_relaxed(base + SA1111_SKPWM1); in sa1111_suspend_noirq()
[all …]
Dlocomo.c276 struct locomo_save_data *save; in locomo_suspend() local
279 save = kmalloc(sizeof(struct locomo_save_data), GFP_KERNEL); in locomo_suspend()
280 if (!save) in locomo_suspend()
283 lchip->saved_state = save; in locomo_suspend()
287 save->LCM_GPO = locomo_readl(lchip->base + LOCOMO_GPO); /* GPIO */ in locomo_suspend()
289 save->LCM_SPICT = locomo_readl(lchip->base + LOCOMO_SPI + LOCOMO_SPICT); /* SPI */ in locomo_suspend()
291 save->LCM_GPE = locomo_readl(lchip->base + LOCOMO_GPE); /* GPIO */ in locomo_suspend()
293 save->LCM_ASD = locomo_readl(lchip->base + LOCOMO_ASD); /* ADSTART */ in locomo_suspend()
295 save->LCM_SPIMD = locomo_readl(lchip->base + LOCOMO_SPI + LOCOMO_SPIMD); /* SPI */ in locomo_suspend()
320 struct locomo_save_data *save; in locomo_resume() local
[all …]
/Linux-v5.4/arch/mips/include/asm/
Dfpu.h164 static inline void lose_fpu_inatomic(int save, struct task_struct *tsk) in lose_fpu_inatomic() argument
167 if (save) { in lose_fpu_inatomic()
176 if (save) in lose_fpu_inatomic()
188 static inline void lose_fpu(int save) in lose_fpu() argument
191 lose_fpu_inatomic(save, current); in lose_fpu()
289 static inline void lose_fpu_inatomic(int save, struct task_struct *tsk) in lose_fpu_inatomic() argument
294 static inline void lose_fpu(int save) in lose_fpu() argument
/Linux-v5.4/arch/arm64/kernel/vdso32/
Dsigreturn.S24 .save {r0-r15}
34 .save {r0-r15}
45 .save {r0-r15}
55 .save {r0-r15}
/Linux-v5.4/arch/m68k/ifpsp060/src/
Disp.S1043 mov.l %d0,EXC_A0(%a6) # save incremented value
1045 mov.l %a0,EXC_SAVVAL(%a6) # save in case of access error
1046 mov.b &0x0,EXC_SAVREG(%a6) # save regno, too
1054 mov.l %d0,EXC_A1(%a6) # save incremented value
1056 mov.l %a0,EXC_SAVVAL(%a6) # save in case of access error
1057 mov.b &0x1,EXC_SAVREG(%a6) # save regno, too
1065 mov.l %d0,EXC_A2(%a6) # save incremented value
1067 mov.l %a0,EXC_SAVVAL(%a6) # save in case of access error
1068 mov.b &0x2,EXC_SAVREG(%a6) # save regno, too
1076 mov.l %d0,EXC_A3(%a6) # save incremented value
[all …]
/Linux-v5.4/drivers/gpu/drm/nouveau/nvkm/subdev/pci/
Dagp.c60 u32 save[2]; in nvkm_agp_preinit() local
72 save[0] = nvkm_pci_rd32(pci, 0x0004); in nvkm_agp_preinit()
73 nvkm_pci_wr32(pci, 0x0004, save[0] & ~0x00000004); in nvkm_agp_preinit()
77 save[1] = nvkm_mask(device, 0x000200, 0x00011100, 0x00000000); in nvkm_agp_preinit()
78 nvkm_mask(device, 0x000200, 0x00011100, save[1]); in nvkm_agp_preinit()
81 nvkm_pci_wr32(pci, 0x0004, save[0]); in nvkm_agp_preinit()
/Linux-v5.4/arch/sh/kernel/cpu/sh3/
Dswsusp.S90 ! - save registers in swsusp_arch_regs_cpu0
94 sts pr, r0 ! save pr in r0
95 mov r15, r2 ! save sp in r2
96 mov r8, r5 ! save r8 in r5
98 ldc r1, ssr ! save sr in ssr
103 add r3, r15 ! save from top of structure
109 jsr @r1 ! switch to bank1 and save bank1 r7->r0
116 jsr @k1 ! switch to bank0 and save all regs
/Linux-v5.4/arch/sparc/kernel/
Dwuf.S113 save %g0, %g0, %g0
114 save %g0, %g0, %g0
160 save %g0, %g0, %g0
167 save %g0, %g0, %g0
205 save %g0, %g0, %g0 /* Save to window 'O' */
206 save %g0, %g0, %g0 /* Save to window 'T' */
276 save %g0, %g0, %g0
277 save %g0, %g0, %g0
/Linux-v5.4/fs/ext4/
Dxattr.h139 static inline void ext4_write_lock_xattr(struct inode *inode, int *save) in ext4_write_lock_xattr() argument
142 *save = ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND); in ext4_write_lock_xattr()
146 static inline int ext4_write_trylock_xattr(struct inode *inode, int *save) in ext4_write_trylock_xattr() argument
150 *save = ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND); in ext4_write_trylock_xattr()
155 static inline void ext4_write_unlock_xattr(struct inode *inode, int *save) in ext4_write_unlock_xattr() argument
157 if (*save == 0) in ext4_write_unlock_xattr()
/Linux-v5.4/drivers/pci/
Dvc.c27 u32 *buf, int dwords, bool save) in pci_vc_save_restore_dwords() argument
32 if (save) in pci_vc_save_restore_dwords()
187 bool save) in pci_vc_do_save_buffer() argument
196 pci_vc_do_save_buffer(dev, pos, NULL, save)) { in pci_vc_do_save_buffer()
216 if (save) in pci_vc_do_save_buffer()
254 size / 4, save); in pci_vc_do_save_buffer()
259 if (!save) in pci_vc_do_save_buffer()
301 size / 4, save); in pci_vc_do_save_buffer()
311 if (save) in pci_vc_do_save_buffer()
/Linux-v5.4/arch/parisc/math-emu/
Dsfadd.c43 register unsigned int signless_upper_left, signless_upper_right, save; in sgl_fadd() local
57 Sgl_xortointp1(left,right,/*to*/save); in sgl_fadd()
68 if (Sgl_isinfinity(right) && save!=0) in sgl_fadd()
159 Sgl_xorfromintp1(save,right,/*to*/right); in sgl_fadd()
160 Sgl_xorfromintp1(save,left,/*to*/left); in sgl_fadd()
211 if( (/*signed*/int) save < 0 ) in sgl_fadd()
277 if( (/*signed*/int) save < 0 ) in sgl_fadd()
Dsfsub.c43 register unsigned int signless_upper_left, signless_upper_right, save; in sgl_fsub() local
55 Sgl_xortointp1(left,right,/*to*/save); in sgl_fsub()
66 if (Sgl_isinfinity(right) && save==0) in sgl_fsub()
158 Sgl_xorfromintp1(save,right,/*to*/right); in sgl_fsub()
159 Sgl_xorfromintp1(save,left,/*to*/left); in sgl_fsub()
213 if( (/*signed*/int) save >= 0 ) in sgl_fsub()
280 if( (/*signed*/int) save >= 0 ) in sgl_fsub()
Ddfadd.c41 register unsigned int signless_upper_left, signless_upper_right, save; in dbl_fadd() local
56 Dbl_xortointp1(leftp1,rightp1,/*to*/save); in dbl_fadd()
67 if (Dbl_isinfinity(rightp1,rightp2) && save!=0) in dbl_fadd()
158 Dbl_xorfromintp1(save,rightp1,/*to*/rightp1); in dbl_fadd()
159 Dbl_xorfromintp1(save,leftp1,/*to*/leftp1); in dbl_fadd()
212 if( (/*signed*/int) save < 0 ) in dbl_fadd()
281 if( (/*signed*/int) save < 0 ) in dbl_fadd()
Ddfsub.c42 register unsigned int signless_upper_left, signless_upper_right, save; in dbl_fsub() local
56 Dbl_xortointp1(leftp1,rightp1,/*to*/save); in dbl_fsub()
67 if (Dbl_isinfinity(rightp1,rightp2) && save==0) in dbl_fsub()
159 Dbl_xorfromintp1(save,rightp1,/*to*/rightp1); in dbl_fsub()
160 Dbl_xorfromintp1(save,leftp1,/*to*/leftp1); in dbl_fsub()
215 if( (/*signed*/int) save >= 0 ) in dbl_fsub()
284 if( (/*signed*/int) save >= 0 ) in dbl_fsub()
/Linux-v5.4/arch/arm/include/asm/
Dfpstate.h55 unsigned int save[FP_HARD_SIZE]; /* as yet undefined */ member
61 unsigned int save[FP_SOFT_SIZE]; /* undefined information */ member
67 unsigned int save[IWMMXT_SIZE / sizeof(unsigned int)]; member
/Linux-v5.4/arch/arm/vfp/
Dvfphw.S102 @ On UP, we lazily save the VFP context. As a different
103 @ thread wants ownership of the VFP hardware, save the old
113 VFPFSTMIA r4, r5 @ save the working registers
116 tst r1, #FPEXC_EX @ is there additional state to save?
124 stmia r4, {r1, r5, r6, r8} @ save FPEXC, FPSCR, FPINST, FPINST2
129 @ need to reload it. No need to save the old state as on SMP,
130 @ we always save the state when we switch away from a thread.
/Linux-v5.4/drivers/pinctrl/samsung/
Dpinctrl-exynos.c594 struct exynos_eint_gpio_save *save = bank->soc_priv; in exynos_pinctrl_suspend_bank() local
597 save->eint_con = readl(regs + EXYNOS_GPIO_ECON_OFFSET in exynos_pinctrl_suspend_bank()
599 save->eint_fltcon0 = readl(regs + EXYNOS_GPIO_EFLTCON_OFFSET in exynos_pinctrl_suspend_bank()
601 save->eint_fltcon1 = readl(regs + EXYNOS_GPIO_EFLTCON_OFFSET in exynos_pinctrl_suspend_bank()
604 pr_debug("%s: save con %#010x\n", bank->name, save->eint_con); in exynos_pinctrl_suspend_bank()
605 pr_debug("%s: save fltcon0 %#010x\n", bank->name, save->eint_fltcon0); in exynos_pinctrl_suspend_bank()
606 pr_debug("%s: save fltcon1 %#010x\n", bank->name, save->eint_fltcon1); in exynos_pinctrl_suspend_bank()
636 struct exynos_eint_gpio_save *save = bank->soc_priv; in exynos_pinctrl_resume_bank() local
641 + bank->eint_offset), save->eint_con); in exynos_pinctrl_resume_bank()
644 + 2 * bank->eint_offset), save->eint_fltcon0); in exynos_pinctrl_resume_bank()
[all …]
/Linux-v5.4/arch/arm/lib/
Dmemmove.S38 UNWIND( .save {r0, r4, lr} ) @ in first stmfd block
54 UNWIND( .save {r0, r4, lr} )
55 UNWIND( .save {r5 - r8} ) @ in second stmfd block
111 UNWIND( .save {r0, r4, lr} ) @ still in first stmfd block
145 UNWIND( .save {r0, r4, lr} ) @ still in first stmfd block
158 UNWIND( .save {r0, r4, lr} )
159 UNWIND( .save {r5 - r9} ) @ in new second stmfd block
197 UNWIND( .save {r0, r4, lr} ) @ still in first stmfd block
/Linux-v5.4/arch/arm/mach-ep93xx/
Dcrunch-bits.S79 add r0, r10, #TI_CRUNCH_STATE @ get task crunch save area
91 beq crunch_load @ no owner, skip save
94 cfstr64 mvdx0, [r1, #CRUNCH_MVDX0] @ save 64b registers
115 cfmv32al mvfx0, mvax0 @ save 72b accumulators
140 cfmv32sc mvdx0, dspsc @ save status word
216 add r2, r0, #TI_CRUNCH_STATE @ get task crunch save area
260 add r2, r0, #TI_CRUNCH_STATE @ get task crunch save area
265 @ current crunch values are in the task save area
293 add r2, r0, #TI_CRUNCH_STATE @ get task crunch save area
/Linux-v5.4/drivers/iio/dac/
Dm62332.c29 u8 save[M62332_CHANNELS]; member
135 data->save[0] = data->raw[0]; in m62332_suspend()
136 data->save[1] = data->raw[1]; in m62332_suspend()
152 ret = m62332_set_value(indio_dev, data->save[0], 0); in m62332_resume()
156 return m62332_set_value(indio_dev, data->save[1], 1); in m62332_resume()
/Linux-v5.4/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
Dramgp100.c58 u32 save = nvkm_rd32(device, 0x9a065c) & 0x000000f0; in gp100_ram_init() local
60 if (i != save >> 4) { in gp100_ram_init()
65 nvkm_mask(device, 0x9a065c, 0x000000f0, save); in gp100_ram_init()

12345678910>>...21