All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/1][Net] Convert CS8900 Ethernet driver to CONFIG_NET_MULTI API
@ 2009-08-12 22:53 Wolfgang Denk
  2009-08-12 22:55 ` Ben Warren
  0 siblings, 1 reply; 6+ messages in thread
From: Wolfgang Denk @ 2009-08-12 22:53 UTC (permalink / raw)
  To: u-boot

Dear Ben Warren,

I wrote:

> Note however that your modification was probably not the (only)
> culprit. With current mainline version I get this:
> 
> TRAB # run load
> TFTP from server 192.168.1.1; our IP address is 192.168.3.68
> Filename 'trab/u-boot.bin-wd'.
> Load address: 0xc100000
> Loading: T T T T T T T T T T 
> Retry count exceeded; starting again
> TFTP from server 192.168.1.1; our IP address is 192.168.3.68
> Filename 'trab/u-boot.bin-wd'.
> Load address: 0xc100000
> Loading: T T T T T T T T T T 
> Retry count exceeded; starting again
> TFTP from server 192.168.1.1; our IP address is 192.168.3.68
> Filename 'trab/u-boot.bin-wd'.
> Load address: 0xc100000
> Loading: T T T T T T T T T T 
> Retry count exceeded; starting again
> 
> with the timeouts being *way* too fast.
> 
> It seems that 1.2.0 was the last version that has been actually
> tested on trab / SMDK2400.
> 
> I'll try to run a git bisect tomorrow; need to get some sleep now.

Please ignore me:

U-Boot 2009.08-rc2-00016-g253cb83-dirty (Aug 13 2009 - 00:42:59)

I2C:   ready
DRAM:  32 MB
Flash:  8 MB
USB:   scanning bus for devices... 1 USB Device(s) found
0 Storage Device(s) found

Enter password - autoboot in 5 sec...
TRAB # run load
TFTP from server 192.168.1.1; our IP address is 192.168.3.68
Filename 'trab/u-boot.bin-wd'.
Load address: 0xc100000
Loading: ################
done
Bytes transferred = 233844 (39174 hex)
TRAB # 

So currrent mainline *is* working fine.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Any sufficiently advanced  technology  is  indistinguishable  from  a
rigged demo.                              - Andy Finkel, computer guy

^ permalink raw reply	[flat|nested] 6+ messages in thread
* [U-Boot] [PATCH 0/1][Net] Convert CS8900 Ethernet driver to CONFIG_NET_MULTI API
@ 2009-08-12  4:12 Ben Warren
  2009-08-12  4:12 ` [U-Boot] [PATCH 1/1][Net] " Ben Warren
  0 siblings, 1 reply; 6+ messages in thread
From: Ben Warren @ 2009-08-12  4:12 UTC (permalink / raw)
  To: u-boot

Hello,

This driver is compile-tested only on ARM platform.  I'm hoping some volunteers can test it on real hardware.

thanks,
Ben

---
 board/altera/dk1c20/dk1c20.c      |   12 ++
 board/altera/dk1s10/dk1s10.c      |   12 ++
 board/armadillo/armadillo.c       |   12 ++
 board/csb226/csb226.c             |   12 ++
 board/ep7312/ep7312.c             |   12 ++
 board/freescale/mx31ads/mx31ads.c |   12 ++
 board/impa7/impa7.c               |   12 ++
 board/lart/lart.c                 |   12 ++
 board/mpl/vcma9/cmd_vcma9.c       |   28 +++--
 board/mpl/vcma9/vcma9.c           |   12 ++
 board/mx1ads/mx1ads.c             |   12 ++
 board/samsung/smdk2400/smdk2400.c |   12 ++
 board/samsung/smdk2410/smdk2410.c |   12 ++
 board/samsung/smdk6400/smdk6400.c |   12 ++
 board/sbc2410x/sbc2410x.c         |   12 ++
 board/ssv/adnpesc1/adnpesc1.c     |   12 ++
 board/trab/trab.c                 |   12 ++
 drivers/net/Makefile              |    2 +-
 drivers/net/cs8900.c              |  243 ++++++++++++++++++++-----------------
 drivers/net/cs8900.h              |   41 ++++---
 include/configs/ADNPESC1.h        |   14 ++-
 include/configs/DK1C20.h          |   14 ++-
 include/configs/DK1S10.h          |   14 ++-
 include/configs/VCMA9.h           |    7 +-
 include/configs/armadillo.h       |    9 +-
 include/configs/csb226.h          |    7 +-
 include/configs/ep7312.h          |    9 +-
 include/configs/impa7.h           |    7 +-
 include/configs/lart.h            |    7 +-
 include/configs/mx1ads.h          |    7 +-
 include/configs/mx31ads.h         |    7 +-
 include/configs/sbc2410x.h        |    7 +-
 include/configs/smdk2400.h        |    7 +-
 include/configs/smdk2410.h        |    7 +-
 include/configs/smdk6400.h        |    7 +-
 include/configs/trab.h            |    7 +-
 include/netdev.h                  |    1 +
 lib_arm/board.c                   |    9 --
 38 files changed, 448 insertions(+), 205 deletions(-)

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-08-12 22:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-08-12 22:53 [U-Boot] [PATCH 1/1][Net] Convert CS8900 Ethernet driver to CONFIG_NET_MULTI API Wolfgang Denk
2009-08-12 22:55 ` Ben Warren
  -- strict thread matches above, loose matches on Subject: below --
2009-08-12  4:12 [U-Boot] [PATCH 0/1][Net] " Ben Warren
2009-08-12  4:12 ` [U-Boot] [PATCH 1/1][Net] " Ben Warren
2009-08-12 22:17   ` Wolfgang Denk
2009-08-12 22:31     ` Ben Warren
2009-08-12 22:50       ` Wolfgang Denk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.