From 88dc40991494951015978b381bc37899fd9971d4 Mon Sep 17 00:00:00 2001 From: Stefan Roese Date: Thu, 16 Aug 2018 15:27:31 +0200 Subject: mips: Add Gardena Smart-Gateway board support The Gardena Smart-Gateway boards have a MT7688 SoC with 128 MiB of RAM and 8 MiB of flash (SPI NOR) and additional 128MiB SPI NAND storage. This patch also includes 2 targets. One is the target that can be programmed into the SPI NOR flash and a 2nd target "xxx-ram" is added to support loading and booting via an already running U-Boot version. This allows easy development and testing without the need to flash the image each time. Signed-off-by: Stefan Roese [fixed and regenerated defconfig files] Signed-off-by: Daniel Schwierzeck --- board/gardena/smart-gateway-mt7688/board.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 board/gardena/smart-gateway-mt7688/board.c (limited to 'board/gardena/smart-gateway-mt7688/board.c') diff --git a/board/gardena/smart-gateway-mt7688/board.c b/board/gardena/smart-gateway-mt7688/board.c new file mode 100644 index 0000000000..5ff546f505 --- /dev/null +++ b/board/gardena/smart-gateway-mt7688/board.c @@ -0,0 +1,17 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2018 Stefan Roese + */ + +#include +#include + +int board_early_init_f(void) +{ + /* + * Nothing to be done here for this board (no UART setup etc) + * right now. We might need some pin muxing, so lets keep this + * function for now. + */ + return 0; +} -- cgit