@@ -159,9 +159,18 @@ Architectures
159159
160160* ARM
161161
162- * AARCH32
163-
164- * AARCH64
162+ * ARM64
163+
164+ * :c:func: `arch_mem_map ` now supports :c:enumerator: `K_MEM_PERM_USER `.
165+ * Added :kconfig:option: `CONFIG_WAIT_AT_RESET_VECTOR ` to spin at reset vector
166+ allowing a debugger to be attached.
167+ * Implemented erratum 822227 "Using unsupported 16K translation granules
168+ might cause Cortex-A57 to incorrectly trigger a domain fault".
169+ * Enabled single-threaded support for some platforms.
170+ * IRQ stack is now initialized when :kconfig:option: `CONFIG_INIT_STACKS ` is set.
171+ * Fixed issue when cache API are used from userspace.
172+ * Fixed issue about the way IPI are delivered.
173+ * TF-A (TrustedFirmware-A) is now shipped as module
165174
166175* Posix
167176
@@ -216,6 +225,8 @@ Boards & SoC Support
216225
217226* Added support for these ARM64 boards:
218227
228+ * i.MX8M Nano LPDDR4 EVK board
229+
219230* Removed support for these ARM boards:
220231
221232* Removed support for these X86 boards:
@@ -435,6 +446,17 @@ Libraries / Subsystems
435446 * Added :c:macro: `LOG_RAW ` for logging strings without additional formatting.
436447 It is similar to :c:macro: `LOG_PRINTK ` but do not append ``<cr> `` when new line is found.
437448
449+ * IPC
450+
451+ * Introduced a 'zephyr,buffer-size' DT property to set the sizes for TX and
452+ RX buffers per created instance.
453+ * Set WQ priority back to PRIO_PREEMPT to fix an issue that was starving the scheduler.
454+ * ``icmsg_buf `` library was renamed to ``spsc_pbuf ``.
455+ * Added cache handling support to ``spsc_pbuf ``.
456+ * Fixed an issue where the TX virtqueue was misaligned by 2 bytes due to the
457+ way the virtqueue start address is calculated
458+ * Added :c:func: `ipc_service_deregister_endpoint ` function to deregister endpoints.
459+
438460* LoRaWAN
439461
440462* Modbus
0 commit comments