diff options
author | Denys Dmytriyenko <denys@ti.com> | 2020-05-05 02:41:56 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2020-05-05 05:22:25 +0000 |
commit | f814840465358a6b5429ad20165742ac6e6e6a29 (patch) | |
tree | 7d422cc4b43da9ff25101378375ebc2f2356fd32 /conf | |
parent | 79e77ea1cf5b5370162b13f1f78c354d96b7b513 (diff) | |
download | meta-ti-f814840465358a6b5429ad20165742ac6e6e6a29.tar.gz |
conf, recipes-bsp: support building for K3 R5F cores via multiconfig
K3 Multicore SoC architecture defines different functional domains, each
containing specific processing cores and peripherals. Early boot is normally
handled by running bootloader and loading SYSFW on MCU Cortex-R5F core:
https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/board/ti/am65x/README
https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/board/ti/j721e/README
This change adds support for building bootloader and SYSFW ITB image for
K3 Cortex-R5F cores via multiconfig.
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/am65xx-evm-k3r5-sr2.conf | 11 | ||||
-rw-r--r-- | conf/machine/am65xx-evm-k3r5.conf | 12 | ||||
-rw-r--r-- | conf/machine/am65xx-evm.conf | 6 | ||||
-rw-r--r-- | conf/machine/am65xx-hs-evm-k3r5.conf | 13 | ||||
-rw-r--r-- | conf/machine/am65xx-hs-evm.conf | 20 | ||||
-rw-r--r-- | conf/machine/include/k3.inc | 13 | ||||
-rw-r--r-- | conf/machine/include/k3r5.inc | 23 | ||||
-rw-r--r-- | conf/machine/j7-evm-k3r5.conf | 11 | ||||
-rw-r--r-- | conf/machine/j7-hs-evm-k3r5.conf | 13 | ||||
-rw-r--r-- | conf/multiconfig/k3r5-sr2.conf | 3 | ||||
-rw-r--r-- | conf/multiconfig/k3r5.conf | 5 |
11 files changed, 124 insertions, 6 deletions
diff --git a/conf/machine/am65xx-evm-k3r5-sr2.conf b/conf/machine/am65xx-evm-k3r5-sr2.conf new file mode 100644 index 00000000..c0b3cd51 --- /dev/null +++ b/conf/machine/am65xx-evm-k3r5-sr2.conf | |||
@@ -0,0 +1,11 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: AM65xx SR2.0 EVM (R5F) | ||
3 | #@DESCRIPTION: Machine configuration for the TI AM65xx SR2.0 EVM (R5F core) | ||
4 | |||
5 | # Booting SR2 requires different SYSFW, the rest is handled at runtime | ||
6 | |||
7 | require conf/machine/am65xx-evm-k3r5.conf | ||
8 | SOC_FAMILY_append = ":k3r5-sr2" | ||
9 | |||
10 | SYSFW_SOC = "am65x_sr2" | ||
11 | SYSFW_SYMLINK = "sysfw.itb" | ||
diff --git a/conf/machine/am65xx-evm-k3r5.conf b/conf/machine/am65xx-evm-k3r5.conf new file mode 100644 index 00000000..bd17474e --- /dev/null +++ b/conf/machine/am65xx-evm-k3r5.conf | |||
@@ -0,0 +1,12 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: AM65xx EVM (R5F) | ||
3 | #@DESCRIPTION: Machine configuration for the TI AM65xx EVM (R5F core) | ||
4 | |||
5 | require conf/machine/include/k3r5.inc | ||
6 | |||
7 | SYSFW_SOC = "am65x" | ||
8 | SYSFW_CONFIG = "evm" | ||
9 | SYSFW_SUFFIX = "gp" | ||
10 | SYSFW_SYMLINK = "" | ||
11 | |||
12 | UBOOT_MACHINE = "am65x_evm_r5_defconfig" | ||
diff --git a/conf/machine/am65xx-evm.conf b/conf/machine/am65xx-evm.conf index 3edbb296..62fa3609 100644 --- a/conf/machine/am65xx-evm.conf +++ b/conf/machine/am65xx-evm.conf | |||
@@ -4,6 +4,8 @@ | |||
4 | 4 | ||
5 | require conf/machine/include/am65xx.inc | 5 | require conf/machine/include/am65xx.inc |
6 | 6 | ||
7 | BBMULTICONFIG += "k3r5-sr2" | ||
8 | |||
7 | MACHINE_FEATURES += "touchscreen" | 9 | MACHINE_FEATURES += "touchscreen" |
8 | 10 | ||
9 | SERIAL_CONSOLES = "115200;ttyS2 115200;ttyS1" | 11 | SERIAL_CONSOLES = "115200;ttyS2 115200;ttyS1" |
@@ -23,3 +25,7 @@ UBOOT_MACHINE = "am65x_evm_a53_defconfig" | |||
23 | OPTEEMACHINE = "k3" | 25 | OPTEEMACHINE = "k3" |
24 | OPTEEFLAVOR = "am65x" | 26 | OPTEEFLAVOR = "am65x" |
25 | OPTEEOUTPUTMACHINE = "k3" | 27 | OPTEEOUTPUTMACHINE = "k3" |
28 | |||
29 | IMAGE_BOOT_FILES += "sysfw-am65x-evm.itb" | ||
30 | do_image_wic[mcdepends] += "mc::k3r5-sr2:ti-sci-fw:do_deploy" | ||
31 | do_image_tar[mcdepends] += "mc::k3r5-sr2:ti-sci-fw:do_deploy" | ||
diff --git a/conf/machine/am65xx-hs-evm-k3r5.conf b/conf/machine/am65xx-hs-evm-k3r5.conf new file mode 100644 index 00000000..2b06f2cc --- /dev/null +++ b/conf/machine/am65xx-hs-evm-k3r5.conf | |||
@@ -0,0 +1,13 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: AM65xx HS EVM (R5F) | ||
3 | #@DESCRIPTION: Machine configuration for the TI AM65xx HS EVM (R5F core) | ||
4 | |||
5 | require conf/machine/include/k3r5.inc | ||
6 | |||
7 | SYSFW_SOC = "am65x" | ||
8 | SYSFW_CONFIG = "evm" | ||
9 | SYSFW_SUFFIX = "hs" | ||
10 | |||
11 | UBOOT_MACHINE = "am65x_hs_evm_r5_defconfig" | ||
12 | |||
13 | TI_SECURE_DEV_PKG = "${TI_SECURE_DEV_PKG_K3}" | ||
diff --git a/conf/machine/am65xx-hs-evm.conf b/conf/machine/am65xx-hs-evm.conf index f9897504..6d20a0de 100644 --- a/conf/machine/am65xx-hs-evm.conf +++ b/conf/machine/am65xx-hs-evm.conf | |||
@@ -2,10 +2,28 @@ | |||
2 | #@NAME: AM65xx HS EVM | 2 | #@NAME: AM65xx HS EVM |
3 | #@DESCRIPTION: Machine configuration for the TI AM65xx HS EVM | 3 | #@DESCRIPTION: Machine configuration for the TI AM65xx HS EVM |
4 | 4 | ||
5 | require conf/machine/am65xx-evm.conf | 5 | require conf/machine/include/am65xx.inc |
6 | |||
7 | MACHINE_FEATURES += "touchscreen" | ||
8 | |||
9 | SERIAL_CONSOLES = "115200;ttyS2 115200;ttyS1" | ||
10 | SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}" | ||
11 | |||
12 | KERNEL_DEVICETREE = " \ | ||
13 | ti/k3-am654-base-board.dtb ti/k3-am654-gp.dtbo \ | ||
14 | ti/k3-am654-evm-hdmi.dtbo ti/k3-am654-idk.dtbo \ | ||
15 | ti/k3-am654-evm-oldi-lcd1evm.dtbo ti/k3-am654-evm-tc358876.dtbo \ | ||
16 | ti/k3-am654-pcie-usb2.dtbo ti/k3-am654-pcie-usb3.dtbo \ | ||
17 | ti/k3-am654-base-board-jailhouse.dtbo \ | ||
18 | ti/k3-am654-evm-prupwm.dtbo \ | ||
19 | " | ||
6 | 20 | ||
7 | UBOOT_MACHINE = "am65x_hs_evm_a53_defconfig" | 21 | UBOOT_MACHINE = "am65x_hs_evm_a53_defconfig" |
8 | 22 | ||
23 | OPTEEMACHINE = "k3" | ||
24 | OPTEEFLAVOR = "am65x" | ||
25 | OPTEEOUTPUTMACHINE = "k3" | ||
26 | |||
9 | UBOOT_ENTRYPOINT = "0x80080000" | 27 | UBOOT_ENTRYPOINT = "0x80080000" |
10 | UBOOT_LOADADDRESS = "0x80080000" | 28 | UBOOT_LOADADDRESS = "0x80080000" |
11 | UBOOT_RD_LOADADDRESS = "0x84000000" | 29 | UBOOT_RD_LOADADDRESS = "0x84000000" |
diff --git a/conf/machine/include/k3.inc b/conf/machine/include/k3.inc index 5e67f5f3..0c16d968 100644 --- a/conf/machine/include/k3.inc +++ b/conf/machine/include/k3.inc | |||
@@ -1,8 +1,12 @@ | |||
1 | # TI K3 Aarch64 profile for Cortex-A53/A72 cores | ||
2 | |||
1 | require conf/machine/include/ti-soc.inc | 3 | require conf/machine/include/ti-soc.inc |
2 | SOC_FAMILY_append = ":k3" | 4 | SOC_FAMILY_append = ":k3" |
3 | 5 | ||
4 | require conf/machine/include/arm/arch-arm64.inc | 6 | require conf/machine/include/arm/arch-arm64.inc |
5 | 7 | ||
8 | BBMULTICONFIG += "k3r5" | ||
9 | |||
6 | # Increase this everytime you change something in the kernel | 10 | # Increase this everytime you change something in the kernel |
7 | MACHINE_KERNEL_PR = "r0" | 11 | MACHINE_KERNEL_PR = "r0" |
8 | 12 | ||
@@ -34,9 +38,8 @@ MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 screen alsa etherne | |||
34 | 38 | ||
35 | IMAGE_FSTYPES += "tar.xz wic.xz" | 39 | IMAGE_FSTYPES += "tar.xz wic.xz" |
36 | 40 | ||
37 | # Please note that booting K3 platform also requires | 41 | IMAGE_BOOT_FILES ?= "${SPL_BINARY} u-boot.${UBOOT_SUFFIX} tiboot3.bin sysfw.itb" |
38 | # tiboot3.bin and sysfw.itb, which are provided by meta-arago | ||
39 | # u-boot-k3-r5 and ti-sci-fw recipes | ||
40 | IMAGE_BOOT_FILES ?= "${SPL_BINARY} u-boot.${UBOOT_SUFFIX}" | ||
41 | WKS_FILE ?= "sdimage-3part.wks" | 42 | WKS_FILE ?= "sdimage-3part.wks" |
42 | do_image_wic[depends] += "u-boot:do_deploy" | 43 | do_image_wic[depends] += "virtual/bootloader:do_deploy" |
44 | do_image_wic[mcdepends] += "mc::k3r5:virtual/bootloader:do_deploy mc::k3r5:ti-sci-fw:do_deploy" | ||
45 | do_image_tar[mcdepends] += "mc::k3r5:virtual/bootloader:do_deploy mc::k3r5:ti-sci-fw:do_deploy" | ||
diff --git a/conf/machine/include/k3r5.inc b/conf/machine/include/k3r5.inc new file mode 100644 index 00000000..52fcf38b --- /dev/null +++ b/conf/machine/include/k3r5.inc | |||
@@ -0,0 +1,23 @@ | |||
1 | # TI K3 Armv7 profile for Cortex-R5F cores | ||
2 | |||
3 | require conf/machine/include/ti-soc.inc | ||
4 | SOC_FAMILY_append = ":k3r5" | ||
5 | |||
6 | # The closest of existing tunes for Cortex-R5F | ||
7 | DEFAULTTUNE = "armv7athf" | ||
8 | require conf/machine/include/tune-cortexa8.inc | ||
9 | |||
10 | # R5 runs early bootloader and loads SYSFW | ||
11 | # https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/board/ti/am65x/README | ||
12 | # https://git.ti.com/cgit/ti-u-boot/ti-u-boot/tree/board/ti/j721e/README | ||
13 | PREFERRED_PROVIDER_virtual/kernel = "linux-dummy" | ||
14 | PREFERRED_PROVIDER_virtual/bootloader = "u-boot-ti-staging" | ||
15 | PREFERRED_PROVIDER_u-boot = "u-boot-ti-staging" | ||
16 | |||
17 | SPL_BINARY = "" | ||
18 | UBOOT_SUFFIX = "bin" | ||
19 | UBOOT_BINARY = "tiboot3.${UBOOT_SUFFIX}" | ||
20 | UBOOT_IMAGE = "tiboot3-${MAINMACHINE}-${PV}-${PR}.${UBOOT_SUFFIX}" | ||
21 | UBOOT_SYMLINK = "tiboot3-${MAINMACHINE}.${UBOOT_SUFFIX}" | ||
22 | |||
23 | PACKAGECONFIG_pn-u-boot-ti-staging = "" | ||
diff --git a/conf/machine/j7-evm-k3r5.conf b/conf/machine/j7-evm-k3r5.conf new file mode 100644 index 00000000..b9e8cc01 --- /dev/null +++ b/conf/machine/j7-evm-k3r5.conf | |||
@@ -0,0 +1,11 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: J7 EVM (R5F) | ||
3 | #@DESCRIPTION: Machine configuration for the TI J7 EVM (R5F core) | ||
4 | |||
5 | require conf/machine/include/k3r5.inc | ||
6 | |||
7 | SYSFW_SOC = "j721e" | ||
8 | SYSFW_CONFIG = "evm" | ||
9 | SYSFW_SUFFIX = "gp" | ||
10 | |||
11 | UBOOT_MACHINE = "j721e_evm_r5_defconfig" | ||
diff --git a/conf/machine/j7-hs-evm-k3r5.conf b/conf/machine/j7-hs-evm-k3r5.conf new file mode 100644 index 00000000..53a7016f --- /dev/null +++ b/conf/machine/j7-hs-evm-k3r5.conf | |||
@@ -0,0 +1,13 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: J7 HS EVM (R5F) | ||
3 | #@DESCRIPTION: Machine configuration for the TI J7 HS EVM (R5F core) | ||
4 | |||
5 | require conf/machine/include/k3r5.inc | ||
6 | |||
7 | SYSFW_SOC = "j721e" | ||
8 | SYSFW_CONFIG = "evm" | ||
9 | SYSFW_SUFFIX = "hs" | ||
10 | |||
11 | UBOOT_MACHINE = "j721e_hs_evm_r5_defconfig" | ||
12 | |||
13 | TI_SECURE_DEV_PKG = "${TI_SECURE_DEV_PKG_K3}" | ||
diff --git a/conf/multiconfig/k3r5-sr2.conf b/conf/multiconfig/k3r5-sr2.conf new file mode 100644 index 00000000..17082141 --- /dev/null +++ b/conf/multiconfig/k3r5-sr2.conf | |||
@@ -0,0 +1,3 @@ | |||
1 | require k3r5.conf | ||
2 | |||
3 | MACHINE_append = "-sr2" | ||
diff --git a/conf/multiconfig/k3r5.conf b/conf/multiconfig/k3r5.conf new file mode 100644 index 00000000..8c8f0c3f --- /dev/null +++ b/conf/multiconfig/k3r5.conf | |||
@@ -0,0 +1,5 @@ | |||
1 | MAINMACHINE := "${MACHINE}" | ||
2 | |||
3 | DEPLOY_DIR_IMAGE = "${DEPLOY_DIR}/images/${MAINMACHINE}" | ||
4 | |||
5 | MACHINE_append = "-k3r5" | ||