Re: [U-Boot] [PATCH 4/4] Update defconfig for minized.

2019-04-26 Thread Philip Balister
On 04/25/2019 05:33 PM, Michal Simek wrote: > On 17. 04. 19 19:46, Philip Balister wrote: >> Signed-off-by: Philip Balister >> --- >> configs/zynq_minized_defconfig | 16 +--- >> 1 file changed, 5 insertions(+), 11 deletions(-) >> >> diff -

Re: [U-Boot] [PATCH 3/4] zynq_minized: Add configuration header file for board specific environment.

2019-04-26 Thread Philip Balister
On 04/25/2019 05:30 PM, Michal Simek wrote: > On 17. 04. 19 19:46, Philip Balister wrote: >> Signed-off-by: Philip Balister >> --- >> include/configs/zynq_minized.h | 54 ++ >> 1 file changed, 54 insertions(+) >> create mode 1006

Re: [U-Boot] [PATCH 2/4] mini-zed: Update mini-zed dts so we can use it for SPL.

2019-04-26 Thread Philip Balister
On 04/25/2019 05:28 PM, Michal Simek wrote: > On 17. 04. 19 19:46, Philip Balister wrote: >> Signed-off-by: Philip Balister >> --- >> arch/arm/dts/zynq-minized.dts | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/arch/arm/dts/zynq-minized.dts b

[U-Boot] [PATCH 4/4] Update defconfig for minized.

2019-04-17 Thread Philip Balister
Signed-off-by: Philip Balister --- configs/zynq_minized_defconfig | 16 +--- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/configs/zynq_minized_defconfig b/configs/zynq_minized_defconfig index d61659f785..6c56b9b9b9 100644 --- a/configs/zynq_minized_defconfig +++ b

[U-Boot] [PATCH 3/4] zynq_minized: Add configuration header file for board specific environment.

2019-04-17 Thread Philip Balister
Signed-off-by: Philip Balister --- include/configs/zynq_minized.h | 54 ++ 1 file changed, 54 insertions(+) create mode 100644 include/configs/zynq_minized.h diff --git a/include/configs/zynq_minized.h b/include/configs/zynq_minized.h new file mode 100644 index

[U-Boot] [PATCH 2/4] mini-zed: Update mini-zed dts so we can use it for SPL.

2019-04-17 Thread Philip Balister
Signed-off-by: Philip Balister --- arch/arm/dts/zynq-minized.dts | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/dts/zynq-minized.dts b/arch/arm/dts/zynq-minized.dts index 525921ee7b..9ad7f090fe 100644 --- a/arch/arm/dts/zynq-minized.dts +++ b/arch/arm/dts/zynq-minized.dts @@ -38,6

Re: [U-Boot] [OE-core] [PATCH] u-boot: Upgrade to 2017.09

2017-09-21 Thread Philip Balister
On 09/19/2017 04:15 AM, Marek Vasut wrote: > On 09/18/2017 06:06 PM, Tom Rini wrote: >> On Mon, Sep 18, 2017 at 04:51:31PM +0100, Burton, Ross wrote: >>> On 18 September 2017 at 16:46, Otavio Salvador < >>> otavio.salva...@ossystems.com.br> wrote: >>> What is the policy on doing u-boot version

Re: [U-Boot] [OE-core] [PATCH] u-boot: Upgrade to 2017.09

2017-09-18 Thread Philip Balister
On 09/18/2017 02:39 AM, Martin Jansa wrote: > On Mon, Sep 18, 2017 at 10:31:05AM +0200, Marek Vasut wrote: >> On 09/18/2017 09:54 AM, Martin Jansa wrote: >>> u-boot-fw-utils-cross is broken for at least a year, if it breaks a lot >>> of boards, why nobody complained yet? >> >> Didn't you say it wor

[U-Boot] [PATCH] zynq: Move ENV location selection from zynq-common.h to config files.

