Home
last modified time | relevance | path

Searched refs:regset (Results 1 – 25 of 101) sorted by relevance

12345

/linux/arch/powerpc/kernel/ptrace/ !
H A Dptrace-decl.h73 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 Dptrace-tm.c58 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 Dptrace-view.c218 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 Dptrace-vsx.c21 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 Dptrace-spe.c19 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 Dptrace-altivec.c23 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 Dregset.c7 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
38 return __regset_get(target, regset, size, &data); in regset_get()
43 const struct user_regset *regset, in regset_get_alloc() argument
48 return __regset_get(target, regset, size, data); in regset_get_alloc()
67 const struct user_regset *regset = &view->regsets[setno]; in copy_regset_to_user() local
[all …]
/linux/drivers/gpu/drm/i915/gt/uc/ !
H A Dintel_guc_ads.c68 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 = &regset->storage[pos]; in __mmio_reg_add()
[all …]
/linux/drivers/crypto/ccree/ !
H A Dcc_debugfs.c66 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 Dregset.c23 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/include/linux/ !
H A Dregset.h95 const struct user_regset *regset);
98 const struct user_regset *regset,
118 const struct user_regset *regset,
144 const struct user_regset *regset,
311 const struct user_regset *regset,
315 const struct user_regset *regset,
339 const struct user_regset *regset = &view->regsets[setno]; in copy_regset_from_user() local
341 if (!regset->set) in copy_regset_from_user()
347 return regset->set(target, regset, offset, size, NULL, data); in copy_regset_from_user()
/linux/arch/arm64/kernel/ !
H A Dptrace.c475 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/x86/um/ !
H A Dptrace.c114 const struct user_regset *regset, in fpregs_legacy_get() argument
148 const struct user_regset *regset, in fpregs_legacy_set() argument
169 const struct user_regset *regset, in genregs_get() argument
180 const struct user_regset *regset, in genregs_set() argument
211 static int generic_fpregs_active(struct task_struct *target, const struct user_regset *regset) in generic_fpregs_active() argument
213 return regset->n; in generic_fpregs_active()
217 const struct user_regset *regset, in generic_fpregs_get() argument
222 membuf_write(&to, fpregs, regset->size * regset->n); in generic_fpregs_get()
227 const struct user_regset *regset, in generic_fpregs_set() argument
234 fpregs, 0, regset->size * regset->n); in generic_fpregs_set()
/linux/arch/loongarch/kernel/ !
H A Dptrace.c76 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->size, live_sz); in copy_pad_fprs()
267 pad_sz = regset->size - cp_sz; in copy_pad_fprs()
279 const struct user_regset *regset, in simd_get() argument
[all …]
/linux/drivers/thermal/broadcom/ !
H A Dbcm2835_thermal.c119 struct debugfs_regset32 *regset; in bcm2835_thermal_debugfs() local
123 regset = devm_kzalloc(&pdev->dev, sizeof(*regset), GFP_KERNEL); in bcm2835_thermal_debugfs()
124 if (!regset) in bcm2835_thermal_debugfs()
127 regset->regs = bcm2835_thermal_regs; in bcm2835_thermal_debugfs()
128 regset->nregs = ARRAY_SIZE(bcm2835_thermal_regs); in bcm2835_thermal_debugfs()
129 regset->base = data->regs; in bcm2835_thermal_debugfs()
131 debugfs_create_regset32("regset", 0444, data->debugfsdir, regset); in bcm2835_thermal_debugfs()
/linux/arch/riscv/kernel/ !
H A Dptrace.c41 const struct user_regset *regset, in riscv_gpr_get() argument
49 const struct user_regset *regset, in riscv_gpr_set() argument
61 const struct user_regset *regset, in riscv_fpr_get() argument
75 const struct user_regset *regset, in riscv_fpr_set() argument
96 const struct user_regset *regset, in riscv_vr_get() argument
218 const struct user_regset *regset, in riscv_vr_set() argument
253 static int riscv_vr_active(struct task_struct *target, const struct user_regset *regset) in riscv_vr_active() argument
261 return regset->n; in riscv_vr_active()
267 const struct user_regset *regset, in tagged_addr_ctrl_get() argument
279 const struct user_regset *regset, in tagged_addr_ctrl_set() argument
[all …]
/linux/arch/mips/kernel/ !
H A Dptrace.c218 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 Dsvgalib.c24 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()
39 vga_wcrt(regbase, regset->regnum, regval); in svga_wcrt_multi()
40 regset++; in svga_wcrt_multi()
45 void svga_wseq_multi(void __iomem *regbase, const struct vga_regset *regset, u32 value) in svga_wseq_multi() argument
49 while (regset->regnum != VGA_REGSET_END_VAL) { in svga_wseq_multi()
50 regval = vga_rseq(regbase, regset->regnum); in svga_wseq_multi()
[all …]
/linux/arch/sh/kernel/ !
H A Dptrace_32.c135 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/drivers/gpu/drm/vc4/ !
H A Dvc4_debugfs.c40 struct debugfs_regset32 *regset = entry->file.data; in vc4_debugfs_regset32() local
47 drm_print_regset32(&p, regset); in vc4_debugfs_regset32()
56 struct debugfs_regset32 *regset) in vc4_debugfs_add_regset32() argument
58 drm_debugfs_add_file(drm, name, vc4_debugfs_regset32, regset); in vc4_debugfs_add_regset32()
/linux/drivers/usb/host/ !
H A Dxhci-debugfs.c88 struct xhci_regset *regset; in xhci_debugfs_alloc_regset() local
90 regset = kzalloc_obj(*regset); in xhci_debugfs_alloc_regset()
91 if (!regset) in xhci_debugfs_alloc_regset()
98 INIT_LIST_HEAD(&regset->list); in xhci_debugfs_alloc_regset()
99 list_add_tail(&regset->list, &xhci->regset_list); in xhci_debugfs_alloc_regset()
101 return regset; in xhci_debugfs_alloc_regset()
104 static void xhci_debugfs_free_regset(struct xhci_regset *regset) in xhci_debugfs_free_regset() argument
106 if (!regset) in xhci_debugfs_free_regset()
109 list_del(&regset->list); in xhci_debugfs_free_regset()
110 kfree(regset); in xhci_debugfs_free_regset()
[all …]
/linux/arch/s390/kernel/ !
H A Dptrace.c510 const struct user_regset *regset, in s390_regs_get() argument
523 const struct user_regset *regset, in s390_regs_set() argument
559 const struct user_regset *regset, in s390_fpregs_get() argument
574 const struct user_regset *regset, unsigned int pos, in s390_fpregs_set() argument
605 const struct user_regset *regset, in s390_last_break_get() argument
612 const struct user_regset *regset, in s390_last_break_set() argument
620 const struct user_regset *regset, in s390_tdb_get() argument
633 const struct user_regset *regset, in s390_tdb_set() argument
641 const struct user_regset *regset, in s390_vxrs_low_get() argument
657 const struct user_regset *regset, in s390_vxrs_low_set() argument
[all …]
/linux/drivers/clk/starfive/ !
H A Dclk-starfive-jh71x0.c210 struct debugfs_regset32 *regset; in jh71x0_clk_debug_init() local
212 regset = devm_kzalloc(priv->dev, sizeof(*regset), GFP_KERNEL); in jh71x0_clk_debug_init()
213 if (!regset) in jh71x0_clk_debug_init()
216 regset->regs = &jh71x0_clk_reg; in jh71x0_clk_debug_init()
217 regset->nregs = 1; in jh71x0_clk_debug_init()
218 regset->base = priv->base + 4 * clk->idx; in jh71x0_clk_debug_init()
220 debugfs_create_regset32("registers", 0400, dentry, regset); in jh71x0_clk_debug_init()
/linux/drivers/gpio/ !
H A Dgpio-xlp.c70 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 Ddrm_print.c379 void drm_print_regset32(struct drm_printer *p, struct debugfs_regset32 *regset) in drm_print_regset32() argument
384 for (i = 0; i < regset->nregs; i++) in drm_print_regset32()
385 namelen = max(namelen, (int)strlen(regset->regs[i].name)); in drm_print_regset32()
387 for (i = 0; i < regset->nregs; i++) { in drm_print_regset32()
389 namelen, regset->regs[i].name, in drm_print_regset32()
390 readl(regset->base + regset->regs[i].offset)); in drm_print_regset32()

12345