forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drm/asahi: Add the Asahi driver for Apple AGX GPUs
Signed-off-by: Asahi Lina <lina@asahilina.net>
- Loading branch information
Showing
45 changed files
with
17,996 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
|
||
config RUST_DRM_SCHED | ||
bool | ||
select DRM_SCHED | ||
|
||
config RUST_DRM_GEM_SHMEM_HELPER | ||
bool | ||
select DRM_GEM_SHMEM_HELPER | ||
|
||
config DRM_ASAHI | ||
tristate "Asahi (DRM support for Apple AGX GPUs)" | ||
depends on RUST | ||
depends on DRM | ||
depends on (ARM64 && ARCH_APPLE) || (COMPILE_TEST && !GENERIC_ATOMIC64) | ||
depends on MMU | ||
select RUST_DRM_SCHED | ||
select IOMMU_SUPPORT | ||
select IOMMU_IO_PGTABLE_LPAE | ||
select RUST_DRM_GEM_SHMEM_HELPER | ||
select RUST_APPLE_RTKIT | ||
help | ||
DRM driver for Apple AGX GPUs (G13x, found in the M1 SoC family) | ||
|
||
config DRM_ASAHI_DEBUG_ALLOCATOR | ||
bool "Use debug allocator" | ||
depends on DRM_ASAHI | ||
help | ||
Use an alternate, simpler allocator which significantly reduces | ||
performance, but can help find firmware- or GPU-side memory safety | ||
issues. However, it can also trigger firmware bugs more easily, | ||
so expect GPU crashes. | ||
|
||
Say N unless you are debugging firmware structures or porting to a | ||
new firmware version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
|
||
obj-$(CONFIG_DRM_ASAHI) += asahi.o |
Oops, something went wrong.