/Zephyr-latest/drivers/i2c/ |
D | i2c_dw.c | 77 struct i2c_dw_dev_config *const dw = dev->data; in cb_i2c_idma_transfer() local 83 dw->xfr_status = true; in cb_i2c_idma_transfer() 85 dw->xfr_status = false; in cb_i2c_idma_transfer() 99 struct i2c_dw_dev_config *const dw = dev->data; in i2c_dw_dr_phy_addr() local 101 return (void *)(dw->phy_addr + DW_IC_REG_DATA_CMD); in i2c_dw_dr_phy_addr() 106 struct i2c_dw_dev_config *const dw = dev->data; in i2c_dw_idma_rx_transfer() local 130 dma_block_cfg.block_size = dw->xfr_len; in i2c_dw_idma_rx_transfer() 131 dma_block_cfg.dest_address = (uint64_t)&dw->xfr_buf[0]; in i2c_dw_idma_rx_transfer() 133 dw->xfr_status = false; in i2c_dw_idma_rx_transfer() 154 struct i2c_dw_dev_config *const dw = dev->data; in i2c_dw_idma_tx_transfer() local [all …]
|
/Zephyr-latest/samples/drivers/jesd216/src/ |
D | main.c | 247 uint8_t dw = 1; in dump_bfp() local 251 while (dw < limit) { in dump_bfp() 252 dw_extractor ext = extractor[dw]; in dump_bfp() 257 ++dw; in dump_bfp() 262 const uint32_t *dw) in dump_bytes() argument 269 const uint8_t *u8p = (const uint8_t *)&dw[nw]; in dump_bytes() 329 uint32_t dw[php->len_dw]; in main() local 331 rc = flash_sfdp_read(dev, addr, dw, sizeof(dw)); in main() 338 const struct jesd216_bfp *bfp = (struct jesd216_bfp *)dw; in main() 347 dump_bytes(php, dw); in main()
|
/Zephyr-latest/drivers/flash/ |
D | jesd216.h | 206 uint32_t dw = sys_le32_to_cpu(hp->dw2); in jesd216_bfp_density() local 208 if (dw & BIT(31)) { in jesd216_bfp_density() 209 return BIT64(dw & BIT_MASK(31)); in jesd216_bfp_density() 211 return 1U + (uint64_t)dw; in jesd216_bfp_density()
|
D | jesd216.c | 131 uint32_t dw = sys_le32_to_cpu(*dwp); in jesd216_bfp_erase() local 135 dw >>= 16; in jesd216_bfp_erase() 139 uint8_t exp = (uint8_t)dw; in jesd216_bfp_erase() 140 uint8_t cmd = (uint8_t)(dw >> 8); in jesd216_bfp_erase()
|
D | spi_nor.c | 1271 uint32_t dw[MIN(php->len_dw, 20)]; in spi_nor_process_sfdp() member 1277 u_param.dw, sizeof(u_param.dw)); in spi_nor_process_sfdp() 1295 uint32_t dw[2]; in spi_nor_process_sfdp() member 1302 dev, jesd216_param_addr(php), (uint8_t *)u2.dw, in spi_nor_process_sfdp() 1303 MIN(sizeof(uint32_t) * php->len_dw, sizeof(u2.dw))); in spi_nor_process_sfdp() 1319 if (!((sys_le32_to_cpu(u2.dw[0]) & in spi_nor_process_sfdp() 1321 (sys_le32_to_cpu(u2.dw[0]) & in spi_nor_process_sfdp()
|
D | flash_andes_qspi.c | 583 uint32_t dw[MIN(php->len_dw, 20)]; in spi_nor_process_sfdp() member 589 jesd216_param_addr(php), u_param.dw, sizeof(u_param.dw)); in spi_nor_process_sfdp()
|
/Zephyr-latest/dts/arm64/intel/ |
D | intel_socfpga_agilex.dtsi | 126 compatible = "snps,dw-timers"; 136 compatible = "snps,dw-timers"; 146 compatible = "snps,dw-timers"; 156 compatible = "snps,dw-timers";
|
D | intel_socfpga_agilex5.dtsi | 139 compatible = "snps,dw-timers"; 150 compatible = "snps,dw-timers"; 161 compatible = "snps,dw-timers"; 172 compatible = "snps,dw-timers";
|
/Zephyr-latest/dts/riscv/starfive/ |
D | starfive_jh7100_beagle_v.dtsi | 137 compatible = "ns16550", "snps,dw-apb-uart"; 150 compatible = "ns16550", "snps,dw-apb-uart"; 163 compatible = "ns16550", "snps,dw-apb-uart"; 176 compatible = "ns16550", "snps,dw-apb-uart";
|
D | jh7110-visionfive-v2.dtsi | 186 compatible = "ns16550", "snps,dw-apb-uart"; 199 compatible = "ns16550", "snps,dw-apb-uart";
|
/Zephyr-latest/drivers/dai/intel/dmic/ |
D | dmic_nhlt.h | 16 uint32_t dw; member
|
/Zephyr-latest/drivers/dai/intel/ssp/ |
D | dai-params-intel-ipc4.h | 138 uint32_t dw; member 164 uint32_t dw; member
|
/Zephyr-latest/drivers/dai/intel/alh/ |
D | alh.h | 54 uint32_t dw; member
|
/Zephyr-latest/boards/snps/nsim/arc_v/ |
D | rmx1xx.dtsi | 41 compatible = "ns16550", "snps,dw-apb-uart";
|
/Zephyr-latest/drivers/dma/ |
D | Kconfig.dw_common | 43 int "dw max channel count"
|
D | Kconfig | 33 source "drivers/dma/Kconfig.dw"
|
/Zephyr-latest/drivers/input/ |
D | input_xpt2046.c | 106 struct k_work_delayable *dw = k_work_delayable_from_work(kw); in xpt2046_release_handler() local 107 struct xpt2046_data *data = CONTAINER_OF(dw, struct xpt2046_data, dwork); in xpt2046_release_handler()
|
/Zephyr-latest/dts/arm/intel_socfpga_std/ |
D | socfpga.dtsi | 118 compatible = "ns16550","snps,dw-apb-uart"; 127 compatible = "ns16550","snps,dw-apb-uart";
|
/Zephyr-latest/drivers/counter/ |
D | Kconfig | 95 source "drivers/counter/Kconfig.dw"
|
/Zephyr-latest/doc/develop/toolchains/ |
D | designware_arc_mwdt.rst | 6 #. You need to have `ARC MWDT <https://www.synopsys.com/dw/ipdir.php?ds=sw_metaware>`_ installed on
|
/Zephyr-latest/subsys/net/ip/ |
D | ipv6_pe.c | 666 struct deprecated_work *dw = CONTAINER_OF(dwork, in send_deprecated_event() local 671 dw->iface, &dw->addr, in send_deprecated_event()
|
/Zephyr-latest/boards/qemu/arc/doc/ |
D | index.rst | 99 …<https://www.synopsys.com/dw/doc.php/iip/dwc_arc_hs4xd/latest/doc/ARC_V2_PublicProgrammers_Referen…
|
/Zephyr-latest/drivers/interrupt_controller/ |
D | Kconfig | 67 source "drivers/interrupt_controller/Kconfig.dw"
|
/Zephyr-latest/boards/snps/iotdk/doc/ |
D | index.rst | 15 (IoTDK) <https://www.synopsys.com/dw/ipdir.php?ds=arc_iot_development_kit>`__ 189 .. _Designware ARC IoT Development Kit website: https://www.synopsys.com/dw/ipdir.php?ds=arc_iot_de…
|
/Zephyr-latest/drivers/watchdog/ |
D | Kconfig | 105 source "drivers/watchdog/Kconfig.dw"
|