Searched refs:dw15 (Results 1 – 5 of 5) sorted by relevance
/Zephyr-Core-3.6.0/drivers/flash/ |
D | jesd216.c | 299 uint32_t dw15 = sys_le32_to_cpu(bfp->dw10[5]); in jesd216_bfp_decode_dw15() local 301 res->hold_reset_disable = (dw15 & BIT(23)) != 0U; in jesd216_bfp_decode_dw15() 302 res->qer = (dw15 >> 20) & 0x07; in jesd216_bfp_decode_dw15() 303 res->entry_044 = (dw15 >> 16) & 0x0F; in jesd216_bfp_decode_dw15() 304 res->exit_044 = (dw15 >> 10) & 0x3F; in jesd216_bfp_decode_dw15() 305 res->support_044 = (dw15 & BIT(9)) != 0U; in jesd216_bfp_decode_dw15() 306 res->enable_444 = (dw15 >> 4) & 0x1F; in jesd216_bfp_decode_dw15() 307 res->disable_444 = (dw15 >> 0) & 0x0F; in jesd216_bfp_decode_dw15()
|
D | flash_mcux_flexspi_nor.c | 710 struct jesd216_bfp_dw15 dw15; in flash_flexspi_nor_config_flash() local 766 ret = jesd216_bfp_decode_dw15(&header->phdr[0], bfp, &dw15); in flash_flexspi_nor_config_flash() 770 ret = flash_flexspi_nor_quad_enable(data, flexspi_lut, dw15.qer); in flash_flexspi_nor_config_flash()
|
D | flash_stm32_qspi.c | 1083 struct jesd216_bfp_dw15 dw15; in spi_nor_process_bfp() local 1115 rc = jesd216_bfp_decode_dw15(php, bfp, &dw15); in spi_nor_process_bfp() 1121 data->qer_type = dw15.qer; in spi_nor_process_bfp()
|
D | flash_stm32_ospi.c | 1756 struct jesd216_bfp_dw15 dw15; in spi_nor_process_bfp() local 1839 if (jesd216_bfp_decode_dw15(php, bfp, &dw15) < 0) { in spi_nor_process_bfp() 1844 data->qer_type = dw15.qer; in spi_nor_process_bfp()
|
/Zephyr-Core-3.6.0/samples/drivers/jesd216/src/ |
D | main.c | 190 struct jesd216_bfp_dw15 dw15; in summarize_dw15() local 192 if (jesd216_bfp_decode_dw15(php, bfp, &dw15) != 0) { in summarize_dw15() 196 dw15.hold_reset_disable ? "" : "un"); in summarize_dw15() 197 printf("QER: %u\n", dw15.qer); in summarize_dw15() 198 if (dw15.support_044) { in summarize_dw15() 200 dw15.entry_044, dw15.exit_044); in summarize_dw15() 205 dw15.enable_444, dw15.disable_444); in summarize_dw15()
|