lkml.org 
[lkml]   [2023]   [Jan]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH net-next v1 2/3] net: phy: Add dts support for Motorcomm yt8521/yt8531s gigabit ethernet phy
> >>  #define PHY_ID_YT8511		0x0000010a
> >> -#define PHY_ID_YT8521 0x0000011A
> >> -#define PHY_ID_YT8531S 0x4F51E91A
> >> +#define PHY_ID_YT8521 0x0000011a
> >> +#define PHY_ID_YT8531S 0x4f51e91a
> >
> > Please do the lower case conversion as a separate patch.
> >
>
> I will fix.

Hi Frank

There is no need to say this. Please just reply to parts you want to
add more information, ask questions, or disagree with etc.

> >> +/* Phy Serdes analog cfg2 Register */
> >> +#define YTPHY_SERDES_ANALOG_CFG2_REG 0xA1
> >> +#define YTPHY_SAC2R_TX_AMPLITUDE_MASK ((0x7 << 13) | (0x7 << 1))
> >> +#define YT8521_SAC2R_TX_AMPLITUDE_LOW ((0x7 << 13) | (0x0 << 1))
> >> +#define YT8521_SAC2R_TX_AMPLITUDE_MIDDLE ((0x5 << 13) | (0x5 << 1))
> >> +#define YT8521_SAC2R_TX_AMPLITUDE_HIGH ((0x3 << 13) | (0x6 << 1))
> >
> > So there are two values which control the amplitude? Buts 1-3, and bit
> > 7-9? Can they be used independently? Also, 7, 5, 3 is also add. Does
> > bit 0 of this value have some special meaning? Please document this
> > fully.
> >
>
> There are three values which control the amplitude, 13-15,3 and 1-2.
> They be used independently. Maybe it is good to expose three type ( 0:
> low; 1: middle; 2: high)to dts.
>
> Bit Symbol Access default Description
> 15:13 Tx_swing_sel RW 0x0 TX driver stage2 amplitude control
> 12 Tx_driver_stg1 RW 0x1 TX driver stage1 amplitude control
> 11 Reserved RO 0x0 Reserved
> 10:8 Tx_ckdiv10_con RW 0x0 tx divide by 10 clock delay control
> 7:4 Reserved RO 0x0 Reserved
> 3 Tx_post_stg1 RW 0x0 TX driver post stage1 amplitude control
> 2:1 Tx_de_sel RW 0x0 TX driver post stage2 amplitude control
> 0 Tx_pd RW 0x0 power down analog tx

It would be nice to add defines for the individual parts, and then
combine them to give YT8521_SAC2R_TX_AMPLITUDE_HIGH. We then have full
documentation of the hardware.

> >> +#define YT8531S_SAC2R_TX_AMPLITUDE_LOW ((0x0 << 13) | (0x0 << 1))
> >> +#define YT8531S_SAC2R_TX_AMPLITUDE_MIDDLE ((0x0 << 13) | (0x1 << 1))
> >> +#define YT8531S_SAC2R_TX_AMPLITUDE_HIGH ((0x0 << 13) | (0x2 << 1))
> >
> > This more sense, but why the 0 << 13? What do the bits 13-? mean?
>
> 0 << 13 means 13-15 bit all zero.
> bits 13- mans the start bit is 13.

Sorry, my question was unclear. Why do bits 13-14 need to be zero? It
suggests these bits have some meaning. But the defines do not explain
the meaning.

> >> + if (!of_property_read_u32(node, "motorcomm,rx-delay-additional-ps", &val)) {
> >> + if (val > YTPHY_DTS_MAX_DELAY_VAL) {
> >> + phydev_err(phydev, "invalid motorcomm,rx-delay-additional-ps\n");
> >> + return -EINVAL;
> >> + }
> >
> > Please check the value is also one of the supported values. Please do
> > that for all your delays.
> >
>
> The following code check the supported values.
>
> if (val)
> val /= YTPHY_DTS_STEP_DELAY_VAL;
> priv->rx_delay_additional = val;

It does not check it is a supported value. Say DT contained 42? That
is not a supported value. the /= YTPHY_DTS_STEP_DELAY_VAL will
calculate 0, which is the nearest rounded down value, but it will not
return -EINVAL.

> rx-delay-additional-ps = reg_val(0-15) *150ps. so val >
> YTPHY_DTS_MAX_DELAY_VAL 2250 is err.
> rx_delay_additional is store the reg_val (0-15).
>
> >> + if (of_property_read_bool(node, "motorcomm,keep-pll-enabled"))
> >> + priv->keep_pll_enabled = true;
> >
> > I think this only makes sense when priv->clock_output is true? Please
> > test for that.
> >
>
> No,priv->clock_output is used to output 25Mhz or 125Mhz for mac.
> priv->keep_pll_enabled is used to enable RXC clock when no wire plug.

So if priv->clock_output is set to 25MHz, it will always output 25Mhz,
independent of if there is a link peer or not?

Sometimes this clock is the recovered clock from the line, and if
there is no link peer, there is no recovered clock. In order to keep
this clock ticking, you need to keep the PLL locked by supplying it
from the local oscillator. I'm just trying to understand if that is
what is happening here. But you say it is completely independent. O.K.

Andrew

\
 
 \ /
  Last update: 2023-03-26 23:29    [W:0.050 / U:0.308 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site