From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ryder Lee Date: Thu, 25 Oct 2018 14:40:06 +0800 Subject: [U-Boot] [PATCH v2 05/18] arm: MediaTek: add basic support for MT7623 boards In-Reply-To: References: <476a55a754d8ff62b4a0681196c51a9c047e5165.1539326908.git.ryder.lee@mediatek.com> Message-ID: <1540449606.32603.40.camel@mtkswgap22> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Wed, 2018-10-24 at 21:29 -0600, Simon Glass wrote: > Hi, > > On 12 October 2018 at 01:00, Ryder Lee wrote: > > From: Weijie Gao > > > > 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 > > Signed-off-by: Ryder Lee > > Tested-by: Matthias Brugger > > --- > > 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 | 54 +++++++++++++++ > > 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 | 3 + > > board/mediatek/mt7623/mt7623_rfb.c | 16 +++++ > > configs/mt7623n_bpir2_defconfig | 53 ++++++++++++++ > > include/configs/mt7623.h | 61 +++++++++++++++++ > > 12 files changed, 341 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 configs/mt7623n_bpir2_defconfig > > create mode 100644 include/configs/mt7623.h > > > > There is a new SPL handoff and bloblist feature that I hope will land > in the next release. Can you please look at using this instead of an > SoC-specififc mechanism? > > See u-boot-dm/spl-working Okay, I will take a look at this. Ryder