]> git.dujemihanovic.xyz Git - u-boot.git/commit
arm: apple: nvme: Add SART support and RTKit buffer management
authorJanne Grunau <j@jannau.net>
Tue, 14 Jun 2022 07:09:07 +0000 (09:09 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 23 Jun 2022 12:24:49 +0000 (08:24 -0400)
commite44d59c6ad81fd4408877ea22127a7d4082dadd3
tree89af7a8a903976137275a721fc4f7bbde5688270
parent568a226f87655fd5339514f66413c2ad72f65d6f
arm: apple: nvme: Add SART support and RTKit buffer management

The NVMe firmware in the macOS 13 beta blocks or crashes with u-boot's
current minimal RTKit implementation. It does not provide buffers for
the firmware's buffer requests. The ANS2 firmware included in macOS 11
and 12 tolerates this. The firmware included in the first macOS 13 beta
requires buffers for the crashlog and ioreport endpoints to function.

In the case of the NVMe the buffers are physical memory. Access to
physical memory is guarded by what Apple calls SART.
Import m1n1's SART driver (exclusively used for the NVMe controller).
Implement buffer management helpers for RTKit. These are generic since
other devices (none in u-boot so far) require different handling.

Signed-off-by: Janne Grunau <j@jannau.net>
Reviewed-by: Mark Kettenis <kettenis@openbsd.org>
Tested-by: Mark Kettenis <kettenis@openbsd.org>
arch/arm/include/asm/arch-apple/rtkit.h
arch/arm/include/asm/arch-apple/sart.h [new file with mode: 0644]
arch/arm/mach-apple/Makefile
arch/arm/mach-apple/rtkit.c
arch/arm/mach-apple/sart.c [new file with mode: 0644]
drivers/nvme/nvme_apple.c