All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ryder Lee <ryder.lee@mediatek.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 03/20] arm: MediaTek: add basic support for MT7623 boards
Date: Tue, 2 Oct 2018 23:20:31 +0800	[thread overview]
Message-ID: <1538493631.24429.1.camel@mtkswgap22> (raw)
In-Reply-To: <c0dfcd79-d877-a6d4-c5c4-e6df7a66e7d2@gmail.com>

     1. On Tue, 2018-10-02 at 16:27 +0200, Matthias Brugger wrote:
> mt7623_rfb
> 
> On 02/10/2018 08:13, Ryder Lee wrote:
> > From: Weijie Gao <weijie.gao@mediatek.com>
> > 
> > This adds a general board file based on MT7623 SoCs from MediaTek.
> > 
> > As this u-boot is loaded by preloader, there is no low level
> > initializtion codes.
> > 
> > Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
> > ---
> >  arch/arm/mach-mediatek/Kconfig                |  8 +++
> >  arch/arm/mach-mediatek/Makefile               |  1 +
> >  arch/arm/mach-mediatek/mt7623/Makefile        |  4 ++
> >  arch/arm/mach-mediatek/mt7623/init.c          | 53 ++++++++++++++
> >  arch/arm/mach-mediatek/mt7623/lowlevel_init.S | 22 ++++++
> >  arch/arm/mach-mediatek/mt7623/preloader.h     | 99 +++++++++++++++++++++++++++
> >  board/mediatek/mt7623/Kconfig                 | 13 ++++
> >  board/mediatek/mt7623/MAINTAINERS             |  7 ++
> >  board/mediatek/mt7623/Makefile                |  4 ++
> >  board/mediatek/mt7623/mt7623_rfb.c            | 16 +++++
> >  include/configs/mt7623.h                      | 66 ++++++++++++++++++
> >  11 files changed, 293 insertions(+)
> >  create mode 100644 arch/arm/mach-mediatek/mt7623/Makefile
> >  create mode 100644 arch/arm/mach-mediatek/mt7623/init.c
> >  create mode 100644 arch/arm/mach-mediatek/mt7623/lowlevel_init.S
> >  create mode 100644 arch/arm/mach-mediatek/mt7623/preloader.h
> >  create mode 100644 board/mediatek/mt7623/Kconfig
> >  create mode 100644 board/mediatek/mt7623/MAINTAINERS
> >  create mode 100644 board/mediatek/mt7623/Makefile
> >  create mode 100644 board/mediatek/mt7623/mt7623_rfb.c
> >  create mode 100644 include/configs/mt7623.h
> > 
> [...]
> > diff --git a/board/mediatek/mt7623/Makefile b/board/mediatek/mt7623/Makefile
> > new file mode 100644
> > index 0000000..8943111
> > --- /dev/null
> > +++ b/board/mediatek/mt7623/Makefile
> > @@ -0,0 +1,4 @@
> > +# SPDX-License-Identifier:	GPL-2.0+
> > +
> > +obj-y += mt7623_rfb.o
> > +
> 
> as we are with nitpicks:
> new blank line at EOF
> 

Will fix new blank line here and there.

Thanks,
Ryder

  reply	other threads:[~2018-10-02 15:20 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 [this message]
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 ` [U-Boot] [PATCH 00/20] Add support for MediaTek SoCs - MT7623n / MT7629 Matthias Brugger

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=1538493631.24429.1.camel@mtkswgap22 \
    --to=ryder.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 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.