scripts: add renoir support

Add renoir build support.

Signed-off-by: Basavaraj Hiregoudar <basavaraj.hiregoudar@amd.com>
Signed-off-by: Anup Kulkarni <anup.kulkarni@amd.com>
Signed-off-by: balapati <balakishore.pati@amd.com>
This commit is contained in:
balapati 2021-05-26 17:45:03 +05:30 committed by Liam Girdwood
parent 92b04717e9
commit 7453e3d571
1 changed files with 8 additions and 1 deletions

View File

@ -6,7 +6,7 @@
set -e
SUPPORTED_PLATFORMS=(byt cht bdw hsw apl skl kbl cnl sue icl jsl \
imx8 imx8x imx8m imx8ulp tgl tgl-h)
imx8 imx8x imx8m imx8ulp tgl tgl-h rn)
BUILD_ROM=no
BUILD_DEBUG=no
BUILD_FORCE_UP=no
@ -322,6 +322,13 @@ do
HOST="xtensa-imx8ulp-elf"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
;;
rn)
PLATFORM="renoir"
ARCH="xtensa"
XTENSA_CORE="ACP_3_1_001_PROD"
HOST="xtensa-rn-elf"
XTENSA_TOOLS_VERSION="RF-2016.4-linux"
;;
esac