From: carlo@caione.org (Carlo Caione)
To: linus-amlogic@lists.infradead.org
Subject: [PATCH v7 3/4] arm: add initial support for Amlogic Meson and ODROID-C2
Date: Fri, 20 May 2016 16:44:52 +0200 [thread overview]
Message-ID: <20160520144452.GA20005@mephisto> (raw)
In-Reply-To: <1462689017-3160-4-git-send-email-b.galvani@gmail.com>
On 08/05/16 08:30, Beniamino Galvani wrote:
> This adds platform code for the Amlogic Meson GXBaby (S905) SoC and a
> board definition for ODROID-C2. This initial submission only supports
> UART and Ethernet (through the existing Designware driver). DTS files
> are the ones submitted to Linux arm-soc for 4.7 [1].
>
> [1] https://patchwork.ozlabs.org/patch/603583/
>
> Signed-off-by: Beniamino Galvani <b.galvani@gmail.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
> ---
> arch/arm/Kconfig | 9 ++
> arch/arm/Makefile | 1 +
> arch/arm/dts/Makefile | 2 +
> arch/arm/dts/meson-gxbb-odroidc2.dts | 69 +++++++++++++
> arch/arm/dts/meson-gxbb.dtsi | 178 +++++++++++++++++++++++++++++++++
> arch/arm/include/asm/arch-meson/gxbb.h | 52 ++++++++++
> arch/arm/mach-meson/Kconfig | 31 ++++++
> arch/arm/mach-meson/Makefile | 7 ++
> arch/arm/mach-meson/board.c | 66 ++++++++++++
> board/hardkernel/odroid-c2/Kconfig | 12 +++
> board/hardkernel/odroid-c2/MAINTAINERS | 6 ++
> board/hardkernel/odroid-c2/Makefile | 7 ++
> board/hardkernel/odroid-c2/README | 60 +++++++++++
> board/hardkernel/odroid-c2/odroid-c2.c | 51 ++++++++++
I suggest to have s/hardkernel/amlogic/ so that we can have all the
amlogic boards in the same place.
Also I wonder if it's worth to have one single board file board.c so to
avoid duplicating code among the boards, especially now that the DT
support is still incomplete.
Cheers,
--
Carlo Caione
WARNING: multiple messages have this Message-ID (diff)
From: Carlo Caione <carlo@caione.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v7 3/4] arm: add initial support for Amlogic Meson and ODROID-C2
Date: Fri, 20 May 2016 16:44:52 +0200 [thread overview]
Message-ID: <20160520144452.GA20005@mephisto> (raw)
In-Reply-To: <1462689017-3160-4-git-send-email-b.galvani@gmail.com>
On 08/05/16 08:30, Beniamino Galvani wrote:
> This adds platform code for the Amlogic Meson GXBaby (S905) SoC and a
> board definition for ODROID-C2. This initial submission only supports
> UART and Ethernet (through the existing Designware driver). DTS files
> are the ones submitted to Linux arm-soc for 4.7 [1].
>
> [1] https://patchwork.ozlabs.org/patch/603583/
>
> Signed-off-by: Beniamino Galvani <b.galvani@gmail.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
> ---
> arch/arm/Kconfig | 9 ++
> arch/arm/Makefile | 1 +
> arch/arm/dts/Makefile | 2 +
> arch/arm/dts/meson-gxbb-odroidc2.dts | 69 +++++++++++++
> arch/arm/dts/meson-gxbb.dtsi | 178 +++++++++++++++++++++++++++++++++
> arch/arm/include/asm/arch-meson/gxbb.h | 52 ++++++++++
> arch/arm/mach-meson/Kconfig | 31 ++++++
> arch/arm/mach-meson/Makefile | 7 ++
> arch/arm/mach-meson/board.c | 66 ++++++++++++
> board/hardkernel/odroid-c2/Kconfig | 12 +++
> board/hardkernel/odroid-c2/MAINTAINERS | 6 ++
> board/hardkernel/odroid-c2/Makefile | 7 ++
> board/hardkernel/odroid-c2/README | 60 +++++++++++
> board/hardkernel/odroid-c2/odroid-c2.c | 51 ++++++++++
I suggest to have s/hardkernel/amlogic/ so that we can have all the
amlogic boards in the same place.
Also I wonder if it's worth to have one single board file board.c so to
avoid duplicating code among the boards, especially now that the DT
support is still incomplete.
Cheers,
--
Carlo Caione
next prev parent reply other threads:[~2016-05-20 14:44 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-08 6:30 [PATCH v7 0/4] Amlogic Meson GXBaby and ODROID-C2 support Beniamino Galvani
2016-05-08 6:30 ` [U-Boot] " Beniamino Galvani
2016-05-08 6:30 ` [PATCH v7 1/4] arm: implement generic PSCI reset call for armv8 Beniamino Galvani
2016-05-08 6:30 ` [U-Boot] " Beniamino Galvani
2016-05-19 3:59 ` Simon Glass
2016-05-19 3:59 ` [U-Boot] " Simon Glass
2016-05-30 17:57 ` [U-Boot,v7,1/4] " Tom Rini
2016-05-30 17:57 ` [U-Boot] [U-Boot, v7, 1/4] " Tom Rini
2016-05-30 17:57 ` [U-Boot,v7,1/4] " Tom Rini
2016-05-30 17:57 ` [U-Boot] [U-Boot, v7, 1/4] " Tom Rini
2016-05-08 6:30 ` [PATCH v7 2/4] net: designware: fix descriptor layout and warnings on 64-bit archs Beniamino Galvani
2016-05-08 6:30 ` [U-Boot] " Beniamino Galvani
2016-05-19 3:59 ` Simon Glass
2016-05-19 3:59 ` [U-Boot] " Simon Glass
2016-05-30 17:57 ` [U-Boot, v7, " Tom Rini
2016-05-30 17:57 ` [U-Boot] " Tom Rini
2016-05-08 6:30 ` [PATCH v7 3/4] arm: add initial support for Amlogic Meson and ODROID-C2 Beniamino Galvani
2016-05-08 6:30 ` [U-Boot] " Beniamino Galvani
2016-05-19 3:59 ` Simon Glass
2016-05-19 3:59 ` [U-Boot] " Simon Glass
2016-05-20 14:44 ` Carlo Caione [this message]
2016-05-20 14:44 ` Carlo Caione
2016-05-30 17:57 ` [U-Boot, v7, " Tom Rini
2016-05-30 17:57 ` [U-Boot] " Tom Rini
2016-05-08 6:30 ` [PATCH v7 4/4] arm: meson: implement calls to secure monitor Beniamino Galvani
2016-05-08 6:30 ` [U-Boot] " Beniamino Galvani
2016-05-30 17:57 ` [U-Boot,v7,4/4] " Tom Rini
2016-05-30 17:57 ` [U-Boot] [U-Boot, v7, 4/4] " Tom Rini
2016-05-29 16:38 ` [PATCH v7 0/4] Amlogic Meson GXBaby and ODROID-C2 support Carlo Caione
2016-05-29 16:38 ` [U-Boot] " Carlo Caione
2016-05-29 17:09 ` Tom Rini
2016-05-29 17:09 ` [U-Boot] " Tom Rini
2016-07-11 3:57 ` Andreas Färber
2016-07-11 3:57 ` Andreas Färber
2016-07-11 4:23 ` Peter Robinson
2016-07-11 4:23 ` Peter Robinson
2016-07-11 4:41 ` Andreas Färber
2016-07-11 4:41 ` Andreas Färber
2016-07-11 19:48 ` Beniamino Galvani
2016-07-11 19:48 ` Beniamino Galvani
2016-07-11 20:15 ` Andreas Färber
2016-07-11 20:15 ` Andreas Färber
2016-07-11 20:36 ` Carlo Caione
2016-07-11 20:36 ` Carlo Caione
2016-07-11 21:38 ` Andreas Färber
2016-07-11 21:38 ` Andreas Färber
2016-07-11 22:52 ` Carlo Caione
2016-07-11 22:52 ` Carlo Caione
2016-07-11 22:54 ` Andreas Färber
2016-07-11 22:54 ` Andreas Färber
2016-07-11 23:04 ` Carlo Caione
2016-07-11 23:04 ` Carlo Caione
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=20160520144452.GA20005@mephisto \
--to=carlo@caione.org \
--cc=linus-amlogic@lists.infradead.org \
/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.