public inbox for netdev@vger.kernel.org 
 help / color / mirror / Atom feed
From: Yanteng Si <siyanteng@loongson•cn>
To: andrew@lunn•ch, hkallweit1@gmail•com, peppe.cavallaro@st•com,
	alexandre.torgue@foss•st.com, joabreu@synopsys•com
Cc: Yanteng Si <siyanteng@loongson•cn>,
	fancer.lancer@gmail•com, Jose.Abreu@synopsys•com,
	chenhuacai@loongson•cn, linux@armlinux•org.uk,
	guyinggang@loongson•cn, netdev@vger•kernel.org,
	loongarch@lists•linux.dev, chris.chenfeiyang@gmail•com
Subject: [PATCH v6 0/9] stmmac: Add Loongson platform support
Date: Wed, 13 Dec 2023 18:12:22 +0800	[thread overview]
Message-ID: <cover.1702458672.git.siyanteng@loongson.cn> (raw)

v6:

* Refer to Serge's suggestion:
  - Add new platform feature flag:
    include/linux/stmmac.h:
    +#define STMMAC_FLAG_HAS_LGMAC			BIT(13)

  - Add the IRQs macros specific to the Loongson Multi-channels GMAC:
     drivers/net/ethernet/stmicro/stmmac/dwmac_dma.h:
     +#define DMA_INTR_ENA_NIE_LOONGSON 0x00060000	/* Normal Loongson Tx/Rx Summary */
     #define DMA_INTR_ENA_NIE 0x00010000	/* Normal Summary */
     ...

  - Drop all of redundant changes that don't require the
    prototypes being converted to accepting the stmmac_priv
    pointer.

* Refer to andrew's suggestion:
  - Drop white space changes.
  - break patch up into lots of smaller parts.
     Some small patches have been put into another series as a preparation
     see <https://lore.kernel.org/loongarch/cover.1702289232.git.siyanteng@loongson.cn/T/#t>
     
     *note* : This series of patches relies on the three small patches above.
* others
  - Drop irq_flags changes.
  - Changed patch order.



v4 -> v5:

* Remove an ugly and useless patch (fix channel number).
* Remove the non-standard dma64 driver code, and also remove
  the HWIF entries, since the associated custom callbacks no
  longer exist.
* Refer to Serge's suggestion: Update the dwmac1000_dma.c to
  support the multi-DMA-channels controller setup.

See:
v4: <https://lore.kernel.org/loongarch/cover.1692696115.git.chenfeiyang@loongson.cn/>
v3: <https://lore.kernel.org/loongarch/cover.1691047285.git.chenfeiyang@loongson.cn/>
v2: <https://lore.kernel.org/loongarch/cover.1690439335.git.chenfeiyang@loongson.cn/>
v1: <https://lore.kernel.org/loongarch/cover.1689215889.git.chenfeiyang@loongson.cn/>

Yanteng Si (9):
  net: stmmac: Pass stmmac_priv and chan in some callbacks
  net: stmmac: dwmac-loongson: Refactor code for loongson_dwmac_probe()
  net: stmmac: dwmac-loongson: Add full PCI support
  net: stmmac: Add multi-channel supports
  net: stmmac: Add Loongson-specific register definitions
  net: stmmac: dwmac-loongson: Add MSI support
  net: stmmac: dwmac-loongson: Add GNET support
  net: stmmac: dwmac-loongson: Disable flow control for GMAC
  net: stmmac: Disable coe for some Loongson GNET

 drivers/net/ethernet/stmicro/stmmac/common.h  |   1 +
 .../ethernet/stmicro/stmmac/dwmac-loongson.c  | 296 ++++++++++++++----
 .../net/ethernet/stmicro/stmmac/dwmac-sun8i.c |   2 +-
 .../ethernet/stmicro/stmmac/dwmac1000_dma.c   |  61 +++-
 .../ethernet/stmicro/stmmac/dwmac100_dma.c    |   2 +-
 .../net/ethernet/stmicro/stmmac/dwmac4_dma.c  |   2 +-
 .../net/ethernet/stmicro/stmmac/dwmac_dma.h   |  47 ++-
 .../net/ethernet/stmicro/stmmac/dwmac_lib.c   |  65 ++--
 .../ethernet/stmicro/stmmac/dwxgmac2_dma.c    |   2 +-
 drivers/net/ethernet/stmicro/stmmac/hwif.c    |   8 +-
 drivers/net/ethernet/stmicro/stmmac/hwif.h    |  11 +-
 .../ethernet/stmicro/stmmac/stmmac_ethtool.c  |   6 +
 .../net/ethernet/stmicro/stmmac/stmmac_main.c |  13 +-
 include/linux/stmmac.h                        |   4 +
 14 files changed, 413 insertions(+), 107 deletions(-)

-- 
2.31.4


             reply	other threads:[~2023-12-13 10:12 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-13 10:12 Yanteng Si [this message]
2023-12-13 10:12 ` [PATCH v6 1/9] net: stmmac: Pass stmmac_priv and chan in some callbacks Yanteng Si
2023-12-16 13:01   ` Andrew Lunn
2023-12-18 10:09     ` Yanteng Si
2023-12-13 10:12 ` [PATCH v6 2/9] net: stmmac: dwmac-loongson: Refactor code for loongson_dwmac_probe() Yanteng Si
2023-12-13 10:12 ` [PATCH v6 3/9] net: stmmac: dwmac-loongson: Add full PCI support Yanteng Si
2023-12-13 10:14 ` [PATCH v6 4/9] net: stmmac: Add multi-channel supports Yanteng Si
2023-12-13 10:14 ` [PATCH v6 5/9] net: stmmac: Add Loongson-specific register definitions Yanteng Si
2023-12-16 15:47   ` Andrew Lunn
2023-12-18 10:22     ` Yanteng Si
2023-12-18 15:28       ` Andrew Lunn
2023-12-19 12:30         ` Yanteng Si
2023-12-13 10:14 ` [PATCH v6 6/9] net: stmmac: dwmac-loongson: Add MSI support Yanteng Si
2023-12-13 10:15 ` [PATCH v6 7/9] net: stmmac: dwmac-loongson: Add GNET support Yanteng Si
2023-12-13 10:15 ` [PATCH v6 8/9] net: stmmac: dwmac-loongson: Disable flow control for GMAC Yanteng Si
2023-12-13 10:15 ` [PATCH v6 9/9] net: stmmac: Disable coe for some Loongson GNET Yanteng Si
2023-12-14 15:15 ` [PATCH v6 0/9] stmmac: Add Loongson platform support Serge Semin
2023-12-19 12:35   ` Yanteng Si
2023-12-19 12:55     ` Serge Semin
2023-12-14 19:09 ` Jakub Kicinski
2023-12-14 19:09   ` Jakub Kicinski

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=cover.1702458672.git.siyanteng@loongson.cn \
    --to=siyanteng@loongson$(echo .)cn \
    --cc=Jose.Abreu@synopsys$(echo .)com \
    --cc=alexandre.torgue@foss$(echo .)st.com \
    --cc=andrew@lunn$(echo .)ch \
    --cc=chenhuacai@loongson$(echo .)cn \
    --cc=chris.chenfeiyang@gmail$(echo .)com \
    --cc=fancer.lancer@gmail$(echo .)com \
    --cc=guyinggang@loongson$(echo .)cn \
    --cc=hkallweit1@gmail$(echo .)com \
    --cc=joabreu@synopsys$(echo .)com \
    --cc=linux@armlinux$(echo .)org.uk \
    --cc=loongarch@lists$(echo .)linux.dev \
    --cc=netdev@vger$(echo .)kernel.org \
    --cc=peppe.cavallaro@st$(echo .)com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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