[U-Boot] [PATCH] i.MX6: arm2: Add AXI cache and Qos setting

2012-04-12 Thread Dirk Behme
Do the same AXI cache and Qos settings done already in the SabreLite imximage.cfg for the ARM2 board, too. It fixes a display flash issue caused by low priority of the display IDMA channel. Signed-off-by: Dirk Behme CC: Jason Chen CC: Jason Liu CC: Stefano Babic CC: Fabio Estevam --- board/

Re: [U-Boot] [PATCH v5 4/4] ARM: SAMSUNG: support sdhci controller

2012-04-12 Thread Graeme Russ
Hi Prabhakar, On Fri, Apr 13, 2012 at 4:16 PM, Prabhakar Lad wrote: > Hi Jaehoon, > [snip] >    There is no consistency for the #define  CONFIG_S5P_SDHCI, >    few have been assigned to value 1, And looking at the patchset >    the value of it is not used if I am not wrong, depending or defined

Re: [U-Boot] [PATCH v5 4/4] ARM: SAMSUNG: support sdhci controller

2012-04-12 Thread Prabhakar Lad
Hi Jaehoon, On Thu, Apr 12, 2012 at 4:29 PM, Jaehoon Chung wrote: > To support sdhci controller, remove the CONFIG_S5P_MMC.. > Instead, use the CONFIG_S5P_SDHCI/CONFIG_SDHCI. > > Signed-off-by: Jaehoon Chung > Signed-off-by: Kyungmin Park > Acked-by: Lei Wen > --- >  include/configs/origen.h  

Re: [U-Boot] U-boot customized

2012-04-12 Thread Graeme Russ
Hi Allyson, On Fri, Apr 13, 2012 at 1:57 PM, Allyson wrote: > > Hi folks, > > My name is Allyson, > I need put u-boot on my board with ARM 920t (at91rm9200) > > When I build u-boot-1.1.6 it is worked ok, but if I build u-boot-2011 don't > work. > > I need help ... please! And we will need a lot

[U-Boot] U-boot customized

2012-04-12 Thread Allyson
Hi folks, My name is Allyson, I need put u-boot on my board with ARM 920t (at91rm9200) When I build u-boot-1.1.6 it is worked ok, but if I build u-boot-2011 don't work. I need help ... please! Tks for all. -- View this message in context: http://old.nabble.com/U-boot-customized-tp33679635

Re: [U-Boot] [PATCH 4/8] i.MX25: Has a GPIO4 too

2012-04-12 Thread Timo Ketola
On 12.04.2012 16:09, Detlev Zundel wrote: What works very nicely for me is to do the changes, do "git add" on them and then do a COMMIT= ; git commit --squash=$COMMIT ; git rebase -i --autosquash ${COMMIT}^ Thanks - thats the kind of handholding I'm missing... -- Timo _

Re: [U-Boot] [RFC][PATCH] INIT_FUNC - List madness

2012-04-12 Thread Graeme Russ
Hi Wolfgang, Detlev > But, tsort works on paired entries, while INIT_FUNC allows functions to > have multiple dependencies. So to use tsort, I will need to process the > list to produce entry pairs - That should be a pretty simple operation. Well the solution appears to be trivial anyway: http:/

Re: [U-Boot] [PATCH v5 4/4] ARM: SAMSUNG: support sdhci controller

2012-04-12 Thread Minkyu Kang
On 12 April 2012 19:59, Jaehoon Chung wrote: > To support sdhci controller, remove the CONFIG_S5P_MMC.. > Instead, use the CONFIG_S5P_SDHCI/CONFIG_SDHCI. > > Signed-off-by: Jaehoon Chung > Signed-off-by: Kyungmin Park > Acked-by: Lei Wen > --- >  include/configs/origen.h            |    3 ++- >

Re: [U-Boot] [PATCH v5 3/4] mmc: support the sdhci instead of s5p_mmc for samsung-soc

2012-04-12 Thread Minkyu Kang
On 12 April 2012 19:59, Jaehoon Chung wrote: > In driver mmc, generic s5p_sdhci code is implemented. > s5p_mmc file  is dupulicated. > we are good that use the generic sdhci. > This patch supported the sdhci  for Samsung-SoC. > > Signed-off-by: Jaehoon Chung > Signed-off-by: Kyungmin Park > Acke

