public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: mingming lee <mingming.lee@mediatek.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 0/5] Add support for MediaTek MT8518 Soc
Date: Thu, 7 Nov 2019 19:28:39 +0800	[thread overview]
Message-ID: <20191107112844.25441-1-mingming.lee@mediatek.com> (raw)

This patch series adds basic boot support on eMMC for the MediaTek
MT8518 SoC based boards. This series add the clock, pinctrl drivers
and the SoC initializaton code.

---

Changes for v3:
   - Fix top clock register definition which cause unused warning.
   - Change hs400 to hs200 since the dts is hs200
   - Fixed all build warnings using gcc version 740

Changes for v2:
   - Fixed issues in v1: drop unused 'devices',delete no need code
     and print debug log using debug()
   - Delete unnecessary configs in defconfig
   - Adjust the mmc tuning flow to support HS400

mingming lee (5):
  ARM: MediaTek: Add support for MediaTek MT8518 SoC
  clk: mediatek: add driver for MT8518
  mmc: mtk-sd: Adjust the mmc tuning flow
  pinctrl: add driver for MT8518
  ARM: MediaTek: add basic support for MT8518 boards

 arch/arm/dts/Makefile                         |    3 +-
 arch/arm/dts/mt8518-ap1-emmc.dts              |  104 ++
 arch/arm/dts/mt8518.dtsi                      |   98 ++
 arch/arm/mach-mediatek/Kconfig                |   10 +
 arch/arm/mach-mediatek/Makefile               |    1 +
 arch/arm/mach-mediatek/mt8518/Makefile        |    4 +
 arch/arm/mach-mediatek/mt8518/init.c          |   71 +
 arch/arm/mach-mediatek/mt8518/lowlevel_init.S |   32 +
 board/mediatek/mt8518/Kconfig                 |   14 +
 board/mediatek/mt8518/MAINTAINERS             |    6 +
 board/mediatek/mt8518/Makefile                |    3 +
 board/mediatek/mt8518/mt8518_ap1.c            |   18 +
 configs/mt8518_ap1_emmc_defconfig             |   41 +
 drivers/clk/mediatek/Makefile                 |    1 +
 drivers/clk/mediatek/clk-mt8518.c             | 1558 +++++++++++++++++
 drivers/mmc/mtk-sd.c                          |  209 ++-
 drivers/pinctrl/mediatek/Kconfig              |    4 +
 drivers/pinctrl/mediatek/Makefile             |    1 +
 drivers/pinctrl/mediatek/pinctrl-mt8518.c     |  411 +++++
 include/configs/mt8518.h                      |   68 +
 include/dt-bindings/clock/mt8518-clk.h        |  249 +++
 21 files changed, 2889 insertions(+), 17 deletions(-)
 create mode 100644 arch/arm/dts/mt8518-ap1-emmc.dts
 create mode 100644 arch/arm/dts/mt8518.dtsi
 create mode 100644 arch/arm/mach-mediatek/mt8518/Makefile
 create mode 100644 arch/arm/mach-mediatek/mt8518/init.c
 create mode 100644 arch/arm/mach-mediatek/mt8518/lowlevel_init.S
 create mode 100644 board/mediatek/mt8518/Kconfig
 create mode 100644 board/mediatek/mt8518/MAINTAINERS
 create mode 100644 board/mediatek/mt8518/Makefile
 create mode 100644 board/mediatek/mt8518/mt8518_ap1.c
 create mode 100644 configs/mt8518_ap1_emmc_defconfig
 create mode 100644 drivers/clk/mediatek/clk-mt8518.c
 create mode 100644 drivers/pinctrl/mediatek/pinctrl-mt8518.c
 create mode 100644 include/configs/mt8518.h
 create mode 100644 include/dt-bindings/clock/mt8518-clk.h

-- 
2.23.0

             reply	other threads:[~2019-11-07 11:28 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-07 11:28 mingming lee [this message]
2019-11-07 11:28 ` [U-Boot] [PATCH v3 1/5] ARM: MediaTek: Add support for MediaTek MT8518 SoC mingming lee
2019-12-04  4:00   ` Tom Rini
2019-11-07 11:28 ` [U-Boot] [PATCH v3 2/5] clk: mediatek: add driver for MT8518 mingming lee
2019-12-04  4:00   ` Tom Rini
2019-11-07 11:28 ` [U-Boot] [PATCH v3 3/5] mmc: mtk-sd: Adjust the mmc tuning flow mingming lee
2019-12-04  4:00   ` Tom Rini
2019-11-07 11:28 ` [U-Boot] [PATCH v3 4/5] pinctrl: add driver for MT8518 mingming lee
2019-12-04  4:00   ` Tom Rini
2019-11-07 11:28 ` [U-Boot] [PATCH v3 5/5] ARM: MediaTek: add basic support for MT8518 boards mingming lee
2019-12-04  4:00   ` 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=20191107112844.25441-1-mingming.lee@mediatek.com \
    --to=mingming.lee@mediatek.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox