zephyr/tests/subsys
Carlo Caione e4a125b6a4 dt: Make zephyr,memory-attr a capabilities bitmask
This is the final step in making the `zephyr,memory-attr` property
actually useful.

The problem with the current implementation is that `zephyr,memory-attr`
is an enum type, this is making very difficult to use that to actually
describe the memory capabilities. The solution proposed in this PR is to
use the `zephyr,memory-attr` property as an OR-ed bitmask of memory
attributes.

With the change proposed in this PR it is possible in the DeviceTree to
mark the memory regions with a bitmask of attributes by using the
`zephyr,memory-attr` property. This property and the related memory
region can then be retrieved at run-time by leveraging a provided helper
library or the usual DT helpers.

The set of general attributes that can be specified in the property are
defined and explained in
`include/zephyr/dt-bindings/memory-attr/memory-attr.h` (the list can be
extended when needed).

For example, to mark a memory region in the DeviceTree as volatile,
non-cacheable, out-of-order:

   mem: memory@10000000 {
       compatible = "mmio-sram";
       reg = <0x10000000 0x1000>;
       zephyr,memory-attr = <( DT_MEM_VOLATILE |
			       DT_MEM_NON_CACHEABLE |
			       DT_MEM_OOO )>;
   };

The `zephyr,memory-attr` property can also be used to set
architecture-specific custom attributes that can be interpreted at run
time. This is leveraged, among other things, to create MPU regions out
of DeviceTree defined memory regions on ARM, for example:

   mem: memory@10000000 {
       compatible = "mmio-sram";
       reg = <0x10000000 0x1000>;
       zephyr,memory-region = "NOCACHE_REGION";
       zephyr,memory-attr = <( DT_ARM_MPU(ATTR_MPU_RAM_NOCACHE) )>;
   };

See `include/zephyr/dt-bindings/memory-attr/memory-attr-mpu.h` to see
how an architecture can define its own special memory attributes (in
this case ARM MPU).

The property can also be used to set custom software-specific
attributes. For example we can think of marking a memory region as
available to be used for memory allocation (not yet implemented):

   mem: memory@10000000 {
       compatible = "mmio-sram";
       reg = <0x10000000 0x1000>;
       zephyr,memory-attr = <( DT_MEM_NON_CACHEABLE |
			       DT_MEM_SW_ALLOCATABLE )>;
   };

Or maybe we can leverage the property to specify some alignment
requirements for the region:

   mem: memory@10000000 {
       compatible = "mmio-sram";
       reg = <0x10000000 0x1000>;
       zephyr,memory-attr = <( DT_MEM_CACHEABLE |
			       DT_MEM_SW_ALIGN(32) )>;
   };

The conventional and recommended way to deal and manage with memory
regions marked with attributes is by using the provided `mem-attr`
helper library by enabling `CONFIG_MEM_ATTR` (or by using the usual DT
helpers).

When this option is enabled the list of memory regions and their
attributes are compiled in a user-accessible array and a set of
functions is made available that can be used to query, probe and act on
regions and attributes, see `include/zephyr/mem_mgmt/mem_attr.h`

Note that the `zephyr,memory-attr` property is only a descriptive
property of the capabilities of the associated memory  region, but it
does not result in any actual setting for the memory to be set. The
user, code or subsystem willing to use this information to do some work
(for example creating an MPU region out of the property) must use either
the provided `mem-attr` library or the usual DeviceTree helpers to
perform the required work / setting.

Signed-off-by: Carlo Caione <ccaione@baylibre.com>
2023-09-15 12:46:54 +02:00
..
canbus/isotp tests: canbus: isotp: conformance: fix global variable usage 2023-09-14 08:34:09 +02:00
debug boards: xtensa: Add support for YD-ESP32 board 2023-08-15 11:15:39 +00:00
dfu samples, tests: convert string-based twister lists to YAML lists 2023-05-10 09:52:37 +02:00
dsp/basicmath samples, tests: convert string-based twister lists to YAML lists 2023-05-10 09:52:37 +02:00
edac tests: ibecc: Update IBECC test README 2023-09-13 17:32:52 -04:00
emul emul: change stub driver priority to kernel device default 2023-08-25 10:31:02 +02:00
fs nvs: replace CRC with better hash function for lookup cache 2023-09-04 18:21:20 +02:00
input input: rename callback define macro to INPUT_CALLBACK_DEFINE 2023-08-10 08:15:10 +00:00
ipc/ipc_service device: remove redundant init functions 2023-04-19 10:00:25 +02:00
jwt
logging logging: log_output: Add optional tid formatting 2023-08-31 14:08:19 +02:00
mem_mgmt/mem_attr dt: Make zephyr,memory-attr a capabilities bitmask 2023-09-15 12:46:54 +02:00
mgmt tests: mgmt: mcumgr: all_options: Add settings_mgmt 2023-08-25 10:54:06 +01:00
modbus tests: samples: cleanup test tags, add integration_platforms 2023-06-02 04:47:06 -04:00
modem modem: pipe: Reinvoke receive ready on attach 2023-09-14 16:44:04 -05:00
openthread drivers: ieee802154: nRF5: TX timestamp now refers to start of PHR 2023-08-16 17:06:16 +02:00
pm tests: pm: rename shadow variables 2023-08-22 11:39:58 +02:00
portability COVERAGE: Fix COVERAGE_GCOV dependencies 2023-08-24 15:36:31 +02:00
rtio/rtio_api tests: subsys: rtio: Set to 1cpu as it is not SMP-safe 2023-08-21 13:27:07 +02:00
sd samples, tests: convert string-based twister lists to YAML lists 2023-05-10 09:52:37 +02:00
settings tests: enable flash tests for mr_canhubk3 board 2023-07-26 09:44:14 +02:00
shell samples, tests: convert string-based twister lists to YAML lists 2023-05-10 09:52:37 +02:00
sip_svc tests: sip_svc: Add a stress test for sip_svc subsystem 2023-09-15 09:26:49 +02:00
storage tests: storage: rename shadow variables 2023-08-22 11:39:58 +02:00
testsuite/fff_fake_contexts samples, tests: convert string-based twister lists to YAML lists 2023-05-10 09:52:37 +02:00
tracing/tracing_api tests: tracing_api: move to new ztest API 2022-09-08 10:39:10 +02:00
usb sample/tests: remove CONFIG_USB_COMPOSITE_DEVICE usage 2023-07-26 14:37:15 +02:00
zbus tests: zbus: fix tests to work with iterable sections observers 2023-08-29 10:18:55 +02:00