Re: [U-Boot] [PATCH 2/4] am335x_evm: scan more partitions and use uname_r

2018-03-10 Thread Jason Kridner
On Wed, Mar 7, 2018 at 9:27 AM Tom Rini wrote: > On Wed, Mar 07, 2018 at 05:40:42AM -0500, Jason Kridner wrote: > > > This enables mainline u-boot to boot the BeagleBoard.org Debian > > distribution builds without extensive environment modifications. > > > > Some b

[U-Boot] [PATCH 4/4] am335x: am335x_evm_usbspl_defconfig: NETCONSOLE

2018-03-07 Thread Jason Kridner
Enable NETCONSOLE by default. Still requires changes to the boot environment to enable on the platform. Signed-of-by: Jason Kridner Cc: Tom Rini --- configs/am335x_evm_usbspl_defconfig | 7 +++ 1 file changed, 7 insertions(+) diff --git a/configs/am335x_evm_usbspl_defconfig b/configs

[U-Boot] [PATCH 2/4] am335x_evm: scan more partitions and use uname_r

2018-03-07 Thread Jason Kridner
use uname_r to define the kernel being used for the boot to support multiple kernels stored within the boot file system without using symlinks. See http://elinux.org/Beagleboard:U-boot_partitioning_layout_2.0 for more details on the BeagleBoard.org Debian image layout. Signed-off-by: Jason

[U-Boot] [PATCH 3/4] Handle NETCONSOLE and SPL enabled

2018-03-07 Thread Jason Kridner
From: Jason Kridner NETCONSOLE isn't compiled in with SPL, so the include file needs to recognize that. Signed-off-by: Jason Kridner Cc: Joe Hershberger --- include/net.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/net.h b/include/net.h index 455b4

[U-Boot] [PATCH 1/4] Add support for BeagleBoard.org PocketBeagle

2018-03-07 Thread Jason Kridner
791/t/298976 for some related discussion. Signed-off-by: Jason Kridner Cc: Tom Rini --- board/ti/am335x/board.c | 10 ++ board/ti/am335x/board.h | 7 ++- board/ti/am335x/mux.c| 3 +++ include/configs/am335x_evm.h | 2 ++ 4 files changed, 17 insertions(+), 5 dele

[U-Boot] [PATCH 0/4] Add support for BeagleBoard.org PocketBeagle

2018-03-07 Thread Jason Kridner
This series sets up the am335x_evm_usbspl_defconfig to boot the TI AM335x based BeagleBoard.org PocketBeagle using the BeagleBoard.org provided Debian images and enables NETCONSOLE over USB when the environment is updated as needed. Jason Kridner (4): Add support for BeagleBoard.org

[U-Boot] am335x_evm_usbspl_defconfig testint

2017-06-12 Thread Jason Kridner
Stefan, I see you submitted this defconfig: https://lists.denx.de/pipermail/u-boot/2016-November/272425.html I have a Google Summer of Code student intern attempting to use it and he's seeing it hang without entering UMS mode. Details are below. Can you give any advice on how you tested this? I

[U-Boot] Dumb question: is UMS/MASS_STORAGE_GADGET in SPL possible?

2017-02-03 Thread Jason Kridner
I'm trying to make a small image enabling u-boot UMS mode on BeagleBone Black against the on-board eMMC. Is it possible to enable UMS simply within SPL? It seems like some others have done it in the past ( http://lists.denx.de/pipermail/u-boot/2015-March/207600.html), but I don't see an obvious wa

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

2013-02-22 Thread Jason Kridner
On Thu, Feb 21, 2013 at 9:22 PM, Jason Gunthorpe wrote: > On Thu, Feb 21, 2013 at 06:19:05PM -0600, Rob Herring wrote: > >> The desired FPGA use case is DT updates after booting the kernel. This >> has nothing to do with FIT images. And if the FPGA tools generate the >> DTB, then it is certainly n

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

2012-09-26 Thread Jason Kridner
On Tue, Sep 25, 2012 at 12:49 PM, Joel A Fernandes wrote: > 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 Acked-by

Re: [U-Boot] [RFC v0 01/11] omap3+: Introduce

2012-03-22 Thread Jason Kridner
I'm reading/replying to these one-by-one for sanity/clarity with regards to BeagleBoard... -Original Message- From: Tom Rini Date: Thu, 22 Mar 2012 12:09:07 -0700 To: Subject: [U-Boot] [RFC v0 01/11] omap3+: Introduce >This is a common file for OMAP3 (and OMAP3-alike) platforms to have

Re: [U-Boot] [RFC] Add 'led' command

