Searched refs:mspi (Results 1 – 25 of 37) sorted by relevance
12
/Zephyr-latest/tests/drivers/mspi/flash/boards/ |
D | native_sim.overlay | 22 compatible = "zephyr,mspi-emul-flash"; 25 mspi-max-frequency = <48000000>; 26 mspi-io-mode = "MSPI_IO_MODE_QUAD"; 27 mspi-data-rate = "MSPI_DATA_RATE_SINGLE"; 28 mspi-hardware-ce-num = <0>; 39 compatible = "zephyr,mspi-emul-flash"; 42 mspi-max-frequency = <96000000>; 43 mspi-io-mode = "MSPI_IO_MODE_OCTAL"; 44 mspi-data-rate = "MSPI_DATA_RATE_DUAL"; 45 mspi-hardware-ce-num = <1>; [all …]
|
D | apollo3p_evb.overlay | 18 compatible = "ambiq,mspi-controller"; 31 compatible = "ambiq,mspi-device", "mspi-atxp032"; 35 mspi-max-frequency = <48000000>; 36 mspi-io-mode = "MSPI_IO_MODE_OCTAL"; 37 mspi-data-rate = "MSPI_DATA_RATE_SINGLE"; 38 mspi-hardware-ce-num = <0>; 83 ambiq,iom-mspi = <0>; 90 ambiq,iom-mspi = <0>; 97 ambiq,iom-mspi = <0>;
|
/Zephyr-latest/samples/drivers/mspi/mspi_flash/boards/ |
D | apollo3p_evb.overlay | 37 compatible = "ambiq,mspi-device", "mspi-aps6404l"; 41 mspi-max-frequency = <48000000>; 42 mspi-io-mode = "MSPI_IO_MODE_QUAD"; 43 mspi-data-rate = "MSPI_DATA_RATE_SINGLE"; 44 mspi-hardware-ce-num = <0>; 58 compatible = "ambiq,mspi-device", "mspi-atxp032"; 62 mspi-max-frequency = <48000000>; 63 mspi-io-mode = "MSPI_IO_MODE_OCTAL"; 64 mspi-data-rate = "MSPI_DATA_RATE_SINGLE"; 65 mspi-hardware-ce-num = <0>; [all …]
|
/Zephyr-latest/samples/drivers/memc/boards/ |
D | apollo3p_evb.overlay | 36 compatible = "ambiq,mspi-device", "mspi-aps6404l"; 40 mspi-max-frequency = <48000000>; 41 mspi-io-mode = "MSPI_IO_MODE_QUAD"; 42 mspi-data-rate = "MSPI_DATA_RATE_SINGLE"; 43 mspi-hardware-ce-num = <0>; 90 ambiq,iom-mspi = <0>; 97 ambiq,iom-mspi = <0>; 104 ambiq,iom-mspi = <0>;
|
/Zephyr-latest/samples/drivers/mspi/mspi_async/boards/ |
D | apollo3p_evb.overlay | 36 compatible = "ambiq,mspi-device", "mspi-aps6404l"; 40 mspi-max-frequency = <48000000>; 41 mspi-io-mode = "MSPI_IO_MODE_QUAD"; 42 mspi-data-rate = "MSPI_DATA_RATE_SINGLE"; 43 mspi-hardware-ce-num = <0>; 90 ambiq,iom-mspi = <0>; 97 ambiq,iom-mspi = <0>; 104 ambiq,iom-mspi = <0>;
|
/Zephyr-latest/tests/drivers/mspi/api/boards/ |
D | apollo3p_evb.overlay | 18 compatible = "ambiq,mspi-controller"; 28 compatible = "zephyr,mspi-emul-device"; 30 mspi-max-frequency = <48000000>; 65 ambiq,iom-mspi = <0>; 72 ambiq,iom-mspi = <0>; 79 ambiq,iom-mspi = <0>;
|
D | native_sim.overlay | 16 compatible = "zephyr,mspi-emul-device"; 18 mspi-max-frequency = <48000000>;
|
/Zephyr-latest/samples/drivers/mspi/mspi_async/ |
D | README.rst | 1 .. zephyr:code-sample:: mspi-async 21 * :dtcompatible:`ambiq,mspi-device`, :dtcompatible:`mspi-aps6404l` 24 :zephyr-app: samples/drivers/mspi/mspi_async
|
D | CMakeLists.txt | 12 target_include_directories(app PRIVATE ${ZEPHYR_BASE}/drivers/mspi)
|
/Zephyr-latest/samples/drivers/mspi/mspi_flash/ |
D | README.rst | 1 .. zephyr:code-sample:: mspi-flash 21 * :dtcompatible:`ambiq,mspi-device`, :dtcompatible:`mspi-atxp032` 24 :zephyr-app: samples/drivers/mspi/mspi_flash
|
D | CMakeLists.txt | 12 target_include_directories(app PRIVATE ${ZEPHYR_BASE}/drivers/mspi)
|
/Zephyr-latest/doc/hardware/peripherals/ |
D | mspi.rst | 112 The mspi controller's bindings should reference mspi-controller.yaml as one of the base. 116 mspi0: mspi@400 { 118 compatible = "zephyr,mspi-emul-controller"; 135 The mspi device's bindings should reference mspi-device.yaml as one of the base. 143 compatible = "zephyr,mspi-emul-device"; 148 mspi-max-frequency = < 0x2dc6c00 >; 149 mspi-io-mode = "MSPI_IO_MODE_QUAD"; 150 mspi-data-rate = "MSPI_DATA_RATE_SINGLE"; 151 mspi-hardware-ce-num = < 0x0 >; 164 User should specify target operating parameters in the DTS such as ``mspi-max-frequency``, [all …]
|
D | index.rst | 46 mspi.rst
|
/Zephyr-latest/drivers/mspi/ |
D | Kconfig.ambiq | 21 This option specifies the mspi buffer/heap start address 28 This option specifies the mspi buffer alignment
|
D | Kconfig | 59 module-str = mspi 62 source "drivers/mspi/Kconfig.ambiq" 63 source "drivers/mspi/Kconfig.mspi_emul"
|
D | CMakeLists.txt | 3 zephyr_syscall_header(${ZEPHYR_BASE}/include/zephyr/drivers/mspi.h)
|
/Zephyr-latest/include/zephyr/drivers/ |
D | emul.h | 98 struct mspi_emul *mspi; member 124 (COND_CODE_1(DT_ON_BUS(_dev_node_id, mspi), (_mspi), \ 157 .bus = {.Z_EMUL_BUS(node_id, i2c, espi, spi, mspi, uart, none) = \
|
/Zephyr-latest/samples/drivers/mspi/ |
D | index.rst | 1 .. zephyr:code-sample-category:: mspi
|
/Zephyr-latest/boards/ambiq/apollo3p_evb/ |
D | apollo3p_evb-pinctrl.dtsi | 128 ambiq,iom-mspi = <0>; 149 ambiq,iom-mspi = <0>; 166 ambiq,iom-mspi = <0>;
|
/Zephyr-latest/subsys/emul/ |
D | emul.c | 59 emul->bus.mspi->target = emul; in emul_init_for_bus() 92 rc = mspi_emul_register(dev, emul->bus.mspi); in emul_init_for_bus()
|
/Zephyr-latest/tests/drivers/mspi/api/ |
D | CMakeLists.txt | 10 target_include_directories(app PRIVATE ${ZEPHYR_BASE}/drivers/mspi)
|
/Zephyr-latest/samples/drivers/memc/ |
D | CMakeLists.txt | 15 target_include_directories(app PRIVATE ${ZEPHYR_BASE}/drivers/mspi)
|
/Zephyr-latest/drivers/memc/ |
D | CMakeLists.txt | 31 zephyr_library_include_directories_ifdef(CONFIG_MEMC_MSPI_APS6404L ${ZEPHYR_BASE}/drivers/mspi)
|
D | Kconfig | 33 source "drivers/memc/Kconfig.mspi"
|
/Zephyr-latest/dts/arm/ambiq/ |
D | ambiq_apollo3p_blue.dtsi | 360 mspi0: mspi@50014000 { 361 compatible = "ambiq,mspi-controller"; 371 mspi1: mspi@50015000 { 372 compatible = "ambiq,mspi-controller"; 382 mspi2: mspi@50016000 { 383 compatible = "ambiq,mspi-controller";
|
12