Re: [U-Boot] [PATCH v3 1/3] mmc: sdhci: add the quirk for broken R1b response

2012-04-12 Thread Jaehoon Chung
Hi Terry. You're right. I sent the patch-v5..did you check them? Best Regards, Jaehoon Chung On 04/13/2012 05:21 AM, Terry Lambert wrote: > Sorry for not properly threading, just joined the list formally. > > inre: the subject, already replied to the author directly, but the > following comment

Re: [U-Boot] [RFC][PATCH] INIT_FUNC - List madness

2012-04-12 Thread Graeme Russ
Hi Wolfgang, On Thu, Apr 12, 2012 at 11:28 PM, Wolfgang Denk wrote: > Dear Graeme Russ, > > In message <4f86cdf0.2030...@gmail.com> you wrote: >> >> This patch is a little heads-up for my upcomming INIT_FUNC patch series >> >> This is the INIT_FUNC 'engine' - It processes a file which consists of

Re: [U-Boot] using different architecture / toolchain for SPL build

2012-04-12 Thread Wolfgang Denk
Dear Allen Martin, In message <3c7a7aca8617d24290826ec008b5cd08510f030...@hqmail03.nvidia.com> you wrote: > > > Did you try asking on the binutils mailing list? This is where > > experts should be available... > > I drilled down on this some more and I found that with an armv4t > linker I can f

Re: [U-Boot] [PATCH v3 1/3] mmc: sdhci: add the quirk for broken R1b response

2012-04-12 Thread Terry Lambert
Sorry for not properly threading, just joined the list formally. inre: the subject, already replied to the author directly, but the following comments: The 'retriy' is post-decremented so the failure compare should be for -1. The word 'status' is misspelled as 'stauts". Other than that, LGTM wh

Re: [U-Boot] [PATCH 5/8] MXC FEC: Resolve speed before configuring gasket

2012-04-12 Thread Timo Ketola
On 12.04.2012 22:59, Troy Kisky wrote: On 4/12/2012 2:33 AM, Timo Ketola wrote: Signed-off-by: Timo Ketola + if (speed == _100BASET) This will break gigabit speed. How about if (speed != _10BASET) Looks fine to me. I'll put it that way in v2. -- Timo ___

Re: [U-Boot] [PATCH 5/8] MXC FEC: Resolve speed before configuring gasket

2012-04-12 Thread Troy Kisky
On 4/12/2012 2:33 AM, Timo Ketola wrote: Signed-off-by: Timo Ketola --- drivers/net/fec_mxc.c | 41 ++--- 1 files changed, 22 insertions(+), 19 deletions(-) diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 1fdd071..5d11df2 100644 --- a/dri

Re: [U-Boot] [PATCH] mx6qsabrelite: No need to set the direction for GPIO3_23 again

2012-04-12 Thread Dirk Behme
On 11.04.2012 22:22, Fabio Estevam wrote: There is a 'gpio_direction_output(87, 0);' call previously, so the GPIO direction is already established. Use gpio_set_value() for changing the GPIO output then. Signed-off-by: Fabio Estevam --- board/freescale/mx6qsabrelite/mx6qsabrelite.c |2 +-

Re: [U-Boot] using different architecture / toolchain for SPL build

2012-04-12 Thread Allen Martin
> > only option I found that worked was to use an armv4 toolchain for > the > > armv4 bits and armv7 toolchain for the armv7 bits. > > I'm not an expert in this area, but this cannot be the right > approach. > Did you try asking on the binutils mailing list? This is where > experts should be avai

[U-Boot] Regression due to: arm: Add Prep subcommand support to bootm

2012-04-12 Thread Stephen Warren
I just tried the latest u-boot/master, at commit: 3f0675d Merge branch 'marek.va...@gmail.com' of git://git.denx.de/u-boot-staging This fails to boot a Linux kernel on my ARM Tegra board; the boot log is: ## Booting kernel from Legacy Image at 00408000 ... Image Name: Linux-

[U-Boot] imx53 - nandflash support ?

2012-04-12 Thread Vellemans, Noel
Hi all, Anyone working on imx53 NAND-FLASH support ? Kind regards, Noel ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/2] image: add support for Android's boot image format

