<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/drivers/video/Makefile, branch v2018.07</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/drivers/video/Makefile?h=v2018.07</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/drivers/video/Makefile?h=v2018.07'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2018-06-17T13:16:04Z</updated>
<entry>
<title>dm: video: Add an EFI framebuffer driver</title>
<updated>2018-06-17T13:16:04Z</updated>
<author>
<name>Bin Meng</name>
<email>bmeng.cn@gmail.com</email>
</author>
<published>2018-06-12T15:36:22Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=4a08c74697c679607f1ddb56167c74fc31d53068'/>
<id>urn:sha1:4a08c74697c679607f1ddb56167c74fc31d53068</id>
<content type='text'>
This adds a DM video driver for U-Boot as the EFI payload. The driver
makes use of all necessary information from the passed EFI GOP info
to create a linear framebuffer device, as if it were initialized by
U-Boot itself.

Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;
Reviewed-by: Anatolij Gustschin &lt;agust@denx.de&gt;
</content>
</entry>
<entry>
<title>SPDX: Convert all of our single license tags to Linux Kernel style</title>
<updated>2018-05-07T13:34:12Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2018-05-06T21:58:06Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=83d290c56fab2d38cd1ab4c4cc7099559c1d5046'/>
<id>urn:sha1:83d290c56fab2d38cd1ab4c4cc7099559c1d5046</id>
<content type='text'>
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 &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>imx31_phycore: Delete</title>
<updated>2018-04-15T09:52:39Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@konsulko.com</email>
</author>
<published>2018-04-06T20:27:54Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=bcca8aa9ee43be0f0bf7c14ce34cfbbd891c373e'/>
<id>urn:sha1:bcca8aa9ee43be0f0bf7c14ce34cfbbd891c373e</id>
<content type='text'>
This platform has been marked as orphaned since September 2013, remove.

Signed-off-by: Tom Rini &lt;trini@konsulko.com&gt;
</content>
</entry>
<entry>
<title>video: simplefb</title>
<updated>2017-09-12T11:40:47Z</updated>
<author>
<name>Rob Clark</name>
<email>robdclark@gmail.com</email>
</author>
<published>2017-08-03T16:47:00Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=971d7e64245d5970ae9fe9a1f418e2900663248a'/>
<id>urn:sha1:971d7e64245d5970ae9fe9a1f418e2900663248a</id>
<content type='text'>
Not really qcom specific, but for now qcom/lk is the one firmware that
is (afaiu) setting up the appropriate dt node for pre-configured
display.  Uses the generic simple-framebuffer DT bindings so this should
be useful on other platforms.

Signed-off-by: Rob Clark &lt;robdclark@gmail.com&gt;
</content>
</entry>
<entry>
<title>video: add STM32 LTDC display controller</title>
<updated>2017-09-12T11:40:47Z</updated>
<author>
<name>Philippe CORNU</name>
<email>philippe.cornu@st.com</email>
</author>
<published>2017-08-03T10:36:08Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=72719d2f8ae5022fb45d3020d85a644da8884f2a'/>
<id>urn:sha1:72719d2f8ae5022fb45d3020d85a644da8884f2a</id>
<content type='text'>
The STM32 LTDC display controller provides a parallel digital RGB and
signals for horizontal, vertical synchronization, Pixel Clock and Data
Enable 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 &amp; polarity for
  HSync, VSync and Data Enable.
- 2 layers with Blending, Color Keying, Window position &amp; size,
  Dithering, Background color, Color Look-Up Table (CLUT).
- Supported layer color formats: ARGB8888, RGB888, RGB565, ARGB1555,
  ARGB4444, L8 CLUT, AL44 &amp; AL88

This LTDC driver:
- supports: RGB parallel output with timings &amp; polarity, 1 layer
  in RGB565.
- supports but with hard-coded configurations: blending, window
  position &amp; size (crop), background color.
- does not support yet: rgb888, argb8888, 8-bit clut, dithering.

This LTDC driver is compatible with all stm32 platforms with the
LTDC IP and has been tested on stm32 f746-disco board.

Signed-off-by: Philippe CORNU &lt;philippe.cornu@st.com&gt;
</content>
</entry>
<entry>
<title>dm: backlight: Add a driver for GPIO backlight</title>
<updated>2017-09-12T11:40:47Z</updated>
<author>
<name>Patrick Delaunay</name>
<email>patrick.delaunay@st.com</email>
</author>
<published>2017-08-03T10:36:07Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=5b6a6a91c870949e21b7fd3865582ea6a32ea922'/>
<id>urn:sha1:5b6a6a91c870949e21b7fd3865582ea6a32ea922</id>
<content type='text'>
Add a driver for GPIO backlights.
It understands the standard device tree binding.
It can be used with simple-panel when PWM is not necessary.

Signed-off-by: Patrick Delaunay &lt;patrick.delaunay@st.com&gt;
</content>
</entry>
<entry>
<title>dm: backlight: Add CONFIG_BACKLIGHT_PWM</title>
<updated>2017-09-12T11:40:47Z</updated>
<author>
<name>Patrick Delaunay</name>
<email>patrick.delaunay@st.com</email>
</author>
<published>2017-08-03T10:36:06Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=08a43cfbc29224dadf1d725e26697c227bf9723a'/>
<id>urn:sha1:08a43cfbc29224dadf1d725e26697c227bf9723a</id>
<content type='text'>
Add a config to select individually the driver for PWM backlights.
Manage "depends on" to be backyard compatible.

Signed-off-by: Patrick Delaunay &lt;patrick.delaunay@st.com&gt;
</content>
</entry>
<entry>
<title>video: Drop the ct69000 driver</title>
<updated>2017-08-07T16:15:19Z</updated>
<author>
<name>Bin Meng</name>
<email>bmeng.cn@gmail.com</email>
</author>
<published>2017-08-04T04:56:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=c674e00b8ac0f5f460d35382269d513770215a34'/>
<id>urn:sha1:c674e00b8ac0f5f460d35382269d513770215a34</id>
<content type='text'>
This is not used in U-Boot.

Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;
</content>
</entry>
<entry>
<title>video: Drop the sm501 driver</title>
<updated>2017-08-07T16:14:36Z</updated>
<author>
<name>Bin Meng</name>
<email>bmeng.cn@gmail.com</email>
</author>
<published>2017-08-04T04:56:49Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=aa82f935ab5c2d74e041f30808ca89d769719cef'/>
<id>urn:sha1:aa82f935ab5c2d74e041f30808ca89d769719cef</id>
<content type='text'>
This is not used in U-Boot.

Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;
</content>
</entry>
<entry>
<title>video: Drop the sed156x driver</title>
<updated>2017-08-07T16:12:23Z</updated>
<author>
<name>Bin Meng</name>
<email>bmeng.cn@gmail.com</email>
</author>
<published>2017-08-04T04:56:48Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=5ec94cdf8ead398135dfdd30b241afd4b5ee8b32'/>
<id>urn:sha1:5ec94cdf8ead398135dfdd30b241afd4b5ee8b32</id>
<content type='text'>
This is not used in U-Boot.

Signed-off-by: Bin Meng &lt;bmeng.cn@gmail.com&gt;
</content>
</entry>
</feed>
