Re: [U-Boot-Users] [PATCH 2/4][RFC] Add ehci core functionality

2008-11-24 Thread Tor Krill
Hi all, On Mon, 2008-11-24 at 21:18 +0100, Remy Bohmer wrote: Hello Michael, I have redone the patch. What do you think? I can't test them. They compile. It is a big change for leaving untested... Can anybody provide an ack for these patches? I'm very sorry for not being able to

Re: [U-Boot-Users] broken changes @ MPC83xx

2008-06-23 Thread Tor Krill
Hi Andre, I had a similar problem a while back. Adding the new define: #define CONFIG_HIGH_BATS1 /* High BATs supported */ To my config solved the problem. /Tor On 6/23/2008, Andre Schwarz [EMAIL PROTECTED] wrote: Kim, after being back from holiday and pulling the lates

[U-Boot-Users] [PATCH 4/4][RFC] ReAdd extracted Juniper Networks PCI hcd driver

2008-06-23 Thread Tor Krill
Readds Juniper Networks original Philips PCI driver. (Untested) Signed-off-by: Tor Krill [EMAIL PROTECTED] --- drivers/usb/usb_ehci_pci.c | 135 drivers/usb/usb_ehci_pci.h | 37 2 files changed, 172 insertions(+), 0 deletions

[U-Boot-Users] [PATCH 3/4][RFC] Add ehci support for Freescale 83xx

2008-06-23 Thread Tor Krill
Add hcd driver for Freescale 8313 and possibly others. Supports built in UTMI PHY and has a hardcoded clock setting. Signed-off-by: Tor Krill [EMAIL PROTECTED] --- drivers/usb/usb_ehci_fsl.c | 99 drivers/usb/usb_ehci_fsl.h | 82

[U-Boot-Users] [PATCH 1/4][RFC] Add initial high speed support to USB code.

2008-06-23 Thread Tor Krill
Add high speed support to USB code. Extracted from Juniper Networks patch. I know that the mergewindow is closed but wanted to get feedback on these patches if possible. Signed-off-by: Tor Krill [EMAIL PROTECTED] --- common/cmd_usb.c |3 ++- common/usb.c | 30

[U-Boot-Users] [PATCH 2/4][RFC] Add ehci core functionality

2008-06-23 Thread Tor Krill
Add basic functionality for ehci bulk and control messages Signed-off-by: Tor Krill [EMAIL PROTECTED] --- drivers/usb/Makefile|3 + drivers/usb/usb_ehci.h | 106 +++ drivers/usb/usb_ehci_core.c | 633 +++ drivers/usb/usb_ehci_core.h

Re: [U-Boot-Users] [PATCH] Add sata sil3114 support (V2)

2008-06-17 Thread Tor Krill
Hi, On 5/29/2008, Tor Krill [EMAIL PROTECTED] wrote: Add support for Silicon Images sil3114 sata chip using libata Changes since last version * use debug() print instead of local version * Coding standard and whitespace fixes Signed-off-by: Tor Krill [EMAIL PROTECTED] I have received

[U-Boot-Users] [PATCH] Add missing define to mpc83xx.h

2008-06-02 Thread Tor Krill
Signed-off-by: Tor Krill [EMAIL PROTECTED] --- include/mpc83xx.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/mpc83xx.h b/include/mpc83xx.h index d2e1e2b..3dc926d 100644 --- a/include/mpc83xx.h +++ b/include/mpc83xx.h @@ -820,6 +820,7 @@ #define CSCONFIG_EN

[U-Boot-Users] [PATCH 1/2] Add support for mpc8313 based BUBBATWO

2008-06-02 Thread Tor Krill
These patches add support for the mpc8313 based BUBBATWO board. Signed-off-by: Tor Krill [EMAIL PROTECTED] --- MAINTAINERS|4 + MAKEALL|1 + Makefile |3 + include/configs/BUBBATWO.h | 516

[U-Boot-Users] [PATCH 2/2] Add board specific files for BUBBATWO

