drivers: cosmetic: Convert SPDX license tags to Linux Kernel styleComplete in the drivers directory the work started withcommit 83d290c56fab ("SPDX: Convert all of our singlelicense tags to Linux
drivers: cosmetic: Convert SPDX license tags to Linux Kernel styleComplete in the drivers directory the work started withcommit 83d290c56fab ("SPDX: Convert all of our singlelicense tags to Linux Kernel style").Reviewed-by: Simon Glass <sjg@chromium.org>Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
show more ...
test: Add tests for board uclassAdd tests for the new board uclass.Reviewed-by: Simon Glass <sjg@chromium.org>Signed-off-by: Mario Six <mario.six@gdsys.cc>
board: Add gazerbeam driverAdd a board driver for the upcoming gdsys Gazerbeam board.Signed-off-by: Mario Six <mario.six@gdsys.cc>Reviewed-by: Simon Glass <sjg@chromium.org>
drivers: Add board uclassSince there is no canonical "board device" that can be used in boardfiles, it is difficult to use DM function for board initialization inthese cases.Hence, add a uclass
drivers: Add board uclassSince there is no canonical "board device" that can be used in boardfiles, it is difficult to use DM function for board initialization inthese cases.Hence, add a uclass that implements a simple "board device", which canhold devices not suitable anywhere else in the device tree, and is alsoable to read encoded information, e.g. hard-wired GPIOs on a GPIOexpander, read-only memory ICs, etc. that carry information about thehardware.The devices of this uclass expose methods to read generic data types(integers, strings, booleans) to encode the information provided by thehardware.Reviewed-by: Simon Glass <sjg@chromium.org>Signed-off-by: Mario Six <mario.six@gdsys.cc>