All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wolfgang Grandegger <wg@grandegger.com>
To: Grant Likely <grant.likely@secretlab.ca>
Cc: netdev@vger.kernel.org, linuxppc-dev@ozlabs.org,
	paulus@samba.org, Domen Puncer <domen@coderock.org>
Subject: Re: [PATCH] [POWERPC] mpc5200: Allow for fixed speed MII configurations
Date: Thu, 01 May 2008 18:59:20 +0200	[thread overview]
Message-ID: <4819F6E8.1@grandegger.com> (raw)
In-Reply-To: <fa686aa40805010952t58af0071rc308956e9fb13fbf@mail.gmail.com>

Grant Likely wrote:
> On Thu, May 1, 2008 at 10:38 AM, Wolfgang Grandegger <wg@grandegger.com> wrote:
>> Hi Grant,
>>
>>
>>  Grant Likely wrote:
>>  > On Tue, Apr 29, 2008 at 5:06 PM, Grant Likely <grant.likely@secretlab.ca> wrote:
>>  >> From: Grant Likely <grant.likely@secretlab.ca>
>>  >>
>>  >>  Various improvements for configuring the MPC5200 MII link from the
>>  >>  device tree:
>>  >>  * Look for 'current-speed' property for fixed speed MII links
>>  >>  * Look for 'fsl,7-wire-mode' property for boards using the 7 wire mode
>>  >>  * move definition of private data structure out of the header file
>>  >>
>>  >>  Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
>>  >
>>  > Any more comments on this patch?  I want to push it to Paulus, but I'd
>>  > like to have someone ack it first.
>>  >
>>  > Wolfgang, you used the previous version of this patch.  Does this one
>>  > work for you?
>>
>>  Sorry for the late answer. The patch works fine (under Linux 2.6.24) on
>>  my board with a 3-port Micrel ethernet switch. There is still a minor
>>  issue, though:
>>
>>  >>  -               of_node_put(phy_dn);
>>  >>  +       /* Start with safe defaults for link connection */
>>  >>  +       priv->phy_addr = FEC5200_PHYADDR_NONE;
>>  >>  +       priv->speed = 100;
>>  >>  +       priv->duplex = 0;
>>
>>  priv->duplex is re-defined here. And instead of "0" we should use
>>  DUPLEX_HALF.
> 
> Oops,
> 
> Fixed.
> 
> If you reply with your 'acked-by' line, then I'll push this one to
> Paul so it can get into .26

Yes, of course. Add

  Acked-by: Wolfgang Grandegger <wg@grandegger.com>

please.

Wolfgang.

WARNING: multiple messages have this Message-ID (diff)
From: Wolfgang Grandegger <wg@grandegger.com>
To: Grant Likely <grant.likely@secretlab.ca>
Cc: linuxppc-dev@ozlabs.org, paulus@samba.org,
	netdev@vger.kernel.org, wd@denx.de,
	Domen Puncer <domen@coderock.org>,
	Sylvain Munaut <tnt@246tnt.com>
Subject: Re: [PATCH] [POWERPC] mpc5200: Allow for fixed speed MII configurations
Date: Thu, 01 May 2008 18:59:20 +0200	[thread overview]
Message-ID: <4819F6E8.1@grandegger.com> (raw)
In-Reply-To: <fa686aa40805010952t58af0071rc308956e9fb13fbf@mail.gmail.com>

Grant Likely wrote:
> On Thu, May 1, 2008 at 10:38 AM, Wolfgang Grandegger <wg@grandegger.com> wrote:
>> Hi Grant,
>>
>>
>>  Grant Likely wrote:
>>  > On Tue, Apr 29, 2008 at 5:06 PM, Grant Likely <grant.likely@secretlab.ca> wrote:
>>  >> From: Grant Likely <grant.likely@secretlab.ca>
>>  >>
>>  >>  Various improvements for configuring the MPC5200 MII link from the
>>  >>  device tree:
>>  >>  * Look for 'current-speed' property for fixed speed MII links
>>  >>  * Look for 'fsl,7-wire-mode' property for boards using the 7 wire mode
>>  >>  * move definition of private data structure out of the header file
>>  >>
>>  >>  Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
>>  >
>>  > Any more comments on this patch?  I want to push it to Paulus, but I'd
>>  > like to have someone ack it first.
>>  >
>>  > Wolfgang, you used the previous version of this patch.  Does this one
>>  > work for you?
>>
>>  Sorry for the late answer. The patch works fine (under Linux 2.6.24) on
>>  my board with a 3-port Micrel ethernet switch. There is still a minor
>>  issue, though:
>>
>>  >>  -               of_node_put(phy_dn);
>>  >>  +       /* Start with safe defaults for link connection */
>>  >>  +       priv->phy_addr = FEC5200_PHYADDR_NONE;
>>  >>  +       priv->speed = 100;
>>  >>  +       priv->duplex = 0;
>>
>>  priv->duplex is re-defined here. And instead of "0" we should use
>>  DUPLEX_HALF.
> 
> Oops,
> 
> Fixed.
> 
> If you reply with your 'acked-by' line, then I'll push this one to
> Paul so it can get into .26

Yes, of course. Add

  Acked-by: Wolfgang Grandegger <wg@grandegger.com>

please.

Wolfgang.

  reply	other threads:[~2008-05-01 16:59 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-29 23:06 [PATCH] [POWERPC] mpc5200: Allow for fixed speed MII configurations Grant Likely
2008-04-30  7:36 ` Joakim Tjernlund
2008-04-30  7:36   ` Joakim Tjernlund
2008-04-30 13:07   ` Grant Likely
2008-04-30 13:07     ` Grant Likely
2008-04-30 13:10     ` Joakim Tjernlund
2008-04-30 13:10       ` Joakim Tjernlund
2008-04-30 13:26       ` Grant Likely
2008-04-30 13:26         ` Grant Likely
2008-04-30 14:16         ` Joakim Tjernlund
2008-04-30 14:16           ` Joakim Tjernlund
2008-04-30 14:28           ` Grant Likely
2008-04-30 14:28             ` Grant Likely
2008-04-30 15:04             ` Joakim Tjernlund
2008-05-01 14:33 ` Grant Likely
2008-05-01 16:38   ` Wolfgang Grandegger
2008-05-01 16:38     ` Wolfgang Grandegger
2008-05-01 16:52     ` Grant Likely
2008-05-01 16:52       ` Grant Likely
2008-05-01 16:59       ` Wolfgang Grandegger [this message]
2008-05-01 16:59         ` Wolfgang Grandegger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4819F6E8.1@grandegger.com \
    --to=wg@grandegger.com \
    --cc=domen@coderock.org \
    --cc=grant.likely@secretlab.ca \
    --cc=linuxppc-dev@ozlabs.org \
    --cc=netdev@vger.kernel.org \
    --cc=paulus@samba.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.