2011-12-15 Thread Jason Kridner
; >>> Hi, >>> >>> On Tue, Dec 13, 2011 at 3:55 PM, Ulf Samuelsson >>>  wrote: >>>> >>>> On 2010-11-05 13:21, Wolfgang Denk wrote: >>>>> >>>>> Dear Jason Kridner, >>>>> >>>>> In message

Re: [U-Boot] [PATCH] OMAP3: beagle: Fix build warning in beagle.c

2011-09-22 Thread Jason Kridner
On Thu, Sep 22, 2011 at 7:53 AM, Dirk Behme wrote: > From: Dirk Behme > > Fix build warning > > beagle.c:532: warning: initialization from incompatible pointer type > > Signed-off-by: Dirk Behme > CC: Jason Kridner Acked-by: Jason Kridner > CC: Koen Kooi > CC

Re: [U-Boot] [PATCH v2] OMAP3: Overo: Update GPMC timing for ethernet chip.

2011-09-13 Thread Jason Kridner
On Tue, Sep 13, 2011 at 9:54 AM, Philip Balister wrote: > On 09/11/2011 12:38 PM, Philip Balister wrote: >> I see I should have copied a maintainer on this patch. Which tree will >> this sort of path go upstream via? It seems like my choices are ARM of >> OMAP3. >> >> I've got a number of other pa

[U-Boot] [PATCH] led: remove camelcase in LED functions from assembly

2011-09-11 Thread Jason Kridner
This was done with the following command-line: for file in `find . | grep '\.[chS]$'`; do perl -i -pe 's/(green|yellow|red|blue)_LED_(on|off)/$1_led_$2/g' $file; done Signed-off-by: Jason Kridner --- arch/arm/cpu/arm1176/start.S|2 +- arch/arm

Re: [U-Boot] Please pull u-boot-ti/master -- breaks a lot of builds

2011-09-11 Thread Jason Kridner
On Sun, Sep 11, 2011 at 5:50 PM, Albert ARIBAUD wrote: > Le 08/09/2011 17:16, s-paul...@ti.com a écrit : > >> Jason Kridner (1): >>       led: remove camel casing of led identifiers globally > > I just re-ran build tests, and this patch breaks a lot of boards because it

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

2011-09-11 Thread Jason Kridner
you should remove a feature in one patch then add a replacement with another, rather than doing both in one patch. In general, I would add the replacement functionality before removing the old command. More comments below... > > Signed-off-by: Joel A Fernandes > Signed-off-by: Jason K

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

2011-09-09 Thread Jason Kridner
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: >> >>> Hi Joel, >>> >>> Le 08/09/2011 16:56, Joel A Fernandes a écrit : >>> > Also, I agree with Albert: there sh

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

2011-09-06 Thread Jason Kridner
#x27;i2c_no_probes[0]') > > Signed-off-by: Sanjeev Premi > Cc: Jason Kridner Acked-by: Jason Kridner I confirmed that this fixes the above warning and builds and operates properly. As far as other platforms needing this type of patch, it seems there is a challenge in speaking for all

Re: [U-Boot] [PATCH] OMAP3 Beagle: Minor config cleanup

2011-09-06 Thread Jason Kridner
quot; \ >        "usbtty=cdc_acm\0" \ > -       "usbethaddr=de:ad:be:ef\0" \ >        "bootfile=uImage.beagle\0" \ >        "console=ttyS2,115200n8\0" \ >        "mpurate=auto\0" \ > -- > 1.6.0.4 Acked-by: Jason Kridner So

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

2011-08-27 Thread Jason Kridner
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.  I don't remember the polarity, but I do remember >>> that it is >>> xM-A and xM-B that are the oddballs.  I believe this is the correct change: >> >> Hi

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

2011-08-24 Thread Jason Kridner
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 >> Cc: "Eric Bأ�nard" >> Cc: "Christian Spielberger" >> --- >> Pushing this patch myself as no one else d

Re: [U-Boot] [STATUS] u-boot-arm/master branch complete wrt merge window?

2011-08-15 Thread Jason Kridner
On Mon, Aug 15, 2011 at 3:30 AM, V, Aneesh wrote: > Hi Sandeep, I don't know about everyone, but I like being put in the To: list when being called out to respond (or Cc: list when expected to notice), so I've added him. > > On Sat, Aug 13, 2011 at 3:34 PM, Albert ARIBAUD > wrote: >> Le 12/08/2

Re: [U-Boot] [PATCH 2/2] beagleboard: enable HUB power on XM boards

2011-08-12 Thread Jason Kridner
On Tue, Jun 14, 2011 at 10:33 AM, Eric Bénard wrote: > Hi Christian, > > On 14/06/2011 16:27, Christian Spielberger wrote: >> we have both, a beagle xM-B and a beagle xM-C. The following works on >> both boards and is different from your patch. It is not possible to >> differentiate between Rev xM

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

2011-08-12 Thread Jason Kridner
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. Thanks for the patch. Sandeep, can you apply this

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

2011-08-11 Thread Jason Kridner
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-off-by: Steve Sakoman Acked-by: Jason Kridner + Sandeep and Khasim Joel, shouldn't we hav

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

2011-08-11 Thread Jason Kridner
On Thu, Aug 11, 2011 at 1:50 AM, Joel A Fernandes wrote: > From: Koen Kooi > > > Signed-off-by: Koen Kooi > Signed-off-by: Joel A Fernandes Acked-by: Jason Kridner + Sandeep and Khasim > --- >  board/ti/beagle/beagle.c |   10 ++ >  board/ti/beagle/beag

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

2011-08-11 Thread Jason Kridner
ogic outside the chip. > > Previous discussions: > http://lists.denx.de/pipermail/u-boot/2011-March/088115.html > > Signed-off-by: Bob Feretich > Signed-off-by: Joel A Fernandes Acked-by: Jason Kridner + Sandeep and Khasim > --- >  board/ti/beagle/beagle.c |   12 ++-- >

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

2011-08-11 Thread Jason Kridner
On Thu, Aug 11, 2011 at 1:47 AM, Joel A Fernandes wrote: > From: Koen Kooi > > > Signed-off-by: Koen Kooi > Signed-off-by: Joel A Fernandes Acked-by: Jason Kridner I've put Sandeep (TI maintainer) and Khasim (BeagleBoard u-boot owner) in copy. > --- >  include/con

Re: [U-Boot] USB works (or not) depending on SYS_BOOT (with TPS65920)

2011-08-09 Thread Jason Kridner
On Tue, Aug 9, 2011 at 2:25 PM, Jason Kridner wrote: > On Tue, Aug 9, 2011 at 4:21 AM, Orjan Friberg wrote: >> On 2011-07-07 14:27, Orjan Friberg wrote: >>> On 2011-07-07 11:37, Orjan Friberg wrote: >>>> It seems the boot rom must be doing some initialization of th

Re: [U-Boot] USB works (or not) depending on SYS_BOOT (with TPS65920)

2011-08-09 Thread Jason Kridner
On Tue, Aug 9, 2011 at 4:21 AM, Orjan Friberg wrote: > On 2011-07-07 14:27, Orjan Friberg wrote: >> On 2011-07-07 11:37, Orjan Friberg wrote: >>> It seems the boot rom must be doing some initialization of the USB phy >>> (this is with a TPS65920). It does. The BeagleBoard-xM uses a TPS65950, but

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

2011-08-04 Thread Jason Kridner
On Thu, Aug 4, 2011 at 4:54 PM, Wolfgang Denk wrote: > Dear Jason Kridner, > > In message <1303343572-19972-25-git-send-email-jkrid...@beagleboard.org> you > wrote: >> From: Syed Mohammed Khasim >> >> Supports dynamic panel configuration >> Supports dyn

Re: [U-Boot] Beagleboard patches, going upstream?

2011-05-20 Thread Jason Kridner
On Thu, May 19, 2011 at 6:49 PM, Darren Hart wrote: > I'm looking to include the following patches from TI's > meta-texasinstruments OE layer recipe for u-boot. They have been sent to > the list, two of them Acked, but have otherwise received no response and > but I don't see them in the git repo

Re: [U-Boot] Does usbtty work on omap3?

2011-05-10 Thread Jason Kridner
On Tue, May 10, 2011 at 7:23 PM, Charles Manning wrote: > Hi All > > I have usbtty partially working on omap3 (overo board). Unfortunately the > byte stream gets corrupted. It looks like some sort of buffer / fifo > corruption or similar with old bytes being sent and some bytes being > dropped. >

Re: [U-Boot] [beagleboard] Re: [PATCH] Add 'led' command

2011-04-21 Thread Jason Kridner
On Thu, Apr 21, 2011 at 9:17 AM, Jason Kridner wrote: > Adding u-boot list seem to have missed it in my reply. > > > On Thu, Apr 21, 2011 at 9:16 AM, Jason Kridner > wrote: > >> On Wed, Apr 20, 2011 at 6:04 PM, Wolfgang Denk wrote: >> >>> Dear Jason

Re: [U-Boot] [beagleboard] Re: [PATCH] Add 'led' command

