All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot-Users] [PATCH-1/2] LAN91C111
@ 2003-11-03 18:04 Woodruff, Richard
  2003-11-04 18:45 ` Stephan Linz
  0 siblings, 1 reply; 10+ messages in thread
From: Woodruff, Richard @ 2003-11-03 18:04 UTC (permalink / raw)
  To: u-boot

As to the 8bit to 16 access change, at both the boot and kernel I use 16 bit
accesses.  I'm ok using 8bit access on my board, but based on comments in
code and the ifdef's in the shipping kernel code, switching that access size
will break a few boards.  As word access works, I wouldn't switch that bit.

As far as testing goes, if it works on my board I'm usually happy.  My
opinion would be if you are submitting new code, it doesn't really matter if
it works for anyone else as long as it doesn't break the compile.  If its
existing code, then some more care is obviously necessary.

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [U-Boot-Users] [PATCH-1/2] LAN91C111
@ 2003-11-04 19:08 Woodruff, Richard
  0 siblings, 0 replies; 10+ messages in thread
From: Woodruff, Richard @ 2003-11-04 19:08 UTC (permalink / raw)
  To: u-boot

The comments about broken boards due with the hardware not wiring up byte
enables.  The problem in that case is a board limitation, not a 91c1111.

After you pointed out the mac needs to be unsigned, I went though and
changed "all" mac references.  Seems like there were a couple more than your
patch had.  The kernel drivers I have for this already have your fix, and
treat mac's correctly through out.

Regards,

Richard W.

> -----Original Message-----
> From: Stephan Linz [mailto:linz at mazet.de] 
> Sent: Tuesday, November 04, 2003 12:45 PM
> To: Woodruff, Richard; 'wd at denx.de'
> Cc: u-boot-users at lists.sourceforge.net
> Subject: Re: [U-Boot-Users] [PATCH-1/2] LAN91C111
> 
> 
> 
> Hi,
> 
> I'm just back to NIOS.
> 
> Am Montag,  3. November 2003 19:04 schrieb Woodruff, Richard:
> > As to the 8bit to 16 access change, at both the boot and 
> kernel I use 
> > 16 bit accesses.  I'm ok using 8bit access on my board, but 
> based on 
> > comments in code and the ifdef's in the shipping kernel code, 
> > switching that access size will break a few boards.  As word access 
> > works, I wouldn't switch that bit.
> 
> Oops, very interesting informations, because the SMSC's 
> manuals for LAN91C110 
> and LAN91C1111 sayes about SMC91111_INT_REG: "... This 
> register can be read 
> and write as a word or two individual bytes ...". So I'm 
> wondering about a 
> few boards will be broken.
> 
> Nevertheless, let's leave it at 16bit access. The NIOS board 
> is running in 
> both cases, so there is no really important reason to change this bit.
> 
> >
> > As far as testing goes, if it works on my board I'm usually 
> happy.  My 
> > opinion would be if you are submitting new code, it doesn't really 
> > matter if it works for anyone else as long as it doesn't break the 
> > compile.  If its existing code, then some more care is obviously 
> > necessary.
> 
> Yes of course, the 16bit to 8 change isn't really important. 
> I've thought it 
> could be a good minor code generalization. It wasn't my 
> intention to make 
> broken code.
> 
> So, here my second try. In attachment yo will find the patch 
> again without 
> this critical change.
> 
> >
> > From a group submission aspect, Wolfgang does a good job of 
> filtering 
> > and moderating, and likely applies similar logic for 
> submission.  He 
> > is probably is a bit more stringent in certain areas as the 
> code would 
> > become more difficult to maintain with out some control.
> 
> Oh yes, he does a good job for us.
> 
> 
> Regards,
> Stephan
> 
> 
> > > From: wd at denx.de [mailto:wd at denx.de]
> > > Sent: Monday, November 03, 2003 9:40 AM
> > > To: Stephan Linz
> > > Cc: Woodruff, Richard; u-boot-users at lists.sourceforge.net
> > > Subject: Re: [U-Boot-Users] [PATCH-1/2] LAN91C111
> > >
> > >
> > > Dear Stephan,
> > >
> > > in message <0311031553480Q.02205@pcj86> you wrote:
> > > > I'm curious about it. When your test phase / cross check
> > > --8<--snipp-->8--
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [U-Boot-Users] [PATCH-1/2] LAN91C111
@ 2003-11-03 13:06 Woodruff, Richard
  2003-11-03 14:53 ` Stephan Linz
  0 siblings, 1 reply; 10+ messages in thread
