<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm63xx/u-boot/common/splash.c, branch master</title>
<subtitle>Broadcom-s U-Boot</subtitle>
<id>https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/atom?h=master</id>
<link rel='self' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/'/>
<updated>2019-06-04T21:20:43Z</updated>
<entry>
<title>splash: display splash in DM_VIDEO configurations</title>
<updated>2019-06-04T21:20:43Z</updated>
<author>
<name>Igor Opaniuk</name>
</author>
<published>2019-05-29T09:01:43Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=5eb83c0ac114bf193de207f46118075a6c1621c5'/>
<id>urn:sha1:5eb83c0ac114bf193de207f46118075a6c1621c5</id>
<content type='text'>
Currently for CONFIG_DM_VIDEO=y setting splashimage env variable doesn't
have any effect. Introduce a common function for both dm-video/lcd stacks,
that checks env("splashimage") and invokes bmp_display() accordingly.
For additional details please check discussion [1].

[1] https://lists.denx.de/pipermail/u-boot/2019-May/371002.html

Signed-off-by: Igor Opaniuk &lt;igor.opaniuk@toradex.com&gt;
</content>
</entry>
<entry>
<title>env: Rename getenv/_f() to env_get()</title>
<updated>2017-08-16T12:30:24Z</updated>
<author>
<name>Simon Glass</name>
</author>
<published>2017-08-03T18:22:12Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=00caae6d47645e68d6e5277aceb69592b49381a6'/>
<id>urn:sha1:00caae6d47645e68d6e5277aceb69592b49381a6</id>
<content type='text'>
We are now using an env_ prefix for environment functions. Rename these
two functions for consistency. Also add function comments in common.h.

Quite a few places use getenv() in a condition context, provoking a
warning from checkpatch. These are fixed up in this patch also.

Suggested-by: Wolfgang Denk &lt;wd@denx.de&gt;
Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
</content>
</entry>
<entry>
<title>splash: Introduce default_splash_locations</title>
<updated>2016-07-26T06:47:37Z</updated>
<author>
<name>Alexey Brodkin</name>
</author>
<published>2016-07-01T19:48:16Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=b6de2cd7ee5af536ae67ab5522b69e5c4925f5f2'/>
<id>urn:sha1:b6de2cd7ee5af536ae67ab5522b69e5c4925f5f2</id>
<content type='text'>
This change introduces default_splash_locations which
simplifies splash recovery from the first partition of
USB/MMC/SATA drive.

Given usual mapping of the first partition of external media for
basic boot stuff like uImage/zImage, .dtb etc it looks quite
obvious option to put there splash.bmp as well.

Signed-off-by: Alexey Brodkin &lt;abrodkin@synopsys.com&gt;
Cc: Nikita Kiryanov &lt;nikita@compulab.co.il&gt;
Cc: Simon Glass &lt;sjg@chromium.org&gt;
Cc: Jeroen Hofstee &lt;jeroen@myspectrum.nl&gt;
Signed-off-by: Anatolij Gustschin &lt;agust@denx.de&gt;
</content>
</entry>
<entry>
<title>lcd: split splash code into its own function</title>
<updated>2015-02-10T12:31:58Z</updated>
<author>
<name>Nikita Kiryanov</name>
</author>
<published>2015-02-03T11:32:32Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=7bf71d1f55d31a81ade8dd0fc72f06e4672689d0'/>
<id>urn:sha1:7bf71d1f55d31a81ade8dd0fc72f06e4672689d0</id>
<content type='text'>
lcd_logo() currently performs tasks well beyond just displaying the logo.
It has code which displays splash image, it has logic which determines
when the different display features are displayed, and it is coupled with
the lcd console because it holds the responsibility of returning the
lcd console base address.

Make lcd_logo() just about the logo by:
* Moving splash image display code into a dedicated function
* Moving the logic regarding when various features are displayed to
  lcd_clear() (which is arguably not the correct name for housing such
  code either, but it is currently the most fitting location code wise)
* Move the responsibility of setting the console base address to
  lcd_clear() too.

Signed-off-by: Nikita Kiryanov &lt;nikita@compulab.co.il&gt;
Reviewed-by: Simon Glass &lt;sjg@chromium.org&gt;
Tested-by: Bo Shen &lt;voice.shen@atmel.com&gt;
Tested-by: Josh Wu &lt;josh.wu@atmel.com&gt;
Cc: Bo Shen &lt;voice.shen@atmel.com&gt;
Cc: Simon Glass &lt;sjg@chromium.org&gt;
Cc: Anatolij Gustschin &lt;agust@denx.de&gt;
</content>
</entry>
<entry>
<title>common:splash: use __weak</title>
<updated>2014-07-18T21:53:23Z</updated>
<author>
<name>Jeroen Hofstee</name>
</author>
<published>2014-06-26T17:53:16Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=cc64b92cdee921536a00e66568fd36cff3d35420'/>
<id>urn:sha1:cc64b92cdee921536a00e66568fd36cff3d35420</id>
<content type='text'>
This not only looks a bit better it also prevents a
warning with W=1 (no previous prototype).

cc: agust@denx.de
Signed-off-by: Jeroen Hofstee &lt;jeroen@myspectrum.nl&gt;
</content>
</entry>
<entry>
<title>video: consolidate splash screen alignment code</title>
<updated>2013-07-08T18:21:24Z</updated>
<author>
<name>Anatolij Gustschin</name>
</author>
<published>2013-07-01T22:04:05Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=ff8fb56b6f7edafc1bcba8ef008b3f368cabe60d'/>
<id>urn:sha1:ff8fb56b6f7edafc1bcba8ef008b3f368cabe60d</id>
<content type='text'>
Code for checking "splashpos" environment variable is
duplicated in drivers, move it to the common function.
Call this function also in the bmp display command to
consider "splashpos" settings.

Signed-off-by: Anatolij Gustschin &lt;agust@denx.de&gt;
Acked-by: Otavio Salvador &lt;otavio@ossystems.com.br&gt;
</content>
</entry>
<entry>
<title>video: lcd: Make splash_screen_prepare weak, remove config macro</title>
<updated>2013-07-01T19:47:16Z</updated>
<author>
<name>Robert Winkler</name>
</author>
<published>2013-06-17T18:31:30Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=59b15922119f79289df6714972acaeec0de1fe95'/>
<id>urn:sha1:59b15922119f79289df6714972acaeec0de1fe95</id>
<content type='text'>
Remove CONFIG_SPLASH_SCREEN_PREPARE from README
Add doc/README.splashprepare to document functionality

Signed-off-by: Robert Winkler &lt;robert.winkler@boundarydevices.com&gt;
Acked-by: Igor Grinberg &lt;grinberg@compulab.co.il&gt;
</content>
</entry>
<entry>
<title>video: lcd: Add CONFIG_SPLASH_SCREEN_PREPARE support to CONFIG_VIDEO</title>
<updated>2013-07-01T19:45:22Z</updated>
<author>
<name>Robert Winkler</name>
</author>
<published>2013-06-17T18:31:29Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/project/bcm63xx/u-boot/commit/?id=dd4425e85260c2e750676e2dc9c225cfff1b4bcd'/>
<id>urn:sha1:dd4425e85260c2e750676e2dc9c225cfff1b4bcd</id>
<content type='text'>
Create splash.c/h to put the function and any future common splash
screen code in.

Signed-off-by: Robert Winkler &lt;robert.winkler@boundarydevices.com&gt;
Acked-by: Igor Grinberg &lt;grinberg@compulab.co.il&gt;
</content>
</entry>
</feed>
