Re: [U-Boot] [PATCH] checkpatch.pl: Do not hardcode perl path

2013-06-17 Thread Joel A Fernandes
On Mon, Jun 17, 2013 at 1:38 AM, Andreas Bießmann wrote: > Dear Joel A Fernandes, > > On 16.06.13 17:44, Joel A Fernandes wrote: >> On Sunday, June 16, 2013, Jagannadha Sutradharudu Teki wrote: >> >>> From: Jagannadha Sutradharudu Teki >>>> >>>

Re: [U-Boot] [PATCH] checkpatch.pl: Do not hardcode perl path

2013-06-16 Thread Joel A Fernandes
On Sunday, June 16, 2013, Jagannadha Sutradharudu Teki wrote: > From: Jagannadha Sutradharudu Teki > > > > checkpatch.pl requires perl v5.10.0 to run but it > doesn't require to place in /usr/bin/perl > Use env to ensure that the interpreter used is the > first one on environment's $PATH on syste

[U-Boot] [PATCH v2] SPL: Makefile: Build a separate autoconf.mk for SPL

2013-05-28 Thread Joel A Fernandes
ed-by: Muddegowda, Deepak . Thanks Deepak! Reported-by: Tom Rini Signed-off-by: Joel A Fernandes Cc: Muddegowda, Deepak Cc: Tom Rini --- Makefile | 19 +-- config.mk |6 ++ 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6a

Re: [U-Boot] [PATCH 1/2] SPL: Makefile: Build a separate autoconf.mk for SPL

2013-05-18 Thread Joel A Fernandes
Hi Tom, Sorry for the delay as I've been traveling. On Friday, May 17, 2013, Tom Rini wrote: > On Tue, May 07, 2013 at 10:52:54AM -0500, Joel A Fernandes wrote: > > > SPL defines CONFIG_SPL_BUILD but this does not percolate to the > > autoconf.mk Makefile. As a resul

[U-Boot] [PATCH 2/2] am33xx: Board: Make CPSW section of ethernet initialization depend on CPSW driver

2013-05-07 Thread Joel A Fernandes
Not doing so breaks cases where CPSW is not required such as for USB RNDIS network boot. Signed-off-by: Joel A Fernandes --- board/ti/am335x/board.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/board/ti/am335x/board.c b/board/ti/am335x/board.c index b371376

[U-Boot] [PATCH 1/2] SPL: Makefile: Build a separate autoconf.mk for SPL

2013-05-07 Thread Joel A Fernandes
_SPL_ variables for cases where some options are required in U-boot but not in SPL. We add a spl-autoconf.mk rule that is generated for SPL with the CONFIG_SPL_BUILD flag and conditionally include it for SPL builds. Signed-off-by: Joel A Fernandes --- Makefile | 19 +-- config.mk |

Re: [U-Boot] [RFC] Kbuild support for ARM FIT images

2013-02-23 Thread Joel A Fernandes
On Thu, Feb 21, 2013 at 4:37 AM, Russell King - ARM Linux wrote: > On Wed, Feb 20, 2013 at 07:37:10PM -0600, Joel A Fernandes wrote: >> Hello, >> I've been spinning some work-in-progress patches for FIT build support >> in the kernel. >> With the move to multipla

Re: [U-Boot] [RFC] Kbuild support for ARM FIT images

2013-02-21 Thread Joel A Fernandes
On Wed, Feb 20, 2013 at 10:26 PM, Stephen Warren wrote: > On 02/20/2013 06:37 PM, Joel A Fernandes wrote: >> Hello, >> I've been spinning some work-in-progress patches for FIT build support >> in the kernel. >> With the move to multiplatform support on OMAP, I

[U-Boot] [RFC] Kbuild support for ARM FIT images

2013-02-20 Thread Joel A Fernandes
Hello, I've been spinning some work-in-progress patches for FIT build support in the kernel. With the move to multiplatform support on OMAP, I feel it is a good time to add FIT support, also looking at the proliferating number of dtbs, as it is a nice way Currently the following is what I envisio

[U-Boot] Current state and existing users of FIT (Flattened Image Tree)?

2013-01-29 Thread Joel A Fernandes
Just trying to correlate old patches on U-boot mailing list to draw a picture of the current state of FIT (Flattened Image Tree format).. still have the following questions: Can anyone familiar with this topic comment on the following? (1) Other than Chromium OS, who are the most notable examples

Re: [U-Boot] [PATCH] arm: bugfix: Move vector table before jumping relocated code

2012-12-25 Thread Joel A Fernandes
On Tue, Dec 25, 2012 at 5:18 PM, Tetsuyuki Kobayashi wrote: > Hello, Joel > > > (2012/12/22 0:17), Joel A Fernandes wrote: >> >> Hi Tesuyuki and friends, >> >> I had a question with this patch. >> >> On Wed, Jun 27, 2012 at 8:27 PM, Tetsuyuki K

Re: [U-Boot] [PATCH] arm: bugfix: Move vector table before jumping relocated code

2012-12-21 Thread Joel A Fernandes
Hi Tesuyuki and friends, I had a question with this patch. On Wed, Jun 27, 2012 at 8:27 PM, Tetsuyuki Kobayashi wrote: >>> This patch moves vector table before jumping relocated code. >>> >>> Signed-off-by: Tetsuyuki Kobayashi >>> --- >>> arch/arm/cpu/armv7/start.S | 12 >>> 1

[U-Boot] [PATCH] am33xx: pmic: Add support for tps65217

2012-10-31 Thread Joel A Fernandes
f-by: Joel A Fernandes --- arch/arm/cpu/armv7/am33xx/board.c| 134 ++ arch/arm/cpu/armv7/am33xx/pmic.h | 76 +++ arch/arm/cpu/armv7/am33xx/tps65217.h | 90 +++ 3 files changed, 300 insertions(+) create mode 100644 ar

[U-Boot] [PATCH] am33xx: Enable DDR3 for DDR3 version of beaglebone

2012-09-25 Thread Joel A Fernandes
DDR3 support is tested and working with beaglebone hardware. Include a check for this board type and configure DDR3. The timings and other configuration match EVM SK. Signed-off-by: Joel A Fernandes --- arch/arm/cpu/armv7/am33xx/board.c |9 +++-- 1 file changed, 7 insertions(+), 2

[U-Boot] [PATCH] am33xx: Fix fetching of mmc1 bootmode from bootrom for AM33XX

2012-09-18 Thread Joel A Fernandes
U-boot should not ignore getting the bootmode passed on from the bootrom. With this, U-boot SPL knows it was loaded from MMC1 and use this info to read full U-boot from MMC1 as well. Cc: pprak...@ti.com Cc: tr...@ti.com Signed-off-by: Joel A Fernandes --- arch/arm/cpu/armv7/omap-common

[U-Boot] [PATCH] Makefile: Remove MLO on make clean

2011-10-12 Thread Joel A Fernandes
From: Joel A Fernandes SPL builds could leave an MLO which is an mkimage of type omapimage Make sure its deleted on make clean/distclean Signed-off-by: Joel A Fernandes --- Makefile |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 99b9278

Re: [U-Boot] SPL boot modes

2011-09-16 Thread Joel A Fernandes
On Fri, Sep 16, 2011 at 7:31 AM, Wolfgang Denk wrote: > Dear Joel A Fernandes, > > In message > you > wrote: >> >> Just one question about one of your patches I happen to notice [1], >> why is there a SPL build for each different boot mode such as for >>

Re: [U-Boot] SPL boot modes

2011-09-15 Thread Joel A Fernandes
On Fri, Sep 16, 2011 at 1:11 AM, Joel A Fernandes wrote: > Hi Simon, > > Great work on the SPL patches for omap. I am getting a bit familiar > with this and earlier SPL work. > > Just one question about one of your patches I happen to notice [1], Sorry, I was referring t

[U-Boot] SPL boot modes

2011-09-15 Thread Joel A Fernandes
Hi Simon, Great work on the SPL patches for omap. I am getting a bit familiar with this and earlier SPL work. Just one question about one of your patches I happen to notice [1], why is there a SPL build for each different boot mode such as for NAND, MMC etc?. Wouldn't it be nicer to have a single

Re: [U-Boot] U-boot mainline test report on BeagleBoard

2011-09-12 Thread Joel A Fernandes
[resending to list as it bounced] On Tue, Sep 6, 2011 at 10:24 PM, Fernandes, Joel A wrote: > Hi, > > Here are some problems I see currently with the today's mainline U-boot not > seen with v2011.06 Just sharing them here. > > HEAD: 05f64ae996a51e32ef47e0db2c806e704606606e: led: remove camel cas

Re: [U-Boot] [PATCH v2] BeagleBoard: Remove userbutton command and use gpio command instead

2011-09-12 Thread Joel A Fernandes
Hi Jason, On Sun, Sep 11, 2011 at 2:54 PM, Jason Kridner wrote: > On Sun, Sep 11, 2011 at 2:41 PM, Joel A Fernandes > wrote: >> Remove userbutton command and do the detection in board config file using >> the gpio command > > Can you split these into two

[U-Boot] [PATCH v2] BeagleBoard: Remove userbutton command and use gpio command instead

2011-09-11 Thread Joel A Fernandes
Remove userbutton command and do the detection in board config file using the gpio command Signed-off-by: Joel A Fernandes Signed-off-by: Jason Kridner --- This addresses the suggestions at: http://patchwork.ozlabs.org/patch/110123/ Also, with the removal of the userbutton command, all

[U-Boot] [PATCH] BeagleBoard: Remove userbutton command and use gpio command instead

2011-09-11 Thread Joel A Fernandes
Remove userbutton command and do the detection in board config file using the gpio command Signed-off-by: Joel A Fernandes Signed-off-by: Jason Kridner --- This addresses the suggestions at: http://patchwork.ozlabs.org/patch/110123/ Also, with the removal of the userbutton command, all

Re: [U-Boot] [PATCH 2/3] BeagleBoard: Added userbutton command

2011-09-11 Thread Joel A Fernandes
On Thu, Sep 8, 2011 at 3:05 AM, Wolfgang Denk wrote: > Dear Joel A Fernandes, > > In message <1313462214-3716-2-git-send-email-agnel.j...@gmail.com> you wrote: >> From: Jason Kridner >> >> Based on commit f1099c7c43caf5bac3bf6a65aa266fade4747072 >>     Auth

Re: [U-Boot] [PATCH 2/3] BeagleBoard: Added userbutton command

2011-09-09 Thread Joel A Fernandes
On Thu, Sep 8, 2011 at 10:10 AM, Kridner, Jason wrote: > > > On Sep 8, 2011, at 11:03 AM, "Albert ARIBAUD" > wrote: > >> Hi Joel, >> >> Le 08/09/2011 16:56, Joel A Fernandes a écrit : >> >>>> Also, I agree with Albert: t

Re: [U-Boot] [PATCH 2/3] BeagleBoard: Added userbutton command

2011-09-09 Thread Joel A Fernandes
On Fri, Sep 9, 2011 at 9:19 AM, Jason Kridner wrote: > On Thu, Sep 8, 2011 at 9:41 PM, Joel A Fernandes wrote: >> On Thu, Sep 8, 2011 at 10:10 AM, Kridner, Jason wrote: >>> >>> >>> On Sep 8, 2011, at 11:03 AM, "Albert ARIBAUD" >>> wrote:

Re: [U-Boot] [PATCH 2/3] BeagleBoard: Added userbutton command

2011-09-08 Thread Joel A Fernandes
On Thu, Sep 8, 2011 at 10:10 AM, Kridner, Jason wrote: > > > On Sep 8, 2011, at 11:03 AM, "Albert ARIBAUD" > wrote: > >> Hi Joel, >> >> Le 08/09/2011 16:56, Joel A Fernandes a écrit : >> >>>> Also, I agree with Albert: t

Re: [U-Boot] [PATCH 2/3] BeagleBoard: Added userbutton command

2011-09-08 Thread Joel A Fernandes
On Thu, Sep 8, 2011 at 10:10 AM, Kridner, Jason wrote: > > > On Sep 8, 2011, at 11:03 AM, "Albert ARIBAUD" > wrote: > >> Hi Joel, >> >> Le 08/09/2011 16:56, Joel A Fernandes a écrit : >> >>>> Also, I agree with Albert: t

Re: [U-Boot] [PATCH 2/3] BeagleBoard: Added userbutton command

2011-09-08 Thread Joel A Fernandes
On Thu, Sep 8, 2011 at 3:05 AM, Wolfgang Denk wrote: > Dear Joel A Fernandes, > > In message <1313462214-3716-2-git-send-email-agnel.j...@gmail.com> you wrote: >> From: Jason Kridner >> >> Based on commit f1099c7c43caf5bac3bf6a65aa266fade4747072 >>     Auth

Re: [U-Boot] [PATCH] OMAP: Add function to get state of a GPIO output

2011-09-07 Thread Joel A Fernandes
On Tue, Sep 6, 2011 at 1:16 PM, Premi, Sanjeev wrote: > I don't remember seeing any errors/warnings after applying my patches... on > all boards listed in the cover letter. > ...except for SMSC95x - in case of Panda. > > Infact, once the patches are applied, this function shouldn't even exist. >

Re: [U-Boot] [PATCH] omap3: beagle: Fix build warning

2011-09-07 Thread Joel A Fernandes
gcc-4.2.2-glibc-20070515T2025-eldk/arm-linux-gnu >> >> eabi/binutils-2.17.90/bfd/elf32-arm.c:8886 >>>> >>>> arm-linux-ld: BFD (GNU Binutils) 2.17.90.20070806 assertion fail >>>> >>> /opt/eldk/build/arm-2008-11-24/work/usr/src/denx/BUILD/cross

[U-Boot] Fwd: U-boot mainline test report on BeagleBoard

2011-09-06 Thread Joel A Fernandes
[This didn't go to the list due to "too many recipients" so I'm sending it again] Hi, Here are some problems I see currently with the today's mainline U-boot not seen with v2011.06 Just sharing them here. HEAD: 05f64ae996a51e32ef47e0db2c806e704606606e: led: remove camel casing of led identifiers

[U-Boot] [PATCH v2] beagleboard: enable HUB power on all variants of the BeagleBoard

2011-08-27 Thread Joel A Fernandes
From: Christian Spielberger Changes made by Jason Kridner with inputs from Eric Benard to special case xM Rev A and xM Rev B Signed-off-by: Joel A Fernandes Cc: Eric Benard Cc: Christian Spielberger Cc: Jason Kridner --- Previous discussions: http://www.mail-archive.com/u-boot

Re: [U-Boot] [PATCH] beagleboard: enable HUB power on all variants of the BeagleBoard

2011-08-27 Thread Joel A Fernandes
All, I'm post a v2 now, please give ACKs, thanks :) On Sat, Aug 27, 2011 at 11:19 AM, Jason Kridner wrote: > On Sat, Aug 27, 2011 at 9:51 AM, Eric Bénard wrote: >> Hi Joel, >> >> Le 27/08/2011 06:46, Joel A Fernandes a écrit : >>>> The logic is wrong here.

Re: [U-Boot] [PATCH] beagleboard: enable HUB power on all variants of the BeagleBoard

2011-08-26 Thread Joel A Fernandes
+U-boot list -- Forwarded message -- From: Joel A Fernandes Date: Fri, Aug 26, 2011 at 11:45 PM Subject: Re: [PATCH] beagleboard: enable HUB power on all variants of the BeagleBoard To: Jason Kridner > > The logic is wrong here.  I don't remember the polarit

Re: [U-Boot] [PATCH] beagleboard: enable HUB power on all variants of the BeagleBoard

2011-08-26 Thread Joel A Fernandes
On Wed, Aug 24, 2011 at 10:30 PM, Jason Kridner wrote: > On Wed, Aug 24, 2011 at 11:22 PM, Marek Vasut wrote: >> On Thursday, August 25, 2011 12:47:41 AM Joel A Fernandes wrote: >>> From: Christian Spielberger >>> >>> Signed-off-by: Joel A Fernandes >&g

[U-Boot] [PATCH] beagleboard: enable HUB power on all variants of the BeagleBoard

2011-08-24 Thread Joel A Fernandes
From: Christian Spielberger Signed-off-by: Joel A Fernandes Cc: "Eric Bénard" Cc: "Christian Spielberger" --- Pushing this patch myself as no one else did. Previous discussions: http://article.gmane.org/gmane.comp.boot-loaders.u-boot/105663/ http://article.gmane

Re: [U-Boot] [PATCH 03/13] BeagleBoard: config: hardcode MAC for onboard SMSC

2011-08-22 Thread Joel A Fernandes
+u-boot@lists.denx.de On Mon, Aug 22, 2011 at 5:08 PM, Wolfgang Denk wrote: > Dear Sandeep & Albert, > > In message <2011080245.e99a911f9...@gemini.denx.de> I wrote: >> Dear Joel A Fernandes, >> >> In message <1313462834-4008-3-git-send-email-agnel.j.

Re: [U-Boot] [PATCH 1/2] dm3730: enable dpll5

2011-08-17 Thread Joel A Fernandes
On Fri, Aug 12, 2011 at 2:47 PM, Jason Kridner wrote: > On Fri, Jun 10, 2011 at 6:21 PM, Eric Bénard wrote: >> which is used to provide 120MHz to USB EHCI >> This allows EHCI to work on BeagleBoard XM >> >> Signed-off-by: Eric Bénard > > Acked-by: Jason Kridner > > We've tested this at TI.  Tha

[U-Boot] [PATCH v4] OMAP3: Add DSS driver for OMAP3

2011-08-17 Thread Joel A Fernandes
/pipermail/u-boot/2011-August/097976.html Signed-off-by: Syed Mohammed Khasim Signed-off-by: Jason Kridner Signed-off-by: Joel A Fernandes --- arch/arm/include/asm/arch-omap3/dss.h | 174 + drivers/video/Makefile|2 + drivers/video/omap3_dss.c

Re: [U-Boot] ehci-hcd: Allow cleanups to happen on an EHCI timeout.

2011-08-17 Thread Joel A Fernandes
Hi Simon, Thanks a lot for reviewing the issue. >>> With respect to using a bulk USB stick (some of which take 3s or more >>> to respond to a submit) this doesn't make any difference for me. It >>> seems to take a long time to respond the first time, so the 5s timeout >>> seems prudent. >>> >>> S

[U-Boot] [PATCH v2 7/7] led: Remove state-saving of led for toggle functionality and add toggle option to led command

2011-08-16 Thread Joel A Fernandes
* Read the led output state from GPIO instead saving state in memory when it is [re]set * Added a toggle option to the led command Previous discussion: http://lists.denx.de/pipermail/u-boot/2011-May/093068.html Changes since v1: Fixed checkpatch errors Signed-off-by: Joel A Fernandes Signed

Re: [U-Boot] [PATCH 5/7] led: Fixed setting of STATUS_LED_BIT1 when led_name is 'all'

2011-08-16 Thread Joel A Fernandes
On Tue, Aug 16, 2011 at 6:14 AM, Sergei Shtylyov wrote: > Hello. > > On 16-08-2011 6:42, Joel A Fernandes wrote: > >> Fix for only one led getting set or reset when the led_name is 'all' > Hi, Thanks for pointing that out. Should I have to re-send the entire patch s

[U-Boot] [PATCH v2 5/7] led: Fixed setting of STATUS_LED_BIT1 when led_name is 'all'

2011-08-16 Thread Joel A Fernandes
Fix for only one led getting set or reset when the led_name is 'all' Previous discussion: http://lists.denx.de/pipermail/u-boot/2011-May/093068.html Changes since v1: Fixed checkpatch if statement error noticed by Sergei. Signed-off-by: Joel A Fernandes Signed-off-by: Jason Kridner

[U-Boot] [PATCH] led: remove camel casing of led identifiers globally

2011-08-15 Thread Joel A Fernandes
tch/84988/ Signed-off-by: Jason Kridner Signed-off-by: Joel A Fernandes --- arch/arm/cpu/arm920t/ep93xx/led.c | 24 +- arch/arm/cpu/arm926ejs/at91/led.c | 12 arch/arm/lib/board.c | 32 board/atmel/at91rm9200dk/led.c|

[U-Boot] [PATCH 13/13] BeagleBoard: config: updated default configuration

2011-08-15 Thread Joel A Fernandes
From: Jason Kridner * Improved boot env var setting * Made room for a 64MB ramdisk by moving from 0x8160 to 0x8100 * Added ramarg, ramroot and ramboot env variables Signed-off-by: Jason Kridner Signed-off-by: Joel A Fernandes --- include/configs/omap3_beagle.h | 20

[U-Boot] [PATCH 12/13] BeagleBoard: config: Enabled multibus support for I2C in configuration

2011-08-15 Thread Joel A Fernandes
From: Jason Kridner Signed-off-by: Jason Kridner Signed-off-by: Joel A Fernandes --- include/configs/omap3_beagle.h |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 6038c91..85bd0da 100644 --- a

[U-Boot] [PATCH 11/13] BeagleBoard: config: add optargs/buddy/camera

2011-08-15 Thread Joel A Fernandes
From: Jason Kridner buddy and camera are used to configure peripherals in the kernel at boot time that cannot easily be detected by the kernel. Signed-off-by: Jason Kridner Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- include/configs/omap3_beagle.h |6 ++ 1 files

[U-Boot] [PATCH 10/13] BeagleBoard: config: increase command-line functionality

2011-08-15 Thread Joel A Fernandes
From: Jason Kridner Enable the expression evaluator. Signed-off-by: Jason Kridner Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- include/configs/omap3_beagle.h |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include

[U-Boot] [PATCH 09/13] BeagleBoard: config: make mtest run

2011-08-15 Thread Joel A Fernandes
From: Jason Kridner Utilize the alternate mtest and define a valid region. Signed-off-by: Jason Kridner Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- include/configs/omap3_beagle.h |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/include

[U-Boot] [PATCH 08/13] BeagleBoard: config: enable DSS

2011-08-15 Thread Joel A Fernandes
From: Koen Kooi Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- include/configs/omap3_beagle.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 0bfbfc1..9fc65f7 100644 --- a/include

[U-Boot] [PATCH 07/13] BeagleBoard: config: enable asix driver and dhcp

2011-08-15 Thread Joel A Fernandes
From: Koen Kooi Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- include/configs/omap3_beagle.h |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 722dfc3..0bfbfc1 100644 --- a/include

[U-Boot] [PATCH 06/13] BeagleBoard: config: enable networking

2011-08-15 Thread Joel A Fernandes
From: Koen Kooi Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- include/configs/omap3_beagle.h | 10 -- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 36ccd4e..722dfc3 100644 --- a

[U-Boot] [PATCH 05/13] BeagleBoard: config: decrease bootdelay to 2 seconds

2011-08-15 Thread Joel A Fernandes
From: Koen Kooi Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- include/configs/omap3_beagle.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 263e478..36ccd4e 100644 --- a/include

[U-Boot] [PATCH 04/13] BeagleBoard: config: use uImage.beagle for tftp

2011-08-15 Thread Joel A Fernandes
Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- include/configs/omap3_beagle.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 78d0aa2..263e478 100644 --- a/include/configs/omap3_beagle.h

[U-Boot] [PATCH 03/13] BeagleBoard: config: hardcode MAC for onboard SMSC

2011-08-15 Thread Joel A Fernandes
Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- include/configs/omap3_beagle.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 6e66100..78d0aa2 100644 --- a/include/configs/omap3_beagle.h

[U-Boot] [PATCH 02/13] BeagleBoard: config: Switch console to ttyO2

2011-08-15 Thread Joel A Fernandes
Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- include/configs/omap3_beagle.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 038fb5b..6e66100 100644 --- a/include/configs

[U-Boot] [PATCH 01/13] BeagleBoard: config: load kernel from MMC ext, not FAT

2011-08-15 Thread Joel A Fernandes
From: Koen Kooi Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- include/configs/omap3_beagle.h |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index a494f99..038fb5b 100644 --- a/include

[U-Boot] [PATCH 7/7] led: Remove state-saving of led for toggle functionality and add toggle option to led command

2011-08-15 Thread Joel A Fernandes
* Read the led output state from GPIO instead saving state in memory when it is [re]set * Added a toggle option to the led command Previous discussion: http://lists.denx.de/pipermail/u-boot/2011-May/093068.html Signed-off-by: Joel A Fernandes Signed-off-by: Jason Kridner --- board/ti/beagle

[U-Boot] [PATCH 6/7] OMAP3: Add function to get state of a GPIO output

2011-08-15 Thread Joel A Fernandes
Read directly from OMAP24XX_GPIO_DATAOUT to get the output state of the GPIO pin Signed-off-by: Joel A Fernandes Signed-off-by: Jason Kridner --- arch/arm/cpu/armv7/omap3/gpio.c| 20 arch/arm/include/asm/arch-omap3/gpio.h |2 ++ 2 files changed, 22 insertions

[U-Boot] [PATCH 5/7] led: Fixed setting of STATUS_LED_BIT1 when led_name is 'all'

2011-08-15 Thread Joel A Fernandes
Fix for only one led getting set or reset when the led_name is 'all' Previous discussion: http://lists.denx.de/pipermail/u-boot/2011-May/093068.html Signed-off-by: Joel A Fernandes Signed-off-by: Jason Kridner --- common/cmd_led.c |4 +++- 1 files changed, 3 insertions(+), 1

[U-Boot] [PATCH 4/7] led: correct off/on locations in structure

2011-08-15 Thread Joel A Fernandes
From: Jason Kridner Although the initialization should probably be done with names, the existing implementation has these structures filled in the opposite order. Signed-off-by: Jason Kridner Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- common/cmd_led.c |4 ++-- 1 files

[U-Boot] [PATCH 3/7] led: added cmd_led to Makefile

2011-08-15 Thread Joel A Fernandes
From: Jason Kridner Addition of cmd_led into the Makefile wasn't included in the patch applied to u-boot-ti. Signed-off-by: Jason Kridner Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- common/Makefile |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --

[U-Boot] [PATCH 2/7] BeagleBoard: fix LED 0/1 in driver

2011-08-15 Thread Joel A Fernandes
From: Jason Kridner Fixed USR0/USR1 to be LED 0/1 respectively Signed-off-by: Jason Kridner Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- board/ti/beagle/led.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board/ti/beagle/led.c b/board/ti/beagle

[U-Boot] [PATCH 1/7] Corrected LED name match finding avoiding extraneous Usage printouts

2011-08-15 Thread Joel A Fernandes
From: Jason Kridner Signed-off-by: Jason Kridner Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- common/cmd_led.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/common/cmd_led.c b/common/cmd_led.c index c53195f..8b46848 100644 --- a/common/cmd_led.c

[U-Boot] [PATCH 3/3] BeagleBoard: Configure DVI/S-video

2011-08-15 Thread Joel A Fernandes
://www.mail-archive.com/u-boot@lists.denx.de/msg51446.html Signed-off-by: Jason Kridner Signed-off-by: Joel A Fernandes --- board/ti/beagle/beagle.c | 24 + board/ti/beagle/beagle.h | 86 ++ 2 files changed, 110 insertions(+), 0 deletions

[U-Boot] [PATCH 2/3] BeagleBoard: Added userbutton command

2011-08-15 Thread Joel A Fernandes
.txt file * Added an example, showing how a different environment file can be loaded with the user button pressed Signed-off-by: Jason Kridner Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes Cc: Greg Turner --- board/ti/beagle/beagle.c | 56

[U-Boot] [PATCH 1/3] BeagleBoard: turn off clocks in ehci_stop

2011-08-15 Thread Joel A Fernandes
From: Koen Kooi This fixes display problems in linux Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- board/ti/beagle/beagle.c |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index 7768901..a958545

Re: [U-Boot] ehci-hcd: Allow cleanups to happen on an EHCI timeout.

2011-08-12 Thread Joel A Fernandes
your feedback for the patch titled: ehci-hcd: Allow cleanups to happen on an EHCI timeout. [1] > On Sat, Jun 25, 2011 at 12:28 PM, Joel A Fernandes > wrote: >> With this, the EHCI seems to "recover" from a timeout. This is particularly >> observable if you were to ping the w

Re: [U-Boot] ehci-hcd: Allow cleanups to happen on an EHCI timeout.

2011-08-12 Thread Joel A Fernandes
itled: ehci-hcd: Allow cleanups to happen on an EHCI timeout. [1] > On Sat, Jun 25, 2011 at 12:28 PM, Joel A Fernandes > wrote: >> With this, the EHCI seems to "recover" from a timeout. This is particularly >> observable if you were to ping the wrong IP Address and t

[U-Boot] [PATCH v4] USB: Add align(4) in __attribute__ ((packed)) for struct ehci_hccr and ehci_hcor

2011-08-11 Thread Joel A Fernandes
From: Jason Kridner Switched to align(4) to prevent byte access to soc registers in some gcc versions. Credits have to go to Laine Walker-Avina for finding the problem. Signed-off-by: Jason Kridner Signed-off-by: Joel A Fernandes Cc: Koen Kooi Cc: Alexander Holler Cc: Sandeep Paulraj

[U-Boot] [PATCH v2] OMAP: Remove omapfb.debug=y from Beagle and Overo env settings

2011-08-11 Thread Joel A Fernandes
From: Steve Sakoman The kernel DSS2 code is mature now, and keeping this setting hurts performance Signed-off-by: Steve Sakoman Signed-off-by: Joel A Fernandes --- Changes since v1: Added myself to SOB include/configs/omap3_beagle.h |2 -- include/configs/omap3_overo.h |2 -- 2

Re: [U-Boot] [PATCH] OMAP: Remove omapfb.debug=y from Beagle and Overo env settings

2011-08-11 Thread Joel A Fernandes
On Thu, Aug 11, 2011 at 1:24 PM, Jason Kridner wrote: > On Thu, Aug 11, 2011 at 1:34 AM, Joel A Fernandes > wrote: >> From: Steve Sakoman >> >> >> The kernel DSS2 code is mature now, and keeping this setting hurts >> performance >> >> Signed-of

[U-Boot] [PATCH] beagleboard: add support for xM revision C

2011-08-10 Thread Joel A Fernandes
From: Koen Kooi Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- board/ti/beagle/beagle.c | 10 ++ board/ti/beagle/beagle.h |1 + 2 files changed, 11 insertions(+), 0 deletions(-) diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index 15d061a

[U-Boot] [PATCH] beagle: pass expansionboard name in bootargs

2011-08-10 Thread Joel A Fernandes
From: Koen Kooi Signed-off-by: Koen Kooi Signed-off-by: Joel A Fernandes --- include/configs/omap3_beagle.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 42575f1..c41d48e 100644 --- a/include

[U-Boot] [PATCH] OMAP: Remove omapfb.debug=y from Beagle and Overo env settings

2011-08-10 Thread Joel A Fernandes
From: Steve Sakoman The kernel DSS2 code is mature now, and keeping this setting hurts performance Signed-off-by: Steve Sakoman --- include/configs/omap3_beagle.h |2 -- include/configs/omap3_overo.h |2 -- 2 files changed, 0 insertions(+), 4 deletions(-) diff --git a/include/config

[U-Boot] [PATCH v2] OMAP3 Beagle Pin Mux initialization glitch fix

2011-08-10 Thread Joel A Fernandes
: Bob Feretich Signed-off-by: Joel A Fernandes --- Resending patch. git-send-email inserted another "From", sorry about that. board/ti/beagle/beagle.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beag

[U-Boot] [PATCH] OMAP3 Beagle Pin Mux initialization glitch fix

2011-08-10 Thread Joel A Fernandes
.html Signed-off-by: Bob Feretich Signed-off-by: Joel A Fernandes --- board/ti/beagle/beagle.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index ab50514..15d061a 100644 --- a/board/ti/beagle/beagle.c +++ b

[U-Boot] [PATCH] ehci-hcd: Allow cleanups to happen on an EHCI timeout.

2011-06-25 Thread Joel A Fernandes
rk (lot of traffic), even if the traffic is not for the board, the timeouts don't occur. Signed-off-by: Joel A Fernandes --- Robert, Could you see if this patch solves the issue you're seeing without increasing the timeout? Simon, Could this be a fix for a similar issue you were seeing with