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 ...
video: stm32: stm32_ltdc: set the blending factorSet the blending factor regarding the pixel formatSigned-off-by: yannick fertre <yannick.fertre@st.com>
video: stm32: stm32_ltdc: missing set of line interrupt positionSet LIPCR (line interrupt position conf) register with line length.Signed-off-by: yannick fertre <yannick.fertre@st.com>
video: stm32: stm32_ltdc: set rate of the pixel clockpxclk is useless to set pixel clock.Signed-off-by: yannick fertre <yannick.fertre@st.com>
video: stm32: stm32_ltdc: update file header & footerModified copyright & driver name.Signed-off-by: yannick fertre <yannick.fertre@st.com>
video: stm32: stm32_ltdc: add resetAdd reset of LTDC display controller.Signed-off-by: yannick fertre <yannick.fertre@st.com>
video: add STM32 LTDC display controllerThe STM32 LTDC display controller provides a parallel digital RGB andsignals for horizontal, vertical synchronization, Pixel Clock and DataEnable as output
video: add STM32 LTDC display controllerThe STM32 LTDC display controller provides a parallel digital RGB andsignals for horizontal, vertical synchronization, Pixel Clock and DataEnable as output to interface directly to a variety of LCD and TFT panels.The LTDC main features are:- 24-bit RGB Parallel Pixel Output, Programmable timings & polarity for HSync, VSync and Data Enable.- 2 layers with Blending, Color Keying, Window position & size, Dithering, Background color, Color Look-Up Table (CLUT).- Supported layer color formats: ARGB8888, RGB888, RGB565, ARGB1555, ARGB4444, L8 CLUT, AL44 & AL88This LTDC driver:- supports: RGB parallel output with timings & polarity, 1 layer in RGB565.- supports but with hard-coded configurations: blending, window position & size (crop), background color.- does not support yet: rgb888, argb8888, 8-bit clut, dithering.This LTDC driver is compatible with all stm32 platforms with theLTDC IP and has been tested on stm32 f746-disco board.Signed-off-by: Philippe CORNU <philippe.cornu@st.com>