From: Woodruff, Richard @ 2003-11-03 13:06 UTC (permalink / raw)
  To: u-boot

Hi Stephen,

Yes I suppose.  When I snoop packets I have gotten what I expected.  Could
be luck I suppose, I'll check the address block we use.  The reset of the
changes looked reasonable....switching the one word access to a byte access
might need looking at...I seem to recall reading threads where some boards
weren't wired up to do 8 byte accesses correctly.  I'd cross check with the
kernel level driver 91c1111 or 91c9x.c, before making that change.  Might be
ok.

Regards,

Richard W.

-----Original Message-----
From: Stephan Linz [mailto:linz at mazet.de] 
Sent: Monday, November 03, 2003 7:02 AM
To: Woodruff, Richard; u-boot-users at lists.sourceforge.net
Subject: Re: [U-Boot-Users] [PATCH-1/2] LAN91C111

Am Montag,  3. November 2003 13:13 schrieb Woodruff, Richard:
> I've been using the 91111 for a while now.  I've not had any real problems
> with it.  As the environment I'm in has some 30 odd boards, I've never
used
> the hard coded mac address.

Hi Richard

It is not a problem of hard coded mac addresses because smc_mac_addr[] will 
be used as buffer storage too. Furthermore it's a problem of type casting 
from signed char to unsigned short (type of word) when writing the mac 
address into LAN91C111 (near line smc91111.c:smc_open():700 the USE_32_BIT 
branch).

Note: it could be _only_ a NIOS related problem, but I think the type 
unsigned char for smc_mac_addr[] is more exact in common case, or not?


Regards,
Stephan

>
> Regards,
>
> Richard W.
>
> -----Original Message-----
> From: u-boot-users-admin at lists.sourceforge.net
> [mailto:u-boot-users-admin at lists.sourceforge.net] On Behalf Of Stephan
Linz
> Sent: Monday, November 03, 2003 5:02 AM
> To: u-boot-users at lists.sourceforge.net
> Subject: [U-Boot-Users] [PATCH-1/2] LAN91C111
>
> Hi all,
>
> in context of one of my emails last week:
>
http://sourceforge.net/mailarchive/forum.php?thread_id=3364771&forum_id=128
>9 8
>
>
> I'm wondering about how many people are using the LAN91C111 driver without
> significant problems. There is (just was :-) a fat signed/unsigned bug in
> drivers/smc91111.c which is significant at NIOS plattforms when you are
> using
> MAC addresses with address elements above 0x7f. Example: 00:07:ed:0a:a4:7b
> goes over to 00:07:ed:ff:a4:ff inside the chip. Simple solution:
>
> 	static char smc_mac_addr[] = { . . . };
>
> have to be:
>
> 	static char unsigned smc_mac_addr[6] = { . . . };
>
>
> In attatchment you will find my smc91111_fix patch. It includes some other
> minor fixes I've made. This patch has been working successful at NIOS
> Stratix
> and Cyclone boards.
>
> Please try out and patch CVS tree.
>
>
> Best Regards,

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [U-Boot-Users] [PATCH-1/2] LAN91C111
@ 2003-11-03 12:13 Woodruff, Richard
  2003-11-03 13:01 ` Stephan Linz
  0 siblings, 1 reply; 10+ messages in thread
From: Woodruff, Richard @ 2003-11-03 12:13 UTC (permalink / raw)
  To: u-boot

I've been using the 91111 for a while now.  I've not had any real problems
with it.  As the environment I'm in has some 30 odd boards, I've never used
the hard coded mac address.  

Regards,

Richard W.

-----Original Message-----
From: u-boot-users-admin@lists.sourceforge.net
[mailto:u-boot-users-admin at lists.sourceforge.net] On Behalf Of Stephan Linz
Sent: Monday, November 03, 2003 5:02 AM
To: u-boot-users at lists.sourceforge.net
Subject: [U-Boot-Users] [PATCH-1/2] LAN91C111

Hi all,

in context of one of my emails last week:
http://sourceforge.net/mailarchive/forum.php?thread_id=3364771&forum_id=1289
8


I'm wondering about how many people are using the LAN91C111 driver without 
significant problems. There is (just was :-) a fat signed/unsigned bug in 
drivers/smc91111.c which is significant at NIOS plattforms when you are
using 
MAC addresses with address elements above 0x7f. Example: 00:07:ed:0a:a4:7b 
goes over to 00:07:ed:ff:a4:ff inside the chip. Simple solution:

	static char smc_mac_addr[] = { . . . };

have to be:

	static char unsigned smc_mac_addr[6] = { . . . };


In attatchment you will find my smc91111_fix patch. It includes some other 
minor fixes I've made. This patch has been working successful at NIOS
Stratix 
and Cyclone boards.

Please try out and patch CVS tree.


Best Regards,
-- 
Mit freundlichen Gruessen
Stephan Linz



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

MAZeT GmbH                   Email: mailto:linz at 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] 10+ messages in thread
* [U-Boot-Users] [PATCH-1/2] LAN91C111
@ 2003-11-03 11:02 Stephan Linz
  2003-12-06 23:16 ` Wolfgang Denk
  0 siblings, 1 reply; 10+ messages in thread
From: Stephan Linz @ 2003-11-03 11:02 UTC (permalink / raw)
  To: u-boot

Hi all,

in context of one of my emails last week:
http://sourceforge.net/mailarchive/forum.php?thread_id=3364771&forum_id=12898


I'm wondering about how many people are using the LAN91C111 driver without 
significant problems. There is (just was :-) a fat signed/unsigned bug in 
drivers/smc91111.c which is significant at NIOS plattforms when you are using 
MAC addresses with address elements above 0x7f. Example: 00:07:ed:0a:a4:7b 
goes over to 00:07:ed:ff:a4:ff inside the chip. Simple solution:

	static char smc_mac_addr[] = { . . . };

have to be:

	static char unsigned smc_mac_addr[6] = { . . . };


In attatchment you will find my smc91111_fix patch. It includes some other 
minor fixes I've made. This patch has been working successful at NIOS Stratix 
and Cyclone boards.

Please try out and patch CVS tree.


Best Regards,
-- 
Mit freundlichen Gruessen
Stephan Linz



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

MAZeT GmbH                   Email: mailto:linz at 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
======================================================================
-------------- next part --------------
A non-text attachment was scrubbed...
Name: u-boot-20031103cvs-smc91111_fix.patch-0
Type: text/x-c
Size: 2545 bytes
Desc: not available
Url : http://lists.denx.de/pipermail/u-boot/attachments/20031103/ce1ac026/attachment.bin 

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

end of thread, other threads:[~2003-12-06 23:16 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-11-03 18:04 [U-Boot-Users] [PATCH-1/2] LAN91C111 Woodruff, Richard
2003-11-04 18:45 ` Stephan Linz
  -- strict thread matches above, loose matches on Subject: below --
2003-11-04 19:08 Woodruff, Richard
2003-11-03 13:06 Woodruff, Richard
2003-11-03 14:53 ` Stephan Linz
2003-11-03 15:40   ` Wolfgang Denk
2003-11-03 12:13 Woodruff, Richard
2003-11-03 13:01 ` Stephan Linz
2003-11-03 11:02 Stephan Linz
2003-12-06 23:16 ` 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.