From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Tue, 16 May 2017 19:38:45 -0600 Subject: [U-Boot] [PATCH v2 6/7] rockchip: rk3368: Add initial support for RK3368 based GeekBox In-Reply-To: <1494842066-6707-1-git-send-email-andy.yan@rock-chips.com> References: <1494841762-6340-1-git-send-email-andy.yan@rock-chips.com> <1494842066-6707-1-git-send-email-andy.yan@rock-chips.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: u-boot@lists.denx.de On 15 May 2017 at 03:54, Andy Yan wrote: > From: Andreas Färber > > The GeekBox is a TV box from GeekBuying, based on an MXM3 module. > The module can be used with base boards such as the GeekBox Landingship. > This adds basic support to chain-load U-Boot from Rockchip's miniloader. > > Signed-off-by: Andreas Färber > Signed-off-by: Andy Yan > --- > > Changes in v2: None > > arch/arm/dts/Makefile | 1 + > arch/arm/dts/rk3368-geekbox.dts | 319 ++++++++++++++++++++++++++++++++++ > arch/arm/mach-rockchip/rk3368/Kconfig | 5 + > board/geekbuying/geekbox/Kconfig | 15 ++ > board/geekbuying/geekbox/MAINTAINERS | 6 + > board/geekbuying/geekbox/Makefile | 7 + > board/geekbuying/geekbox/README | 1 + > board/geekbuying/geekbox/geekbox.c | 28 +++ > configs/geekbox_defconfig | 22 +++ > include/configs/geekbox.h | 17 ++ > 10 files changed, 421 insertions(+) > create mode 100644 arch/arm/dts/rk3368-geekbox.dts > create mode 100644 board/geekbuying/geekbox/Kconfig > create mode 100644 board/geekbuying/geekbox/MAINTAINERS > create mode 100644 board/geekbuying/geekbox/Makefile > create mode 100644 board/geekbuying/geekbox/README > create mode 100644 board/geekbuying/geekbox/geekbox.c > create mode 100644 configs/geekbox_defconfig > create mode 100644 include/configs/geekbox.h > Reviewed-by: Simon Glass