2012-04-12 Thread Aneesh V
On 03/17/2012 03:05 PM, Wolfgang Denk wrote: Dear Aneesh V, In message<4f153c83.20...@ti.com> you wrote: What is your final call on this? The above arguments sound convincing to me, but I have to admit that I am no legal expert. Either way, it will be great to have a closure on this. Lack of

Re: [U-Boot] [PULL] u-boot-staging/ma...@denx.de :: FOR u-boot/-next

2012-04-12 Thread Marek Vasut
Dear Daniel Schwierzeck, > Hi Marek, > > On Thu, Apr 12, 2012 at 5:44 AM, Marek Vasut wrote: > ... > > >> thanks for picking this up but as I wrote in the other thread those > >> patches are obsolete > >> for now. That's why I extracted the three bugfix patches and resent a > >> separate series

Re: [U-Boot] [PATCH 5/8] MXC FEC: Resolve speed before configuring gasket

2012-04-12 Thread Stefano Babic
On 12/04/2012 15:16, Timo Ketola wrote: > On 12.04.2012 15:05, Stefano Babic wrote: >> On 12/04/2012 11:33, Timo Ketola wrote: >>> Signed-off-by: Timo Ketola > >>> --- a/drivers/net/fec_mxc.c >>> +++ b/drivers/net/fec_mxc.c >> >> Please consider to rebase your patch on u-boot-imx, next branch. The

Re: [U-Boot] [RFC][PATCH] INIT_FUNC - List madness

2012-04-12 Thread Wolfgang Denk
Dear Graeme Russ, In message <4f86cdf0.2030...@gmail.com> you wrote: > > This patch is a little heads-up for my upcomming INIT_FUNC patch series > > This is the INIT_FUNC 'engine' - It processes a file which consists of > entries created by the following macros: > > #define INIT_FUNC(fn, init_n

Re: [U-Boot] [PATCH 5/8] MXC FEC: Resolve speed before configuring gasket

2012-04-12 Thread Timo Ketola
On 12.04.2012 15:05, Stefano Babic wrote: On 12/04/2012 11:33, Timo Ketola wrote: Signed-off-by: Timo Ketola --- a/drivers/net/fec_mxc.c +++ b/drivers/net/fec_mxc.c Please consider to rebase your patch on u-boot-imx, next branch. There are already a couple of patches related to gasket and M

Re: [U-Boot] [PATCH 4/8] i.MX25: Has a GPIO4 too

2012-04-12 Thread Detlev Zundel
Hi Timo, > On 12.04.2012 15:10, Wolfgang Denk wrote: >> Please make sure to run your patches through checkpatch ! > > Sorry about that. > > Now I could use some help about how to best edit my commits... What works very nicely for me is to do the changes, do "git add" on them and then do a COMMI

Re: [U-Boot] [RFC][PATCH] INIT_FUNC - List madness

2012-04-12 Thread Detlev Zundel
Hi Graeme, [...] > Now I just need to write the code that will order the function list Did you check 'man tsort'? Cheers Detlev -- I've been examining the existing [linux] kernel configuration system, and I have about concluded that the best favor we could do everybody involved with it is

[U-Boot] [RFC][PATCH] INIT_FUNC - List madness

2012-04-12 Thread Graeme Russ
Hello All, This patch is a little heads-up for my upcomming INIT_FUNC patch series This is the INIT_FUNC 'engine' - It processes a file which consists of entries created by the following macros: #define INIT_FUNC(fn, init_name, man_reqs, pre_reqs, post_reqs) \ static const char __init_fu

Re: [U-Boot] [PATCH 6/8] i.MX25: Add Exertus EXE4026 board

2012-04-12 Thread Stefano Babic
On 12/04/2012 14:09, Timo Ketola wrote: > On 12.04.2012 15:06, Stefano Babic wrote: >>> +exe4026 arm arm926ejs >>> exe4026 exertusmx25 >>> exe4026:IMX_CONFIG=board/exertus/exe4026/imximage.cfg >> Hi Timo, >> I assume you write also some co

Re: [U-Boot] [PATCH 4/8] i.MX25: Has a GPIO4 too

2012-04-12 Thread Timo Ketola
On 12.04.2012 15:10, Wolfgang Denk wrote: Please make sure to run your patches through checkpatch ! Sorry about that. Now I could use some help about how to best edit my commits... -- Timo ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.d

Re: [U-Boot] [PATCH 5/8] MXC FEC: Resolve speed before configuring gasket

2012-04-12 Thread Wolfgang Denk
Dear "Timo Ketola", In message <1334223234-23383-6-git-send-email-t...@exertus.fi> you wrote: > Signed-off-by: Timo Ketola > --- > drivers/net/fec_mxc.c | 41 ++--- > 1 files changed, 22 insertions(+), 19 deletions(-) ... > + // FIXME: useless call: miip

Re: [U-Boot] [PATCH 4/8] i.MX25: Has a GPIO4 too

2012-04-12 Thread Wolfgang Denk
Dear "Timo Ketola", In message <1334223234-23383-5-git-send-email-t...@exertus.fi> you wrote: > Signed-off-by: Timo Ketola > --- > drivers/gpio/mxc_gpio.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/gpio/mxc_gpio.c b/drivers/gpio/mxc_gpio.c > index df6

Re: [U-Boot] [PATCH 6/8] i.MX25: Add Exertus EXE4026 board

2012-04-12 Thread Timo Ketola
On 12.04.2012 15:06, Stefano Babic wrote: +exe4026 arm arm926ejs exe4026 exertusmx25 exe4026:IMX_CONFIG=board/exertus/exe4026/imximage.cfg I assume you write also some code for this board. Maybe forgotten ? Yes, later. I have hard

Re: [U-Boot] [PATCH 6/8] i.MX25: Add Exertus EXE4026 board

2012-04-12 Thread Stefano Babic
On 12/04/2012 11:33, Timo Ketola wrote: > Signed-off-by: Timo Ketola > --- > boards.cfg |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/boards.cfg b/boards.cfg > index 28cc345..44e80ed 100644 > --- a/boards.cfg > +++ b/boards.cfg > @@ -155,6 +155,7 @@ rd6281a

Re: [U-Boot] [PATCH 5/8] MXC FEC: Resolve speed before configuring gasket

2012-04-12 Thread Stefano Babic
On 12/04/2012 11:33, Timo Ketola wrote: > Signed-off-by: Timo Ketola > --- Hi Timo, > drivers/net/fec_mxc.c | 41 ++--- > 1 files changed, 22 insertions(+), 19 deletions(-) > > diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c > index 1fdd071..5d1

Re: [U-Boot] [PATCH 3/8] Build: Ignore build tree and IDE control file

2012-04-12 Thread Timo Ketola
On 12.04.2012 15:00, Stefano Babic wrote: Can be helpful for you to define your global .gitignore ... OK, thanks for that tip! -- Timo ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 3/8] Build: Ignore build tree and IDE control file

2012-04-12 Thread Stefano Babic
On 12/04/2012 13:24, Timo Ketola wrote: > On 12.04.2012 14:13, Stefano Babic wrote: >>> +/u-boot.geany >> >> What is this ? I do not find any occurency in u-boot tree. > > It is my IDE control file. I didn't want to publish this patch at all > but I have still a lot of learning about git. Ah, ok,

Re: [U-Boot] [PATCH 3/8] Build: Ignore build tree and IDE control file

2012-04-12 Thread Timo Ketola
On 12.04.2012 14:13, Stefano Babic wrote: +/u-boot.geany What is this ? I do not find any occurency in u-boot tree. It is my IDE control file. I didn't want to publish this patch at all but I have still a lot of learning about git. -- Timo ___ U

Re: [U-Boot] [PATCH 2/8] i.MX: Add target flashable to offset 0

2012-04-12 Thread Timo Ketola
On 12.04.2012 14:11, Stefano Babic wrote: On 12/04/2012 11:33, Timo Ketola wrote: +$(obj)u-boot-nand.imx: $(obj)u-boot.imx + dd if=$< of=$@ seek=2 + I wonder why we need this in u-boot code and to set this rule in the main Makefile. You can always do this after generating u-boot

Re: [U-Boot] [PATCH 4/8] i.MX25: Has a GPIO4 too

