/linux-6.1.9/sound/pci/ctxfi/ |
D | ctsrc.c | 38 hw = src->rsc.hw; in src_set_state() 39 hw->src_set_state(src->rsc.ctrl_blk, state); in src_set_state() 48 hw = src->rsc.hw; in src_set_bm() 49 hw->src_set_bm(src->rsc.ctrl_blk, bm); in src_set_bm() 58 hw = src->rsc.hw; in src_set_sf() 59 hw->src_set_sf(src->rsc.ctrl_blk, sf); in src_set_sf() 68 hw = src->rsc.hw; in src_set_pm() 69 hw->src_set_pm(src->rsc.ctrl_blk, pm); in src_set_pm() 78 hw = src->rsc.hw; in src_set_rom() 79 hw->src_set_rom(src->rsc.ctrl_blk, rom); in src_set_rom() [all …]
|
D | ctamixer.c | 26 static void amixer_master(struct rsc *rsc) in amixer_master() argument 28 rsc->conj = 0; in amixer_master() 29 rsc->idx = container_of(rsc, struct amixer, rsc)->idx[0]; in amixer_master() 32 static void amixer_next_conj(struct rsc *rsc) in amixer_next_conj() argument 34 rsc->conj++; in amixer_next_conj() 37 static int amixer_index(const struct rsc *rsc) in amixer_index() argument 39 return container_of(rsc, struct amixer, rsc)->idx[rsc->conj]; in amixer_index() 42 static int amixer_output_slot(const struct rsc *rsc) in amixer_output_slot() argument 44 return (amixer_index(rsc) << 4) + 0x4; in amixer_output_slot() 54 static int amixer_set_input(struct amixer *amixer, struct rsc *rsc) in amixer_set_input() argument [all …]
|
D | ctresource.c | 102 static int rsc_index(const struct rsc *rsc) in rsc_index() argument 104 return rsc->conj; in rsc_index() 107 static int audio_ring_slot(const struct rsc *rsc) in audio_ring_slot() argument 109 return (rsc->conj << 4) + offset_in_audio_slot_block[rsc->type]; in audio_ring_slot() 112 static void rsc_next_conj(struct rsc *rsc) in rsc_next_conj() argument 115 for (i = 0; (i < 8) && (!(rsc->msr & (0x1 << i))); ) in rsc_next_conj() 117 rsc->conj += (AUDIO_SLOT_BLOCK_NUM >> i); in rsc_next_conj() 120 static void rsc_master(struct rsc *rsc) in rsc_master() argument 122 rsc->conj = rsc->idx; in rsc_master() 133 rsc_init(struct rsc *rsc, u32 idx, enum RSCTYP type, u32 msr, struct hw *hw) in rsc_init() argument [all …]
|
D | ctresource.h | 31 struct rsc { struct 42 void (*master)(struct rsc *rsc); /* Move to master resource */ argument 43 void (*next_conj)(struct rsc *rsc); /* Move to next conjugate resource */ 44 int (*index)(const struct rsc *rsc); /* Return the index of resource */ 46 int (*output_slot)(const struct rsc *rsc); 50 rsc_init(struct rsc *rsc, u32 idx, enum RSCTYP type, u32 msr, struct hw *hw); 51 int rsc_uninit(struct rsc *rsc);
|
D | ctamixer.h | 24 struct rsc rsc; /* Basic resource info */ member 53 struct rsc rsc; /* Basic resource info */ member 55 struct rsc *input; /* pointer to a resource acting as source */ 61 int (*set_input)(struct amixer *amixer, struct rsc *rsc); 68 int (*setup)(struct amixer *amixer, struct rsc *input,
|
D | ctmixer.h | 49 struct rsc **rleft, struct rsc **rright); 52 enum MIXER_PORT_T type, struct rsc *rsc); 54 enum MIXER_PORT_T type, struct rsc *rsc);
|
D | ctdaio.h | 43 struct rsc rscl; /* Basic resource info for left TX/RX */ 44 struct rsc rscr; /* Basic resource info for right TX/RX */ 74 int (*set_left_input)(struct dao *dao, struct rsc *input); 75 int (*set_right_input)(struct dao *dao, struct rsc *input); 81 int (*set_srt_srcl)(struct dai *dai, struct rsc *src); 82 int (*set_srt_srcr)(struct dai *dai, struct rsc *src);
|
D | ctdaio.c | 54 static void daio_master(struct rsc *rsc) in daio_master() argument 59 rsc->conj = rsc->idx; in daio_master() 62 static int daio_index(const struct rsc *rsc) in daio_index() argument 64 return rsc->conj; in daio_index() 67 static void daio_out_next_conj(struct rsc *rsc) in daio_out_next_conj() argument 69 rsc->conj += 2; in daio_out_next_conj() 72 static void daio_in_next_conj_20k1(struct rsc *rsc) in daio_in_next_conj_20k1() argument 74 rsc->conj += 0x200; in daio_in_next_conj_20k1() 77 static void daio_in_next_conj_20k2(struct rsc *rsc) in daio_in_next_conj_20k2() argument 79 rsc->conj += 0x100; in daio_in_next_conj_20k2() [all …]
|
D | ctsrc.h | 45 struct rsc rsc; /* Basic resource info */ member 104 struct rsc rsc; member 113 int (*map)(struct srcimp *srcimp, struct src *user, struct rsc *input);
|
D | ctmixer.c | 946 amix_d->ops->setup(amix_d, &sum->rsc, INIT_VOL, NULL); in ct_mixer_topology_build() 949 amix_d->ops->setup(amix_d, &sum->rsc, INIT_VOL, NULL); in ct_mixer_topology_build() 957 amix_d->ops->setup(amix_d, &amix_s->rsc, INIT_VOL, NULL); in ct_mixer_topology_build() 960 amix_d->ops->setup(amix_d, &amix_s->rsc, INIT_VOL, NULL); in ct_mixer_topology_build() 966 amix_d->ops->setup(amix_d, &amix_s->rsc, INIT_VOL, NULL); in ct_mixer_topology_build() 969 amix_d->ops->setup(amix_d, &amix_s->rsc, INIT_VOL, NULL); in ct_mixer_topology_build() 1008 amix_d->ops->setup(amix_d, &sum->rsc, INIT_VOL, NULL); in ct_mixer_topology_build() 1011 amix_d->ops->setup(amix_d, &sum->rsc, INIT_VOL, NULL); in ct_mixer_topology_build() 1048 static int mixer_set_input_port(struct amixer *amixer, struct rsc *rsc) in mixer_set_input_port() argument 1050 amixer->ops->set_input(amixer, rsc); in mixer_set_input_port() [all …]
|
/linux-6.1.9/drivers/remoteproc/ |
D | remoteproc_virtio.c | 113 struct fw_rsc_vdev *rsc; in rp_find_vq() local 160 rsc = (void *)rproc->table_ptr + rvdev->rsc_offset; in rp_find_vq() 161 rsc->vring[id].da = mem->da; in rp_find_vq() 216 struct fw_rsc_vdev *rsc; in rproc_virtio_get_status() local 218 rsc = (void *)rvdev->rproc->table_ptr + rvdev->rsc_offset; in rproc_virtio_get_status() 220 return rsc->status; in rproc_virtio_get_status() 226 struct fw_rsc_vdev *rsc; in rproc_virtio_set_status() local 228 rsc = (void *)rvdev->rproc->table_ptr + rvdev->rsc_offset; in rproc_virtio_set_status() 230 rsc->status = status; in rproc_virtio_set_status() 237 struct fw_rsc_vdev *rsc; in rproc_virtio_reset() local [all …]
|
D | remoteproc_core.c | 330 struct fw_rsc_vdev *rsc; in rproc_alloc_vring() local 338 rsc = (void *)rproc->table_ptr + rvdev->rsc_offset; in rproc_alloc_vring() 344 if (rproc_check_carveout_da(rproc, mem, rsc->vring[i].da, size)) in rproc_alloc_vring() 349 size, rsc->vring[i].da, in rproc_alloc_vring() 381 rsc->vring[i].notifyid = notifyid; in rproc_alloc_vring() 386 rproc_parse_vring(struct rproc_vdev *rvdev, struct fw_rsc_vdev *rsc, int i) in rproc_parse_vring() argument 390 struct fw_rsc_vdev_vring *vring = &rsc->vring[i]; in rproc_parse_vring() 414 struct fw_rsc_vdev *rsc; in rproc_free_vring() local 430 rsc = (void *)rproc->table_ptr + rvring->rvdev->rsc_offset; in rproc_free_vring() 431 rsc->vring[idx].da = 0; in rproc_free_vring() [all …]
|
/linux-6.1.9/drivers/s390/cio/ |
D | crw.c | 31 int crw_register_handler(int rsc, crw_handler_t handler) in crw_register_handler() argument 35 if ((rsc < 0) || (rsc >= NR_RSCS)) in crw_register_handler() 38 if (crw_handlers[rsc]) in crw_register_handler() 41 crw_handlers[rsc] = handler; in crw_register_handler() 50 void crw_unregister_handler(int rsc) in crw_unregister_handler() argument 52 if ((rsc < 0) || (rsc >= NR_RSCS)) in crw_unregister_handler() 55 crw_handlers[rsc] = NULL; in crw_unregister_handler() 87 tmp_crw.chn, tmp_crw.rsc, tmp_crw.anc, in crw_collect_info() 102 crw[chain].rsc, crw[chain].anc, crw[chain].erc, in crw_collect_info() 123 handler = crw_handlers[crw[chain].rsc]; in crw_collect_info()
|
D | cio_inject.c | 88 u32 slct, oflw, chn, rsc, anc, erc, rsid; in crw_inject_write() local 102 rc = sscanf(buffer, "%x %x %x %x %x %x %x", &slct, &oflw, &chn, &rsc, &anc, in crw_inject_write() 115 crw.rsc = rsc; in crw_inject_write()
|
/linux-6.1.9/drivers/gpu/drm/i915/display/ |
D | intel_lpe_audio.c | 86 struct resource *rsc; in lpe_audio_platdev_create() local 94 rsc = kcalloc(2, sizeof(*rsc), GFP_KERNEL); in lpe_audio_platdev_create() 95 if (!rsc) { in lpe_audio_platdev_create() 100 rsc[0].start = rsc[0].end = dev_priv->display.audio.lpe.irq; in lpe_audio_platdev_create() 101 rsc[0].flags = IORESOURCE_IRQ; in lpe_audio_platdev_create() 102 rsc[0].name = "hdmi-lpe-audio-irq"; in lpe_audio_platdev_create() 104 rsc[1].start = pci_resource_start(pdev, GTTMMADR_BAR) + in lpe_audio_platdev_create() 106 rsc[1].end = pci_resource_start(pdev, GTTMMADR_BAR) + in lpe_audio_platdev_create() 108 rsc[1].flags = IORESOURCE_MEM; in lpe_audio_platdev_create() 109 rsc[1].name = "hdmi-lpe-audio-mmio"; in lpe_audio_platdev_create() [all …]
|
/linux-6.1.9/arch/ia64/kernel/ |
D | pal.S | 69 mov loc4=ar.rsc // save RSE configuration 71 mov ar.rsc=0 // put RSE in enforced lazy, LE mode 85 mov ar.rsc = loc4 // restore RSE configuration 168 mov loc4=ar.rsc // save RSE configuration 173 mov ar.rsc=0 // put RSE in enforced lazy, LE mode 186 mov ar.rsc=0 // put RSE in enforced lazy, LE mode 196 mov ar.rsc=loc4 // restore RSE configuration 222 mov loc4=ar.rsc // save RSE configuration 225 mov ar.rsc=0 // put RSE in enforced lazy, LE mode 244 mov ar.rsc=0 // put RSE in enforced lazy, LE mode [all …]
|
D | efi_stub.S | 54 mov loc4=ar.rsc // save RSE configuration 55 mov ar.rsc=0 // put RSE in enforced lazy, LE mode 77 .ret1: mov ar.rsc=0 // put RSE in enforced lazy, LE mode 82 .ret2: mov ar.rsc=loc4 // restore RSE configuration
|
D | esi_stub.S | 72 mov loc4=ar.rsc // save RSE configuration 73 mov ar.rsc=0 // put RSE in enforced lazy, LE mode 88 .ret1: mov ar.rsc=0 // put RSE in enforced lazy, LE mode 93 .ret2: mov ar.rsc=loc4 // restore RSE configuration
|
/linux-6.1.9/drivers/soc/qcom/ |
D | cmd-db.c | 249 const struct rsc_hdr *rsc; in cmd_db_debugfs_dump() local 258 rsc = &cmd_db_header->header[i]; in cmd_db_debugfs_dump() 259 if (!rsc->slv_id) in cmd_db_debugfs_dump() 262 switch (le16_to_cpu(rsc->slv_id)) { in cmd_db_debugfs_dump() 277 version = le16_to_cpu(rsc->version); in cmd_db_debugfs_dump() 284 ent = rsc_to_entry_header(rsc); in cmd_db_debugfs_dump() 285 for (j = 0; j < le16_to_cpu(rsc->cnt); j++, ent++) { in cmd_db_debugfs_dump() 292 len, rsc_offset(rsc, ent)); in cmd_db_debugfs_dump()
|
/linux-6.1.9/net/sunrpc/auth_gss/ |
D | svcauth_gss.c | 344 struct rsc { struct 353 static struct rsc *rsc_update(struct cache_detail *cd, struct rsc *new, struct rsc *old); argument 354 static struct rsc *rsc_lookup(struct cache_detail *cd, struct rsc *item); 356 static void rsc_free(struct rsc *rsci) in rsc_free() 366 struct rsc *rsci = container_of(head, struct rsc, rcu_head); in rsc_free_rcu() 374 struct rsc *rsci = container_of(ref, struct rsc, h.ref); in rsc_put() 383 rsc_hash(struct rsc *rsci) in rsc_hash() 391 struct rsc *new = container_of(a, struct rsc, h); in rsc_match() 392 struct rsc *tmp = container_of(b, struct rsc, h); in rsc_match() 400 struct rsc *new = container_of(cnew, struct rsc, h); in rsc_init() [all …]
|
/linux-6.1.9/lib/reed_solomon/ |
D | decode_rs.c | 13 struct rs_codec *rs = rsc->codec; 32 uint16_t *lambda = rsc->buffers + RS_DECODE_LAMBDA * (nroots + 1); 33 uint16_t *syn = rsc->buffers + RS_DECODE_SYN * (nroots + 1); 34 uint16_t *b = rsc->buffers + RS_DECODE_B * (nroots + 1); 35 uint16_t *t = rsc->buffers + RS_DECODE_T * (nroots + 1); 36 uint16_t *omega = rsc->buffers + RS_DECODE_OMEGA * (nroots + 1); 37 uint16_t *root = rsc->buffers + RS_DECODE_ROOT * (nroots + 1); 38 uint16_t *reg = rsc->buffers + RS_DECODE_REG * (nroots + 1); 39 uint16_t *loc = rsc->buffers + RS_DECODE_LOC * (nroots + 1);
|
D | test_rslib.c | 229 static void compute_syndrome(struct rs_control *rsc, uint16_t *data, in compute_syndrome() argument 232 struct rs_codec *rs = rsc->codec; in compute_syndrome() 446 struct rs_control *rsc; in run_exercise() local 453 rsc = init_rs(e->symsize, e->genpoly, e->fcs, e->prim, e->nroots); in run_exercise() 454 if (!rsc) in run_exercise() 457 ws = alloc_ws(rsc->codec); in run_exercise() 475 retval |= exercise_rs(rsc, ws, len, e->ntrials); in run_exercise() 477 retval |= exercise_rs_bc(rsc, ws, len, e->ntrials); in run_exercise() 483 free_rs(rsc); in run_exercise()
|
/linux-6.1.9/drivers/infiniband/ulp/iser/ |
D | iser_memory.c | 169 ib_check_mr_status(desc->rsc.sig_mr, IB_MR_CHECK_SIG_STATUS, in iser_unreg_mem_fastreg() 250 struct iser_reg_resources *rsc, in iser_reg_sig_mr() argument 255 struct ib_mr *mr = rsc->sig_mr; in iser_reg_sig_mr() 267 if (rsc->mr_valid) in iser_reg_sig_mr() 291 rsc->mr_valid = 1; in iser_reg_sig_mr() 307 struct iser_reg_resources *rsc, in iser_fast_reg_mr() argument 312 struct ib_mr *mr = rsc->mr; in iser_fast_reg_mr() 316 if (rsc->mr_valid) in iser_fast_reg_mr() 339 rsc->mr_valid = 1; in iser_fast_reg_mr() 371 err = iser_fast_reg_mr(task, mem, &desc->rsc, reg); in iser_reg_mem_fastreg() [all …]
|
/linux-6.1.9/Documentation/devicetree/bindings/soc/qcom/ |
D | qcom,rpmh-rsc.yaml | 4 $id: http://devicetree.org/schemas/soc/qcom/qcom,rpmh-rsc.yaml# 31 See also:: <dt-bindings/soc/qcom,rpmh-rsc.h> 47 const: qcom,rpmh-rsc 136 #include <dt-bindings/soc/qcom,rpmh-rsc.h> 138 rsc@179c0000 { 139 compatible = "qcom,rpmh-rsc"; 163 #include <dt-bindings/soc/qcom,rpmh-rsc.h> 165 rsc@af20000 { 166 compatible = "qcom,rpmh-rsc"; 181 #include <dt-bindings/soc/qcom,rpmh-rsc.h> [all …]
|
/linux-6.1.9/arch/s390/include/asm/ |
D | crw.h | 23 __u32 rsc : 4; /* reporting source code */ member 32 extern int crw_register_handler(int rsc, crw_handler_t handler); 33 extern void crw_unregister_handler(int rsc);
|