07 May, 2018

1 commit

  • When U-Boot started using SPDX tags we were among the early adopters and
    there weren't a lot of other examples to borrow from. So we picked the
    area of the file that usually had a full license text and replaced it
    with an appropriate SPDX-License-Identifier: entry. Since then, the
    Linux Kernel has adopted SPDX tags and they place it as the very first
    line in a file (except where shebangs are used, then it's second line)
    and with slightly different comment styles than us.

    In part due to community overlap, in part due to better tag visibility
    and in part for other minor reasons, switch over to that style.

    This commit changes all instances where we have a single declared
    license in the tag as both the before and after are identical in tag
    contents. There's also a few places where I found we did not have a tag
    and have introduced one.

    Signed-off-by: Tom Rini

    Tom Rini
     

15 May, 2017

1 commit

  • ATF(ARM Trusted Firmware) is used by ARM arch64 SoCs, find more infomation
    about ATF at: https://github.com/ARM-software/arm-trusted-firmware

    SPL is considered as BL2 in ATF terminology, it needs to load other parts
    of ATF binary like BL31, BL32, SCP-BL30, and BL33(U-Boot). And needs to
    prepare the parameter for BL31 which including entry and image information
    for all other images. Then the SPL handle PC to BL31 with the parameter,
    the BL31 will do the rest of work and at last get into U-Boot(BL33).

    This patch needs work with patches from Andre for SPL support multi
    binary in FIT.

    The entry point of bl31 and bl33 are still using hard code because we
    still can not get them from the FIT image information.

    Signed-off-by: Kever Yang
    Tested-by: Heiko Stuebner
    Acked-by: Simon Glass
    Reviewed-by: Tom Rini

    Kever Yang