]> git.baikalelectronics.ru Git - uboot.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)
commit94be3974d5a39bd6cea79dd2a4f9d13eac61c30b
tree89af7a8a903976137275a721fc4f7bbde5688270
parentec7849a615f04f6f736ff91b66ca9e0f25bf6533
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