Skip to content
Permalink
Browse files
rtkit WIP
  • Loading branch information
svenpeter42 committed Aug 22, 2021
1 parent 7e22f13 commit e1c3f7d1ea66ed49a4bd862f5ad016a964dc1c61
Show file tree
Hide file tree
Showing 6 changed files with 637 additions and 0 deletions.
@@ -3,6 +3,7 @@ menu "SOC (System On Chip) specific Drivers"

source "drivers/soc/actions/Kconfig"
source "drivers/soc/amlogic/Kconfig"
source "drivers/soc/apple/Kconfig"
source "drivers/soc/aspeed/Kconfig"
source "drivers/soc/atmel/Kconfig"
source "drivers/soc/bcm/Kconfig"
@@ -4,6 +4,7 @@
#

obj-$(CONFIG_ARCH_ACTIONS) += actions/
obj-$(CONFIG_ARCH_APPLE) += apple/
obj-y += aspeed/
obj-$(CONFIG_ARCH_AT91) += atmel/
obj-y += bcm/
@@ -0,0 +1,15 @@
# SPDX-License-Identifier: GPL-2.0-only
if ARCH_APPLE || COMPILE_TEST

config APPLE_RTKIT
bool "Apple RTKit co-processor IPC protocol"
depends on ARCH_APPLE || COMPILE_TEST
default ARCH_APPLE
help
Apple SoCs such as the M1 come with various co-processors running
their proprietary RTKit operating system. This option enables support
for the common IPC protocl used by these.

Say 'y' here if you have an Apple SoC.

endif
@@ -0,0 +1,3 @@
# SPDX-License-Identifier: GPL-2.0+

obj-$(CONFIG_APPLE_RTKIT) += apple-rtkit.o

0 comments on commit e1c3f7d

Please sign in to comment.