arm,cortex-m33

Description

ARM Cortex-M33 CPU

Properties

Properties not inherited from the base binding file.

Name

Type

Details

device_type

string

Standard device_type identifying this node as a cpu. Required to maintain compatibility
with the IEEE 1275 standard as well as for DT_FOREACH_CPU family of devicetree macros to
identify cpu nodes within the "/cpus" parent node

Default value: cpu

zephyr,deferred-start

boolean

Do not start this CPU during kernel boot. By default, with CONFIG_SMP
the kernel starts every available CPU during start up. When this flag
is set the CPU is left un-started until architecture, SoC, board or
application code brings it up at run time with k_smp_cpu_start() (or
k_smp_cpu_resume()). The flag has no effect on the boot CPU.

clock-frequency

int

Clock frequency in Hz

cpu-power-states

phandles

List of power management states supported by this cpu

i-cache-line-size

int

i-cache line size

d-cache-line-size

int

d-cache line size

enable-method

string

Method by which a CPU in a disabled state is enabled. This property is
required for CPUs with a status property with a value of disabled. The
value may be one of the following:
- "psci": ARM Power State Coordination Interface.
- "spin-table": Standard DTSpec spin-table; requires cpu-release-addr.
- "[vendor],[method]": Vendor-defined method which describes the method a
  CPU is released from a disabled state.

For details, see "3.8.1 General Properties of /cpus/cpu* nodes" in
Devicetree Specification v0.4.

cpu-release-addr

array

Address of the release mailbox used by the spin-table enable-method.