2012-04-12 Thread Stefano Babic
On 12/04/2012 11:33, Timo Ketola wrote: > Signed-off-by: Timo Ketola > --- > drivers/gpio/mxc_gpio.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/gpio/mxc_gpio.c b/drivers/gpio/mxc_gpio.c > index df6..b5972fd 100644 > --- a/drivers/gpio/mxc_gpio.c >

Re: [U-Boot] [PATCH 3/8] Build: Ignore build tree and IDE control file

2012-04-12 Thread Stefano Babic
On 12/04/2012 11:33, Timo Ketola wrote: > Signed-off-by: Timo Ketola > --- Hi Timo, > +/u-boot.geany What is this ? I do not find any occurency in u-boot tree. Best regards, Stefano Babic -- = DENX Software Engineering GmbH,

Re: [U-Boot] [PATCH 2/8] i.MX: Add target flashable to offset 0

2012-04-12 Thread Stefano Babic
On 12/04/2012 11:33, Timo Ketola wrote: > .imx image directly from mkimage must be flashed at offset 0x400 into the > nand. Thats a little hard with e.g. openocd. > > Signed-off-by: Timo Ketola > --- Hi Timo, > Makefile |3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff

[U-Boot] [PATCH v5 4/4] ARM: SAMSUNG: support sdhci controller

2012-04-12 Thread Jaehoon Chung
To support sdhci controller, remove the CONFIG_S5P_MMC.. Instead, use the CONFIG_S5P_SDHCI/CONFIG_SDHCI. Signed-off-by: Jaehoon Chung Signed-off-by: Kyungmin Park Acked-by: Lei Wen --- include/configs/origen.h|3 ++- include/configs/s5p_goni.h |3 ++- include/config

[U-Boot] [PATCH v5 3/4] mmc: support the sdhci instead of s5p_mmc for samsung-soc

2012-04-12 Thread Jaehoon Chung
In driver mmc, generic s5p_sdhci code is implemented. s5p_mmc file is dupulicated. we are good that use the generic sdhci. This patch supported the sdhci for Samsung-SoC. Signed-off-by: Jaehoon Chung Signed-off-by: Kyungmin Park Acked-by: Lei Wen --- arch/arm/include/asm/arch-exynos/mmc.h |

[U-Boot] [PATCH v5 2/4] mmc: add the quirk to use the sdhci for samsung-soc

2012-04-12 Thread Jaehoon Chung
To support the Samsung-SoC, added the basically functions. Samsung-SoC didn't used the SDHCI_CTRL_HISPD. And added set_control_reg callback for s3c64xx. Signed-off-by: Jaehoon Chung Signed-off-by: Kyungmin Park Acked-by: Lei Wen --- drivers/mmc/sdhci.c | 12 include/sdhci.h |

[U-Boot] [PATCH v5 1/4] mmc: sdhci: add the quirk for broken r1b response

2012-04-12 Thread Jaehoon Chung
When response type is R1b, mask value is added the SDHCI_INT_DAT_END. but in while(), didn't check that flag. So sdhci controller didn't work fine. CMD6 didn't always complete. So add the quirks for broken r1b response and add the timeout value to prevent the infinite loop. Signed-off-by: Jaehoon

[U-Boot] [PATCH v5 0/4] mmc: support sdhci instead of s5p_mmc

2012-04-12 Thread Jaehoon Chung
This patchset is supported the sdhci controller for Samsung-SoC. In mmc driver, already implemented the generic sdhci. There is no reason that didn't use sdhci.c. So, use the sdhci instead of s5p_mmc. Changelog-v5: - Tested with goni/trats board - Fixed wrong condition checking

Re: [U-Boot] [PATCH 6/8] i.MX25: Add Exertus EXE4026 board

2012-04-12 Thread Timo Ketola
On 12.04.2012 13:43, Fabio Estevam wrote: Please provide some more details in the commit message about this board, which peripherals are currently supported, where does it boot from, etc. Please also add an entry for your board in the MAINTAINERS file. You seem to have missed to do a "git add"

Re: [U-Boot] [PATCH] mx6qsabresd: Add basic support

2012-04-12 Thread Stefano Babic
On 11/04/2012 17:28, Fabio Estevam wrote: > Add basic support for mx6qsabresd board. > > Signed-off-by: Fabio Estevam Hi Fabio, > --- > MAINTAINERS |1 + > board/freescale/mx6qsabresd/Makefile | 37 ++ > board/freescale/mx6qsabresd/imximage.cfg |

Re: [U-Boot] [PATCH 6/8] i.MX25: Add Exertus EXE4026 board

2012-04-12 Thread Fabio Estevam
Hi Timo, On Thu, Apr 12, 2012 at 6:33 AM, Timo Ketola wrote: > Signed-off-by: Timo Ketola > --- >  boards.cfg |    1 + >  1 files changed, 1 insertions(+), 0 deletions(-) Thanks for your contributions. Please provide some more details in the commit message about this board, which peripherals a

[U-Boot] [PATCH 8/8] i.MX25: This model has almost the same USB-controller as i.MX31

2012-04-12 Thread Timo Ketola
Signed-off-by: Timo Ketola --- drivers/usb/host/ehci-mxc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/usb/host/ehci-mxc.c b/drivers/usb/host/ehci-mxc.c index 61dbccd..65f40a4 100644 --- a/drivers/usb/host/ehci-mxc.c +++ b/drivers/usb/host/ehci-mxc.c @@ -125,

[U-Boot] [PATCH 7/8] MXC NAND: Place BBT patterns into free OOB region

2012-04-12 Thread Timo Ketola
Signed-off-by: Timo Ketola --- drivers/mtd/nand/mxc_nand.c | 35 +++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c index 35e89a0..73813a2 100644 --- a/drivers/mtd/nand/mxc_nand.c +++ b/dr

[U-Boot] [PATCH 5/8] MXC FEC: Resolve speed before configuring gasket

2012-04-12 Thread Timo Ketola
Signed-off-by: Timo Ketola --- drivers/net/fec_mxc.c | 41 ++--- 1 files changed, 22 insertions(+), 19 deletions(-) diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 1fdd071..5d11df2 100644 --- a/drivers/net/fec_mxc.c +++ b/drivers/net/fec_mxc

[U-Boot] [PATCH 6/8] i.MX25: Add Exertus EXE4026 board

2012-04-12 Thread Timo Ketola
Signed-off-by: Timo Ketola --- boards.cfg |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/boards.cfg b/boards.cfg index 28cc345..44e80ed 100644 --- a/boards.cfg +++ b/boards.cfg @@ -155,6 +155,7 @@ rd6281a arm arm926ejs -

[U-Boot] [PATCH 4/8] i.MX25: Has a GPIO4 too

2012-04-12 Thread Timo Ketola
Signed-off-by: Timo Ketola --- drivers/gpio/mxc_gpio.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/gpio/mxc_gpio.c b/drivers/gpio/mxc_gpio.c index df6..b5972fd 100644 --- a/drivers/gpio/mxc_gpio.c +++ b/drivers/gpio/mxc_gpio.c @@ -40,7 +40,7 @@ static uns

[U-Boot] [PATCH 2/8] i.MX: Add target flashable to offset 0

2012-04-12 Thread Timo Ketola
.imx image directly from mkimage must be flashed at offset 0x400 into the nand. Thats a little hard with e.g. openocd. Signed-off-by: Timo Ketola --- Makefile |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 1446131..b3f1279 100644 --- a/Makef

[U-Boot] [PATCH 3/8] Build: Ignore build tree and IDE control file

2012-04-12 Thread Timo Ketola
Signed-off-by: Timo Ketola --- .gitignore |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index e4e95e2..3f5eaa7 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,9 @@ *.patch *.bin +# Build tree +/build-* + # # Top-level generic files

[U-Boot] [PATCH 1/8] i.MX25: add mxc_get_clock infrastructure

2012-04-12 Thread Timo Ketola
Signed-off-by: Timo Ketola --- arch/arm/cpu/arm926ejs/mx25/generic.c | 27 +++ arch/arm/include/asm/arch-mx25/clock.h | 23 +++ 2 files changed, 50 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/arm926ejs/mx25/generic.c b/arch/arm/cpu/ar

[U-Boot] [PATCH 0/8] i.MX25: Miscellaneus fixes

