From: ingrassia@epigenesys.com (Emiliano Ingrassia)
To: linus-amlogic@lists.infradead.org
Subject: [PATCH 2/4] ARM: dts: meson8b: extending ethernet controller description
Date: Fri, 29 Sep 2017 21:10:21 +0200 [thread overview]
Message-ID: <20170929191021.GA20840@ingrassia.epigenesys.com> (raw)
In-Reply-To: <CAFBinCAwn7mz8LWMmF4cvYTWz_v6dDCQBGOu-1iU6+AOd+nbrA@mail.gmail.com>
Hi Martin,
thanks for the review!
On Thu, Sep 28, 2017 at 11:41:48PM +0200, Martin Blumenstingl wrote:
> Hi Emiliano,
>
> On Wed, Sep 27, 2017 at 11:39 PM, Emiliano Ingrassia
> <ingrassia@epigenesys.com> wrote:
> > This patch adds ethernet controller pin description and extend its
> > attributes in the relative node.
> >
> > Signed-off-by: Emiliano Ingrassia <ingrassia@epigenesys.com>
> > ---
> >
> > This patch corrects the meson8b-dwmac reg attributes updated by the previous
> > 2/4 patch (450a483abe07f8d903c6cb74091592743975a8eb).
> > The second addresses range, taken from S805 (aka Meson8b) SoC manual,
> > was not correct.
> >
> > Please, apply this patch and discard the previous
> > (450a483abe07f8d903c6cb74091592743975a8eb).
> >
> > arch/arm/boot/dts/meson8b.dtsi | 40 ++++++++++++++++++++++++++++++++++++++--
> > 1 file changed, 38 insertions(+), 2 deletions(-)
> >
> > diff --git a/arch/arm/boot/dts/meson8b.dtsi b/arch/arm/boot/dts/meson8b.dtsi
> > index bc278da7df0d..816bc9188f44 100644
> > --- a/arch/arm/boot/dts/meson8b.dtsi
> > +++ b/arch/arm/boot/dts/meson8b.dtsi
> > @@ -154,12 +154,48 @@
> > #gpio-cells = <2>;
> > gpio-ranges = <&pinctrl_cbus 0 0 130>;
> > };
> > +
> > + eth_rgmii_pins: eth-rgmii {
> > + mux {
> > + groups = "eth_tx_clk",
> > + "eth_tx_en",
> > + "eth_txd1_0",
> > + "eth_txd1_1",
> > + "eth_txd0_0",
> > + "eth_txd0_1",
> > + "eth_rx_clk",
> > + "eth_rx_dv",
> > + "eth_rxd1",
> > + "eth_rxd0",
> > + "eth_mdio_en",
> > + "eth_mdc",
> > + "eth_ref_clk",
> > + "eth_txd2",
> > + "eth_txd3";
> > + function = "ethernet";
> > + };
> > + };
> > };
> > };
> >
> > ðmac {
> > - clocks = <&clkc CLKID_ETH>;
> > - clock-names = "stmmaceth";
> > + compatible = "amlogic,meson8b-dwmac", "snps,dwmac-3.70a", "snps,dwmac";
> without a reg property this passes 0xc1108108 (as defined in
> meson.dtsi) to the meson8b-dwmac driver.
> are you sure that this shouldn't be 0xc1108140 (like in your initial patch)?
> 0xc1108108 translates to 0x2050 (calculation formula: (0xc1108108 -
> cbus base addr 0xc1100000) / 4) which is used in Amlogic's u-boot
> sources, for example [0]
>
Yes, I know. This was the intention.
> currently the meson8b-dwmac driver is writing to the old register
> location which probably does nothing.
Actually, changing the second addresses range from 0xc1108108 to
0xc1108140 leads to an unusable ethernet controller.
> if above statement is true then you are relying on the bootloader to
> set up 0xc1108140 correctly.
OK, sure this is bad! Those addresses are documented in S805 SoC manual
and we should set up them correctly.
However, checking the Odroid-C2 device tree I couldn't find
the PRG_ETHERNET_ADDR{0,1} addresses, which are documented in S905 SoC
manual.
Probably I'm missing something, but don't we have the same situation on
that board?
> the reason why I wrote this meson8b-dwmac driver is because I had a
> GXBB board with RGMII PHY but u-boot configured the register to RMII
> mode -> ethernet wasn't working.
Meson8b refers to S805 SoC while GXBB should refer to S905 SoC.
At first look it seemed to me that dwmac-meson8b driver correctly
support dwmac on Meson8b or we should extend the driver to better
support it?
> you could verify this by zeroing both (0xc1108108 and 0xc1108140) in
> u-boot or at the start of the meson8b-dwmac driver and see if ethernet
> still works for you
>
I'll check it.
> > +
> > + interrupts = <GIC_SPI 8 IRQ_TYPE_EDGE_RISING>,
> > + <GIC_SPI 14 IRQ_TYPE_EDGE_RISING>;
> > + interrupt-names = "macirq",
> > + "eth_lpi";
> did you receive one of the eth_lpi interrupts? if it works for you
> then we should try to add this to meson-gx.dtsi as well
> I also wonder if we should configure it in meson8b.dtsi or meson.dtsi
>
Needs more testing.
> > +
> > + clock-names = "stmmaceth", "clkin0", "clkin1";
> > + clocks = <&clkc CLKID_ETH>,
> > + <&clkc CLKID_FCLK_DIV2>,
> > + <&clkc CLKID_MPLL2>;
> > +
> > + resets = <&reset RESET_ETHERNET>;
> > + reset-names = "stmmaceth";
> I'm not sure if this works:
> our reset controller implements a reset pulse (write bit, IP block
> executes a reset and clears the bit again)
> stmmac on the other hand manually asserts and deasserts the reset line
> (which is not implemented by our reset driver), see [1]
>
OK, I'll check and eventually fix this.
> > +
> > + rx-fifo-depth=<4000>;
> > + tx-fifo-depth=<2000>;
> could you please add spaces around "=" and some info to the commit
> message why this is necessary and where you got these values from
>
Those are optional attributes documented in
Documentation/devicetree/bindings/net/stmmac.txt.
The values were taken from S805 SoC manual, ch. 22 (ETHERNET MAC).
> > };
> >
> > &hwrng {
> > --
> > 2.14.1
> >
> >
> > _______________________________________________
> > linux-amlogic mailing list
> > linux-amlogic at lists.infradead.org
> > http://lists.infradead.org/mailman/listinfo/linux-amlogic
>
> looking forward to proper ethernet support on Meson8/Meson8b!
>
OK, thanks for your suggestions!
>
> Regards,
> Martin
>
Regards,
Emiliano
>
> [0] https://github.com/hardkernel/u-boot/blob/odroidc-v2011.03/board/hardkernel/odroidc/odroidc-eth.c#L29
> [1] https://github.com/torvalds/linux/blob/master/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c#L4123
next prev parent reply other threads:[~2017-09-29 19:10 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-27 10:39 [PATCH 0/4] meson8b-odroidc1: ethernet support Emiliano Ingrassia
2017-09-27 10:40 ` [PATCH 1/4] clk: meson8b: keep mpll2 clock enabled Emiliano Ingrassia
2017-09-28 7:11 ` Jerome Brunet
2017-09-28 9:59 ` Emiliano Ingrassia
2017-09-28 15:08 ` Jerome Brunet
2017-09-28 21:29 ` Martin Blumenstingl
2017-09-30 17:08 ` Emiliano Ingrassia
2017-09-27 10:40 ` [PATCH 2/4] ARM: dts: meson8b: extending ethernet controller description Emiliano Ingrassia
2017-09-27 10:41 ` [PATCH 3/4] ARM: dts: meson8b-odroidc1: enabling ethernet support Emiliano Ingrassia
2017-09-27 10:46 ` [PATCH 4/4] net: stmmac: fixing DMA reset sleep and timeout values Emiliano Ingrassia
2017-09-27 21:39 ` [PATCH 2/4] ARM: dts: meson8b: extending ethernet controller description Emiliano Ingrassia
2017-09-28 2:23 ` Linus Lüssing
2017-09-28 10:31 ` Emiliano Ingrassia
2017-09-28 21:41 ` Martin Blumenstingl
2017-09-29 19:10 ` Emiliano Ingrassia [this message]
2017-09-30 14:09 ` Martin Blumenstingl
2017-11-21 15:36 ` Emiliano Ingrassia
2017-11-26 21:02 ` Martin Blumenstingl
2017-11-26 21:58 ` Martin Blumenstingl
2017-12-04 22:37 ` Emiliano Ingrassia
2017-12-16 23:39 ` Martin Blumenstingl
2017-12-18 20:07 ` Emiliano Ingrassia
2017-10-02 19:54 ` [PATCH 0/4] meson8b-odroidc1: ethernet support Linus Lüssing
2017-10-06 8:10 ` Emiliano Ingrassia
2017-11-21 11:57 ` Linus Lüssing
2017-11-21 15:40 ` Emiliano Ingrassia
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=20170929191021.GA20840@ingrassia.epigenesys.com \
--to=ingrassia@epigenesys.com \
--cc=linus-amlogic@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®