SPDX: Convert all of our single license tags to Linux Kernel styleWhen U-Boot started using SPDX tags we were among the early adopters andthere weren't a lot of other examples to borrow from. So
SPDX: Convert all of our single license tags to Linux Kernel styleWhen U-Boot started using SPDX tags we were among the early adopters andthere weren't a lot of other examples to borrow from. So we picked thearea of the file that usually had a full license text and replaced itwith an appropriate SPDX-License-Identifier: entry. Since then, theLinux Kernel has adopted SPDX tags and they place it as the very firstline 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 visibilityand in part for other minor reasons, switch over to that style.This commit changes all instances where we have a single declaredlicense in the tag as both the before and after are identical in tagcontents. There's also a few places where I found we did not have a tagand have introduced one.Signed-off-by: Tom Rini <trini@konsulko.com>
show more ...
bcm235xx: boot0 hook: adjust to unified boot0 semanticsThis updates the BCM235xx boot0-hook to the updated boot0 semanticsby emitting _start and the vector table before the boot0 hook (aswas the
bcm235xx: boot0 hook: adjust to unified boot0 semanticsThis updates the BCM235xx boot0-hook to the updated boot0 semanticsby emitting _start and the vector table before the boot0 hook (aswas the case before).Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>Version-changes: 5- ran 'whitespace-cleanup'
ARM: boot0 hook: remove macro, include whole header fileFor prepending some board specific header area to U-Boot images wewere so far including a header file with a macro definition containingthe
ARM: boot0 hook: remove macro, include whole header fileFor prepending some board specific header area to U-Boot images wewere so far including a header file with a macro definition containingthe actual header specification.This works fine if there are just a few statements and if there is onlyone alternative.However adding more complex code quickly gets messy with this approach,so let's just drop that intermediate macro and let the #include actuallyinsert the code directly.This converts the callers and the callees, but doesn't change anythingat this point.Signed-off-by: Andre Przywara <andre.przywara@arm.com>Reviewed-by: Simon Glass <sjg@chromium.org>Tested-by: Steve Rae <steve.rae@raedomain.com>Reviewed-by: Jagan Teki <jagan@openedev.com>
arm: bcm235xx: implement the boot0 hook codeChoose the Kconfig boot0 hook option and implement the required code.Signed-off-by: Steve Rae <srae@broadcom.com>
board: arm:: Add support for Broadcom BCM23550Add support for the Broadcom BCM23550 board.Signed-off-by: Steve Rae <srae@broadcom.com>