2012-04-12 Thread Timo Ketola
These are the fixes I needed to do to get my board going. [PATCH 1/8] i.MX25: add mxc_get_clock infrastructure SD-controller (fsl_esdhc.c) needs a clock frequency in gd->sdhc_clk. I tried to follow the idea of other architectures. [PATCH 2/8] i.MX: Add target flashable to offset 0 Helps flashin

[U-Boot] Introducing myself

2012-04-12 Thread Timo Ketola
Dear u-boot, I'm about to cooperate more with you here in the U-Boot list and thought that introducing myself first would be in order. My name is Timo Ketola. I work for a smallish (17 fellows) finnish company called Exertus (www.exertus.fi). I have a 25 year career on embedded systems. Seve

[U-Boot] Question about toots/bmp_logo.c

2012-04-12 Thread Donghwa Lee
Hi, I have some questions about tools/bmp_logo.c that converts from *.bmp to include/bmp_logo* header files. I think bmp_logo.c can't support various *.bmp files becuase it uses bmp_logo_palette[] that limited size to 240. It seems to assumed working with an 8-bits files. When image files have s

Re: [U-Boot] [PATCH] usb:udc: Remove duplicated USB definitions from include/linux/usb/ch9.h file

2012-04-12 Thread Lukasz Majewski
Hi Marek, > Dear Lukasz Majewski, > > > Remove the repeated USB descriptor code and use usbdescriptors.h > > file. ch9.h file has been copied from linux and is needed for USB > > gadget related work. > > Now usbdescriptors.h and ch9.h shall be used together. > > Please don't expect my respons

Re: [U-Boot] [PATCH v2 0/7] EXYNOS: support display drivers

2012-04-12 Thread Minkyu Kang
Donghwa, On 11 April 2012 04:28, Anatolij Gustschin wrote: > Hi, > > On Fri, 06 Apr 2012 14:36:07 +0900 > Donghwa Lee wrote: > >> This patch support EXYNOS display drivers including Framebuffer and >> MIPI DSI interface version 2. >> >> [PATCH v2 1/7] EXYNOS: definitions of system resgister and

Re: [U-Boot] [PATCH] mx6qsabresd: Add basic support

2012-04-12 Thread Marek Vasut
Dear Wolfgang Denk, > Dear Fabio Estevam, > > In message <1334158122-15219-1-git-send-email-feste...@gmail.com> you wrote: > > Add basic support for mx6qsabresd board. > > > > Signed-off-by: Fabio Estevam > > Could you please add a bit information which sort of board this is, > where to find d

Re: [U-Boot] [PATCH] usb:udc: Remove duplicated USB definitions from include/linux/usb/ch9.h file

2012-04-12 Thread Marek Vasut
Dear Lukasz Majewski, > Remove the repeated USB descriptor code and use usbdescriptors.h file. > ch9.h file has been copied from linux and is needed for USB gadget > related work. > Now usbdescriptors.h and ch9.h shall be used together. Please don't expect my response on these patches earlier tha

[U-Boot] [PATCH 5/6] usb:g_dnl: Support for g_dnl download usb gadget for GONI board

2012-04-12 Thread Lukasz Majewski
Support for g_dnl download usb gadget driver for Samsung's GONI target. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Minkyu Kang --- board/samsung/goni/goni.c |8 include/configs/s5p_goni.h | 33 +++-- 2 files changed, 35 insertion

[U-Boot] [PATCH 6/6] usb:g_dnl: Support for g_dnl download usb gadget for TRATS board

2012-04-12 Thread Lukasz Majewski
Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Minkyu Kang --- board/samsung/trats/trats.c |8 include/configs/trats.h | 17 + 2 files changed, 25 insertions(+), 0 deletions(-) diff --git a/board/samsung/trats/trats.c b/board/samsung/trats/tr

[U-Boot] [PATCH 2/6] usb:g_dnl:f_usbd_thor: USB Download function to support THOR protocol

2012-04-12 Thread Lukasz Majewski
Implementation of USB Download function supporting THOR protocol. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- drivers/usb/gadget/Makefile |1 + drivers/usb/gadget/f_usbd_thor.c | 808 ++ include/linux/usb/f_usbd_

[U-Boot] [PATCH 3/6] usb:g_dnl:thor: THOR protocol back end support for f_usbd_thor function

2012-04-12 Thread Lukasz Majewski
Support for THOR download protocol. Those files are necessary for proper f_usbd_thor function proper work. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- drivers/usb/gadget/prot_thor.c | 247 drivers/usb/gadget/prot_tho

[U-Boot] [PATCH 4/6] usb:command: Support for USB Download command

2012-04-12 Thread Lukasz Majewski
Support for usbdownload command, which starts USB Downloading process compliant with Samsung's THOR protocol. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- common/Makefile |1 + common/cmd_usbd.c | 161 +++

[U-Boot] [PATCH 0/6] usb:composite:download Composite download gadget

2012-04-12 Thread Lukasz Majewski
This patch series provides a composite gadget for downloading code to u-boot targets. The Linux's composite gadget framework is used. For this series a special function (f_usbd_thor) has been added. It supports a THOR protocol for sending data. Other functions and protocols backends can be easi

[U-Boot] [PATCH 1/6] usb:composite:g_dnl: Composite gadget (g_dnl) for USB downloading functions

2012-04-12 Thread Lukasz Majewski
Composite USB download gadget (g_dnl) for download functions (e.g. DFU, THOR, others) Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- drivers/usb/gadget/Makefile |1 + drivers/usb/gadget/g_dnl.c | 231 +++ include/g_

[U-Boot] [PATCH] usb:udc:samsung Add functions for storing private gadget data in UDC driver

2012-04-12 Thread Lukasz Majewski
This commit adds support for storing private data to Samsung's UDC driver. This data is afterward used by usb gadget. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- drivers/usb/gadget/s3c_udc_otg.c | 12 1 files changed, 12 insertions(+), 0 delet

[U-Boot] [PATCH 4/4] usb:gadget: Extend device struct to device_data pointer

2012-04-12 Thread Lukasz Majewski
Add device data pointer to the USB gadget's device struct. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- include/linux/usb/gadget.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/usb/gadget.h b/include/linux/usb/gadget.h

[U-Boot] [PATCH 2/4] usb:gadget:composite: Linux composite.{h/c} code adjustement for u-boot

2012-04-12 Thread Lukasz Majewski
This commit fixes Linux kernel's composite.{h/c} code to work with u-boot. Signed-off-by: Lukasz Majewski Signed-off-by: Andrzej Pietrasiewicz Signed-off-by: Kyungmin Park Cc: Marek Vasut --- drivers/usb/gadget/composite.c | 58 ++-- include/linux/usb/com

[U-Boot] [PATCH 1/4] usb:gadget:composite Composite framework - files from Linux kernel

2012-04-12 Thread Lukasz Majewski
Two files from Linux kernel source tree have been ported to u-boot (Linux Kernel v2.6.36): ./include/linux/usb/composite.h ./drivers/usb/gadget/composite.c commit d187abb9a83e6c6b6e9f2ca17962bdeafb4bc903 Author: Randy Dunlap Date: Wed Aug 11 12:07:13 2010 -0700 USB: gadget: fix compos

[U-Boot] [PATCH 0/4] usb:gadget:composite: Support for composite gadget framework

2012-04-12 Thread Lukasz Majewski
This patch set provides support for composite gadget framework. Files from Linux kernel (2.6.36) - namely composite.{c|h} have been ported. Some extra "compatibility" code has been added as well. Lukasz Majewski (4): usb:gadget:composite Composite framework - files from Linux kernel usb:gadg

[U-Boot] [PATCH 3/4] usb:gadget: Wrapper for extracting usb_gadget from linux's device

2012-04-12 Thread Lukasz Majewski
Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- include/linux/usb/gadget.h |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/include/linux/usb/gadget.h b/include/linux/usb/gadget.h index 275cb5f..b0a0e1f 100644 --- a/include/linux/usb/g

[U-Boot] [PATCH] usb:udc: Remove duplicated USB definitions from include/linux/usb/ch9.h file

2012-04-12 Thread Lukasz Majewski
Remove the repeated USB descriptor code and use usbdescriptors.h file. ch9.h file has been copied from linux and is needed for USB gadget related work. Now usbdescriptors.h and ch9.h shall be used together. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- drivers