Re: [U-Boot] [PATCH] OMAP3LOGIC: Update maintainer

2016-02-09 Thread Peter Barada
On 02/08/2016 10:27 PM, Adam Ford wrote: > I will take this over from Peter Barada, since I work with it daily > at Logic PD. > > Signed-off-by: Adam Ford <aford...@gmail.com> > --- > board/logicpd/omap3som/MAINTAINERS | 2 +- > 1 file changed, 1 insertion(+), 1

Re: [U-Boot] Very confusing variable=name behaviour

2015-12-12 Thread Peter Barada
t setenv behaves as expected: > > => setenv bootm_boot_mode nonsec > => echo $bootm_boot_mode > nonsec > => printenv bootm_boot_mode > bootm_boot_mode=nonsec > => > > Best regards, > >Pavel -- Peter Barada peter.bar...@logicpd.com ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] NAND flash question

2013-09-23 Thread Peter Barada
On 09/20/2013 11:27 AM, ANDY KENNEDY wrote: -Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Peter Barada Sent: Thursday, September 19, 2013 3:26 PM To: u-boot@lists.denx.de; Peter Barada Subject: Re: [U-Boot] NAND flash

Re: [U-Boot] NAND flash question

2013-09-19 Thread Peter Barada
parts) will have certain blocks that are guaranteed good (i.e. the boot blocks). Past that bad blocks could be anywhere in a particular device. -- Peter Barada peter.bar...@logicpd.com ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de

Re: [U-Boot] *** [u-boot] Error 139 when config NAND relative setting

2013-09-16 Thread Peter Barada
http://lists.denx.de/mailman/listinfo/u-boot -- Peter Barada peter.bar...@logicpd.com ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] disassembler ?

2013-05-23 Thread Peter Barada
- a much more laborious process... -- Peter Barada peter.bar...@logicpd.com ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] disassembler ?

2013-05-23 Thread Peter Barada
On 05/23/2013 03:49 PM, Albert ARIBAUD wrote: Hi Peter, On Thu, 23 May 2013 15:08:24 -0400, Peter Barada peter.bar...@logicpd.com wrote: On 05/23/2013 02:53 PM, Albert ARIBAUD wrote: Also, I *very* strongly suggest that you integrate *some* debugging interface, based on *some* industry

Re: [U-Boot] Your message to U-Boot awaits moderator approval

2013-05-06 Thread Peter Barada
When you receive an email from a mailing list that is the message you sent, Gmail recognizes the incoming message from the mailing list is identical to the copy already in your Sent Items and doesn't duplicate it in your Inbox. No idea why you didn't see an acknoledgement. -- Peter Barada

Re: [U-Boot] break command.

2013-02-15 Thread Peter Barada
- serial port for device - relay controllable A/C power plug (U.S.) - controllable gpio (for wiring to a power button, reset switch, etc) If your board/processor has it, a watchdog can be used to force a reset if it expires... -- Peter Barada peter.bar...@logicpd.com

[U-Boot] [PATCH] Pass sdrc timing values through board_sdrc_timings structure

2012-11-13 Thread Peter Barada
Instead of passing individual registers by value to board_get_mem_timings, pass a board_mem_timings structure pointer for the board files to fill in. Pass same structure pointer to write_sdrc_timings. This saves about 90 bytes of space in SPL. Signed-off-by: Peter Barada peter.bar...@logicpd.com

Re: [U-Boot] Can't read kernel if bad blocks are present in partition

2012-04-27 Thread Peter Barada
. -- Peter Barada peter.bar...@logicpd.com ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Can't read kernel if bad blocks are present in partition

2012-04-26 Thread Peter Barada
to handle bad block when reading back data.. Did I forget to initialize something ? Did you use nand write.i to write the kernel and nand read.i to read the kernel? the .i tells u-boot to skip bad blocks... -- Peter Barada peter.bar...@logicpd.com

Re: [U-Boot] [RFC] Preventing overriding of serverip when set in environment by user

2012-04-18 Thread Peter Barada
be better? Then users have the option of using dhcp as is, or for environments like mine (and apparently Chase) can just get an IP address and go from there... -- Peter Barada peter.bar...@logicpd.com ___ U-Boot mailing list U-Boot@lists.denx.de http

[U-Boot] RFC - how to support multipl DRAM chips in a single SPL build?

2012-03-07 Thread Peter Barada
(and incorporate such changes), such that it doesn't break other boards/archs, but also minimize impact on SPL/u-boot size... Any suggestions on an approach are much appreciated! -- Peter Barada peter.bar...@logicpd.com ___ U-Boot mailing list U-Boot

Re: [U-Boot] RFC - how to support multipl DRAM chips in a single SPL build?

2012-03-07 Thread Peter Barada
On 03/07/2012 02:28 PM, Tom Rini wrote: On Wed, Mar 7, 2012 at 11:05 AM, Peter Barada peter.bar...@logicpd.com wrote: I'm trying to build a single SPL/u-boot that supports multiple Logic OMAP 35x/37x boards, with multiple configurations of DRAM/NAND/NOR. This is to make our support

Re: [U-Boot] [PATCH] ARM: Add .data/.rodata/.bss section starts to gd_t

2012-03-01 Thread Peter Barada
On 03/01/2012 09:22 AM, Albert ARIBAUD wrote: Hi Peter, Le 29/02/2012 17:42, Peter Barada a écrit : On 02/28/2012 05:04 PM, Albert ARIBAUD wrote: Hi Peter, Le 27/02/2012 23:00, Peter Barada a écrit : When debugging u-boot, after relocation its tedious to calculate positions of the various

Re: [U-Boot] [PATCH] ARM: Add .data/.rodata/.bss section starts to gd_t

2012-02-29 Thread Peter Barada
On 02/28/2012 05:04 PM, Albert ARIBAUD wrote: Hi Peter, Le 27/02/2012 23:00, Peter Barada a écrit : When debugging u-boot, after relocation its tedious to calculate positions of the various sections (.data, .rodata, .bss). To make it easier, add the structure sections to gd_t that contains

[U-Boot] [PATCH] ARM: Add .data/.rodata/.bss section starts to gd_t

2012-02-27 Thread Peter Barada
address that corresponds to the values in gd_t-sections. Signed-off-by: Peter Barada peter.bar...@logicpd.com --- README |6 ++ arch/arm/cpu/arm1136/start.S | 10 ++ arch/arm/cpu/arm1136/u-boot.lds|6

[U-Boot] [PATCH] [OMAP3] Pass timings structure pointer to board_get_mem_timings()

2012-02-26 Thread Peter Barada
Instead of passing individual registers by value to board_get_mem_timings, pass a board_mem_timings structure pointer for the board files to fill in. Pass same structure pointer to write_sdrc_timings. This saves about 90 bytes of space in SPL. Signed-off-by: Peter Barada peter.bar...@logicpd.com

[U-Boot] [PATCH] ARMV7: Fix duplicate use of b parameter in ACTIM_CTRLA definition.

2012-02-07 Thread Peter Barada
ACTIM_CTRLA macro errently passes b parameter to ACTIM_CTRLA_TRAS() instead of c. To make usage more clear, replace all single-letter macro parameters with more descriptive parameter names. Signed-off-by: Peter Barada peter.bar...@logicpd.com --- arch/arm/include/asm/arch-omap3/mem.h | 40

Re: [U-Boot] [PATCH] ARMV7: Fix duplicate use of b parameter in ACTIM_CTRLA definition.

2012-02-07 Thread Peter Barada
On 02/07/2012 11:32 AM, Peter Barada wrote: ACTIM_CTRLA macro errently passes b parameter to ACTIM_CTRLA_TRAS() instead of c. To make usage more clear, replace all single-letter macro parameters with more descriptive parameter names. Arrgh, got the parameters to MCFG() backwards, I'll shoot

