All of lore.kernel.org
 help / color / mirror / Atom feed
From: Matthias Brugger <matthias.bgg@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 00/20] Add support for MediaTek SoCs - MT7623n / MT7629
Date: Tue, 2 Oct 2018 17:08:56 +0200	[thread overview]
Message-ID: <57f9c219-f3e0-4902-af2c-0f19eed125bf@gmail.com> (raw)
In-Reply-To: <cover.1538460580.git.ryder.lee@mediatek.com>



On 02/10/2018 08:13, Ryder Lee wrote:
> Hello,
> 
> This is first round (time) to add U-boot support for MediaTek SoCs (MT7623n and MT7629),
> and the most of the drivers are based on mainline Linux, like clock, timer, mmc, pinctrl,
> watchdog, power domain and DTS.  
> 
> The following are the major differences between Linux and U-boot:
> - modify the driver interface to adapt the U-boot DM framework.
> - remove unneeded DT nodes as they don't have proper drivers in U-boot yet.
> - just add the basic functions (step-by-step) so that we can monitor the size.
> - reuse ns16550.c but add a highspeed register for MediaTek UARTs.
> - add a whole new SNOR driver mtk_qspi.c which is based on SPI master-slave hierarchy.
> 
> Our current progress:
> The MT7623n (BananaPi R2) which has already supported in mainline Linux.
> - We can choice to boot from eMMC or SD card. (ROM -> MediaTek preloder -> U-boot ...)
> - MT7623n has an open development board called BananaPi R2 [1].
> 
> The MT7629 which has NOT supported in mainline Linux yet, but we will do it soon.
> - Boot from SNOR. (ROM -> (boot header parsing sequence) -> SPL -> U-boot ...)
> 
> [1] http://wiki.banana-pi.org/Banana_Pi_BPI-R2
> 
> Thanks,
> Ryder
> 
> Guochun Mao (1):
>   spi: mtk_qspi: add qspi driver for MT7629 SoC
> 
> Ryder Lee (16):
>   tools: MediaTek: add MTK boot header generation to mkimage
>   arm: MediaTek: add basic support for MT7629 boards
>   arm: dts: MediaTek: add MT7629 reference board support
>   arm: dts: MediaTek: add MT7623 Bananapi R2 board support
>   configs: MediaTek: add MT7629 reference board support
>   clk: MediaTek: add clock driver for MT7629 SoC.
>   clk: MediaTek: add clock driver for MT7623 SoC.
>   timer: MediaTek: add timer driver for MediaTek SoCs
>   watchdog: MediaTek: add watchdog driver for MediaTek SoCs
>   pinctrl: MediaTek: add pinctrl driver for MT7629 SoC
>   pinctrl: MediaTek: add pinctrl driver for MT7623 SoC
>   power domain: MediaTek: add power domain driver for MT7629 SoC
>   power domain: MediaTek: add power domain driver for MT7623 SoC
>   serial: 16550: allow the driver to support MediaTek serial
>   ram: MediaTek: add DDR3 driver for MT7629 SoC
>   MAINTAINERS: add an entry for MediaTek
> 
> Weijie Gao (3):
>   arm: MediaTek: add basic support for MT7623 boards
>   configs: MediaTek: add MT7623 Bananapi R2 board support
>   mmc: mtk-sd: add SD/MMC host controller driver for MT7623 SoC
> 

I tried the series on my bananapi-r2 and I was able to boot into the kernel:

Tested-by: Matthias Brugger <matthias.bgg@gmail.com>

      parent reply	other threads:[~2018-10-02 15:08 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-02  6:13 [U-Boot] [PATCH 00/20] Add support for MediaTek SoCs - MT7623n / MT7629 Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 01/20] tools: MediaTek: add MTK boot header generation to mkimage Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 02/20] arm: MediaTek: add basic support for MT7629 boards Ryder Lee
2018-10-02 14:29   ` Matthias Brugger
2018-10-02  6:13 ` [U-Boot] [PATCH 03/20] arm: MediaTek: add basic support for MT7623 boards Ryder Lee
2018-10-02 14:27   ` Matthias Brugger
2018-10-02 15:20     ` Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 04/20] arm: dts: MediaTek: add MT7629 reference board support Ryder Lee
2018-10-02 13:07   ` Matthias Brugger
2018-10-02 13:34     ` Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 05/20] arm: dts: MediaTek: add MT7623 Bananapi R2 " Ryder Lee
2018-10-02 13:10   ` Matthias Brugger
2018-10-02 13:36     ` Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 06/20] configs: MediaTek: add MT7629 reference " Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 07/20] configs: MediaTek: add MT7623 Bananapi R2 " Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 08/20] clk: MediaTek: add clock driver for MT7629 SoC Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 09/20] clk: MediaTek: add clock driver for MT7623 SoC Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 10/20] timer: MediaTek: add timer driver for MediaTek SoCs Ryder Lee
2018-10-02 14:20   ` Matthias Brugger
2018-10-02  6:13 ` [U-Boot] [PATCH 11/20] watchdog: MediaTek: add watchdog " Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 12/20] pinctrl: MediaTek: add pinctrl driver for MT7629 SoC Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 13/20] pinctrl: MediaTek: add pinctrl driver for MT7623 SoC Ryder Lee
2018-10-02 14:31   ` Matthias Brugger
2018-10-02  6:13 ` [U-Boot] [PATCH 14/20] power domain: MediaTek: add power domain driver for MT7629 SoC Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 15/20] power domain: MediaTek: add power domain driver for MT7623 SoC Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 16/20] serial: 16550: allow the driver to support MediaTek serial Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 17/20] ram: MediaTek: add DDR3 driver for MT7629 SoC Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 18/20] spi: mtk_qspi: add qspi " Ryder Lee
2018-10-04 16:01   ` Jagan Teki
2018-10-08 13:00     ` Guochun Mao
2018-10-11  6:03     ` Guochun Mao
2018-10-02  6:13 ` [U-Boot] [PATCH 19/20] mmc: mtk-sd: add SD/MMC host controller driver for MT7623 SoC Ryder Lee
2018-10-02  6:13 ` [U-Boot] [PATCH 20/20] MAINTAINERS: add an entry for MediaTek Ryder Lee
2018-10-02 15:08 ` Matthias Brugger [this message]

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=57f9c219-f3e0-4902-af2c-0f19eed125bf@gmail.com \
    --to=matthias.bgg@gmail.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.