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: [PATCH v2 0/8] Add support for MediaTek MT8512 Soc
Date: Tue, 31 Dec 2019 11:29:18 +0800	[thread overview]
Message-ID: <20191231032926.2194-1-mingming.lee@mediatek.com> (raw)

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

---
Changes for v2:
   - Sort device nodes reg address order and alphabetically.
   - Split the changes in mtk clk for 8512 into two patchs.
   - Delete fix patch for clock-rate overflow in mtk clk 
     since have been included in changelist 1207053

mingming lee (8):
  ARM: MediaTek: Add support for MediaTek MT8512 SoC
  clk: mediatek: add driver support for MT8512
  clk: mediatek: add set_clr_upd mux type flow
  clk: mediatek: add configurable pcw_chg_reg/ibits/fmin to mtk_pll
  pinctrl: mediatek:  add driver for MT8512
  mmc: mtk-sd: add support for MediaTek MT8512/MT8110 SoCs
  mmc: mtk-sd: fix hang when data read quickly
  ARM: MediaTek: add basic support for MT8512 boards

 arch/arm/dts/Makefile                         |   1 +
 arch/arm/dts/mt8512-bm1-emmc.dts              | 106 +++
 arch/arm/dts/mt8512.dtsi                      | 115 +++
 arch/arm/mach-mediatek/Kconfig                |  15 +
 arch/arm/mach-mediatek/Makefile               |   1 +
 arch/arm/mach-mediatek/mt8512/Makefile        |   4 +
 arch/arm/mach-mediatek/mt8512/init.c          |  78 ++
 arch/arm/mach-mediatek/mt8512/lowlevel_init.S |  32 +
 board/mediatek/mt8512/Kconfig                 |  14 +
 board/mediatek/mt8512/MAINTAINERS             |   6 +
 board/mediatek/mt8512/Makefile                |   3 +
 board/mediatek/mt8512/mt8512.c                |  19 +
 configs/mt8512_bm1_emmc_defconfig             |  44 +
 drivers/clk/mediatek/Makefile                 |   1 +
 drivers/clk/mediatek/clk-mt8512.c             | 873 ++++++++++++++++++
 drivers/clk/mediatek/clk-mtk.c                |  68 +-
 drivers/clk/mediatek/clk-mtk.h                |  26 +
 drivers/mmc/mtk-sd.c                          | 140 ++-
 drivers/pinctrl/mediatek/Kconfig              |   4 +
 drivers/pinctrl/mediatek/Makefile             |   1 +
 drivers/pinctrl/mediatek/pinctrl-mt8512.c     | 387 ++++++++
 include/configs/mt8512.h                      |  60 ++
 include/dt-bindings/clock/mt8512-clk.h        | 197 ++++
 23 files changed, 2138 insertions(+), 57 deletions(-)
 create mode 100644 arch/arm/dts/mt8512-bm1-emmc.dts
 create mode 100644 arch/arm/dts/mt8512.dtsi
 create mode 100644 arch/arm/mach-mediatek/mt8512/Makefile
 create mode 100644 arch/arm/mach-mediatek/mt8512/init.c
 create mode 100644 arch/arm/mach-mediatek/mt8512/lowlevel_init.S
 create mode 100644 board/mediatek/mt8512/Kconfig
 create mode 100644 board/mediatek/mt8512/MAINTAINERS
 create mode 100644 board/mediatek/mt8512/Makefile
 create mode 100644 board/mediatek/mt8512/mt8512.c
 create mode 100644 configs/mt8512_bm1_emmc_defconfig
 create mode 100644 drivers/clk/mediatek/clk-mt8512.c
 create mode 100644 drivers/pinctrl/mediatek/pinctrl-mt8512.c
 create mode 100644 include/configs/mt8512.h
 create mode 100644 include/dt-bindings/clock/mt8512-clk.h

-- 
2.24.1

             reply	other threads:[~2019-12-31  3:29 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-31  3:29 mingming lee [this message]
2019-12-31  3:29 ` [PATCH v2 1/8] ARM: MediaTek: Add support for MediaTek MT8512 SoC mingming lee
2020-01-16 14:41   ` Tom Rini
2019-12-31  3:29 ` [PATCH v2 2/8] clk: mediatek: add driver support for MT8512 mingming lee
2020-01-16 14:41   ` Tom Rini
2019-12-31  3:29 ` [PATCH v2 3/8] clk: mediatek: add set_clr_upd mux type flow mingming lee
2020-01-16 14:41   ` Tom Rini
2019-12-31  3:29 ` [PATCH v2 4/8] clk: mediatek: add configurable pcw_chg_reg/ibits/fmin to mtk_pll mingming lee
2020-01-16 14:41   ` Tom Rini
2020-01-16 14:41   ` Tom Rini
2019-12-31  3:29 ` [PATCH v2 5/8] pinctrl: mediatek: add driver for MT8512 mingming lee
2020-01-16 14:41   ` Tom Rini
2019-12-31  3:29 ` [PATCH v2 6/8] mmc: mtk-sd: add support for MediaTek MT8512/MT8110 SoCs mingming lee
2020-01-16 14:41   ` Tom Rini
2019-12-31  3:29 ` [PATCH v2 7/8] mmc: mtk-sd: fix hang when data read quickly mingming lee
2020-01-16 14:41   ` Tom Rini
2019-12-31  3:29 ` [PATCH v2 8/8] ARM: MediaTek: add basic support for MT8512 boards mingming lee
2020-01-16 14:41   ` 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=20191231032926.2194-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