2011-04-21 Thread Jason Kridner
Adding u-boot list seem to have missed it in my reply. On Thu, Apr 21, 2011 at 9:16 AM, Jason Kridner wrote: > On Wed, Apr 20, 2011 at 6:04 PM, Wolfgang Denk wrote: > >> Dear Jason Kridner, >> >> In message <1299013329-29931-1-git-send-email-jkrid...@beagleboard.o

[U-Boot] [PATCH] BeagleBoard: config: enable DSS

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- 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 a946b0e..6ece0fa 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs

[U-Boot] [PATCH] BeagleBoard: config: load kernel via MMC ext2

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- 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 49bfaa4..e2f7dd0 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs

[U-Boot] [PATCH] BeagleBoard: config: add ramboot

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h | 19 ++- 1 files changed, 18 insertions(+), 1 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 71e41f8..c29baf5 100644 --- a/include/configs/omap3_beagle.h +++ b

[U-Boot] [PATCH] BeagleBoard: config: Switch default console from ttyS2 to ttyO2

2011-04-20 Thread Jason Kridner
From: Alexander Holler Linux kernels >= 2.6.36 are using ttyOn instead ttySn for the serials on OMAPs. Signed-off-by: Alexander Holler Signed-off-by: Jason Kridner --- This patch isn't updated, it is just represented for inclusion on top of u-boot-ti. --- include/configs/omap3_

[U-Boot] [PATCH] led: fixup help/usage

2011-04-20 Thread Jason Kridner
Placed a description inside the right field without usage information and eliminated redundant usage information. Signed-off-by: Jason Kridner --- common/cmd_led.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/cmd_led.c b/common/cmd_led.c index ab85dc6

[U-Boot] [PATCH] BeagleBoard updates rebased on u-boot-ti and debugged

2011-04-20 Thread Jason Kridner
much in as possible. The USB patches placed in u-boot-ti aren't working for me, but this brings in some known required patches. Alexander Holler (1): BeagleBoard: config: Switch default console from ttyS2 to ttyO2 Bob Feretich (1): BeagleBoard: Pin mux initialization glitch fix Ja

[U-Boot] [PATCH] BeagleBoard: config: don't suck in blank line

2011-04-20 Thread Jason Kridner
To prevent a blank line from being critical. Signed-off-by: Jason Kridner --- 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 9ee1664..ade6225 100644 --- a/include

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

2011-04-20 Thread 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 --- common/Makefile |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common/Makefile b/common/Makefile index 4555716..1aaa5fa 100644 --- a/c

[U-Boot] [PATCH] led: remove trailing whitespace

2011-04-20 Thread Jason Kridner
Required to meet style requirements. Signed-off-by: Jason Kridner --- common/cmd_led.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/cmd_led.c b/common/cmd_led.c index ad0fd0f..90cf043 100644 --- a/common/cmd_led.c +++ b/common/cmd_led.c @@ -96,7 +96,7 @@ int

[U-Boot] [PATCH] BeagleBoard: config: change default resolution to VGA

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- 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 06c1ce3..9ee1664 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs

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

2011-04-20 Thread Jason Kridner
Based on patches from Syed Mohammed Khasim (kha...@ti.com). Configures the output of the BeagleBoard DVI to be orange. Configures the output of the BeagleBoard S-Video to be a colorbar. --- Updates for this version * Rebased on u-boot-ti. Signed-off-by: Jason Kridner --- board/ti/beagle

[U-Boot] [PATCH] BeagleBoard: Pin mux initialization glitch fix

2011-04-20 Thread Jason Kridner
From: Bob Feretich The below patch reverses the order of two segments in the board file. Output pins need to have their values initialized, before they are exposed to the logic outside the chip. Signed-off-by: Bob Feretich Cc: Wolfgang Denk Signed-off-by: Jason Kridner --- This patch isn&#

[U-Boot] [PATCH v2] BeagleBoard: Added userbutton command

2011-04-20 Thread Jason Kridner
pressed. * Used latest revision getting function. * Used latest macros for board revision. -- v2 update: * Added xM-C revision definition (optional, since it was default) Signed-off-by: Jason Kridner --- board/ti/beagle/beagle.c | 56 ++ 1 files changed

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

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index ade6225..17d4356 100644 --- a/include/configs/omap3_beagle.h +++ b/include

[U-Boot] [PATCH] BeagleBoard: fixed typo in typecast

2011-04-20 Thread Jason Kridner
Without this patch, you should get a warning. Signed-off-by: Jason Kridner --- board/ti/beagle/beagle.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index 52a7f93..c0cab9e 100644 --- a/board/ti/beagle/beagle.c

[U-Boot] [PATCH] led: loop through all leds

2011-04-20 Thread Jason Kridner
'led all on|off' requires this patch. Signed-off-by: Jason Kridner --- common/cmd_led.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/common/cmd_led.c b/common/cmd_led.c index 90cf043..ab85dc6 100644 --- a/common/cmd_led.c +++ b/common/cmd_led.c @@ -10

[U-Boot] [PATCH] TWL4030/BeagleBoard: Added hub power enable

2011-04-20 Thread Jason Kridner
This is an attempt to get the EHCI port working on the BeagleBoard-xM, but it is not working for me. It hangs when I do 'usb start'. Signed-off-by: Jason Kridner --- board/ti/beagle/beagle.c | 15 +++ drivers/misc/twl4030_led.c |6 +- include/twl4030.h

[U-Boot] [PATCH v3] USB: Remove __attribute__ ((packed)) for struct ehci_hccr and ehci_hcor

2011-04-20 Thread Jason Kridner
Remove __attribute__ ((packed)) to prevent byte access to soc registers in some gcc versions. Having patches to enable ehci for the BeagleBoard lying around for several month, this one was the show-stopper. Credits have to go to Laine Walker-Avina for finding the problem. Signed-off-by: Jason

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

2011-04-20 Thread Jason Kridner
/msg27150.html --- v2 updates: * Enable panel output for BeagleBoard * BeagleBoard: Update DVI-D orange screen frequencies for xM v3 updates: * Remove non-platform (OMAP3) updates Signed-off-by: Syed Mohammed Khasim Signed-off-by: Jason Kridner --- arch/arm/include/asm/arch-omap3/dss.h | 173

[U-Boot] [PATCH] video: DSS makefile update

2011-04-20 Thread Jason Kridner
Adding the OMAP3 DSS video driver to the Makefile. The patch applied to u-boot-ti didn't include this for some reason. Signed-off-by: Jason Kridner --- drivers/video/Makefile |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/video/Makefile b/drivers/

[U-Boot] [PATCH] BeagleBoard: config: use the USERBUTTON command

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h |7 ++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index c29baf5..a946b0e 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs

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

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index e2f7dd0..71e41f8 100644 --- a/include/configs/omap3_beagle.h +++ b/include

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

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 17d4356..49bfaa4 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs

[U-Boot] [PATCH] BeagleBoard: config: reduce BOOTDELAY to 3

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- 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 8af2f7a..06c1ce3 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs

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

2011-04-20 Thread Jason Kridner
From: Steve Sakoman The kernel DSS2 code is mature now, and keeping this setting hurts performance Signed-off-by: Steve Sakoman (cherry picked from commit 0588da9057fddb5f6a6a04aedd7e0a79eb39e9e5) Signed-off-by: Jason Kridner --- This patch is only rebased and is just being represented for

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

2011-04-20 Thread 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 --- common/cmd_led.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/cmd_led.c b/common

[U-Boot] [PATCH] Corrected LED name match finding

2011-04-20 Thread Jason Kridner
This avoids some extraneous Usage printouts. Signed-off-by: Jason Kridner --- 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 f1e8a62..988157b 100644 --- a/common/cmd_led.c +++ b/common/cmd_led.c @@ -83,7

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

2011-04-20 Thread Jason Kridner
Fixed USR0/USR1 to be LED 0/1 respectively Signed-off-by: Jason Kridner --- 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/led.c index df26552..fe80e19 100644 --- a/board/ti/beagle/led.c +++ b/board/ti

[U-Boot] [PATCH] BeagleBoard: add xM rev C to ID table

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- 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 4e194a2..52a7f93 100644 --- a/board/ti/beagle/beagle.c +++ b

[U-Boot] [PATCH] BeagleBoard: add xM rev C to ID table

2011-03-30 Thread Jason Kridner
A simple addition to the revision IDs. This patch depends upon http://patchwork.ozlabs.org/patch/85303/. Signed-off-by: Jason Kridner --- board/ti/beagle/beagle.c | 12 board/ti/beagle/beagle.h |1 + 2 files changed, 13 insertions(+), 0 deletions(-) diff --git a/board/ti

[U-Boot] [PATCH v2] OMAP3: BeagleBoard: add more expansionboard IDs

2011-03-03 Thread Jason Kridner
-off-by: Jason Kridner Cc: Koen Kooi --- board/ti/beagle/beagle.c | 30 +- board/ti/beagle/beagle.h | 12 2 files changed, 41 insertions(+), 1 deletions(-) diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index 4049606..e05232f 100644

[U-Boot] [PATCH v2] OMAP3: BeagleBoard: add xM rev B to ID table

2011-03-03 Thread Jason Kridner
From: Koen Kooi Patch was updated by Jason Kridner : * Use tabs to match style of other board revisions * Only include board revisions that exist * Default to the same configuration as the latest revision, but without setting 'beaglerev' --- v2 Changes * Updated with feedback

[U-Boot] [PATCH v3] OMAP3: BeagleBoard: Enable pullups on i2c2.

2011-03-03 Thread Jason Kridner
* Included v3 in the subject line * Fixed structure name typo that got messed up in generating patch * Removed some extraneous blank lines Signed-off-by: Jason Kridner --- arch/arm/include/asm/arch-omap3/omap3.h | 14 ++ board/ti/beagle/beagle.c|4 2 files changed

[U-Boot] [PATCH] OMAP3: BeagleBoard: Enable pullups on i2c2.

2011-03-03 Thread Jason Kridner
From: Steve Kipisz This allows the reading of EEPROMS on the expansion bus without adding external pull-ups. --- v2 updates * Updated per http://patchwork.ozlabs.org/patch/71997/ * Added description * Used OMAP34XX_CTRL_BASE * Used structure and writel to perform write Signed-off-by: Jason

[U-Boot] [PATCH v4] omap3_beagle: enable the use of a plain text file named uEnv.txt instead of boot.scr

2011-03-03 Thread Jason Kridner
fault boot sequence. --- Changes for v2: - Eliminated else redundant clause that would be ignored if boot succeeds. Changes for v3: - Removed boot.scr Changes for v4: - Removed comment about boot.scr being supported. Signed-off-by: Jason Kridner Cc: Sandeep Paulraj --- include/co

Re: [U-Boot] [beagleboard] Re: [PATCH v3] omap3_beagle: enable the use of a plain text file named uEnv.txt instead of boot.scr

2011-03-03 Thread Jason Kridner
On Wed, Mar 2, 2011 at 6:48 PM, Robert Nelson wrote: > On Wed, Mar 2, 2011 at 5:41 PM, Alexander Holler wrote: >> Hello Jason, >> >> Am 02.03.2011 21:26, schrieb Jason Kridner: >>> >>> For backwards compatibility the use of boot.scr is still supported. &g

[U-Boot] [PATCH v3] omap3_beagle: enable the use of a plain text file named uEnv.txt instead of boot.scr

2011-03-02 Thread Jason Kridner
fault boot sequence. For backwards compatibility the use of boot.scr is still supported. --- Changes for v2: - Eliminated else redundant clause that would be ignored if boot succeeds. Changes for v3: - Removed boot.scr per discussion with Alexander. Signed-off-by: Jason Kridner --- in

Re: [U-Boot] [PATCH v2] omap3_beagle: enable the use of a plain text file named uEnv.txt instead of boot.scr

2011-03-02 Thread Jason Kridner
On Tue, Mar 1, 2011 at 9:54 PM, Alexander Holler wrote: > Hello Jason, > > On 02.03.2011 00:37, Jason Kridner wrote: > >> From: Alexander Holler >> >> Using the new env import command it is possible to use plain text files >> instead >> of script-images.

[U-Boot] [PATCH v2] omap3_beagle: enable the use of a plain text file named uEnv.txt instead of boot.scr

2011-03-01 Thread Jason Kridner
fault boot sequence. For backwards compatibility the use of boot.scr is still supported. --- Changes for v2: - Eliminated else redundant clause that would be ignored if boot succeeds. Signed-off-by: Jason Kridner Cc: Alexander Holler --- include/configs/omap3_beagle.h |

Re: [U-Boot] [PATCH] omap3_beagle: Switch default console from ttyS2 to ttyO2

2011-03-01 Thread Jason Kridner
On Fri, Feb 18, 2011 at 3:37 AM, Alexander Holler wrote: > Linux kernels >= 2.6.36 are using ttyOn instead ttySn for the > serials on OMAPs. > > Signed-off-by: Alexander Holler Ack. > --- >  include/configs/omap3_beagle.h |    2 +- >  1 files changed, 1 insertions(+), 1 deletions(-) > > diff --

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

2011-03-01 Thread Jason Kridner
On Thu, Feb 24, 2011 at 6:16 PM, Bob Feretich wrote: > The below patch reverses the order of two segments in the board file. > Output pins need to have their values initialized, before they are > exposed to the logic outside the chip. > > Signed-off-by: Bob Feretich > Cc: Wolfgang Denk Looks go

[U-Boot] [PATCH] BeagleBoard: Added LED driver