[U-Boot] [PATCH v2] ARMV7: Fix duplicate use of b parameter in ACTIM_CTRLA definition

2012-02-07 Thread Peter Barada
ACTIM_CTRLA macro errently passes b parameter to ACTIM_CTRLA_TRAS() instead of c. To make usage more clear, replace all single-letter macro parameters with more descriptive parameter names. Signed-off-by: Peter Barada peter.bar...@logicpd.com --- Changes for V2: Fix ordering of raswidth

[U-Boot] [PATCH 2/2] omap3logic: Add missing GPMC pinmux for LAN92xx access

2012-02-07 Thread Peter Barada
The initial checkin dropped pinmux setup for GPMC pins A6-A10, D0-D7 and NCS1/2 necessary to access LAN92xx on Logic OMAP35x/DM37x modules. Signed-off-by: Peter Barada peter.bar...@logicpd.com --- board/logicpd/omap3som/omap3logic.c | 15 +++ 1 files changed, 15 insertions(+), 0

Re: [U-Boot] [PATCH v2] ARMV7: Fix duplicate use of b parameter in ACTIM_CTRLA definition

2012-02-07 Thread Peter Barada
On 02/07/2012 12:45 PM, Peter Barada wrote: ACTIM_CTRLA macro errently passes b parameter to ACTIM_CTRLA_TRAS() instead of c. To make usage more clear, replace all single-letter macro parameters with more descriptive parameter names. Signed-off-by: Peter Barada peter.bar...@logicpd.com

[U-Boot] [PATCH v3] ARMV7: Fix duplicate use of b parameter in ACTIM_CTRLA definition

2012-02-07 Thread Peter Barada
ACTIM_CTRLA macro errently passes b parameter to ACTIM_CTRLA_TRAS() instead of c. To make usage more clear, replace all single-letter macro parameters with more descriptive parameter names. Signed-off-by: Peter Barada peter.bar...@logicpd.com --- Changes for V2: Fix ordering of raswidth

Re: [U-Boot] Porting YAFFS2 to U-boot

2012-02-02 Thread Peter Barada
I have a pile of changes to u-boot that make yaffs work w/mtdparts (I.e. ymount /partition looks through mtdparts to find start/end blocks, etc) that works in u-boot-2011.06), and want to refresh that for a current u-boot, but it's gonna take time to get it into acceptable shape for submission.

Re: [U-Boot] Question regarding NAND environment

2012-01-27 Thread Peter Barada
On 01/27/2012 04:46 PM, Scott Wood wrote: On 01/26/2012 11:34 AM, Peter Barada wrote: On 01/26/2012 12:27 PM, Scott Wood wrote: Why are two copies insufficient for that? Two copies are sufficient, if none of the blocks ever go bad. To simplify things, suppose the environment is the same size

[U-Boot] Question regarding NAND environment

2012-01-26 Thread Peter Barada
of the environment). If u-boot doesn't do this currently is there any interest in a patch for such? -- Peter Barada peter.bar...@logicpd.com ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Question regarding NAND environment

2012-01-26 Thread Peter Barada
On 01/26/2012 12:27 PM, Scott Wood wrote: On 01/26/2012 11:05 AM, Peter Barada wrote: I'm trying to have a robust environment stored in NAND, and three blocks of space available to store it in. Looking at the REDUND code, I see it only keeps two copies of the environment regardless

Re: [U-Boot] Help with Cross-Compiling U-boot for PPC

2012-01-05 Thread Peter Barada
Abatron), and you can then debug the code on the board. I'd look at the UART initialisation to make sure the baud rate is correct (i.e. do you have the proper cpu frequencies set, and the proper derived UART divisor(s) for your desired baud rate)... -- Peter Barada peter.bar...@logicpd.com

Re: [U-Boot] A Problem of u-boot on TI PandaBoard porting

2012-01-05 Thread Peter Barada
generated while building. Even if I modify this file, it will be replaced again when I rebuild. However, thanks for your reply. Then dig through the build log to find where the file is generated from and modify that file... -- Peter Barada pete.bar...@logicpd.com

