[U-Boot] [RFC] Remove static display data

2013-07-25 Thread Robert Winkler
relevant data into a device tree that Linux can already use/parse would work. Is anyone working on something like this? Am I missing something that's already in place to accomplish this? Thanks, Robert Winkler ___ U-Boot mailing list

[U-Boot] [PATCH] imx: Add documentation for imx specific commands

2013-07-24 Thread Robert Winkler
CONFIG_CMD_HDMIDETECT CONFIG_CMD_BMODE Signed-off-by: Robert Winkler --- changes from v1: removed space between MX and series # to be consistent with U-Boot README | 15 +++ 1 file changed, 15 insertions(+) diff --git a/README b/README index bcfffc3..3a7cf4e 100644 --- a/README

[U-Boot] [PATCH] imx: Add documentation for imx specific commands

2013-07-24 Thread Robert Winkler
CONFIG_CMD_HDMIDETECT CONFIG_CMD_BMODE Signed-off-by: Robert Winkler --- README | 15 +++ 1 file changed, 15 insertions(+) diff --git a/README b/README index bcfffc3..3a7cf4e 100644 --- a/README +++ b/README @@ -2598,6 +2598,21 @@ CBFS (Coreboot Filesystem) support

Re: [U-Boot] [PATCH v2] imx: nitrogen6x: mx6qsabrelite: Add support for DVI monitors

2013-07-24 Thread Robert Winkler
Stefano, On Wed, Jul 24, 2013 at 4:09 AM, Stefano Babic wrote: > Hi Robert, > > On 24/07/2013 01:15, Robert Winkler wrote: > > > Incidentally, I just grepped for CONFIG_CMD_HDMIDETECT and I don't see > > it documented anywhere. It should probably be added to the

Re: [U-Boot] [PATCH v2] imx: nitrogen6x: mx6qsabrelite: Add support for DVI monitors

