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 ...
Remove unnecessary instances of DECLARE_GLOBAL_DATA_PTRWe have a large number of places where while we historically referencedgd in the code we no longer do, as well as cases where the code added
Remove unnecessary instances of DECLARE_GLOBAL_DATA_PTRWe have a large number of places where while we historically referencedgd in the code we no longer do, as well as cases where the code addedthat line "just in case" during development and never dropped it.Signed-off-by: Tom Rini <trini@konsulko.com>
dm: power: Convert as3722 to driver modelConvert this PMIC driver to driver model and fix up other users. Theregulator and GPIO functions are now handled by separate drivers.Update nyan-big to w
dm: power: Convert as3722 to driver modelConvert this PMIC driver to driver model and fix up other users. Theregulator and GPIO functions are now handled by separate drivers.Update nyan-big to work correct. Three boards will need to be updated bythe maintainers: apalis-tk1, cei-tk1-som. Also the TODO in the code reas3722_sd_set_voltage() needs to be completed.Signed-off-by: Simon Glass <sjg@chromium.org>Reviewed-by: Lukasz Majewski <lukma@denx.de>Tested-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>Tested-on: Jetson-TK1Tested-by: Stephen Warren <swarren@nvidia.com>
ARM: tegra: Add support for TK1-SOM board from Colorado EngineeringThe Colorado TK1 SOM is a small form factor board similar to theJetson TK1. The main differences lie in the pinmux, and in that
ARM: tegra: Add support for TK1-SOM board from Colorado EngineeringThe Colorado TK1 SOM is a small form factor board similar to theJetson TK1. The main differences lie in the pinmux, and in that thePCIe controller is set to use in 4lanes+1lane, rather than 2+2.The pinmux header here was generated from a spreadsheet provided byColorado Engineering using the tegra-pinmux scripts. The spreadsheetwas converted from v09 to v11 by me.Signed-off-by: Peter Chubb <peter.chubb@data61.csiro.au>Acked-by: Stephen Warren <swarren@nvidia.com>Signed-off-by: Tom Warren <twarren@nvidia.com>