Re: [U-Boot] [PATCH v4] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-19 Thread Peter Barada
On 12/19/2011 02:37 AM, Igor Grinberg wrote: Hi Peter, Thanks for fixing all the issues pointed. I have one last question (sorry for not seeing it earlier) and one neat below. On 12/18/11 19:25, Peter Barada wrote: This patch adds basic support for OMAP35x/DM37x SOM LV/Torpedo reference

[U-Boot] [PATCH v5] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-19 Thread Peter Barada
This patch adds basic support for OMAP35x/DM37x SOM LV/Torpedo reference boards. It assumes U-boot is loaded to SDRAM with the help of another small bootloader (x-load) running from SRAM. Signed-off-by: Peter Barada peter.bar...@logicpd.com Cc: Tom Rini tom.r...@gmail.com Cc: Igor Grinberg grinb

[U-Boot] [PATCH v4] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-18 Thread Peter Barada
This patch adds basic support for OMAP35x/DM37x SOM LV/Torpedo reference boards. It assumes U-boot is loaded to SDRAM with the help of another small bootloader (x-load) running from SRAM. Signed-off-by: Peter Barada peter.bar...@logicpd.com Cc: Tom Rini tom.r...@gmail.com Cc: Igor Grinberg grinb

[U-Boot] [PATCH] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-16 Thread Peter Barada
This patch adds basic support for OMAP35x/DM37x SOM LV/Torpedo reference boards. It assumes U-boot is loaded to SDRAM with the help of another small bootloader (x-load) running from SRAM. Signed-off-by: Peter Barada peter.bar...@logicpd.com Cc: Tom Rini tom.r...@gmail.com Cc: Igor Grinberg grinb

