/linux/arch/powerpc/kernel/ptrace/ |
H A D | ptrace-decl.h | 73 int fpr_set(struct task_struct *target, const struct user_regset *regset, 79 int vsr_active(struct task_struct *target, const struct user_regset *regset); 81 int vsr_set(struct task_struct *target, const struct user_regset *regset, 87 int vr_active(struct task_struct *target, const struct user_regset *regset); 89 int vr_set(struct task_struct *target, const struct user_regset *regset, 95 int evr_active(struct task_struct *target, const struct user_regset *regset); 97 int evr_set(struct task_struct *target, const struct user_regset *regset, 104 const struct user_regset *regset, 108 const struct user_regset *regset, 121 int tm_cgpr_active(struct task_struct *target, const struct user_regset *regset); [all …]
|
H A D | ptrace-tm.c | 58 int tm_cgpr_active(struct task_struct *target, const struct user_regset *regset) in tm_cgpr_active() argument 66 return regset->n; in tm_cgpr_active() 86 int tm_cgpr_get(struct task_struct *target, const struct user_regset *regset, in tm_cgpr_get() argument 134 int tm_cgpr_set(struct task_struct *target, const struct user_regset *regset, in tm_cgpr_set() argument 200 int tm_cfpr_active(struct task_struct *target, const struct user_regset *regset) in tm_cfpr_active() argument 208 return regset->n; in tm_cfpr_active() 229 int tm_cfpr_get(struct task_struct *target, const struct user_regset *regset, in tm_cfpr_get() argument 273 int tm_cfpr_set(struct task_struct *target, const struct user_regset *regset, in tm_cfpr_set() argument 312 int tm_cvmx_active(struct task_struct *target, const struct user_regset *regset) in tm_cvmx_active() argument 320 return regset->n; in tm_cvmx_active() [all …]
|
H A D | ptrace-view.c | 218 static int gpr_get(struct task_struct *target, const struct user_regset *regset, in gpr_get() argument 238 static int gpr_set(struct task_struct *target, const struct user_regset *regset, in gpr_set() argument 290 static int ppr_get(struct task_struct *target, const struct user_regset *regset, in ppr_get() argument 299 static int ppr_set(struct task_struct *target, const struct user_regset *regset, in ppr_set() argument 310 static int dscr_get(struct task_struct *target, const struct user_regset *regset, in dscr_get() argument 315 static int dscr_set(struct task_struct *target, const struct user_regset *regset, in dscr_set() argument 324 static int tar_get(struct task_struct *target, const struct user_regset *regset, in tar_get() argument 329 static int tar_set(struct task_struct *target, const struct user_regset *regset, in tar_set() argument 337 static int ebb_active(struct task_struct *target, const struct user_regset *regset) in ebb_active() argument 343 return regset->n; in ebb_active() [all …]
|
H A D | ptrace-vsx.c | 21 int fpr_get(struct task_struct *target, const struct user_regset *regset, in fpr_get() argument 49 int fpr_set(struct task_struct *target, const struct user_regset *regset, in fpr_set() argument 79 int vsr_active(struct task_struct *target, const struct user_regset *regset) in vsr_active() argument 82 return target->thread.used_vsr ? regset->n : 0; in vsr_active() 97 int vsr_get(struct task_struct *target, const struct user_regset *regset, in vsr_get() argument 126 int vsr_set(struct task_struct *target, const struct user_regset *regset, in vsr_set() argument
|
H A D | ptrace-spe.c | 19 int evr_active(struct task_struct *target, const struct user_regset *regset) in evr_active() argument 22 return target->thread.used_spe ? regset->n : 0; in evr_active() 25 int evr_get(struct task_struct *target, const struct user_regset *regset, in evr_get() argument 39 int evr_set(struct task_struct *target, const struct user_regset *regset, in evr_set() argument
|
H A D | ptrace-altivec.c | 23 int vr_active(struct task_struct *target, const struct user_regset *regset) in vr_active() argument 26 return target->thread.used_vr ? regset->n : 0; in vr_active() 43 int vr_get(struct task_struct *target, const struct user_regset *regset, in vr_get() argument 79 int vr_set(struct task_struct *target, const struct user_regset *regset, in vr_set() argument
|
/linux/kernel/ |
H A D | regset.c | 4 #include <linux/regset.h> 7 const struct user_regset *regset, in __regset_get() argument 14 if (!regset->regset_get) in __regset_get() 16 if (size > regset->n * regset->size) in __regset_get() 17 size = regset->n * regset->size; in __regset_get() 23 res = regset->regset_get(target, regset, in __regset_get() 34 const struct user_regset *regset, in regset_get() argument 43 regset_get_alloc(struct task_struct * target,const struct user_regset * regset,unsigned int size,void ** data) regset_get_alloc() argument 67 const struct user_regset *regset = &view->regsets[setno]; copy_regset_to_user() local [all...] |
/linux/drivers/gpu/drm/i915/gt/uc/ |
H A D | intel_guc_ads.c | 68 struct guc_mmio_reg regset[]; member 112 return offsetof(struct __guc_ads_blob, regset); in guc_ads_regset_offset() 274 __mmio_reg_add(struct temp_regset *regset, struct guc_mmio_reg *reg) in __mmio_reg_add() argument 276 u32 pos = regset->storage_used; in __mmio_reg_add() 279 if (pos >= regset->storage_max) { in __mmio_reg_add() 281 struct guc_mmio_reg *r = krealloc(regset->storage, in __mmio_reg_add() 289 regset->registers = r + (regset->registers - regset->storage); in __mmio_reg_add() 290 regset->storage = r; in __mmio_reg_add() 291 regset->storage_max = size / sizeof(*slot); in __mmio_reg_add() 294 slot = ®set->storage[pos]; in __mmio_reg_add() [all …]
|
/linux/drivers/crypto/ccree/ |
H A D | cc_debugfs.c | 66 struct debugfs_regset32 *regset, *verset; in cc_debugfs_init() local 68 regset = devm_kzalloc(dev, sizeof(*regset), GFP_KERNEL); in cc_debugfs_init() 69 if (!regset) in cc_debugfs_init() 72 regset->regs = debug_regs; in cc_debugfs_init() 73 regset->nregs = ARRAY_SIZE(debug_regs); in cc_debugfs_init() 74 regset->base = drvdata->cc_base; in cc_debugfs_init() 75 regset->dev = dev; in cc_debugfs_init() 80 debugfs_create_regset32("regs", 0400, drvdata->dir, regset); in cc_debugfs_init()
|
/linux/arch/x86/kernel/fpu/ |
H A D | regset.c | 23 int regset_fpregs_active(struct task_struct *target, const struct user_regset *regset) in regset_fpregs_active() argument 25 return regset->n; in regset_fpregs_active() 28 int regset_xregset_fpregs_active(struct task_struct *target, const struct user_regset *regset) in regset_xregset_fpregs_active() argument 31 return regset->n; in regset_xregset_fpregs_active() 71 int xfpregs_get(struct task_struct *target, const struct user_regset *regset, in xfpregs_get() argument 90 int xfpregs_set(struct task_struct *target, const struct user_regset *regset, in xfpregs_set() argument 130 int xstateregs_get(struct task_struct *target, const struct user_regset *regset, in xstateregs_get() argument 142 int xstateregs_set(struct task_struct *target, const struct user_regset *regset, in xstateregs_set() argument 179 int ssp_active(struct task_struct *target, const struct user_regset *regset) in ssp_active() argument 182 return regset->n; in ssp_active() [all …]
|
/linux/arch/x86/um/ |
H A D | ptrace.c | 74 const struct user_regset *regset, in fpregs_legacy_get() argument 95 const struct user_regset *regset, in fpregs_legacy_set() argument 131 const struct user_regset *regset, in genregs_get() argument 142 const struct user_regset *regset, in genregs_set() argument 173 static int generic_fpregs_active(struct task_struct *target, const struct user_regset *regset) in generic_fpregs_active() argument 175 return regset->n; in generic_fpregs_active() 179 const struct user_regset *regset, in generic_fpregs_get() argument 184 membuf_write(&to, fpregs, regset->size * regset->n); in generic_fpregs_get() 189 const struct user_regset *regset, in generic_fpregs_set() argument 196 fpregs, 0, regset->size * regset->n); in generic_fpregs_set()
|
/linux/include/linux/ |
H A D | regset.h | 95 const struct user_regset *regset); 98 const struct user_regset *regset, 118 const struct user_regset *regset, 144 const struct user_regset *regset, 301 const struct user_regset *regset, 305 const struct user_regset *regset, 329 const struct user_regset *regset = &view->regsets[setno]; in copy_regset_from_user() local 331 if (!regset->set) in copy_regset_from_user() 337 return regset->set(target, regset, offset, size, NULL, data); in copy_regset_from_user()
|
/linux/arch/arm64/kernel/ |
H A D | ptrace.c | 475 const struct user_regset *regset, in hw_break_get() argument 478 unsigned int note_type = regset->core_note_type; in hw_break_get() 507 const struct user_regset *regset, in hw_break_set() argument 511 unsigned int note_type = regset->core_note_type; in hw_break_set() 521 limit = regset->n * regset->size; in hw_break_set() 556 const struct user_regset *regset, in gpr_get() argument 563 static int gpr_set(struct task_struct *target, const struct user_regset *regset, in gpr_set() argument 581 static int fpr_active(struct task_struct *target, const struct user_regset *regset) in fpr_active() argument 585 return regset->n; in fpr_active() 592 const struct user_regset *regset, in __fpr_get() argument [all …]
|
/linux/arch/loongarch/kernel/ |
H A D | ptrace.c | 27 #include <linux/regset.h> 73 /* regset get/set implementations */ 76 const struct user_regset *regset, in gpr_get() argument 91 const struct user_regset *regset, in gpr_set() argument 146 const struct user_regset *regset, in fpr_get() argument 198 const struct user_regset *regset, in fpr_set() argument 230 const struct user_regset *regset, in cfg_get() argument 249 const struct user_regset *regset, in cfg_set() argument 259 const struct user_regset *regset, in copy_pad_fprs() argument 266 cp_sz = min(regset in copy_pad_fprs() 279 simd_get(struct task_struct * target,const struct user_regset * regset,struct membuf to) simd_get() argument 309 simd_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf) simd_set() argument 344 lbt_get(struct task_struct * target,const struct user_regset * regset,struct membuf to) lbt_get() argument 360 lbt_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf) lbt_set() argument 672 hw_break_get(struct task_struct * target,const struct user_regset * regset,struct membuf to) hw_break_get() argument 713 hw_break_set(struct task_struct * target,const struct user_regset * regset,unsigned int pos,unsigned int count,const void * kbuf,const void __user * ubuf) hw_break_set() argument [all...] |
/linux/arch/mips/kernel/ |
H A D | ptrace.c | 218 const struct user_regset *regset, in gpr32_get() argument 229 const struct user_regset *regset, in gpr32_set() argument 283 const struct user_regset *regset, in gpr64_get() argument 294 const struct user_regset *regset, in gpr64_set() argument 441 const struct user_regset *regset, in fpr_get() argument 508 const struct user_regset *regset, in fpr_set() argument 552 const struct user_regset *regset, in fp_mode_get() argument 568 const struct user_regset *regset, in fp_mode_set() argument 603 const struct user_regset *regset, in copy_pad_fprs() argument 611 cp_sz = min(regset->size, live_sz); in copy_pad_fprs() [all …]
|
/linux/drivers/video/fbdev/core/ |
H A D | svgalib.c | 24 void svga_wcrt_multi(void __iomem *regbase, const struct vga_regset *regset, u32 value) in svga_wcrt_multi() argument 28 while (regset->regnum != VGA_REGSET_END_VAL) { in svga_wcrt_multi() 29 regval = vga_rcrt(regbase, regset->regnum); in svga_wcrt_multi() 30 bitnum = regset->lowbit; in svga_wcrt_multi() 31 while (bitnum <= regset->highbit) { in svga_wcrt_multi() 38 vga_wcrt(regbase, regset->regnum, regval); in svga_wcrt_multi() 39 regset ++; in svga_wcrt_multi() 44 void svga_wseq_multi(void __iomem *regbase, const struct vga_regset *regset, u32 value) in svga_wseq_multi() argument 48 while (regset->regnum != VGA_REGSET_END_VAL) { in svga_wseq_multi() 49 regval = vga_rseq(regbase, regset->regnum); in svga_wseq_multi() [all …]
|
/linux/drivers/gpu/drm/vc4/ |
H A D | vc4_debugfs.c | 39 struct debugfs_regset32 *regset = entry->file.data; in vc4_debugfs_regset32() local 46 drm_print_regset32(&p, regset); in vc4_debugfs_regset32() 55 struct debugfs_regset32 *regset) in vc4_debugfs_add_regset32() argument 57 drm_debugfs_add_file(drm, name, vc4_debugfs_regset32, regset); in vc4_debugfs_add_regset32()
|
/linux/arch/sh/kernel/ |
H A D | ptrace_32.c | 135 const struct user_regset *regset, in genregs_get() argument 144 const struct user_regset *regset, in genregs_set() argument 168 const struct user_regset *regset, in fpregs_get() argument 182 const struct user_regset *regset, in fpregs_set() argument 203 const struct user_regset *regset) in fpregs_active() argument 205 return tsk_used_math(target) ? regset->n : 0; in fpregs_active() 211 const struct user_regset *regset, in dspregs_get() argument 221 const struct user_regset *regset, in dspregs_set() argument 239 const struct user_regset *regset) in dspregs_active() argument 243 return regs->sr & SR_DSP ? regset->n : 0; in dspregs_active()
|
/linux/arch/riscv/kernel/ |
H A D | ptrace.c | 37 const struct user_regset *regset, in riscv_gpr_get() argument 45 const struct user_regset *regset, in riscv_gpr_set() argument 57 const struct user_regset *regset, in riscv_fpr_get() argument 71 const struct user_regset *regset, in riscv_fpr_set() argument 92 const struct user_regset *regset, in riscv_vr_get() argument 125 const struct user_regset *regset, in riscv_vr_set() argument 160 const struct user_regset *regset, in tagged_addr_ctrl_get() argument 172 const struct user_regset *regset, in tagged_addr_ctrl_set() argument 355 const struct user_regset *regset, in compat_riscv_gpr_get() argument 367 const struct user_regset *regset, in compat_riscv_gpr_set() argument
|
/linux/drivers/media/platform/st/sti/c8sectpfe/ |
H A D | c8sectpfe-debugfs.c | 228 fei->regset = devm_kzalloc(fei->dev, sizeof(*fei->regset), GFP_KERNEL); in c8sectpfe_debugfs_init() 229 if (!fei->regset) in c8sectpfe_debugfs_init() 232 fei->regset->regs = fei_sys_regs; in c8sectpfe_debugfs_init() 233 fei->regset->nregs = ARRAY_SIZE(fei_sys_regs); in c8sectpfe_debugfs_init() 234 fei->regset->base = fei->io; in c8sectpfe_debugfs_init() 237 debugfs_create_regset32("registers", S_IRUGO, fei->root, fei->regset); in c8sectpfe_debugfs_init()
|
/linux/arch/s390/kernel/ |
H A D | ptrace.c | 814 const struct user_regset *regset, in s390_regs_get() argument 827 const struct user_regset *regset, in s390_regs_set() argument 863 const struct user_regset *regset, in s390_fpregs_get() argument 878 const struct user_regset *regset, unsigned int pos, in s390_fpregs_set() argument 909 const struct user_regset *regset, in s390_last_break_get() argument 916 const struct user_regset *regset, in s390_last_break_set() argument 924 const struct user_regset *regset, in s390_tdb_get() argument 937 const struct user_regset *regset, in s390_tdb_set() argument 945 const struct user_regset *regset, in s390_vxrs_low_get() argument 961 const struct user_regset *regset, in s390_vxrs_low_set() argument [all …]
|
/linux/drivers/gpio/ |
H A D | gpio-xlp.c | 70 u32 pos, regset; in xlp_gpio_get_reg() local 73 regset = (gpio / XLP_GPIO_REGSZ) * 4; in xlp_gpio_get_reg() 74 return !!(readl(addr + regset) & BIT(pos)); in xlp_gpio_get_reg() 79 u32 value, pos, regset; in xlp_gpio_set_reg() local 82 regset = (gpio / XLP_GPIO_REGSZ) * 4; in xlp_gpio_set_reg() 83 value = readl(addr + regset); in xlp_gpio_set_reg() 90 writel(value, addr + regset); in xlp_gpio_set_reg()
|
/linux/drivers/gpu/drm/ |
H A D | drm_print.c | 378 void drm_print_regset32(struct drm_printer *p, struct debugfs_regset32 *regset) in drm_print_regset32() argument 383 for (i = 0; i < regset->nregs; i++) in drm_print_regset32() 384 namelen = max(namelen, (int)strlen(regset->regs[i].name)); in drm_print_regset32() 386 for (i = 0; i < regset->nregs; i++) { in drm_print_regset32() 388 namelen, regset->regs[i].name, in drm_print_regset32() 389 readl(regset->base + regset->regs[i].offset)); in drm_print_regset32()
|
/linux/arch/sparc/kernel/ |
H A D | ptrace_32.c | 84 const struct user_regset *regset, in genregs32_get() argument 107 const struct user_regset *regset, in genregs32_set() argument 167 const struct user_regset *regset, in fpregs32_get() argument 183 const struct user_regset *regset, in fpregs32_set() argument 245 const struct user_regset *regset, in getregs_get() argument 261 const struct user_regset *regset, in setregs_set() argument 288 const struct user_regset *regset, in getfpregs_get() argument 301 const struct user_regset *regset, in setfpregs_set() argument
|
H A D | ptrace_64.c | 247 const struct user_regset *regset, in genregs64_get() argument 268 const struct user_regset *regset, in genregs64_set() argument 342 const struct user_regset *regset, in fpregs64_get() argument 372 const struct user_regset *regset, in fpregs64_set() argument 443 const struct user_regset *regset, in getregs64_get() argument 458 const struct user_regset *regset, in setregs64_set() argument 533 const struct user_regset *regset, in genregs32_get() argument 559 const struct user_regset *regset, in genregs32_set() argument 677 const struct user_regset *regset, in fpregs32_get() argument 699 const struct user_regset *regset, in fpregs32_set() argument [all …]
|