<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm63xx/u-boot/drivers/video/sunxi, branch master</title>
<subtitle>Broadcom-s U-Boot</subtitle>
<id>https://git.openwrt.org/project/bcm63xx/u-boot/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/project/bcm63xx/u-boot/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/'/>
<updated>2019-03-28T22:45:41Z</updated>
<entry>
<title>sunxi: video: HDMI: Fix clock setup</title>
<updated>2019-03-28T22:45:41Z</updated>
<author>
<name>Jernej Skrabec</name>
</author>
<published>2019-03-24T18:26:40Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=1feed358ed15d795929cd6618b2f450719dbe416'/>
<id>urn:sha1:1feed358ed15d795929cd6618b2f450719dbe416</id>
<content type='text'>
Currently, HDMI driver doesn't consider minimum and maximum allowed rate
of pll3 (video PLL). It works most of the time, but not always.

Consider monitor with resolution 1920x1200, which has pixel clock rate
of 154 MHz. Current code would determine that pll3 rate has to be set to
154 MHz. However, minimum supported rate is 192 MHz. In this case video
output just won't work.

The reason why the driver is written in the way it is, is that at the
time HDMI PHY and clock configuration wasn't fully understood. But now
we have needed knowledge, so the issue can be fixed.

With this fix, clock configuration routine uses full range (1-16) for
clock divider instead of limited one (1, 2, 4, 11). It also considers
minimum and maximum allowed rate for pll3.

Fixes: 56009451d843 ("sunxi: video: Add A64/H3/H5 HDMI driver")
Signed-off-by: Jernej Skrabec &lt;jernej.skrabec@siol.net&gt;
Acked-by: Maxime Ripard &lt;maxime.ripard@bootlin.com&gt;
</content>
</entry>
<entry>
<title>sunxi: display: Implement fallback to ddc probe when hpd fails</title>
<updated>2019-02-15T15:30:44Z</updated>
<author>
<name>Priit Laes</name>
</author>
<published>2018-12-19T13:06:09Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=0220f8c223f088cc722b81fc1db23734de87a13d'/>
<id>urn:sha1:0220f8c223f088cc722b81fc1db23734de87a13d</id>
<content type='text'>
There are HDMI displays where hpd pin is not connected, thus
we cannot get it to work unless we specifically set the resolution.

Rework the display probing, so hotplug detect failure causes
fallback to probing ddc for EDID data.

Signed-off-by: Priit Laes &lt;priit.laes@paf.com&gt;
</content>
</entry>
<entry>
<title>sunxi: display: Move DDC PLL setup to HDMI init</title>
<updated>2019-02-15T15:28:58Z</updated>
<author>
<name>Priit Laes</name>
</author>
<published>2018-12-19T13:06:08Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=361604d658695966ba985f544800ecc7563caf41'/>
<id>urn:sha1:361604d658695966ba985f544800ecc7563caf41</id>
<content type='text'>
Move PLL initialization code to single place so
we won't call it every time we query for EDID data.

Signed-off-by: Priit Laes &lt;priit.laes@paf.com&gt;
</content>
</entry>
<entry>
<title>sunxi: use 6MHz PLL_VIDEO step for DE2 for higher resolution LCD</title>
<updated>2018-11-13T16:47:06Z</updated>
<author>
<name>Icenowy Zheng</name>
</author>
<published>2018-10-28T21:26:12Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=7d121a8ea4e0dbf0d7e105b57c3dbd7d8bd2e729'/>
<id>urn:sha1:7d121a8ea4e0dbf0d7e105b57c3dbd7d8bd2e729</id>
<content type='text'>
DE2 SoCs can support LCDs up to 1080p (e.g. A64), and 3MHz step won't
let PLL_VIDEO be high enough for them.

Use 6MHz step for PLL_VIDEO when using DE2, to satisfy 1080p LCD.

Signed-off-by: Icenowy Zheng &lt;icenowy@aosc.io&gt;
Signed-off-by: Vasily Khoruzhick &lt;anarsoul@gmail.com&gt;
Tested-by: Vasily Khoruzhick &lt;anarsoul@gmail.com&gt;
Acked-by: Maxime Ripard &lt;maxime.ripard@bootlin.com&gt;
Acked-by: Jagan Teki &lt;jagan@openedev.com&gt;
</content>
</entry>
<entry>
<title>sunxi: display: Mark sunxi_rgb2yuv_coef array as const</title>
<updated>2018-10-24T16:32:15Z</updated>
<author>
<name>Priit Laes</name>
</author>
<published>2018-10-23T17:20:31Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=3d99a0b33a16c9330a5bf5b3f8561f45d0e6ed80'/>
<id>urn:sha1:3d99a0b33a16c9330a5bf5b3f8561f45d0e6ed80</id>
<content type='text'>
sunxi_rgb2yuv_coef is readonly and never modified.

