amd: vangogh: add build support for vangogh

Add build support to enable vangogh platform.

Signed-off-by: SaiSurya, Ch <saisurya.chakkaveeravenkatanaga@amd.com>
This commit is contained in:
SaiSurya, Ch 2023-06-20 13:54:18 +05:30 committed by Liam Girdwood
parent ea233be4a7
commit b1683ec1d6
4 changed files with 22 additions and 2 deletions

View File

@ -16,6 +16,8 @@ elseif(CONFIG_RENOIR)
set(platform_folder amd/renoir)
elseif(CONFIG_REMBRANDT)
set(platform_folder amd/rembrandt)
elseif(CONFIG_VANGOGH)
set(platform_folder amd/vangogh)
elseif(CONFIG_MT8186)
set(platform_folder mt8186)
elseif(CONFIG_MT8188)
@ -468,7 +470,7 @@ add_custom_target(
# NXP
set(UNSIGNED_RI imx8 imx8x imx8m imx8ulp)
# AMD
list(APPEND UNSIGNED_RI rn rmb)
list(APPEND UNSIGNED_RI rn rmb vangogh)
# MediaTek
list(APPEND UNSIGNED_RI mt8186 mt8188 mt8195)

View File

@ -4,4 +4,6 @@ if(CONFIG_RENOIR)
add_subdirectory(renoir)
elseif(CONFIG_REMBRANDT)
add_subdirectory(rembrandt)
elseif(CONFIG_VANGOGH)
add_subdirectory(vangogh)
endif()

View File

@ -167,6 +167,19 @@ config REMBRANDT
help
Select if your target platform is rembrandt-compatible
config VANGOGH
bool "Build for Vangogh"
select XT_INTERRUPT_LEVEL_5
select XT_INTERRUPT_LEVEL_3
select XT_INTERRUPT_LEVEL_1
select XT_INTERRUPT_LEVEL_4
select XT_WAITI_DELAY
select XTENSA_EXCLUSIVE
select AMD
select SCHEDULE_DMA_MULTI_CHANNEL
help
Select if your target platform is vangogh-compatible
config MT8186
bool "Build for MTK MT8186"
select XT_INTERRUPT_LEVEL_1
@ -405,6 +418,7 @@ config RIMAGE_SIGNING_SCHEMA
default "imx8ulp" if IMX8ULP
default "rn" if RENOIR
default "rmb" if REMBRANDT
default "vangogh" if VANGOGH
default "mt8186" if MT8186
default "mt8188" if MT8188
default "mt8195" if MT8195

View File

@ -1,7 +1,9 @@
# SPDX-License-Identifier: BSD-3-Clause
add_subdirectory(common)
if(CONFIG_RENOIR)
add_subdirectory(renoir)
add_subdirectory(renoir)
elseif(CONFIG_REMBRANDT)
add_subdirectory(rembrandt)
elseif(CONFIG_VANGOGH)
add_subdirectory(vangogh)
endif()