/linux-5.19.10/drivers/gpio/ |
D | gpio-sa1100.c | 113 static void sa1100_update_edge_regs(struct sa1100_gpio_chip *sgc) in sa1100_update_edge_regs() argument 115 void *base = sgc->membase; in sa1100_update_edge_regs() 118 grer = sgc->irqrising & sgc->irqmask; in sa1100_update_edge_regs() 119 gfer = sgc->irqfalling & sgc->irqmask; in sa1100_update_edge_regs() 127 struct sa1100_gpio_chip *sgc = irq_data_get_irq_chip_data(d); in sa1100_gpio_type() local 131 if ((sgc->irqrising | sgc->irqfalling) & mask) in sa1100_gpio_type() 137 sgc->irqrising |= mask; in sa1100_gpio_type() 139 sgc->irqrising &= ~mask; in sa1100_gpio_type() 141 sgc->irqfalling |= mask; in sa1100_gpio_type() 143 sgc->irqfalling &= ~mask; in sa1100_gpio_type() [all …]
|
/linux-5.19.10/drivers/scsi/esas2r/ |
D | esas2r_io.c | 188 struct esas2r_sg_context *sgc) in esas2r_build_sg_list_sge() argument 190 struct esas2r_request *rq = sgc->first_req; in esas2r_build_sg_list_sge() 193 while (sgc->length) { in esas2r_build_sg_list_sge() 198 len = (*sgc->get_phys_addr)(sgc, &addr); in esas2r_build_sg_list_sge() 204 if (unlikely(len > sgc->length)) in esas2r_build_sg_list_sge() 205 len = sgc->length; in esas2r_build_sg_list_sge() 222 if (unlikely(sgc->sge.a64.curr > sgc->sge.a64.limit)) { in esas2r_build_sg_list_sge() 237 sgelen = (u8)((u8 *)sgc->sge.a64.curr in esas2r_build_sg_list_sge() 238 - (u8 *)sgc->sge.a64.last); in esas2r_build_sg_list_sge() 244 memcpy(sgl->virt_addr, sgc->sge.a64.last, sgelen); in esas2r_build_sg_list_sge() [all …]
|
D | esas2r_flash.c | 144 if (fc->sgc.cur_offset == NULL) in esas2r_fmapi_callback() 181 struct esas2r_sg_context *sgc = &fc->sgc; in build_flash_msg() local 186 if (sgc->cur_offset) in build_flash_msg() 187 cksum = esas2r_calc_byte_xor_cksum(sgc->cur_offset, in build_flash_msg() 188 sgc->length, in build_flash_msg() 199 sgc->length); in build_flash_msg() 208 fc->curr_len = fc->sgc.length; in build_flash_msg() 210 if (sgc->cur_offset) { in build_flash_msg() 212 esas2r_sgc_init(sgc, a, rq, &rq->vrq->flash.data.sge[0]); in build_flash_msg() 214 if (!esas2r_build_sg_list(a, rq, sgc)) { in build_flash_msg() [all …]
|
D | esas2r_ioctl.c | 90 static u32 get_physaddr_fm_api(struct esas2r_sg_context *sgc, u64 *addr) in get_physaddr_fm_api() argument 92 struct esas2r_adapter *a = (struct esas2r_adapter *)sgc->adapter; in get_physaddr_fm_api() 93 int offset = sgc->cur_offset - a->save_offset; in get_physaddr_fm_api() 99 static u32 get_physaddr_fm_api_header(struct esas2r_sg_context *sgc, u64 *addr) in get_physaddr_fm_api_header() argument 101 struct esas2r_adapter *a = (struct esas2r_adapter *)sgc->adapter; in get_physaddr_fm_api_header() 102 int offset = sgc->cur_offset - a->save_offset; in get_physaddr_fm_api_header() 189 static u32 get_physaddr_buffered_ioctl(struct esas2r_sg_context *sgc, in get_physaddr_buffered_ioctl() argument 192 int offset = (u8 *)sgc->cur_offset - esas2r_buffered_ioctl; in get_physaddr_buffered_ioctl() 209 struct esas2r_sg_context sgc; in handle_buffered_ioctl() local 263 sgc.cur_offset = esas2r_buffered_ioctl + bi->offset; in handle_buffered_ioctl() [all …]
|
D | esas2r_main.c | 759 static u32 get_physaddr_from_sgc(struct esas2r_sg_context *sgc, u64 *addr) in get_physaddr_from_sgc() argument 763 if (likely(sgc->cur_offset == sgc->exp_offset)) { in get_physaddr_from_sgc() 769 if (sgc->sgel_count < sgc->num_sgel) { in get_physaddr_from_sgc() 771 if (sgc->exp_offset > (u8 *)0) { in get_physaddr_from_sgc() 773 sgc->cur_sgel = sg_next(sgc->cur_sgel); in get_physaddr_from_sgc() 774 ++(sgc->sgel_count); in get_physaddr_from_sgc() 778 len = sg_dma_len(sgc->cur_sgel); in get_physaddr_from_sgc() 779 (*addr) = sg_dma_address(sgc->cur_sgel); in get_physaddr_from_sgc() 782 sgc->exp_offset += len; in get_physaddr_from_sgc() 787 } else if (sgc->cur_offset < sgc->exp_offset) { in get_physaddr_from_sgc() [all …]
|
D | esas2r_vda.c | 68 struct esas2r_sg_context *sgc) in esas2r_process_vda_ioctl() argument 135 u8 *cmdcurr_offset = sgc->cur_offset in esas2r_process_vda_ioctl() 162 cmdcurr_offset = sgc->cur_offset; in esas2r_process_vda_ioctl() 175 esas2r_sgc_init(sgc, a, rq, in esas2r_process_vda_ioctl() 177 sgc->length = payldlen; in esas2r_process_vda_ioctl() 179 if (!esas2r_build_sg_list(a, rq, sgc)) { in esas2r_process_vda_ioctl() 195 sgc->cur_offset = cmdcurr_offset; in esas2r_process_vda_ioctl() 255 esas2r_sgc_init(sgc, a, rq, firstsg); in esas2r_process_vda_ioctl() 256 sgc->length = datalen; in esas2r_process_vda_ioctl() 258 if (!esas2r_build_sg_list(a, rq, sgc)) { in esas2r_process_vda_ioctl()
|
D | esas2r.h | 408 struct esas2r_sg_context *sgc); 598 typedef u32 (*PGETPHYSADDR) (struct esas2r_sg_context *sgc, u64 *addr); 712 struct esas2r_sg_context sgc; member 1069 struct esas2r_sg_context *sgc); 1075 struct esas2r_request *rq, struct esas2r_sg_context *sgc); 1106 struct esas2r_sg_context *sgc); 1108 struct esas2r_sg_context *sgc); 1140 struct esas2r_sg_context *sgc); 1167 static inline void esas2r_sgc_init(struct esas2r_sg_context *sgc, in esas2r_sgc_init() argument 1172 sgc->adapter = a; in esas2r_sgc_init() [all …]
|
D | esas2r_disc.c | 53 static u32 esas2r_disc_get_phys_addr(struct esas2r_sg_context *sgc, u64 *addr); 888 struct esas2r_sg_context sgc; in esas2r_disc_passthru_dev_addr() local 896 sgc.cur_offset = NULL; in esas2r_disc_passthru_dev_addr() 897 sgc.get_phys_addr = (PGETPHYSADDR)esas2r_disc_get_phys_addr; in esas2r_disc_passthru_dev_addr() 898 sgc.length = offsetof(struct atto_ioctl, data) in esas2r_disc_passthru_dev_addr() 901 esas2r_sgc_init(&sgc, a, rq, rq->vrq->ioctl.sge); in esas2r_disc_passthru_dev_addr() 903 esas2r_build_ioctl_req(a, rq, sgc.length, VDA_IOCTL_HBA); in esas2r_disc_passthru_dev_addr() 905 if (!esas2r_build_sg_list(a, rq, &sgc)) { in esas2r_disc_passthru_dev_addr() 1030 static u32 esas2r_disc_get_phys_addr(struct esas2r_sg_context *sgc, u64 *addr) in esas2r_disc_get_phys_addr() argument 1032 struct esas2r_adapter *a = sgc->adapter; in esas2r_disc_get_phys_addr() [all …]
|
/linux-5.19.10/kernel/sched/ |
D | topology.c | 92 group->sgc->id, in sched_domain_debug_one() 101 if (group->sgc->capacity != SCHED_CAPACITY_SCALE) in sched_domain_debug_one() 102 printk(KERN_CONT " cap=%lu", group->sgc->capacity); in sched_domain_debug_one() 615 if (free_sgc && atomic_dec_and_test(&sg->sgc->ref)) in free_sched_groups() 616 kfree(sg->sgc); in free_sched_groups() 969 sg->sgc = *per_cpu_ptr(sdd->sgc, cpu); in init_overlap_sched_group() 970 if (atomic_inc_return(&sg->sgc->ref) == 1) in init_overlap_sched_group() 981 sg->sgc->capacity = SCHED_CAPACITY_SCALE * cpumask_weight(sg_span); in init_overlap_sched_group() 982 sg->sgc->min_capacity = SCHED_CAPACITY_SCALE; in init_overlap_sched_group() 983 sg->sgc->max_capacity = SCHED_CAPACITY_SCALE; in init_overlap_sched_group() [all …]
|
D | fair.c | 8395 sdg->sgc->capacity = capacity; in update_cpu_capacity() 8396 sdg->sgc->min_capacity = capacity; in update_cpu_capacity() 8397 sdg->sgc->max_capacity = capacity; in update_cpu_capacity() 8409 sdg->sgc->next_update = jiffies + interval; in update_group_capacity() 8441 struct sched_group_capacity *sgc = group->sgc; in update_group_capacity() local 8443 capacity += sgc->capacity; in update_group_capacity() 8444 min_capacity = min(sgc->min_capacity, min_capacity); in update_group_capacity() 8445 max_capacity = max(sgc->max_capacity, max_capacity); in update_group_capacity() 8450 sdg->sgc->capacity = capacity; in update_group_capacity() 8451 sdg->sgc->min_capacity = min_capacity; in update_group_capacity() [all …]
|
D | sched.h | 1791 struct sched_group_capacity *sgc; member 1815 return to_cpumask(sg->sgc->cpumask); in group_balance_mask()
|
/linux-5.19.10/drivers/net/ethernet/intel/ixgbe/ |
D | ixgbe_fcoe.c | 30 ddp->sgc = 0; in ixgbe_fcoe_clear_ddp() 111 dma_unmap_sg(&adapter->pdev->dev, ddp->sgl, ddp->sgc, in ixgbe_fcoe_ddp_put() 134 struct scatterlist *sgl, unsigned int sgc, in ixgbe_fcoe_ddp_setup() argument 171 xid, ddp->sgl, ddp->sgc); in ixgbe_fcoe_ddp_setup() 189 dmacount = dma_map_sg(&adapter->pdev->dev, sgl, sgc, DMA_FROM_DEVICE); in ixgbe_fcoe_ddp_setup() 203 ddp->sgc = sgc; in ixgbe_fcoe_ddp_setup() 324 dma_unmap_sg(&adapter->pdev->dev, sgl, sgc, DMA_FROM_DEVICE); in ixgbe_fcoe_ddp_setup() 345 struct scatterlist *sgl, unsigned int sgc) in ixgbe_fcoe_ddp_get() argument 347 return ixgbe_fcoe_ddp_setup(netdev, xid, sgl, sgc, 0); in ixgbe_fcoe_ddp_get() 366 struct scatterlist *sgl, unsigned int sgc) in ixgbe_fcoe_ddp_target() argument [all …]
|
D | ixgbe_fcoe.h | 38 unsigned int sgc; member
|
D | ixgbe.h | 951 struct scatterlist *sgl, unsigned int sgc); 953 struct scatterlist *sgl, unsigned int sgc);
|
/linux-5.19.10/net/8021q/ |
D | vlan_dev.c | 400 struct scatterlist *sgl, unsigned int sgc) in vlan_dev_fcoe_ddp_setup() argument 407 rc = ops->ndo_fcoe_ddp_setup(real_dev, xid, sgl, sgc); in vlan_dev_fcoe_ddp_setup() 447 struct scatterlist *sgl, unsigned int sgc) in vlan_dev_fcoe_ddp_target() argument 454 rc = ops->ndo_fcoe_ddp_target(real_dev, xid, sgl, sgc); in vlan_dev_fcoe_ddp_target()
|
/linux-5.19.10/include/linux/sched/ |
D | topology.h | 192 struct sched_group_capacity *__percpu *sgc; member
|
/linux-5.19.10/drivers/android/ |
D | binder.c | 2365 struct binder_sg_copy *sgc, *tmpsgc; in binder_do_deferred_txn_copies() local 2371 list_for_each_entry_safe(sgc, tmpsgc, sgc_head, node) { in binder_do_deferred_txn_copies() 2374 while (bytes_copied < sgc->length) { in binder_do_deferred_txn_copies() 2376 size_t bytes_left = sgc->length - bytes_copied; in binder_do_deferred_txn_copies() 2377 size_t offset = sgc->offset + bytes_copied; in binder_do_deferred_txn_copies() 2388 sgc->sender_uaddr + bytes_copied, in binder_do_deferred_txn_copies() 2418 list_del(&sgc->node); in binder_do_deferred_txn_copies() 2419 kfree(sgc); in binder_do_deferred_txn_copies() 2442 struct binder_sg_copy *sgc, *tmpsgc; in binder_cleanup_deferred_txn_lists() local 2445 list_for_each_entry_safe(sgc, tmpsgc, sgc_head, node) { in binder_cleanup_deferred_txn_lists() [all …]
|
/linux-5.19.10/drivers/scsi/fcoe/ |
D | fcoe.c | 1062 struct scatterlist *sgl, unsigned int sgc) in fcoe_ddp_setup() argument 1069 sgc); in fcoe_ddp_setup() 1084 struct scatterlist *sgl, unsigned int sgc) in fcoe_ddp_target() argument 1090 sgl, sgc); in fcoe_ddp_target()
|
/linux-5.19.10/include/linux/ |
D | netdevice.h | 1483 unsigned int sgc); 1489 unsigned int sgc);
|