2011-03-01 Thread Jason Kridner
Added LED driver using status_led. USR0 is set to monitor the boot status. USR1 is set to be the green LED. Included adding configuration and command to the default configuration. Signed-off-by: Jason Kridner --- board/ti/beagle/Makefile |4 +- board/ti/beagle/beagle.c |7

[U-Boot] [PATCH] Add 'led' command

2011-03-01 Thread Jason Kridner
#ifdefs and redundant code * Converted redundant code into loops test against a structure * Made use of cmd_usage() * Introduced a str_onoff() function, but haven't yet put it in common * Eliminated trailing newline Signed-off-by: Jason Kridner --- common/Makefile |1 + common/cmd_

Re: [U-Boot] [PATCH] omap3_beagle: enable the use of a plain text file named uEnv.txt instead of boot.scr

2011-02-04 Thread Jason Kridner
On Mon, Jan 24, 2011 at 6:08 PM, Alexander Holler wrote: > Using the new env import command it is possible to use plain text files > instead > of script-images. Plain text files are much easier to handle. I agree this has been a frequent concern of BeagleBoard users. I would like to see this pa

Re: [U-Boot] [RFC] Add 'led' command

2010-11-12 Thread Jason Kridner
n Friday, November 05, 2010 01:50:36 Jason Kridner wrote: >> +int do_led ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[] ) > > much of the style of this code is broken.  and i cant imagine this code > compiling warning free with current master. > > no spaces around the

Re: [U-Boot] [PATCH] BeagleBoard: Added LED driver

2010-11-05 Thread Jason Kridner
On Fri, Nov 5, 2010 at 8:02 AM, Premi, Sanjeev wrote: >> -Original Message- >> From: u-boot-boun...@lists.denx.de >> [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Jason Kridner >> Sent: Friday, November 05, 2010 11:23 AM >> To: u-boot@lists.denx.de

Re: [U-Boot] [RFC] Add 'led' command

2010-11-05 Thread Jason Kridner
and. >>> >>> Partially based on patch from Ulf Samuelsson: >>> http://www.mail-archive.com/u-boot@lists.denx.de/msg09593.html. >>> >>> Signed-off-by: Jason Kridner >>> --- >>>  common/Makefile  |    1 + >>>  common/cmd_

[U-Boot] [PATCH] ARMV7: OMAP3: BeagleBoard: Enable pullups on i2c2.

2010-11-04 Thread Jason Kridner
From: Steve Kipisz Signed-off-by: Jason Kridner --- arch/arm/include/asm/arch-omap3/omap3.h |9 + board/ti/beagle/beagle.c|3 +++ 2 files changed, 12 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/arch-omap3/omap3.h b/arch/arm/include/asm

[U-Boot] [PATCH] BeagleBoard: Added LED driver

2010-11-04 Thread Jason Kridner
Added LED driver using status_led. USR0 is set to monitor the boot status. USR1 is set to be the green LED. (cherry picked from commit 048b526fd7cc0c642f27c674b3e235321c880b66) Signed-off-by: Jason Kridner --- board/ti/beagle/Makefile |4 ++- board/ti/beagle/beagle.c |7 board/ti

[U-Boot] [RFC] Add 'led' command

2010-11-04 Thread Jason Kridner
] Adds configuration item CONFIG_CMD_LED enabling the command. Partially based on patch from Ulf Samuelsson: http://www.mail-archive.com/u-boot@lists.denx.de/msg09593.html. Signed-off-by: Jason Kridner --- common/Makefile |1 + common/cmd_led.c | 207

[U-Boot] [PATCH] ARMV7: OMAP3: BeagleBoard: add xM rev B to ID table

2010-11-04 Thread Jason Kridner
From: Koen Kooi Patch was updated by Jason Kridner : * Use tabs to match style of other board revisions * Only include board revisions that exist * Default to the same configuration as the latest revision, but without setting 'beaglerev' Signed-off-by: Jason Kridner --- board

[U-Boot] [PATCH] ARMV7: OMAP3: BeagleBoard: add more expansionboard IDs

2010-11-04 Thread Jason Kridner
From: Koen Kooi Signed-off-by: Koen Kooi Signed-off-by: Jason Kridner --- board/ti/beagle/beagle.c | 16 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index d9b6f01..520e57d 100644 --- a/board/ti/beagle

Re: [U-Boot] [PATCH] OMAP3 pandora: update pin mux for rev3 boards

2009-06-25 Thread Jason Kridner
On Thu, Jun 25, 2009 at 4:59 PM, Jean-Christophe PLAGNIOL-VILLARD < plagn...@jcrosoft.com> wrote: > On 14:57 Mon 08 Jun , Grazvydas Ignotas wrote: > > The update consists of following changes: > > - remove configuration of not connected pins, effectively > > leaving them in safe mode. > > -

Re: [U-Boot] [PATCH 0/7] OMAP3: Add some additional improvements and fixes

2009-02-04 Thread Jason Kridner
On Feb 1, 2009, at 11:53 PM, Dirk Behme wrote: > OMAP3 support recently merged is version from mid december 2008. > This patch series adds some additional clean up, fixes and > improvements done since then. It brings U-Boot mainline in sync > with U-Boot tree of OMAP3 developers ("omap3-dev"). >

[U-Boot] [PATCH v2 5/5] OMAP3: Add Zoom1 board support

2009-01-25 Thread Jason Kridner
From: Dirk Behme Support for Zoom MDK with OMAP3430. Details of Zoom MDK available here: http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit Signed-off-by: Nishanth Menon Signed-off-by: Jason Kridner --- MAINTAINERS |4 + MAKEALL

[U-Boot] [PATCH v2 4/5] OMAP3: Add Pandora support

2009-01-25 Thread Jason Kridner
From: Dirk Behme Add Pandora support. Signed-off-by: Grazvydas Ignotas Signed-off-by: Dirk Behme Signed-off-by: Jason Kridner --- MAINTAINERS |4 + MAKEALL |1 + Makefile|3 + board/omap3/common/Makefile

[U-Boot] [PATCH v2 3/5] OMAP3: Add EVM board

2009-01-25 Thread Jason Kridner
From: Dirk Behme Add EVM board support. Signed-off-by: Manikandan Pillai Signed-off-by: Dirk Behme Signed-off-by: Jason Kridner --- MAINTAINERS |4 + MAKEALL |1 + Makefile|3 + board/omap3/evm/Makefile| 48

[U-Boot] [PATCH v2 2/5] OMAP3: Add Overo board

2009-01-25 Thread Jason Kridner
From: Dirk Behme Add Overo board support. Signed-off-by: Steve Sakoman Signed-off-by: Dirk Behme Signed-off-by: Jason Kridner --- MAINTAINERS |4 + MAKEALL |1 + Makefile |3 + board/omap3/common/Makefile |1

[U-Boot] [PATCH v2 1/5] OMAP3: Add common power code, README, and BeagleBoard

2009-01-25 Thread Jason Kridner
Add BeagleBoard support, common power code and README. Signed-off-by: Jason Kridner Signed-off-by: Dirk Behme --- MAINTAINERS|4 + MAKEALL| 26 ++- Makefile |7 + board/omap3/beagle/Makefile| 49 + board

[U-Boot] [PATCH v2 0/5] OMAP3: Add OMAP3 board support

2009-01-25 Thread Jason Kridner
44787.html Dirk Behme (4): OMAP3: Add Overo board OMAP3: Add EVM board OMAP3: Add Pandora support OMAP3: Add Zoom1 board support Jason Kridner (1): OMAP3: Add common power code, README, and BeagleBoard MAINTAINERS | 20 ++ MAKEALL

[U-Boot] [PATCH-ARM] OMAP3: Add Beagle Board and common power code

2009-01-25 Thread Jason Kridner
Add Beagle Board support and common power code for OMAP3 boards. Restructured from patches by Dirk Behme , Steve Sakoman , and Søren Steen Christensen . Signed-off-by: Jason Kridner --- MAINTAINERS|4 + MAKEALL| 26 ++- Makefile

[U-Boot] [PATCH-OMAP3] OMAP3: Add Beagle Board and common power code

2009-01-24 Thread Jason Kridner
Add Beagle Board support and common power code for OMAP3 boards. Restructured from patches by Dirk Behme , Steve Sakoman , and Søren Steen Christensen . Signed-off-by: Jason Kridner --- MAINTAINERS |4 + MAKEALL | 26 ++- Makefile

[U-Boot] [RFC] Added simple hack to ignore the environment variables in flash.

2009-01-14 Thread Jason Kridner
The board defaults cause it to read an autoscr file from the SD card, allowing you to always boot, even if the environment variables in the flash are bad and there is no access to the serial console. Any comments on if the below can be a suitable approach? Signed-off-by: Jason Kridner -

Re: [U-Boot] [PATCH-OMAP3] OMAP3: Enable command parser and add boot scripting

2008-12-06 Thread Jason Kridner
Is it possible to rename boot.script to boot.scr or something with an 8.3 filename, in case someone formats their SD card as msdos, rather than vfat? On Dec 6, 2008, at 1:03 AM, Dirk Behme wrote: > Enable "hush" command parser and set default environment to boot > from MMC if > a bootable c

  1   2   >