Re: [U-Boot] [PATCH] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-16 Thread Peter Barada
On 12/16/2011 03:31 PM, Peter Barada wrote: This patch adds basic support for OMAP35x/DM37x SOM LV/Torpedo reference boards. It assumes U-boot is loaded to SDRAM with the help of another small bootloader (x-load) running from SRAM. [snip] My apologies, I forgot to change the subject to [PATCH

[U-Boot] [PATCH v2] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-15 Thread Peter Barada
This patch adds basic support for OMAP35x/DM37x SOM LV/Torpedo reference boards. It assumes U-boot is loaded to SDRAM with the help of another small bootloader (x-load) running from SRAM. Signed-off-by: Peter Barada peter.bar...@logicpd.com Cc: Tom Rini tom.r...@gmail.com Cc: Igor Grinberg grinb

Re: [U-Boot] [PATCH v2] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-15 Thread Peter Barada
On 12/15/2011 01:30 PM, Tom Rini wrote: On Thu, Dec 15, 2011 at 10:15 AM, Peter Barada peter.bar...@logicpd.com wrote: This patch adds basic support for OMAP35x/DM37x SOM LV/Torpedo reference boards. It assumes U-boot is loaded to SDRAM with the help of another small bootloader (x-load

[U-Boot] [PATCH 1/1] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-14 Thread Peter Barada
From: Peter Barada pet...@logicpd.com This patch adds basic support for OMAP35x/DM37x SOM LV/Torpedo reference boards. It assumes U-boot is loaded to SDRAM with the help of another small bootloader (x-load) running from SRAM. Signed-off-by: Peter Barada peter.bar...@logicpd.com --- board

Re: [U-Boot] [PATCH 1/1] ARMV7: Add support For Logic OMAP35x/DM37x modules

2011-12-14 Thread Peter Barada
On 12/14/2011 07:15 PM, Tom Rini wrote: On Wed, Dec 14, 2011 at 3:47 PM, Peter Barada peter.bar...@logicpd.com wrote: From: Peter Barada pet...@logicpd.com This patch adds basic support for OMAP35x/DM37x SOM LV/Torpedo reference boards. It assumes U-boot is loaded to SDRAM with the help

[U-Boot] PATCH: Add time command

2011-10-29 Thread Peter Barada
From f5e82d7f87033ccdc1ede30c0d24e880852f7790 Mon Sep 17 00:00:00 2001 From: Peter Barada peter.bar...@logicpd.com Date: Sat, 29 Oct 2011 10:44:32 -0400 Subject: [PATCH] Add 'time' command to show execution of sub command. Add 'time cmd args' which executes cmd with args and shows the execution

Re: [U-Boot] env: fix env var autocompletion

2011-04-04 Thread Peter Barada
-- Peter Barada peter.bar...@logicpd.com ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [Patch v2] Fix hash table deletion to prevent lost entries

2011-03-21 Thread Peter Barada
On 03/21/2011 05:48 PM, Wolfgang Denk wrote: Dear Peter Barada, In message 4d385a7f.2070...@logicpd.com you wrote: On 01/19/2011 03:47 PM, Wolfgang Denk wrote: Dear Peter Barada, In message 4d371208.3090...@logicpd.com you wrote: The hash delete code is in error; instead of just removing

Re: [U-Boot] [Patch v2] Fix hash table deletion to prevent lost entries

2011-01-20 Thread Peter Barada
On 01/19/2011 03:47 PM, Wolfgang Denk wrote: Dear Peter Barada, In message 4d371208.3090...@logicpd.com you wrote: The hash delete code is in error; instead of just removing the deleted key, it should instead allocate a new hashtable, hash all the keys into the new table except

[U-Boot] [Patch] Fix hash table deletion to prevent lost entries

2011-01-19 Thread Peter Barada
, e.key = name; e.data = value; -hsearch_r(e, ENTER, rv, htab); +henter_r(e, rv, htab); if (rv == NULL) { printf(himport_r: can't insert \%s=%s\ into hash table\n, name, value); -- 1.7.0.4 -- Peter Barada peter.bar

[U-Boot] Hash problem...

2011-01-17 Thread Peter Barada
key, it should instead allocate a new hashtable, hash all the keys into the new table except for the deleted key and then reclaim the old table (and deleted key). -- Peter Barada peter.bar...@logicpd.com ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] OT Flashing high volume of devices

2010-11-18 Thread Peter Barada
/Linux/rootfs or otherwise) that is part of the test-image. If the test fails, then the board is rejected and reworked to diagnose/fix found issues (cold-solder, lifted pins, etc). Speed of testing/initial burn-in can be increased by running more than one fixture in parallel. -- Peter Barada

Re: [U-Boot] ARM: OMAP3/4: proposal: Cleanup MUX

2010-11-05 Thread Peter Barada
for a complete disconnect, i.e. the kernel must assume that anything it wants to configure needs to have its pinmux setup; yes there will be a period of pain, but its a lot easier to break the assumption than keep providing one -- Peter Barada pet...@logicpd.com

Re: [U-Boot] which protocol do I use to send S-record files when using the loads command ?

2010-08-18 Thread Peter Barada
On Wed, 2010-08-18 at 10:11 -0700, Mangelschots, Jef wrote: What file transfer protocol do I use when sending an S-record file when I issue the loads command ? I tried with both TerraTerm and Hyperterminal. In Terraterm, when I use File | Send File ..., In HyperTerminal, I use the menu

[U-Boot] Using YAFFS in u-boot

2010-07-27 Thread Peter Barada
in advance! -- Peter Barada pet...@logicpd.com Logic Product Development, Inc. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Which U-Boot releases have Device Tree support

2009-04-08 Thread Peter Barada
, and the build process generates an appropriate device tree binary for the board... -- Peter Barada pet...@logicpd.com ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Writing a YAFFS image to NAND

2009-04-03 Thread Peter Barada
NAND). I did see a patch from fmandarino on the list, but that doesn't look to be in the 2009.03 codebase. Thanks in advance! -- Peter Barada pet...@logicpd.com ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot