From: Alexander Dahl <ada@thorsis.com>
To: Nicolas Ferre <nicolas.ferre@microchip.com>
Cc: netdev@vger.kernel.org,
Harini Katakam <harini.katakam@xilinx.com>,
u-boot@lists.denx.de, Bo Shen <voice.shen@atmel.com>,
Rafal Ozieblo <rafalo@cadence.com>,
Claudiu Beznea <claudiu.beznea@microchip.com>
Subject: macb: MID register on SAMA5D2 series?
Date: Fri, 22 Mar 2019 11:49:54 +0100 [thread overview]
Message-ID: <1836694.YYIscaEoiJ@ada> (raw)
Hei hei,
while bringing up support for a new SAMA5D27 based board I noticed something
strange in the macb driver in both U-Boot and Linux. There's a function in
both to determine if or not the IP block in the SoC is the gigabit variant,
commonly refered to as GEM.
The function in U-Boot:
static int macb_is_gem(struct macb_device *macb)
{
return MACB_BFEXT(IDNUM, macb_readl(macb, MID)) >= 0x2;
}
And in Linux:
static bool hw_is_gem(void __iomem *addr, bool native_io)
{
u32 id;
if (native_io)
id = __raw_readl(addr + MACB_MID);
else
id = readl_relaxed(addr + MACB_MID);
return MACB_BFEXT(IDNUM, id) >= 0x2;
}
In both cases a register MID is read, in both cases that has an offset of
0x00fc.
#define MACB_MID 0x00fc
I studied the register layouts in the datasheets for AT91SAM9G20, SAMA5D2
series, SAMA5D3 series, and SAMA5D4 series. In all but SAMA5D2, offset 0x00fc
is marked as reserved for both EMAC and GMAC variants.
SAMA5D2 however has a register GMAC_EFTSH (GMAC PTP Event Frame Transmitted
Seconds High Register) at this offset. Because the check for SAMA5D2 is broken
in U-Boot since v2017.09-111-g245cbc583d (I will send a patch for that today),
I got some weird behaviour with our new SAMA5D27 based board. While the
SAMA5D27-SOM1-EK worked fine in U-Boot, our board did not, but reported
Gigabit Speed on the ethernet link, which is neither supported by SAMA5D2 nor
by the ethernet PHY (LAN8720A).
I suppose the register content at that offset on that SoC, just does not give
that MID? That would be in line with the SAMA5D2 datasheet, and the detection
on those SoCs currently works or does not only by chance in U-Boot? However
that register offset was introduced in both U-Boot and Linux long time ago,
back in 2011 or 2012, so maybe that IP block looks somewhat different on non
Atmel/Microchip SoCs?
Is there some secret meaning to that register offset, not documented in all
those Atmel/Microchip datasheets? Or is that check just wrong on those
platforms and nobody noticed yet?
I would care to send patches, but I would like to get an idea first on what is
supposed to be in that register. At least I'd like to get the behaviour for
SAMA5D27 fixed, and would be happy for advice on that. If someone else wants
to step in, I would happily test it. ;-)
Sorry if I put anyone on Cc, who is not involved in that macb drivers anymore.
The get-maintainer scripts on both Linux and U-Boot don't return a maintainer,
so I got some people from the last commits on each. O:-)
Curious greetings
Alex
next reply other threads:[~2019-03-22 10:58 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-22 10:49 Alexander Dahl [this message]
2019-03-22 11:10 ` macb: MID register on SAMA5D2 series? Harini Katakam
2019-03-22 14:58 ` Nicolas.Ferre
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=1836694.YYIscaEoiJ@ada \
--to=ada@thorsis.com \
--cc=claudiu.beznea@microchip.com \
--cc=harini.katakam@xilinx.com \
--cc=netdev@vger.kernel.org \
--cc=nicolas.ferre@microchip.com \
--cc=rafalo@cadence.com \
--cc=u-boot@lists.denx.de \
--cc=voice.shen@atmel.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox