Re: [U-Boot] [PATCH] Add support for kirkwood sata controller

2010-09-06 Thread Tor Krill
On Mon, 2010-08-09 at 07:33 +0200, Prafulla Wadaskar wrote: > Hi Tor Hi Prafulla, Wolfgang and others, Sorry for the, very, late reply. > FYI: alternate patch series > http://lists.denx.de/pipermail/u-boot/2010-August/074966.html > On the top of > http://lists.denx.de/pipermail/u-boot/2010-Aug

Re: [U-Boot] [PATCH] orion5x: edminiv2: add libata support

2010-07-01 Thread Tor Krill
On Thu, 2010-07-01 at 10:41 +0200, Prafulla Wadaskar wrote: > > > -Original Message- > > From: u-boot-boun...@lists.denx.de > > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Tor Krill > > Sent: Thursday, July 01, 2010 1:07 PM > > To: Albert Ari

Re: [U-Boot] [PATCH] orion5x: edminiv2: add libata support

2010-07-01 Thread Tor Krill
On Wed, 2010-06-30 at 23:30 +0200, Albert Aribaud wrote: > Signed-off-by: Albert Aribaud > --- > This patch: > - adds support in libata for the orion5x MVSATAHC controller; > - enables orion5x MVSTAHC port 1 on the edmini board; > - adds IDE and EXT2 commands to the edminiv2 command set. Just a h

Re: [U-Boot] [PATCH V2] Allow PHY addresses on kirkwood egiga to be non continuous.

2010-06-28 Thread Tor Krill
On Thu, 2010-06-24 at 18:37 +0200, Mike Frysinger wrote: > On Thursday, June 24, 2010 05:31:47 Tor Krill wrote: > > void reset_phy(void) > > { > > char *name = "egiga0"; > > + u8 port_addr[] = CONFIG_PHY_ADDRS; > > > > if (mii

Re: [U-Boot] [PATCH V2] Allow PHY addresses on kirkwood egiga to be non continuous.

2010-06-28 Thread Tor Krill
On Thu, 2010-06-24 at 14:26 +0200, Prafulla Wadaskar wrote: > > > -Original Message- > > From: Tor Krill [mailto:t...@excito.com] > > Sent: Thursday, June 24, 2010 5:05 PM > > To: Prafulla Wadaskar > > Cc: u-boot@lists.denx.de > > Subject: RE: [PA

[U-Boot] [PATCH] Add support for kirkwood sata controller

2010-06-24 Thread Tor Krill
A rudimentary sata driver for the Marvell Kirkwood CPU based on the architecture of the fsl_sata driver. Signed-off-by: Tor Krill --- drivers/block/Makefile |1 + drivers/block/sata_mv.c | 800 +++ drivers/block/sata_mv.h | 229

Re: [U-Boot] [PATCH V2] Allow PHY addresses on kirkwood egiga to be non continuous.

2010-06-24 Thread Tor Krill
Hi Prafulla, On Thu, 2010-06-24 at 13:22 +0200, Prafulla Wadaskar wrote: > > > -Original Message- > > From: Tor Krill [mailto:t...@excito.com] > > Sent: Thursday, June 24, 2010 3:02 PM > > To: u-boot@lists.denx.de > > Cc: Prafulla Wadaskar; Tor Krill

Re: [U-Boot] [PATCH 0/6] Update kirkwood egiga to allow dynamic phy addrs

2010-06-24 Thread Tor Krill
Hi Wolfgang and others, On Thu, 2010-06-24 at 11:11 +0200, Wolfgang Denk wrote: > Dear Tor Krill, > > In message <1277366121-14683-1-git-send-email-...@excito.com> you wrote: > > Today the kirkwood egiga driver assumes that phy addresses are > > consecutive from a b

[U-Boot] [PATCH V2] Allow PHY addresses on kirkwood egiga to be non continuous.

2010-06-24 Thread Tor Krill
Changing its configuration from PHY_BASE_ADR single value to use CONFIG_PHY_BASE_ADDRS as an array with adresses. Updated in version 2: Merged board updates to single patch. Signed-off-by: Tor Krill --- board/keymile/km_arm/km_arm.c |3 ++- drivers/net/kirkwood_egiga.c |3

[U-Boot] [PATCH 5/6] Convert Guruplug board to use array of phy addrs

2010-06-24 Thread Tor Krill
Signed-off-by: Tor Krill --- include/configs/guruplug.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/guruplug.h b/include/configs/guruplug.h index 2fbc6ad..028eee7 100644 --- a/include/configs/guruplug.h +++ b/include/configs/guruplug.h @@ -175,7

[U-Boot] [PATCH 2/6] Convert Suen3 board to use array of phy addrs

2010-06-24 Thread Tor Krill
Signed-off-by: Tor Krill --- board/keymile/km_arm/km_arm.c |3 ++- include/configs/km_arm.h |2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/board/keymile/km_arm/km_arm.c b/board/keymile/km_arm/km_arm.c index 53cf474..16da353 100644 --- a/board/keymile/km_arm

[U-Boot] [PATCH 4/6] Convert OpenRD board to use array of phy addrs

2010-06-24 Thread Tor Krill
Signed-off-by: Tor Krill --- include/configs/openrd_base.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/openrd_base.h b/include/configs/openrd_base.h index d2f4502..37574ac 100644 --- a/include/configs/openrd_base.h +++ b/include/configs/openrd_base.h

[U-Boot] [PATCH 6/6] Convert rd6281a board to use array of phy addrs

2010-06-24 Thread Tor Krill
Signed-off-by: Tor Krill --- include/configs/rd6281a.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/rd6281a.h b/include/configs/rd6281a.h index 3d8e25c..01550d1 100644 --- a/include/configs/rd6281a.h +++ b/include/configs/rd6281a.h @@ -176,7 +176,7

[U-Boot] [PATCH 0/6] Update kirkwood egiga to allow dynamic phy addrs

2010-06-24 Thread Tor Krill
se an array of phy addresses as configuration. Tor Krill (6): Allow PHY addresses on kirkwood egiga to be non continuous. Convert Suen3 board to use array of phy addrs Convert Sheevaplug board to use array of phy addrs Convert OpenRD board to use array of phy addrs Convert Guruplug boa

[U-Boot] [PATCH 3/6] Convert Sheevaplug board to use array of phy addrs

2010-06-24 Thread Tor Krill
Signed-off-by: Tor Krill --- include/configs/sheevaplug.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h index e9edc44..9fdfd7e 100644 --- a/include/configs/sheevaplug.h +++ b/include/configs/sheevaplug.h

[U-Boot] [PATCH 1/6] Allow PHY addresses on kirkwood egiga to be non continuous.

2010-06-24 Thread Tor Krill
Changing its configuration from PHY_BASE_ADR single value to use CONFIG_PHY_ADDRS as an array with adresses. Signed-off-by: Tor Krill --- drivers/net/kirkwood_egiga.c |3 ++- drivers/net/kirkwood_egiga.h |8 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/drivers

[U-Boot] [PATCH 6/6] Convert rd6281a board to use array of phy addrs

2010-06-24 Thread Tor Krill
Signed-off-by: Tor Krill --- include/configs/rd6281a.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/rd6281a.h b/include/configs/rd6281a.h index 3d8e25c..01550d1 100644 --- a/include/configs/rd6281a.h +++ b/include/configs/rd6281a.h @@ -176,7 +176,7

[U-Boot] [PATCH 5/6] Convert Guruplug board to use array of phy addrs

2010-06-24 Thread Tor Krill
Signed-off-by: Tor Krill --- include/configs/guruplug.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/guruplug.h b/include/configs/guruplug.h index 2fbc6ad..028eee7 100644 --- a/include/configs/guruplug.h +++ b/include/configs/guruplug.h @@ -175,7

[U-Boot] [PATCH 4/6] Convert OpenRD board to use array of phy addrs

2010-06-24 Thread Tor Krill
Signed-off-by: Tor Krill --- include/configs/openrd_base.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/openrd_base.h b/include/configs/openrd_base.h index d2f4502..37574ac 100644 --- a/include/configs/openrd_base.h +++ b/include/configs/openrd_base.h

[U-Boot] [PATCH 3/6] Convert Sheevaplug board to use array of phy addrs

2010-06-24 Thread Tor Krill
Signed-off-by: Tor Krill --- include/configs/sheevaplug.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h index e9edc44..9fdfd7e 100644 --- a/include/configs/sheevaplug.h +++ b/include/configs/sheevaplug.h

[U-Boot] [PATCH 2/6] Convert Suen3 board to use array of phy addrs

2010-06-24 Thread Tor Krill
Signed-off-by: Tor Krill --- board/keymile/km_arm/km_arm.c |3 ++- include/configs/km_arm.h |2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/board/keymile/km_arm/km_arm.c b/board/keymile/km_arm/km_arm.c index 53cf474..16da353 100644 --- a/board/keymile/km_arm

[U-Boot] [PATCH 1/6] Allow PHY addresses on kirkwood egiga to be non continuous.

2010-06-24 Thread Tor Krill
Changing its configuration from PHY_BASE_ADR single value to use CONFIG_PHY_ADDRS as an array with adresses. Signed-off-by: Tor Krill --- drivers/net/kirkwood_egiga.c |3 ++- drivers/net/kirkwood_egiga.h |8 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/drivers

[U-Boot] [PATCH 0/6] Update kirkwood egiga to allow dynamic phy addrs

2010-06-24 Thread Tor Krill
se an array of phy addresses as configuration. Tor Krill (6): Allow PHY addresses on kirkwood egiga to be non continuous. Convert Suen3 board to use array of phy addrs Convert Sheevaplug board to use array of phy addrs Convert OpenRD board to use array of phy addrs Convert Guruplug boa

[U-Boot] [PATCH 6/6] Convert rd6281a board to use array of phy addrs

2010-06-23 Thread Tor Krill
Signed-off-by: Tor Krill --- include/configs/rd6281a.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/rd6281a.h b/include/configs/rd6281a.h index 3d8e25c..01550d1 100644 --- a/include/configs/rd6281a.h +++ b/include/configs/rd6281a.h @@ -176,7 +176,7

[U-Boot] [PATCH 0/6] Update kirkwood egiga to allow dynamic phy addrs

2010-06-23 Thread Tor Krill
se an array of phy addresses as configuration. Tor Krill (6): Allow PHY addresses on kirkwood egiga to be non continuous. Convert Suen3 board to use array of phy addrs Convert Sheevaplug board to use array of phy addrs Convert OpenRD board to use array of phy addrs Convert Guruplug boa

[U-Boot] [PATCH 2/6] Convert Suen3 board to use array of phy addrs

2010-06-23 Thread Tor Krill
Signed-off-by: Tor Krill --- board/keymile/km_arm/km_arm.c |3 ++- include/configs/km_arm.h |2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/board/keymile/km_arm/km_arm.c b/board/keymile/km_arm/km_arm.c index 53cf474..16da353 100644 --- a/board/keymile/km_arm

[U-Boot] [PATCH 1/6] Allow PHY addresses on kirkwood egiga to be non continuous.

2010-06-23 Thread Tor Krill
Changing its configuration from PHY_BASE_ADR single value to use CONFIG_PHY_ADDRS as an array with adresses. Signed-off-by: Tor Krill --- drivers/net/kirkwood_egiga.c |3 ++- drivers/net/kirkwood_egiga.h |8 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/drivers

[U-Boot] [PATCH 5/6] Convert Guruplug board to use array of phy addrs

2010-06-23 Thread Tor Krill
Signed-off-by: Tor Krill --- include/configs/guruplug.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/guruplug.h b/include/configs/guruplug.h index 2fbc6ad..028eee7 100644 --- a/include/configs/guruplug.h +++ b/include/configs/guruplug.h @@ -175,7

[U-Boot] [PATCH 3/6] Convert Sheevaplug board to use array of phy addrs

2010-06-23 Thread Tor Krill
Signed-off-by: Tor Krill --- include/configs/sheevaplug.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h index e9edc44..9fdfd7e 100644 --- a/include/configs/sheevaplug.h +++ b/include/configs/sheevaplug.h

[U-Boot] [PATCH 4/6] Convert OpenRD board to use array of phy addrs

2010-06-23 Thread Tor Krill
Signed-off-by: Tor Krill --- include/configs/openrd_base.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/openrd_base.h b/include/configs/openrd_base.h index d2f4502..37574ac 100644 --- a/include/configs/openrd_base.h +++ b/include/configs/openrd_base.h

[U-Boot] Unaligned data transfers?

2010-06-04 Thread Tor Krill
Hi, I have a question regarding (disk) transfers. For example Sata read and write takes an unspecified address which very well could be an unaligned byte address. Many DMA-controllers though require 16 or 32bit alignments for transfers. Is it safe to assume that the address is correct or bail o

Re: [U-Boot] u-boot fails to uncompress a "gzip'ed -9" kernel

2009-01-27 Thread Tor Krill
Hi Norbert, I missed the start of this thread. So my apologies if im barking up the wrong tree :) We had problems uncompressing zImages on our 8313 board. But always suspected some memory timing issues, or perhaps some strangeness in 8313. I tracked our problems down to a specific line in lib_ge