From: "Eddy Petrișor" <eddy.petrisor@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 0/2] Initial support for S32V234 - version 3
Date: Sat, 28 May 2016 12:56:13 +0300 [thread overview]
Message-ID: <1464429375-6191-1-git-send-email-eddy.petrisor@gmail.com> (raw)
In-Reply-To: <1459642206-20101-1-git-send-email-eddy.petrisor@gmail.com>
Hello,
Here are the reworked patches (3rd version) for the initial s32v234evb support.
Eddy Petri?or (1):
armv8: s32v234: Introduce basic support for s32v234evb
Stoica Cosmin-Stefan (1):
serial: Introduce linflex uart support
arch/arm/Kconfig | 5 +
arch/arm/cpu/armv8/Makefile | 1 +
arch/arm/cpu/armv8/s32v234/Makefile | 8 +
arch/arm/cpu/armv8/s32v234/cpu.c | 97 +++++++
arch/arm/cpu/armv8/s32v234/cpu.h | 8 +
arch/arm/cpu/armv8/s32v234/generic.c | 350 ++++++++++++++++++++++++
arch/arm/include/asm/arch-s32v234/clock.h | 34 +++
arch/arm/include/asm/arch-s32v234/ddr.h | 157 +++++++++++
arch/arm/include/asm/arch-s32v234/imx-regs.h | 329 ++++++++++++++++++++++
arch/arm/include/asm/arch-s32v234/lpddr2.h | 75 +++++
arch/arm/include/asm/arch-s32v234/mc_cgm_regs.h | 254 +++++++++++++++++
arch/arm/include/asm/arch-s32v234/mc_me_regs.h | 199 ++++++++++++++
arch/arm/include/asm/arch-s32v234/mc_rgm_regs.h | 31 +++
arch/arm/include/asm/arch-s32v234/mmdc.h | 89 ++++++
arch/arm/include/asm/arch-s32v234/siul.h | 150 ++++++++++
board/freescale/s32v234evb/Kconfig | 23 ++
board/freescale/s32v234evb/MAINTAINERS | 8 +
board/freescale/s32v234evb/Makefile | 11 +
board/freescale/s32v234evb/clock.c | 344 +++++++++++++++++++++++
board/freescale/s32v234evb/lpddr2.c | 137 ++++++++++
board/freescale/s32v234evb/s32v234evb.c | 183 +++++++++++++
board/freescale/s32v234evb/s32v234evb.cfg | 29 ++
configs/s32v234evb_defconfig | 6 +
drivers/mmc/fsl_esdhc.c | 10 +-
drivers/serial/Makefile | 1 +
drivers/serial/serial_linflexuart.c | 221 +++++++++++++++
include/configs/s32v234evb.h | 260 ++++++++++++++++++
27 files changed, 3015 insertions(+), 5 deletions(-)
create mode 100644 arch/arm/cpu/armv8/s32v234/Makefile
create mode 100644 arch/arm/cpu/armv8/s32v234/cpu.c
create mode 100644 arch/arm/cpu/armv8/s32v234/cpu.h
create mode 100644 arch/arm/cpu/armv8/s32v234/generic.c
create mode 100644 arch/arm/include/asm/arch-s32v234/clock.h
create mode 100644 arch/arm/include/asm/arch-s32v234/ddr.h
create mode 100644 arch/arm/include/asm/arch-s32v234/imx-regs.h
create mode 100644 arch/arm/include/asm/arch-s32v234/lpddr2.h
create mode 100644 arch/arm/include/asm/arch-s32v234/mc_cgm_regs.h
create mode 100644 arch/arm/include/asm/arch-s32v234/mc_me_regs.h
create mode 100644 arch/arm/include/asm/arch-s32v234/mc_rgm_regs.h
create mode 100644 arch/arm/include/asm/arch-s32v234/mmdc.h
create mode 100644 arch/arm/include/asm/arch-s32v234/siul.h
create mode 100644 board/freescale/s32v234evb/Kconfig
create mode 100644 board/freescale/s32v234evb/MAINTAINERS
create mode 100644 board/freescale/s32v234evb/Makefile
create mode 100644 board/freescale/s32v234evb/clock.c
create mode 100644 board/freescale/s32v234evb/lpddr2.c
create mode 100644 board/freescale/s32v234evb/s32v234evb.c
create mode 100644 board/freescale/s32v234evb/s32v234evb.cfg
create mode 100644 configs/s32v234evb_defconfig
create mode 100644 drivers/serial/serial_linflexuart.c
create mode 100644 include/configs/s32v234evb.h
--
2.5.0
next prev parent reply other threads:[~2016-05-28 9:56 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-03 0:10 [U-Boot] [PATCH 1/2] serial: Introduce linflex uart support Eddy Petrișor
2016-04-03 0:10 ` [U-Boot] [PATCH 2/2] armv8: s32v234: Introduce basic support for s32v234evb Eddy Petrișor
2016-04-19 16:53 ` Tom Rini
2016-04-21 16:03 ` Eddy Petrișor
2016-04-21 16:28 ` Tom Rini
2016-04-04 3:22 ` [U-Boot] [PATCH 1/2] serial: Introduce linflex uart support Bin Meng
2016-04-04 14:22 ` Eddy Petrișor
2016-04-05 1:43 ` Bin Meng
2016-04-27 21:39 ` [U-Boot] [PATCH 0/2] Initial support for S32V234 - version 2 Eddy Petrișor
2016-04-27 21:39 ` [U-Boot] [PATCH 1/2] serial: Introduce linflex uart support Eddy Petrișor
2016-04-27 21:39 ` [U-Boot] [PATCH 2/2] armv8: s32v234: Introduce basic support for s32v234evb Eddy Petrișor
2016-04-27 22:07 ` [U-Boot] [PATCH v2 0/2] Initial S32V234 support - version 2 (with notes now) Eddy Petrișor
2016-04-27 22:07 ` [U-Boot] [PATCH v2 1/2] serial: Introduce linflex uart support Eddy Petrișor
2016-05-07 14:56 ` Bin Meng
2016-05-08 0:05 ` Eddy Petrișor
2016-04-27 22:07 ` [U-Boot] [PATCH v2 2/2] armv8: s32v234: Introduce basic support for s32v234evb Eddy Petrișor
2016-05-07 16:22 ` Alexander Graf
2016-05-07 23:59 ` Eddy Petrișor
2016-05-08 7:21 ` Alexander Graf
2016-05-28 9:56 ` Eddy Petrișor [this message]
2016-05-28 9:56 ` [U-Boot] [PATCH v3 1/2] serial: Introduce linflex uart support Eddy Petrișor
2016-05-28 9:56 ` [U-Boot] [PATCH v3 2/2] armv8: s32v234: Introduce basic support for s32v234evb Eddy Petrișor
2016-05-28 10:10 ` Alexander Graf
2016-05-28 10:51 ` [U-Boot] [PATCH v4 0/2] Initial support for s32v234 Eddy Petrișor
2016-05-28 10:51 ` [U-Boot] [PATCH v4 1/2] serial: Introduce linflex uart support Eddy Petrișor
2016-05-28 10:51 ` [U-Boot] [PATCH v4 2/2] armv8: s32v234: Introduce basic support for s32v234evb Eddy Petrișor
2016-06-04 19:18 ` [U-Boot] [PATCH v5 0/2] Initial support for s32v234 Eddy Petrișor
2016-06-04 19:18 ` [U-Boot] [PATCH v5 1/2] serial: Introduce linflex uart support Eddy Petrișor
2016-06-04 19:18 ` [U-Boot] [PATCH v5 2/2] armv8: s32v234: Introduce basic support for s32v234evb Eddy Petrișor
2016-06-04 22:23 ` [U-Boot] [PATCH v5 0/2] Initial support for s32v234 Fabio Estevam
2016-06-04 23:59 ` Eddy Petrișor
2016-06-05 0:52 ` Fabio Estevam
2016-06-05 1:15 ` Eddy Petrișor
2016-06-05 0:42 ` [U-Boot] [PATCH v6 " Eddy Petrișor
2016-06-05 0:42 ` [U-Boot] [PATCH v6 1/2] serial: Introduce linflex uart support Eddy Petrișor
2016-06-19 14:10 ` [U-Boot] [U-Boot, v6, " Tom Rini
2016-06-19 20:41 ` Eddy Petrișor
2016-06-05 0:43 ` [U-Boot] [PATCH v6 2/2] armv8: s32v234: Introduce basic support for s32v234evb Eddy Petrișor
2016-06-19 14:10 ` [U-Boot] [U-Boot, v6, " Tom Rini
2016-06-19 20:51 ` Eddy Petrișor
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=1464429375-6191-1-git-send-email-eddy.petrisor@gmail.com \
--to=eddy.petrisor@gmail.com \
--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