zephyr/samples/drivers/memc
Ioannis Karachalios db67eaa346 samples: drivers: memc: Add support for Smartbond Pro DevKit.
Add configuration and overlay files to support the DA1469x development kit.

Signed-off-by: Ioannis Karachalios <ioannis.karachalios.px@renesas.com>
2024-05-23 07:51:41 -04:00
..
boards samples: drivers: memc: support PSRAM on RW612 while using XIP mode 2024-05-14 18:21:57 -04:00
src samples: drivers: memc: Add support for Smartbond Pro DevKit. 2024-05-23 07:51:41 -04:00
CMakeLists.txt samples: drivers: memc: get AHB address dynamically 2023-10-20 14:53:10 +02:00
prj.conf samples: drivers: memc: add sample to test memory controllers 2023-01-04 10:35:25 +01:00
README.rst samples: drivers: memc: Fix README 2024-03-26 10:48:18 -04:00
sample.yaml hwmv2: Introduce Hardware model version 2 and convert devices 2024-03-02 16:56:33 -05:00

.. zephyr:code-sample:: memc
   :name: Memory controller (MEMC) driver

   Access memory-mapped external RAM

Overview
********

This sample can be used with any memory controller driver that
memory maps external RAM. It is intended to demonstrate
the ability to read and write from the memory mapped region.

Note that the chosen region (set by ``sram-ext`` dt alias node) should not
overlap with memory used for XIP or SRAM by the application, as the sample
would overwrite this data


Building and Running
********************

This application can be built and executed on an RT595 EVK as follows:

.. zephyr-app-commands::
   :zephyr-app: samples/drivers/memc
   :host-os: unix
   :board: mimxrt595_evk/mimxrt595s/cm33
   :goals: run
   :compact:

To build for another board, change "mimxrt595_evk/mimxrt595s/cm33" above to that
board's name.

Sample Output
=============

.. code-block:: console

  *** Booting Zephyr OS build zephyr-v3.2.0-2686-gd52d828c2bdc ***
  Writing to memory region with base 0x38000000, size 0x800000

  Check (0/8191) passed!
  Check (1/8191) passed!
  ...
  Check (8190/8191) passed!
  Check (8191/8191) passed!

  First 1KB of Data in memory:
  \=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=\=
  00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f
  10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f
  20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f
  ....

  Read data matches written data