2013-07-23 Thread Robert Winkler
On Tue, Jul 23, 2013 at 3:33 PM, Otavio Salvador wrote: > On Tue, Jul 23, 2013 at 7:07 PM, Robert Winkler > wrote: > > --- a/arch/arm/imx-common/cmd_hdmidet.c > > +++ b/arch/arm/imx-common/cmd_hdmidet.c > > @@ -27,8 +27,7 @@ > > static int do_hdmidet(cmd_tbl_t *c

[U-Boot] [PATCH v2] imx: nitrogen6x: mx6qsabrelite: Add support for DVI monitors

2013-07-23 Thread Robert Winkler
https://github.com/boundarydevices/linux-imx6/commit/7d8752905c118af9063738a533227de0b2f6ecd4 Signed-off-by: Robert Winkler --- Change from v1: - Use Eric Nelson's description as commit message arch/arm/imx-common/cmd_hdmidet.c | 3 +-- arch/arm/include/asm/arch-mx6/mxc_hdmi.h

[U-Boot] [PATCH] imx: nitrogen6x: mx6qsabrelite: Add support for DVI monitors

2013-07-23 Thread Robert Winkler
DVI monitors show up as the RX_SENSE bits in the HDMI_PHY_STAT0 register, ie F0 so we really want to check against F2 to support both HDMI and DVI. Signed-off-by: Robert Winkler --- arch/arm/imx-common/cmd_hdmidet.c | 3 +-- arch/arm/include/asm/arch-mx6/mxc_hdmi.h | 3

Re: [U-Boot] [PATCH 0/3 v2] video: lcd: splash screen prepare changes

2013-06-26 Thread Robert Winkler
Hello all, I haven't heard from anyone but Igor. Does that mean it looks good? Robert On Mon, Jun 17, 2013 at 11:31 AM, Robert Winkler < robert.wink...@boundarydevices.com> wrote: > The first 2 patches are the result of discussion in these threads: > http://lists.denx.de

Re: [U-Boot] [PATCH 1/2] video: lcd: Add CONFIG_SPLASH_SCREEN_PREPARE support to CONFIG_VIDEO

2013-06-18 Thread Robert Winkler
On Mon, Jun 17, 2013 at 11:20 PM, Igor Grinberg wrote: > > > On 06/17/13 20:08, Robert Winkler wrote: >> Hi Igor, >> >> On Sun, Jun 16, 2013 at 10:34 PM, Igor Grinberg >> wrote: >>> Hi Robert, >>> >>> On 06/14/13 20:00, Robert Winkl

Re: [U-Boot] [PATCH 3/3] omap: cm_t35: Fix cm_t35 for weak splash_screen_prepare

2013-06-18 Thread Robert Winkler
I figured this one was so simple it didn't warrant anything more than what's already in the subject line. On Mon, Jun 17, 2013 at 11:26 PM, Igor Grinberg wrote: > > On 06/17/13 21:31, Robert Winkler wrote: >> Signed-off-by: Robert Winkler > > Usually, we add som

[U-Boot] [PATCH 3/3] omap: cm_t35: Fix cm_t35 for weak splash_screen_prepare

2013-06-17 Thread Robert Winkler
Signed-off-by: Robert Winkler --- board/compulab/cm_t35/cm_t35.c | 2 +- include/configs/cm_t35.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/board/compulab/cm_t35/cm_t35.c b/board/compulab/cm_t35/cm_t35.c index b0b80e5..95098af 100644 --- a/board/compulab/cm_t35

[U-Boot] [PATCH 1/3 v2] video: lcd: Add CONFIG_SPLASH_SCREEN_PREPARE support to CONFIG_VIDEO

2013-06-17 Thread Robert Winkler
Create splash.c/h to put the function and any future common splash screen code in. Signed-off-by: Robert Winkler --- v2 changes: remove superfluous comments remove debug printf that slipped in remove address from GPL comments common/Makefile | 1 + common/lcd.c| 16

[U-Boot] [PATCH 0/3 v2] video: lcd: splash screen prepare changes

2013-06-17 Thread Robert Winkler
common location so it can be used in cfb_console.c and (possibly) make it weak. The first patch can be accepted without the last two. The third patch is a fix for cm_t35 that's only necessary if we make it weak. Robert Winkler (3): video: lcd: Add CONFIG_SPLASH_SCREEN_PREPARE suppo

[U-Boot] [PATCH 2/3] video: lcd: Make splash_screen_prepare weak, remove config macro

2013-06-17 Thread Robert Winkler
Remove CONFIG_SPLASH_SCREEN_PREPARE from README Add doc/README.splashprepare to document functionality Signed-off-by: Robert Winkler --- README | 8 common/splash.c | 13 - doc/README.splashprepare | 8 3 files changed, 12 insertions

Re: [U-Boot] [PATCH 1/2] video: lcd: Add CONFIG_SPLASH_SCREEN_PREPARE support to CONFIG_VIDEO

2013-06-17 Thread Robert Winkler
Hi Igor, On Sun, Jun 16, 2013 at 10:34 PM, Igor Grinberg wrote: > Hi Robert, > > On 06/14/13 20:00, Robert Winkler wrote: >> Create splash.c/h to put the function and any future common >> splash screen code in. >> >> Signed-off-by: Robert Winkler > > Th

[U-Boot] [PATCH] imx: nitrogen6x: Add splash screen support to nitrogen6x

2013-06-14 Thread Robert Winkler
Depends on: 18d1c87ebe2a6a05905ae1cdd7a31abe6b5ee39d b38050121cd3fea821a048661cdad5bf71f3a2b8 Signed-off-by: Robert Winkler --- board/boundary/nitrogen6x/nitrogen6x.c | 21 + include/configs/nitrogen6x.h | 10 +- 2 files changed, 30 insertions(+), 1

[U-Boot] [PATCH] cm_t35: Fix cm_t35 for weak splash_screen_prepare

2013-06-14 Thread Robert Winkler
Signed-off-by: Robert Winkler --- board/compulab/cm_t35/cm_t35.c | 2 +- include/configs/cm_t35.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/board/compulab/cm_t35/cm_t35.c b/board/compulab/cm_t35/cm_t35.c index b0b80e5..95098af 100644 --- a/board/compulab/cm_t35

[U-Boot] [PATCH 2/2] video: lcd: Make splash_screen_prepare weak, remove config macro

2013-06-14 Thread Robert Winkler
Remove CONFIG_SPLASH_SCREEN_PREPARE from README Add doc/README.splashprepare to document functionality Signed-off-by: Robert Winkler --- README | 8 common/splash.c | 14 -- doc/README.splashprepare | 8 3 files changed, 12 insertions

[U-Boot] [PATCH 1/2] video: lcd: Add CONFIG_SPLASH_SCREEN_PREPARE support to CONFIG_VIDEO

2013-06-14 Thread Robert Winkler
Create splash.c/h to put the function and any future common splash screen code in. Signed-off-by: Robert Winkler --- common/Makefile | 1 + common/lcd.c| 19 ++- common/splash.c | 37 + drivers/video

[U-Boot] [PATCH 0/2] video: lcd: splash screen prepare changes

2013-06-14 Thread Robert Winkler
lab/cm_t35 does not exist in his tree. If the second patch is accepted, cm_t35 will have to change since it uses the non-weak method. I will submit an optional 3rd patch to Stefano's tree with the necessary changes. Robert Winkler (2): video: lcd: Add CONFIG_SPLASH_SCREEN_PREPARE support to

[U-Boot] [PATCH] imx: nitrogen6x/mx6qsabrelite: Fix bug in board_video_skip

2013-06-13 Thread Robert Winkler
Signed-off-by: Robert Winkler --- board/boundary/nitrogen6x/nitrogen6x.c| 4 +++- board/freescale/mx6qsabrelite/mx6qsabrelite.c | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/board/boundary/nitrogen6x/nitrogen6x.c b/board/boundary/nitrogen6x/nitrogen6x.c index

Re: [U-Boot] [PATCH] video:lcd:cfb_console: cm_t35: Add CONFIG_SPLASH_SCREEN_PREPARE support to CONFIG_VIDEO

2013-06-06 Thread Robert Winkler
Hi All, On Wed, Jun 5, 2013 at 1:31 AM, Igor Grinberg wrote: > Hi Robert, > > On 06/04/13 21:11, Robert Winkler wrote: >> Adding Anatolij to the CC list. >> >> On Tue, Jun 4, 2013 at 8:10 AM, Robert Winkler >> wrote: >>> Hi Igor, >>>

[U-Boot] [PATCH 2/4] imx: nitrogen6x: Enable bootz

2013-06-06 Thread Robert Winkler
Signed-off-by: Robert Winkler --- include/configs/nitrogen6x.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/nitrogen6x.h b/include/configs/nitrogen6x.h index 039085e..c5118d1 100644 --- a/include/configs/nitrogen6x.h +++ b/include/configs/nitrogen6x.h @@ -285,4 +285,6

[U-Boot] [PATCH 4/4] imx: nitrogen6x: Enable filesystem generic commands

2013-06-06 Thread Robert Winkler
Signed-off-by: Robert Winkler --- include/configs/nitrogen6x.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/nitrogen6x.h b/include/configs/nitrogen6x.h index 01c3f13..74df66c 100644 --- a/include/configs/nitrogen6x.h +++ b/include/configs/nitrogen6x.h @@ -287,5 +287,6

[U-Boot] [PATCH v2 1/4] imx: nitrogen6x: Enabled data cache

2013-06-06 Thread Robert Winkler
Signed-off-by: Robert Winkler --- Changes for v2: removed dead code include/configs/nitrogen6x.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/configs/nitrogen6x.h b/include/configs/nitrogen6x.h index aea91bc..039085e 100644 --- a/include/configs/nitrogen6x.h +++ b/include/configs

[U-Boot] [PATCH v2 0/4] imx: nitrogen6x: Config changes

2013-06-06 Thread Robert Winkler
These are just some config changes for nitrogen6x. RAW_INITRD, BOOTZ, FS_GENERIC are being used by this project http://www.eewiki.net/display/linuxonarm/i.MX6x+SABRE+Lite DCACHE can finally be enabled because some related bugs have been fixed. Robert Winkler (4): imx: nitrogen6x: Enabled

[U-Boot] [PATCH 3/4] imx: nitrogen6x: Enable raw initrd

2013-06-06 Thread Robert Winkler
Signed-off-by: Robert Winkler --- include/configs/nitrogen6x.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/nitrogen6x.h b/include/configs/nitrogen6x.h index c5118d1..01c3f13 100644 --- a/include/configs/nitrogen6x.h +++ b/include/configs/nitrogen6x.h @@ -286,5 +286,6

[U-Boot] [PATCH 2/4] imx: nitrogen6x: Enable bootz

2013-06-05 Thread Robert Winkler
Signed-off-by: Robert Winkler --- include/configs/nitrogen6x.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/nitrogen6x.h b/include/configs/nitrogen6x.h index 07f39e9..b126940 100644 --- a/include/configs/nitrogen6x.h +++ b/include/configs/nitrogen6x.h @@ -287,4 +287,6

[U-Boot] [PATCH 0/4] imx: nitrogen6x: Config changes

2013-06-05 Thread Robert Winkler
These are just some config changes for nitrogen6x. RAW_INITRD, BOOTZ, FS_GENERIC are being used by this project http://www.eewiki.net/display/linuxonarm/i.MX6x+SABRE+Lite DCACHE can finally be enabled because some related bugs have been fixed. Robert Winkler (4): imx: nitrogen6x: Enabled

[U-Boot] [PATCH 3/4] imx: nitrogen6x: Enable raw initrd

2013-06-05 Thread Robert Winkler
Signed-off-by: Robert Winkler --- include/configs/nitrogen6x.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/nitrogen6x.h b/include/configs/nitrogen6x.h index b126940..5936e88 100644 --- a/include/configs/nitrogen6x.h +++ b/include/configs/nitrogen6x.h @@ -288,5 +288,6

[U-Boot] [PATCH 1/4] imx: nitrogen6x: Enabled data cache

2013-06-05 Thread Robert Winkler
Signed-off-by: Robert Winkler --- include/configs/nitrogen6x.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/nitrogen6x.h b/include/configs/nitrogen6x.h index aea91bc..07f39e9 100644 --- a/include/configs/nitrogen6x.h +++ b/include/configs/nitrogen6x.h

[U-Boot] [PATCH 4/4] imx: nitrogen6x: Enable filesystem generic commands

2013-06-05 Thread Robert Winkler
Signed-off-by: Robert Winkler --- include/configs/nitrogen6x.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/nitrogen6x.h b/include/configs/nitrogen6x.h index 5936e88..1d8d7e5 100644 --- a/include/configs/nitrogen6x.h +++ b/include/configs/nitrogen6x.h @@ -289,5 +289,6

Re: [U-Boot] [PATCH] video:lcd:cfb_console: cm_t35: Add CONFIG_SPLASH_SCREEN_PREPARE support to CONFIG_VIDEO

2013-06-04 Thread Robert Winkler
Adding Anatolij to the CC list. On Tue, Jun 4, 2013 at 8:10 AM, Robert Winkler wrote: > Hi Igor, > > On Mon, Jun 3, 2013 at 11:10 PM, Igor Grinberg > wrote: >> Hi Robert, >> >> On 06/03/13 20:20, Robert Winkler wrote: >>> Also change splash_screen_prepa

Re: [U-Boot] [PATCH] video:lcd:cfb_console: cm_t35: Add CONFIG_SPLASH_SCREEN_PREPARE support to CONFIG_VIDEO

2013-06-04 Thread Robert Winkler
Hi Igor, On Mon, Jun 3, 2013 at 11:10 PM, Igor Grinberg wrote: > Hi Robert, > > On 06/03/13 20:20, Robert Winkler wrote: >> Also change splash_screen_prepare to a weak function. > > You should be able to make a commit message a bit better. > Also, personally, I see her

Re: [U-Boot] [PATCH] Add splash screen support via loading from flash

2013-06-04 Thread Robert Winkler
2013 06:44 AM, Stefano Babic wrote: >>>> >>>> Hi Robert, >>>> >>>> On 03/06/2013 18:34, Robert Winkler wrote: >>>> >>>>>> Which is the advantage instead of using the "preboot" variable setting >>>>>&

[U-Boot] [PATCH] video:lcd:cfb_console: cm_t35: Add CONFIG_SPLASH_SCREEN_PREPARE support to CONFIG_VIDEO

2013-06-03 Thread Robert Winkler
Also change splash_screen_prepare to a weak function. Signed-off-by: Robert Winkler --- board/compulab/cm_t35/cm_t35.c | 2 +- common/lcd.c | 10 -- drivers/video/cfb_console.c| 14 ++ 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a

Re: [U-Boot] [PATCH] Add splash screen support via loading from flash

2013-06-03 Thread Robert Winkler
Hello Stefano On Mon, Jun 3, 2013 at 12:44 AM, Stefano Babic wrote: > Hi Robert, > > > On 30/05/2013 23:03, Robert Winkler wrote: >> Signed-off-by: Robert Winkler >> --- >> board/boundary/nitrogen6x/nitrogen6x.c | 22 ++ >> include

Re: [U-Boot] [PATCH] Add splash screen support via loading from flash

2013-05-31 Thread Robert Winkler
t; > Wolfgang Denk > > -- > DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel > HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany > Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de > Es ist offensichtlich, dass das

Re: [U-Boot] [PATCH] Add splash screen support via loading from flash

2013-05-30 Thread Robert Winkler
On Thu, May 30, 2013 at 4:32 PM, Wolfgang Denk wrote: > Dear Robert Winkler, > > In message < > 1369947781-25077-1-git-send-email-robert.wink...@boundarydevices.com> you > wrote: > > Signed-off-by: Robert Winkler > > --- > > boar

Re: [U-Boot] [PATCH] mx6: mx6qsabrelite/nitrogen6x: Remove incorrect setting of gpio CS signal

2013-05-30 Thread Robert Winkler
up_multiple_pads(ecspi1_pads, > ARRAY_SIZE(ecspi1_pads)); > } > -- > 1.7.10.4 > > Works for me for all Tegra builds, so: Tested-by: Robert Winkler Tested on the Sabre Lite. > ___ > U-

[U-Boot] [PATCH] Add splash screen support via loading from flash

2013-05-30 Thread Robert Winkler
Signed-off-by: Robert Winkler --- board/boundary/nitrogen6x/nitrogen6x.c | 22 ++ include/configs/nitrogen6x.h | 11 ++- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/board/boundary/nitrogen6x/nitrogen6x.c b/board/boundary/nitrogen6x