public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: "Andreas Färber" <afaerber@suse.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 5/7] rockchip: rk3368: Add initial support for RK3368 based GeekBox
Date: Fri, 21 Apr 2017 04:59:11 +0200	[thread overview]
Message-ID: <03b07fe2-babd-a4d7-bf53-830f0bc930b0@suse.de> (raw)
In-Reply-To: <1492741976-7797-1-git-send-email-andy.yan@rock-chips.com>

Hi Andy,

Sorry for forgetting about this, and thank you for picking it up.

Am 21.04.2017 um 04:32 schrieb Andy Yan:
> From: Andreas Färber <afaerber@suse.de>
> 
> 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.
> 
> $ ./lollipop_u-boot/tools/loaderimage --pack u-boot.bin u-boot.img
> 
> Implemented is the serial console, but no boot media drivers yet.
> 
> Note that flashing the resulting U-Boot will not allow you to enter the
> rockusb mode any more via "Update" button. Instead, you will need to
> short two pins on the bottom of the module to enter MaskRom mode and
> re-flash the loader:

":"? See also below.

> 
> Signed-off-by: Andreas Färber <afaerber@suse.de>
> Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
> ---
> 
>  arch/arm/dts/Makefile                 |   2 +
>  arch/arm/dts/rk3368-geekbox.dts       | 319 ++++++++++++++++++++++++++++++++++
>  arch/arm/mach-rockchip/rk3368/Kconfig |  11 ++
>  board/geekbuying/geekbox/Kconfig      |  15 ++
>  board/geekbuying/geekbox/MAINTAINERS  |   6 +
>  board/geekbuying/geekbox/Makefile     |   7 +
>  board/geekbuying/geekbox/geekbox.c    |  28 +++
>  configs/geekbox_defconfig             |  21 +++
>  include/configs/geekbox.h             |  18 ++
>  9 files changed, 427 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/geekbox.c
>  create mode 100644 configs/geekbox_defconfig
>  create mode 100644 include/configs/geekbox.h

One reason this series stalled is that I was asked to add a README
instead of the text in the commit message - this is still missing in
your submission, it seems.

> 
> diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
> index ce34e3e..fbc97e8 100644
> --- a/arch/arm/dts/Makefile
> +++ b/arch/arm/dts/Makefile
> @@ -41,8 +41,10 @@ dtb-$(CONFIG_ARCH_ROCKCHIP) += \
>  	rk3288-veyron-mickey.dtb \
>  	rk3288-veyron-minnie.dtb \
>  	rk3328-evb.dtb \
> +	rk3368-geekbox.dtb \
>  	rk3399-evb.dtb \
>  	rk3399-puma.dtb
> +	rk3368-geekbox.dtb

Mismerge.

>  dtb-$(CONFIG_ARCH_MESON) += \
>  	meson-gxbb-odroidc2.dtb
[snip]

Regards,
Andreas

-- 
SUSE Linux GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Felix Imendörffer, Jane Smithard, Graham Norton
HRB 21284 (AG Nürnberg)

  reply	other threads:[~2017-04-21  2:59 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-21  2:29 [U-Boot] [PATCH 0/7] Add basic support for Rockchip RK3368 SOC Andy Yan
2017-04-21  2:31 ` [U-Boot] [PATCH 1/7] rockchip: rk3368: Add clok drvier Andy Yan
2017-04-29  0:26   ` Simon Glass
2017-05-04  8:48     ` Andy Yan
2017-05-04 16:49       ` Simon Glass
2017-04-29  0:28   ` Simon Glass
2017-04-29  8:54     ` Andreas Färber
2017-04-30  8:33     ` Andreas Färber
2017-04-21  2:31 ` [U-Boot] [PATCH 2/7] rockchip: rk3368: Add pinctrl driver Andy Yan
2017-04-29  0:26   ` Simon Glass
2017-04-21  2:31 ` [U-Boot] [PATCH 3/7] rockchip: rk3368: Add core start-up code for RK3368 Andy Yan
2017-04-29  0:26   ` Simon Glass
2017-04-21  2:32 ` [U-Boot] [PATCH 4/7] rockchip: rk3368: Add sysreset driver Andy Yan
2017-04-29  0:26   ` Simon Glass
2017-04-21  2:32 ` [U-Boot] [PATCH 5/7] rockchip: rk3368: Add initial support for RK3368 based GeekBox Andy Yan
2017-04-21  2:59   ` Andreas Färber [this message]
2017-04-21  6:17     ` Andy Yan
2017-04-30  9:17       ` Andreas Färber
2017-05-01 17:41         ` [U-Boot] [PATCH] rockchip: rk3368: Set fdtfile Andreas Färber
2017-05-01 17:48           ` Andreas Färber
2017-05-08 16:38             ` Simon Glass
2017-05-09  8:05               ` Andreas Färber
2017-05-15  3:02                 ` Simon Glass
2017-04-21  2:33 ` [U-Boot] [PATCH 6/7] rockchip: rk3368: Add PX5 Evaluation board Andy Yan
2017-04-29  0:26   ` Simon Glass
2017-05-01 17:44   ` Andreas Färber
2017-05-02 11:27     ` Simon Glass
2017-04-21  2:33 ` [U-Boot] [PATCH 7/7] rockchip: rk3368: add Sheep board Andy Yan
2017-04-29  0:26   ` Simon Glass
2017-04-21  7:58 ` [U-Boot] [PATCH 0/7] Add basic support for Rockchip RK3368 SOC Kever Yang

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=03b07fe2-babd-a4d7-bf53-830f0bc930b0@suse.de \
    --to=afaerber@suse.de \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox