All of lore.kernel.org
 help / color / mirror / Atom feed
From: Weijie Gao <weijie.gao@mediatek.com>
To: <u-boot@lists.denx.de>
Cc: GSS_MTK_Uboot_upstream <GSS_MTK_Uboot_upstream@mediatek.com>,
	Joe Hershberger <joe.hershberger@ni.com>,
	Ramon Fried <rfried.dev@gmail.com>, Tom Rini <trini@konsulko.com>,
	Weijie Gao <weijie.gao@mediatek.com>
Subject: [PATCH 0/3] MediaTek ethernet driver refactor and updates
Date: Fri, 10 Jan 2025 16:41:05 +0800	[thread overview]
Message-ID: <cover.1736498083.git.weijie.gao@mediatek.com> (raw)

This patch series will split the switch initialization code from mtk_eth
driver into their own files and then add new SoC and switch support.

Weijie Gao (3):
  net: mediatek: split ethernet switch code from mtk_eth.c
  net: mediatek: add support for MediaTek MT7987 SoC
  net: mediatek: add support for Airoha AN8855 ethernet switch

 drivers/net/Kconfig                 |   21 +-
 drivers/net/Makefile                |    2 +-
 drivers/net/mtk_eth/Kconfig         |   39 +
 drivers/net/mtk_eth/Makefile        |   10 +
 drivers/net/mtk_eth/an8855.c        | 1096 +++++++++++++++++++++++++++
 drivers/net/mtk_eth/mt7530.c        |  281 +++++++
 drivers/net/mtk_eth/mt7531.c        |  293 +++++++
 drivers/net/mtk_eth/mt753x.c        |  262 +++++++
 drivers/net/mtk_eth/mt753x.h        |  286 +++++++
 drivers/net/mtk_eth/mt7988.c        |  160 ++++
 drivers/net/{ => mtk_eth}/mtk_eth.c |  981 ++++--------------------
 drivers/net/{ => mtk_eth}/mtk_eth.h |  301 ++------
 12 files changed, 2631 insertions(+), 1101 deletions(-)
 create mode 100644 drivers/net/mtk_eth/Kconfig
 create mode 100644 drivers/net/mtk_eth/Makefile
 create mode 100644 drivers/net/mtk_eth/an8855.c
 create mode 100644 drivers/net/mtk_eth/mt7530.c
 create mode 100644 drivers/net/mtk_eth/mt7531.c
 create mode 100644 drivers/net/mtk_eth/mt753x.c
 create mode 100644 drivers/net/mtk_eth/mt753x.h
 create mode 100644 drivers/net/mtk_eth/mt7988.c
 rename drivers/net/{ => mtk_eth}/mtk_eth.c (62%)
 rename drivers/net/{ => mtk_eth}/mtk_eth.h (59%)

-- 
2.34.1


             reply	other threads:[~2025-01-10  8:41 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-10  8:41 Weijie Gao [this message]
2025-01-10  8:41 ` [PATCH 1/3] net: mediatek: split ethernet switch code from mtk_eth.c Weijie Gao
2025-01-10  8:41 ` [PATCH 2/3] net: mediatek: add support for MediaTek MT7987 SoC Weijie Gao
2025-01-10  8:41 ` [PATCH 3/3] net: mediatek: add support for Airoha AN8855 ethernet switch Weijie Gao
2025-01-24  4:36 ` [PATCH 0/3] MediaTek ethernet driver refactor and updates Tom Rini

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.1736498083.git.weijie.gao@mediatek.com \
    --to=weijie.gao@mediatek.com \
    --cc=GSS_MTK_Uboot_upstream@mediatek.com \
    --cc=joe.hershberger@ni.com \
    --cc=rfried.dev@gmail.com \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    /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.