U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Julien Masson <jmasson@baylibre.com>
To: u-boot@lists.denx.de
Cc: GSS_MTK_Uboot_upstream <GSS_MTK_Uboot_upstream@mediatek.com>,
	Chunfeng Yun <chunfeng.yun@mediatek.com>,
	Weijie Gao <weijie.gao@mediatek.com>,
	Ryder Lee <ryder.lee@mediatek.com>,
	Sean Anderson <seanga2@gmail.com>,
	Lukasz Majewski <lukma@denx.de>,
	Vitor Sato Eschholz <vsatoes@baylibre.com>,
	Mattijs Korpershoek <mkorpershoek@baylibre.com>
Subject: [PATCH 0/6] Add support for MediaTek MT8365 EVK Board
Date: Mon,  4 Dec 2023 11:48:49 +0100	[thread overview]
Message-ID: <87plzm450u.fsf@baylibre.com> (raw)

This patch series add the support for the MediaTek MT8365 EVK Board [1].
Most of the code have been copied/adapted from Linux tag v6.7-rc2.

For now we only enable/test these features:
Boot, UART, Watchdog and MMC.

[1] https://www.mediatek.com/products/iot-genio/mediatek-genio-350-evk

Julien Masson (6):
  dt-bindings: clock: add Mediatek MT8365 SoC clock bindings
  clk: mediatek: add clock driver support for MediaTek MT8365 SoC
  dt-bindings: power: add power-domain header for MediaTek MT8365 SoC
  arm: mediatek: add support for MediaTek MT8365 SoC
  dt-bindings: clock: add Mediatek MT8365 pinctrl bindings
  board: mediatek: add MT8365 EVK board support

 MAINTAINERS                                   |   2 +
 arch/arm/dts/mt6357.dtsi                      | 282 ++++++
 arch/arm/dts/mt8365-evk.dts                   | 418 +++++++++
 arch/arm/dts/mt8365.dtsi                      | 840 +++++++++++++++++
 arch/arm/mach-mediatek/Kconfig                |   9 +
 arch/arm/mach-mediatek/Makefile               |   1 +
 arch/arm/mach-mediatek/mt8365/Makefile        |   3 +
 arch/arm/mach-mediatek/mt8365/init.c          |  51 ++
 board/mediatek/mt8365_evk/MAINTAINERS         |   6 +
 board/mediatek/mt8365_evk/Makefile            |   3 +
 board/mediatek/mt8365_evk/mt8365_evk.c        |  33 +
 configs/mt8365_evk_defconfig                  |  19 +
 drivers/clk/mediatek/Makefile                 |   1 +
 drivers/clk/mediatek/clk-mt8365.c             | 766 ++++++++++++++++
 include/configs/mt8365.h                      |  12 +
 .../dt-bindings/clock/mediatek,mt8365-clk.h   | 375 ++++++++
 include/dt-bindings/pinctrl/mt8365-pinfunc.h  | 858 ++++++++++++++++++
 .../dt-bindings/power/mediatek,mt8365-power.h |  19 +
 18 files changed, 3698 insertions(+)
 create mode 100644 arch/arm/dts/mt6357.dtsi
 create mode 100644 arch/arm/dts/mt8365-evk.dts
 create mode 100644 arch/arm/dts/mt8365.dtsi
 create mode 100644 arch/arm/mach-mediatek/mt8365/Makefile
 create mode 100644 arch/arm/mach-mediatek/mt8365/init.c
 create mode 100644 board/mediatek/mt8365_evk/MAINTAINERS
 create mode 100644 board/mediatek/mt8365_evk/Makefile
 create mode 100644 board/mediatek/mt8365_evk/mt8365_evk.c
 create mode 100644 configs/mt8365_evk_defconfig
 create mode 100644 drivers/clk/mediatek/clk-mt8365.c
 create mode 100644 include/configs/mt8365.h
 create mode 100644 include/dt-bindings/clock/mediatek,mt8365-clk.h
 create mode 100644 include/dt-bindings/pinctrl/mt8365-pinfunc.h
 create mode 100644 include/dt-bindings/power/mediatek,mt8365-power.h

-- 
2.43.0


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

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-04 10:48 Julien Masson [this message]
2023-12-04 10:48 ` [PATCH 1/6] dt-bindings: clock: add Mediatek MT8365 SoC clock bindings Julien Masson
2023-12-05 10:24   ` Mattijs Korpershoek
2023-12-04 10:48 ` [PATCH 2/6] clk: mediatek: add clock driver support for MediaTek MT8365 SoC Julien Masson
2023-12-05 10:38   ` Mattijs Korpershoek
2023-12-04 10:48 ` [PATCH 3/6] dt-bindings: power: add power-domain header " Julien Masson
2023-12-05 10:39   ` Mattijs Korpershoek
2023-12-04 10:48 ` [PATCH 4/6] arm: mediatek: add support " Julien Masson
2023-12-04 10:48 ` [PATCH 5/6] dt-bindings: clock: add Mediatek MT8365 pinctrl bindings Julien Masson
2023-12-04 10:48 ` [PATCH 6/6] board: mediatek: add MT8365 EVK board support Julien Masson
2023-12-19 17:46 ` [PATCH 0/6] Add support for MediaTek MT8365 EVK Board 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=87plzm450u.fsf@baylibre.com \
    --to=jmasson@baylibre.com \
    --cc=GSS_MTK_Uboot_upstream@mediatek.com \
    --cc=chunfeng.yun@mediatek.com \
    --cc=lukma@denx.de \
    --cc=mkorpershoek@baylibre.com \
    --cc=ryder.lee@mediatek.com \
    --cc=seanga2@gmail.com \
    --cc=u-boot@lists.denx.de \
    --cc=vsatoes@baylibre.com \
    --cc=weijie.gao@mediatek.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