All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot-Users] AGAIN: need help for LAN91C111 driver
@ 2003-10-28 18:31 Stephan Linz
  0 siblings, 0 replies; only message in thread
From: Stephan Linz @ 2003-10-28 18:31 UTC (permalink / raw)
  To: u-boot

Hi all,

I've found unexpected code inside of smc_send_packet() in file 
drivers/smc91111.c (near line 585-590):

	/* send the packet length ( +6 for status, length and ctl byte )
	   and the status word ( set to zeros ) */
#ifdef USE_32_BIT
	SMC_outl ((length + 6) << 16, SMC91111_DATA_REG);
#else
	SMC_outw (0, SMC91111_DATA_REG);
	/* send the packet length ( +6 for status words, length, and ctl */
	SMC_outw ((length + 6), SMC91111_DATA_REG);
#endif

This code assembles the header of a data frame for transmission. My SMSC 
manual says about the BYTE COUNTER: "... alway even ...", Hmm , this code 
will put in even and odd length arguments. "length" should be replaced with 
"(length & 0xfffe)", the same code at top of function for page number 
calculation.

What's your opinion?


Best regards
-- 
Mit freundlichen Gruessen
Stephan Linz



======================================================================
Stephan Linz
Softwareentwicklung

MAZeT GmbH                   Email: mailto:linz@mazet.de
G?schwitzer Str. 32          Tel. : (3641) 2809-55
D-07745 Jena                 Fax  : (3641) 2809-12

Besuchen Sie bitte unsere Web-Seiten: http://www.MAZeT.de
======================================================================

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-10-28 18:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-10-28 18:31 [U-Boot-Users] AGAIN: need help for LAN91C111 driver Stephan Linz

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.