Signed-off-by: Priit Laes &lt;plaes@plaes.org&gt;
Acked-by: Anatolij Gustschin &lt;agust@denx.de&gt;
Acked-by: Maxime Ripard &lt;maxime.ripard@bootlin.com&gt;
Reviewed-by: Jagan Teki &lt;jagan@openedev.com&gt;
</content>
</entry>
<entry>
<title>video: sunxi: de2: fix SimpleFB node creation when DE2 not probed</title>
<updated>2018-07-31T06:09:47Z</updated>
<author>
<name>Icenowy Zheng</name>
</author>
<published>2018-07-27T15:50:53Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=b29712e941e15c8385cf8f0347b165c148b133bc'/>
<id>urn:sha1:b29712e941e15c8385cf8f0347b165c148b133bc</id>
<content type='text'>
Sometimes when a monitor without EDID information is plugged, the DE2
won't be probed (because of lack of timing information), but the HDMI
node is probed, thus a SimpleFB node with invalid information will be
populated.

Also detect whether DE2 is probed when creating SimpleFB node.

Fixes: be5b96f0e411 ("sunxi: setup simplefb for Allwinner DE2")
Signed-off-by: Icenowy Zheng &lt;icenowy@aosc.io&gt;
Acked-by: Maxime Ripard &lt;maxime.ripard@bootlin.com&gt;
Acked-by: Jagan Teki &lt;jagan@openedev.com&gt;
</content>
</entry>
<entry>
<title>video: sunxi: de2: Reserve the fb region in the EFI memory map</title>
<updated>2018-06-03T13:27:20Z</updated>
<author>
<name>Emmanuel Vadot</name>
</author>
<published>2018-05-04T08:26:55Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=d9b63ea9876d9bac4e1c137a0b66a111fb2b03c7'/>
<id>urn:sha1:d9b63ea9876d9bac4e1c137a0b66a111fb2b03c7</id>
<content type='text'>
If compile with support for the efi loader we need to mark the pages
allocated for the framebuffer as reserved so the kernel won't attempt
to use them for other uses.

Signed-off-by: Emmanuel Vadot &lt;manu@freebsd.org&gt;
Acked-by: Heinrich Schuchardt &lt;xypron.glpk@gmx.de&gt;
Signed-off-by: Alexander Graf &lt;agraf@suse.de&gt;
</content>
</entry>
<entry>
<title>sunxi: video: HDMI: use correct bits for HSYNC and VSYNC polarity.</title>
<updated>2018-05-15T06:03:04Z</updated>
<author>
<name>Vasily Khoruzhick</name>
</author>
<published>2018-05-14T20:49:52Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=c7cb17e89295312263ec7904e32a118938c72d34'/>
<id>urn:sha1:c7cb17e89295312263ec7904e32a118938c72d34</id>
<content type='text'>
HSYNC is bit 8, and VSYNC is bit 9.

Signed-off-by: Vasily Khoruzhick &lt;anarsoul@gmail.com&gt;
Reviewed-by: Jernej Skrabec &lt;jernej.skrabec@siol.net&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>
</author>
<published>2018-05-06T21:58:06Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/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>sunxi: video: mark framebuffer as EFI reserved memory</title>
<updated>2018-03-09T17:24:49Z</updated>
<author>
<name>Heinrich Schuchardt</name>
</author>
<published>2018-03-03T09:30:17Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/project/bcm63xx/u-boot/commit/?id=d06717f853cd98a6a4536e5de5248e6c99a2b7bc'/>
<id>urn:sha1:d06717f853cd98a6a4536e5de5248e6c99a2b7bc</id>
<content type='text'>
Inform the EFI subsystem that the framebuffer memory is reserved.

Without the patch the AllocatePool boot service allocates memory from the
framebuffer which will will be overwritten by screen output.

Signed-off-by: Heinrich Schuchardt &lt;xypron.glpk@gmx.de&gt;
</content>
</entry>
</feed>
