/linux-6.12.1/drivers/usb/gadget/udc/bdc/ |
D | bdc_core.c | 171 bdc->scratchpad.buff = dma_alloc_coherent(bdc->dev, sp_buff_size, in scratchpad_setup() 172 &bdc->scratchpad.sp_dma, in scratchpad_setup() 175 if (!bdc->scratchpad.buff) in scratchpad_setup() 179 bdc->scratchpad.size = sp_buff_size; in scratchpad_setup() 180 low32 = lower_32_bits(bdc->scratchpad.sp_dma); in scratchpad_setup() 181 upp32 = upper_32_bits(bdc->scratchpad.sp_dma); in scratchpad_setup() 189 bdc->scratchpad.buff = NULL; in scratchpad_setup() 228 bdc_writel(bdc->regs, BDC_SPBBAL, bdc->scratchpad.sp_dma); in bdc_mem_init() 287 memset(bdc->scratchpad.buff, 0, bdc->sp_buff_size); in bdc_mem_init() 322 if (bdc->scratchpad.buff) in bdc_mem_free() [all …]
|
D | bdc.h | 422 struct bdc_scratchpad scratchpad; member
|
/linux-6.12.1/Documentation/PCI/endpoint/ |
D | pci-ntb-function.rst | 68 scratchpad offset and number of memory windows to the host using this region. 165 Self scratchpad region and config region are packed together in the 167 and the latter portion of the region is for self scratchpad. This 168 register will specify the offset of the self scratchpad registers. 172 Specifies the number of scratchpad registers supported by the NTB 227 There are 5 or more distinct regions (config, self scratchpad, peer 228 scratchpad, doorbell, one or more memory windows) to be modeled to achieve 293 region and scratchpad region (self scratchpad) using BAR0 of EP controller 1. 295 scratchpad region (peer scratchpad) using BAR1 of EP controller 2. This
|
/linux-6.12.1/drivers/gpio/ |
D | gpio-mlxbf.c | 31 u64 scratchpad; member 95 gs->csave_regs.scratchpad = readq(gs->base + MLXBF_GPIO_SCRATCHPAD); in mlxbf_gpio_suspend() 114 writeq(gs->csave_regs.scratchpad, gs->base + MLXBF_GPIO_SCRATCHPAD); in mlxbf_gpio_resume()
|
/linux-6.12.1/drivers/irqchip/ |
D | irq-gic-v3-its-msi-parent.c | 68 info->scratchpad[0].ul = pci_msi_domain_get_msi_rid(domain->parent, pdev); in its_pci_msi_prepare() 89 if (!info->scratchpad[0].ul) in its_pci_msi_prepare() 144 info->scratchpad[0].ul = dev_id; in its_pmsi_prepare()
|
D | irq-gic-v3-its-fsl-mc-msi.c | 59 info->scratchpad[0].ul = fsl_mc_msi_domain_get_msi_id(msi_domain, in its_fsl_mc_msi_prepare()
|
/linux-6.12.1/drivers/usb/host/ |
D | xhci-mem.c | 1630 xhci->scratchpad = kzalloc_node(sizeof(*xhci->scratchpad), flags, in scratchpad_alloc() 1632 if (!xhci->scratchpad) in scratchpad_alloc() 1635 xhci->scratchpad->sp_array = dma_alloc_coherent(dev, in scratchpad_alloc() 1637 &xhci->scratchpad->sp_dma, flags); in scratchpad_alloc() 1638 if (!xhci->scratchpad->sp_array) in scratchpad_alloc() 1641 xhci->scratchpad->sp_buffers = kcalloc_node(num_sp, sizeof(void *), in scratchpad_alloc() 1643 if (!xhci->scratchpad->sp_buffers) in scratchpad_alloc() 1646 xhci->dcbaa->dev_context_ptrs[0] = cpu_to_le64(xhci->scratchpad->sp_dma); in scratchpad_alloc() 1654 xhci->scratchpad->sp_array[i] = dma; in scratchpad_alloc() 1655 xhci->scratchpad->sp_buffers[i] = buf; in scratchpad_alloc() [all …]
|
/linux-6.12.1/drivers/net/wwan/iosm/ |
D | iosm_ipc_pcie.c | 28 iounmap(ipc_pcie->scratchpad); in ipc_pcie_resources_release() 100 ipc_pcie->scratchpad = in ipc_pcie_resources_request() 103 if (!ipc_pcie->scratchpad) { in ipc_pcie_resources_request() 132 iounmap(ipc_pcie->scratchpad); in ipc_pcie_resources_request() 315 ipc_pcie->scratchpad, ipc_pcie->dev); in ipc_pcie_probe()
|
D | iosm_ipc_pcie.h | 68 void __iomem *scratchpad; member
|
/linux-6.12.1/crypto/ |
D | drbg.c | 525 unsigned char *temp = drbg->scratchpad; in drbg_ctr_update() 526 unsigned char *df_data = drbg->scratchpad + drbg_statelen(drbg) + in drbg_ctr_update() 813 unsigned char *tmp = drbg->scratchpad + drbg_statelen(drbg); in drbg_hash_df() 852 unsigned char *V = drbg->scratchpad; in drbg_hash_update() 883 memset(drbg->scratchpad, 0, drbg_statelen(drbg)); in drbg_hash_update() 906 ret = drbg_kcapi_hash(drbg, drbg->scratchpad, &datalist); in drbg_hash_process_addtl() 912 drbg->scratchpad, drbg_blocklen(drbg)); in drbg_hash_process_addtl() 915 memset(drbg->scratchpad, 0, drbg_blocklen(drbg)); in drbg_hash_process_addtl() 926 unsigned char *src = drbg->scratchpad; in drbg_hash_hashgen() 927 unsigned char *dst = drbg->scratchpad + drbg_statelen(drbg); in drbg_hash_hashgen() [all …]
|
/linux-6.12.1/Documentation/driver-api/ |
D | ntb.rst | 9 scratchpad and message registers. Scratchpad registers are read-and-writable 109 number) to the peer device using, for instance, scratchpad or message 139 and scratchpad registers of NTB hardware, and as an example simple NTB client. 141 then proceeds to read and write the doorbell scratchpad registers of the NTB. 145 scratchpad, and writes the value plus one to the first peer scratchpad, each 150 * unsafe - Some hardware has known issues with scratchpad and doorbell 196 series of pairs of scratchpad number and value
|
/linux-6.12.1/include/asm-generic/ |
D | msi.h | 31 } scratchpad[NUM_MSI_ALLOC_SCRATCHPAD_REGS]; member
|
/linux-6.12.1/Documentation/PCI/endpoint/function/binding/ |
D | pci-ntb.rst | 37 spad_count Number of scratchpad registers; default = 64
|
/linux-6.12.1/drivers/ntb/test/ |
D | Kconfig | 15 scratchpad registers to be read and written from the debugfs. This
|
/linux-6.12.1/include/crypto/ |
D | drbg.h | 125 unsigned char *scratchpad; member
|
/linux-6.12.1/drivers/hwtracing/intel_th/ |
D | intel_th.h | 42 unsigned int scratchpad; member
|
D | gth.c | 554 reg &= ~output->scratchpad; in intel_th_gth_disable() 611 scrpd |= output->scratchpad; in intel_th_gth_enable()
|
D | core.c | 677 thdev->output.scratchpad = subdev->scrpd; in intel_th_subdevice_alloc()
|
/linux-6.12.1/drivers/cdx/ |
D | cdx_msi.c | 140 info->scratchpad[0].ul = dev_id; in cdx_msi_prepare()
|
/linux-6.12.1/drivers/net/wireless/ath/wil6210/ |
D | txrx_edma.h | 179 u16 scratchpad; member
|
/linux-6.12.1/drivers/w1/slaves/ |
D | w1_therm.c | 1827 struct therm_info scratchpad; in alarms_show() local 1829 ret = read_scratchpad(sl, &scratchpad); in alarms_show() 1832 th = scratchpad.rom[2]; /* TH is byte 2 */ in alarms_show() 1833 tl = scratchpad.rom[3]; /* TL is byte 3 */ in alarms_show()
|
/linux-6.12.1/drivers/scsi/mpi3mr/mpi/ |
D | mpi30_transport.h | 68 __le32 scratchpad[4]; member
|
/linux-6.12.1/drivers/mmc/host/ |
D | sdhci-esdhc-imx.c | 334 u32 scratchpad; member 787 imx_data->scratchpad = val; in esdhc_writew_le() 802 writel(val << 16 | imx_data->scratchpad, in esdhc_writew_le()
|
/linux-6.12.1/Documentation/ABI/testing/ |
D | sysfs-driver-w1_therm | 175 scratchpad memory is 0xC after conversion, and
|
/linux-6.12.1/Documentation/w1/slaves/ |
D | w1_therm.rst | 127 checking the conversion success. If byte 6 of scratchpad memory is 0xC after
|