diff options
author | Yusuke Goda <yusuke.goda.sx@renesas.com> | 2017-03-13 13:00:39 +0700 |
---|---|---|
committer | Khiem Nguyen <khiem.nguyen.xt@renesas.com> | 2017-03-27 03:32:17 +0000 |
commit | ee4b23c1e6b9249c0d9c02a6e4826605cd16832a (patch) | |
tree | 85a715a2568e6e02d7dfefbd76307b57387ff638 /meta-rcar-gen3/recipes-bsp | |
parent | 1c74cc51b9a46bce468ec1c9382edcd88ed4e69b (diff) |
rcar-gen3: arm-trusted-firmware: Set RCAR_GEN3_ULCB to 1 for ULCB
This commit is to add judge state for ULCB.
If machine is ulcb, "RCAR_GEN3_ULCB=1" will be added to compile option.
Change-Id: Ia05f33a4362c4a7a302c8c0fc5785415f27b15b5
Signed-off-by: Yusuke Goda <yusuke.goda.sx@renesas.com>
Signed-off-by: Thao Nguyen <thao.nguyen.yb@rvc.renesas.com>
Signed-off-by: Takamitsu Honda <takamitsu.honda.pv@renesas.com>
Diffstat (limited to 'meta-rcar-gen3/recipes-bsp')
-rw-r--r-- | meta-rcar-gen3/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware_git.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-rcar-gen3/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware_git.bb b/meta-rcar-gen3/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware_git.bb index 950c570..8e3eb5d 100644 --- a/meta-rcar-gen3/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware_git.bb +++ b/meta-rcar-gen3/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware_git.bb @@ -16,11 +16,12 @@ SRCREV = "867d841913194f796f939068298925af1b5fa973" PV = "v1.3+renesas+git${SRCPV}" -COMPATIBLE_MACHINE = "(salvator-x|h3ulcb|m3ulcb)" +COMPATIBLE_MACHINE = "(salvator-x|ulcb)" PLATFORM = "rcar" ATFW_OPT_LOSSY = "${@base_conditional("USE_MULTIMEDIA", "1", "RCAR_LOSSY_ENABLE=1", "", d)}" ATFW_OPT_r8a7795 = "LSI=H3 RCAR_DRAM_SPLIT=1 ${ATFW_OPT_LOSSY}" ATFW_OPT_r8a7796 = "LSI=M3 RCAR_DRAM_SPLIT=2 ${ATFW_OPT_LOSSY}" +ATFW_OPT_append_ulcb = " RCAR_GEN3_ULCB=1" # requires CROSS_COMPILE set by hand as there is no configure script export CROSS_COMPILE="${TARGET_PREFIX}" |