2017-03-22 Thread Philip Balister
The ifdef's in zynq-common.h do a partial selection of the u-boot environment storage location. As u-boot added more, the ifdefs no longe cope with all possible cases. Rather than correct the logic there, move the selection options into the board specific config files. Signed-off-by: P

[U-Boot] [PATCH] zynq: Allow board specific files to over write CONFIG_EXTRA_ENV_SETTINGS.

2016-04-21 Thread Philip Balister
The zynq-common.h header file is usually included last in the board specific header file. Check if the CONFIG_EXTRA_ENV_SETTINGS variable is set before applying the default value. This makes it easier for a board to set a board specific environment. Cc: Michal Simek Signed-off-by: Philip

Re: [U-Boot] OMAP3 performance regression in 2011.12

2012-01-16 Thread Philip Balister
On 01/16/2012 04:03 AM, Joe Woodward wrote: > -Original Message- > From: Philip Balister > To: Joe Woodward > Date: Fri, 13 Jan 2012 15:53:37 -0500 > Subject: Re: OMAP3 performance regression in 2011.12 > >> Did you find out anymore info on this? I may have a c

Re: [U-Boot] [PATCH] net/eth.c: fix eth_write_hwaddr() to use dev->enetaddr as fall back

2012-01-16 Thread Philip Balister
On 01/13/2012 02:19 PM, Wolfgang Denk wrote: > Dear Eric Miao, > > In message <1313559224-4627-1-git-send-email-eric.m...@linaro.org> you wrote: >> Ignore the return value of eth_getenv_enetaddr_by_index(), and if it >> fails, fall back to use dev->enetaddr, which could be filled up by >> the ethe

[U-Boot] [PATCH 2/3] OMAP3: overo: Move ethernet CS4 configuration to execute based on board id

2011-10-11 Thread Philip Balister
By moving the CS4 configuration into the board specific configuration, it is left free for custom carrier boards. The USRP-E1XX series uses CS4 to control access to an FPGA, so without this patch the device driver cannot claim CS4. Signed-off-by: Philip Balister --- board/overo/overo.c |7

[U-Boot] [PATCH 3/3] OMAP3: overo : Add environment variable optargs to bootargs

2011-10-11 Thread Philip Balister
This allows the user can easily add extra kernel arguments. Very helpful for reserving memory for the DSP without rewriting the entire kernel argument line. Signed-off-by: Philip Balister --- include/configs/omap3_overo.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git

[U-Boot] [PATCH 1/3] OMAP3: overo : Use ttyO2 instead of ttyS2.

2011-10-11 Thread Philip Balister
Starting with kernel 2.6.37, the serial ports on the OMAP3 are called ttyOX, not ttySX. Signed-off-by: Philip Balister --- include/configs/omap3_overo.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/omap3_overo.h b/include/configs/omap3_overo.h index

Re: [U-Boot] omap: overo: Configure mux for gpio10

2011-10-04 Thread Philip Balister
On 09/30/2011 03:04 PM, Steve Sakoman wrote: > This pad was previously configured for sysclkout_1. This patch changes > the configuration to gpio_10 to reduce radiated noise from the 26Mhz > clock, as well as make the pin more generally useful. > > Signed-off-by: Steve Sakoman A

Re: [U-Boot] [PATCH] net/eth: add newline to "failed MAC address" warning

2011-09-26 Thread Philip Balister
ing: failed to set MAC address > > Signed-off-by: Holger Brunck Acked-by: Philip Balister But, when i submitted the same patch, I was told this is not the right way to solve the problem. I would still like to see this patch go in until someone has time to rewrite the problem section o

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

2011-09-13 Thread Philip Balister
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 patches that should go upstream that are

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

2011-09-11 Thread Philip Balister
p On 09/09/2011 03:16 AM, Enric Balletbò i Serra wrote: > 2011/9/9 Philip Balister: >> The existing timing does not quite meet the minimum requirements >> in the LAN9221 datasheet. The timing in this patch solves problems >> noticed on some parts. The patch also combines the C

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

2011-09-08 Thread Philip Balister
The existing timing does not quite meet the minimum requirements in the LAN9221 datasheet. The timing in this patch solves problems noticed on some parts. The patch also combines the CS configuration for the overo and igep0020 boards per request. Signed-off-by: Philip Balister --- Changes for v2

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

2011-09-08 Thread Philip Balister
On 09/08/2011 10:45 AM, Enric Balletbò i Serra wrote: > 2011/9/8 Steve Sakoman: >> On Wed, Sep 7, 2011 at 4:57 AM, Philip Balister wrote: >>> The existing timing does not quite meet the minimum requirements >>> in the LAN9221 datasheet. The timing in this patch solves p

Re: [U-Boot] Bogus "Warning: failed to set MAC address" on Gumstix Overo

2011-09-08 Thread Philip Balister
On 09/08/2011 10:40 AM, Wolfgang Denk wrote: > Dear Philip Balister, > > In message<4e68c67f.2080...@opensdr.com> you wrote: >> When booting master on a Gumstix Overo based system, I get the following >> messages during ethernet initialization: >> >> Net:

Re: [U-Boot] [PATCH] net: Add \n before warning message so it prints on a new line.

2011-09-08 Thread Philip Balister
On 09/08/2011 11:01 AM, Albert ARIBAUD wrote: > Hi Philip, > > Le 07/09/2011 13:57, Philip Balister a écrit : >> Signed-off-by: Philip Balister >> --- >> net/eth.c | 2 +- >> 1 files changed, 1 insertions(+), 1 deletions(-) >> >> diff --git a/net/eth.c

[U-Boot] Bogus "Warning: failed to set MAC address" on Gumstix Overo

2011-09-08 Thread Philip Balister
When booting master on a Gumstix Overo based system, I get the following messages during ethernet initialization: Net: smc911x-0 Warning: failed to set MAC address (Note that patch [1] is needed to move the Warning to a new line, otherwise it is after the previous line with no space) In this

[U-Boot] [PATCH] overo: Set IEN on GPMC_CLK to support CS's that use synchronous clocking.

2011-09-07 Thread Philip Balister
Without this change CS's configured for synchronous clocking cannot read data. Signed-off-by: Philip Balister --- board/overo/overo.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/overo/overo.h b/board/overo/overo.h index 68e1243..1f94669 100644 --- a/

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

2011-09-07 Thread Philip Balister
The existing timing does not quite meet the minimum requirements in the LAN9221 datasheet. The timing in this patch solves problems noticed on some parts. Signed-off-by: Philip Balister --- board/overo/overo.h |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/board

[U-Boot] [PATCH] net: Add \n before warning message so it prints on a new line.

2011-09-07 Thread Philip Balister
Signed-off-by: Philip Balister --- net/eth.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/eth.c b/net/eth.c index dbd1e2d..67a8039 100644 --- a/net/eth.c +++ b/net/eth.c @@ -305,7 +305,7 @@ int eth_initialize(bd_t *bis) puts

Re: [U-Boot] [PATCH RFC v2] OMAP: mmc: add support for second and third mmc channels

2010-05-11 Thread Philip Balister
On 04/29/2010 04:26 PM, Steve Sakoman wrote: > This patch adds support for the second and third mmc channels on OMAP3 > processors > > Boards wishing to use this feature should define CONFIG_SYS_MMC_SET_DEV > > Tested on Overo > > Signed-off-by: Steve Sakoman Tested-by:

Re: [U-Boot] NAND JFFS2 support in U-Boot 2009.03

2009-04-27 Thread Philip Balister
Mike Frysinger wrote: > On Monday 27 April 2009 08:59:11 cmfai...@rockwellcollins.com wrote: >> In previous versions of U-Boot, there were options for writing JFFS2 file >> systems to NAND (i.e., nand write.jffs2). > > the name was a misnomer. it didnt do anything jffs2 specific, it just > handl