2008-06-02 Thread Tor Krill
Signed-off-by: Tor Krill [EMAIL PROTECTED] --- board/excito/bubbatwo/Makefile | 50 + board/excito/bubbatwo/bubba_commands.c | 93 + board/excito/bubbatwo/bubbatwo.c | 175 board/excito/bubbatwo/bubbatwo.h | 30

[U-Boot-Users] [PATCH] Add sata sil3114 support (V2)

2008-05-29 Thread Tor Krill
Add support for Silicon Images sil3114 sata chip using libata Changes since last version * use debug() print instead of local version * Coding standard and whitespace fixes Signed-off-by: Tor Krill [EMAIL PROTECTED] --- drivers/block/Makefile |1 + drivers/block/sata_sil3114.c | 839

[U-Boot-Users] [PATCH] Fix incorrect switch for IF_TYPE in part.c

2008-05-29 Thread Tor Krill
Use correct field in block_dev_desc_t when writing interface type in dev_print. Error introduced in 574b319512b13e10800f0045e39b993f4ca25e42. Changes: * Added fix from Martin Krause Signed-off-by: Tor Krill [EMAIL PROTECTED] --- disk/part.c |4 ++-- 1 files changed, 2 insertions(+), 2

Re: [U-Boot-Users] [PATCH] Add Vitesse 8601 support to TSEC driver

2008-04-18 Thread Tor Krill
[EMAIL PROTECTED] wrote: Tor Krill wrote: Add phy_info for Vitesse VSC8601. Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation. Signed-off-by: Tor Krill [EMAIL PROTECTED] Acked-by: Ben Warren [EMAIL PROTECTED] I don't have a Vitesse 8601, so technically I

Re: [U-Boot-Users] U-Boot 2.0 EHCI driver

2008-04-18 Thread Tor Krill
I usually use nntp when searching for old stuff. Use nntp://news.gmane.org/gmane.comp.boot-loaders.u-boot and search for ehci. Its easy to find. Regarding EHCI, this is something im interested in as well and will see if i can get any time testing this patch soon. (Our SOC actually has built in

Re: [U-Boot-Users] MPC8343 PCI setup

2008-04-03 Thread Tor Krill
On 4/3/2008, Andre Schwarz [EMAIL PROTECTED] wrote: All, Hi Andre and others, currently I'm trying to bring up a mpc8343 based system. Latest u-boot v1.3.2 is running fine. The MPC8343 has a single 32-Bit PCI Bus running at 66MHz. Connected are a FPGA (IDSEL 11 + IRQ0) and a miniPCI Slot

[U-Boot-Users] [PATCH] Merge code duplication in ata.h and libata.h

2008-03-31 Thread Tor Krill
ata.h and libata.h contains duplicate and conflicting definitions. This patch tries to resolve this and make them both includeable in a sourcefile. Also updated is the fsl_sata driver which uses libata.h Signed-off-by: Tor Krill [EMAIL PROTECTED] --- drivers/block/fsl_sata.c | 15

Re: [U-Boot-Users] [PATCH] Merge code duplication in ata.h and libata.h

2008-03-31 Thread Tor Krill
On 3/31/2008, Dave Liu [EMAIL PROTECTED] wrote: - fsl_sata_exec_cmd(sata, cfis, CMD_ATA, 0, buffer, ATA_SECT_SIZE * blkcnt); + fsl_sata_exec_cmd(sata, cfis, CMD_ATA, 0, buffer, ATA_SECT_BYTESIZE * blkcnt); return blkcnt; } @@ -658,7 +659,7 @@ static u32

Re: [U-Boot-Users] [PATCH] Merge code duplication in ata.h and libata.h

2008-03-31 Thread Tor Krill
On 3/31/2008, Dave Liu [EMAIL PROTECTED] wrote: Don't do this. I don't think the ATA_SECT_BYTESIZE is better than the ATA_SECT_SIZE. The big problem here is that ata.h defines ATA_SECT_SIZE as 256 Words where libata defines it as 512 Bytes. I did not want to change the old define

Re: [U-Boot-Users] [PATCH] Add Vitesse 8601 support to TSEC driver

2008-03-30 Thread Tor Krill
Ben regarding your call for network related patches. Im not sure if i should have sent this one to you? Got no reactions on it. /Tor On 3/28/2008, Tor Krill [EMAIL PROTECTED] wrote: Add phy_info for Vitesse VSC8601. Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing

[U-Boot-Users] [PATCH] Add support for 16bit legacy AMD flash

2008-03-28 Thread Tor Krill
Add entry for 512Kx16 AMD flash to jedec_table. Read out 16bit device id if chipwidth is 16bit Signed-off-by: Tor Krill [EMAIL PROTECTED] --- drivers/mtd/cfi_flash.c | 44 +++- drivers/mtd/jedec_flash.c | 19 +++ 2 files changed, 54

[U-Boot-Users] [PATCH] Add support for 16bit legacy AMD flash, V2

2008-03-28 Thread Tor Krill
Add entry for 512Kx16 AMD flash to jedec_table. Read out 16bit device id if chipwidth is 16bit. Fixed coding style after Stefans feedback Signed-off-by: Tor Krill [EMAIL PROTECTED] --- drivers/mtd/cfi_flash.c | 44 +++- drivers/mtd/jedec_flash.c | 19

[U-Boot-Users] [PATCH] Add Vitesse 8601 support to TSEC driver

2008-03-28 Thread Tor Krill
Add phy_info for Vitesse VSC8601. Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation. Signed-off-by: Tor Krill [EMAIL PROTECTED] --- drivers/net/tsec.c | 30 ++ drivers/net/tsec.h |5 + 2 files changed, 35 insertions(+), 0

Re: [U-Boot-Users] [PATCH v1 2/5] ATA: Add the libata support

2008-03-19 Thread Tor Krill
Hi again, After some further work with these pathces. (I currently work on a SIL3114 driver using them) It seems like there is a lot of code duplication in libata.h and the existant ata.h. Thus making it impossible to include both ones. Which i would like to do. Pasted below is the

Re: [U-Boot-Users] [PATCH v1 2/5] ATA: Add the libata support

2008-03-19 Thread Tor Krill
On 3/19/2008, Wolfgang Denk [EMAIL PROTECTED] wrote: In message [EMAIL PROTECTED] you wrote: After some further work with these pathces. (I currently work on a SIL3114 driver using them) It seems like there is a lot of code duplication in libata.h and the existant ata.h. Thus making it

Re: [U-Boot-Users] Problem with flash cfi legacy mode

2008-03-17 Thread Tor Krill
On 3/14/2008, Michael Schwingen [EMAIL PROTECTED] wrote: Tor Krill wrote: Im working on adding support for our board to u-boot. I use legacy flash mode for our boot-flash. I however have some problems with it. When using jedec probe to identify our flash. Im unable to do so with our

[U-Boot-Users] [PATCH] Add support for Intersil isl1208 RTC

2008-03-15 Thread Tor Krill
Resubmitted with fixes regarding comments from Jean-Christophe PLAGNIOL-VILLARD Signed-off-by: Tor Krill [EMAIL PROTECTED] --- README|1 + drivers/rtc/Makefile |1 + drivers/rtc/isl1208.c | 167 + 3 files changed, 169

Re: [U-Boot-Users] [PATCH] Add support for Intersil isl1208 RTC

2008-03-13 Thread Tor Krill
On 2/28/2008, Tor Krill [EMAIL PROTECTED] wrote: Signed-off-by: Tor Krill [EMAIL PROTECTED] --- README|1 + drivers/rtc/Makefile |1 + drivers/rtc/isl1208.c | 176 ---8--- Any comments? Maybe i sent it before the merge window opened and thus got no feedback

[U-Boot-Users] [PATCH] Add support for Intersil isl1208 RTC

2008-02-27 Thread Tor Krill
Signed-off-by: Tor Krill [EMAIL PROTECTED] --- README|1 + drivers/rtc/Makefile |1 + drivers/rtc/isl1208.c | 176 + 3 files changed, 178 insertions(+), 0 deletions(-) create mode 100644 drivers/rtc/isl1208.c diff --git