public inbox for cip-dev@lists.cip-project.org
 help / color / mirror / Atom feed
From: ben.hutchings@codethink.co.uk (Ben Hutchings)
To: cip-dev@lists.cip-project.org
Subject: [cip-dev] [PATCH 00/15] Add UART support to r8a7743
Date: Tue, 10 Apr 2018 18:13:00 +0100	[thread overview]
Message-ID: <1523380380.2654.187.camel@codethink.co.uk> (raw)
In-Reply-To: <1520247731-25239-1-git-send-email-fabrizio.castro@bp.renesas.com>

I've applied this series, thanks.

Ben.

On Mon, 2018-03-05 at 11:01 +0000, Fabrizio Castro wrote:
> This series aims at adding UART support to r8a7743 by backporting
> the relevant patches from upstream.
> As per upstream, since two of the serial interfaces live on the
> camera daughter board, we rework the DT architecture to better
> accomodate all the possible HW variants.
> 
> Finally, in order to get CTS/RTS to work this series backports
> fixes made by Geert some time ago.
> 
> Thanks,
> Fabrizio
> 
> Biju Das (1):
> ? ARM: dts: iwg20d-q7: Add chosen node
> 
> Fabrizio Castro (3):
> ? ARM: dts: iwg20d-q7: Rework DT architecture
> ? ARM: dts: iwg20d-q7-dbcm-ca: Add device trees for camera DB
> ? ARM: dts: iwg20d-q7: Add support for ttySC3
> 
> Geert Uytterhoeven (11):
> ? serial: sh-sci: Update DT binding documentation for GPIO modem lines
> ? serial: sh-sci: Update DT binding documentation for dedicated RTS/CTS
> ? serial: sh-sci: Always set TIOCM_CTS in .get_mctrl() callback
> ? serial: sh-sci: Add support for GPIO-controlled modem lines
> ? serial: sh-sci: Do not open-code sci_getreg()
> ? serial: sh-sci: Add more Serial Port Register documentation
> ? serial: sh-sci: Add more Serial Port Control/Data Register
> ????documentation
> ? serial: sh-sci: Correct pin initialization on (H)SCIF
> ? serial: sh-sci: Add pin initialization for SCIFA/SCIFB
> ? serial: sh-sci: Fix support for hardware-assisted RTS/CTS
> ? serial: sh-sci: Add DT support for dedicated RTS/CTS
> 
> ?.../bindings/serial/renesas,sci-serial.txt?????????|???4 +
> ?arch/arm/boot/dts/Makefile?????????????????????????|???1 +
> ?arch/arm/boot/dts/iwg20d-q7-common.dtsi????????????| 127 +++++++++++++++
> ?arch/arm/boot/dts/iwg20d-q7-dbcm-ca.dtsi???????????|??43 +++++
> ?arch/arm/boot/dts/r8a7743-iwg20d-q7-dbcm-ca.dts????|??19 +++
> ?arch/arm/boot/dts/r8a7743-iwg20d-q7.dts????????????| 100 +-----------
> ?drivers/tty/serial/Kconfig?????????????????????????|???1 +
> ?drivers/tty/serial/sh-sci.c????????????????????????| 177 ++++++++++++++++++---
> ?drivers/tty/serial/sh-sci.h????????????????????????|??24 ++-
> ?9 files changed, 365 insertions(+), 131 deletions(-)
> ?create mode 100644 arch/arm/boot/dts/iwg20d-q7-common.dtsi
> ?create mode 100644 arch/arm/boot/dts/iwg20d-q7-dbcm-ca.dtsi
> ?create mode 100644 arch/arm/boot/dts/r8a7743-iwg20d-q7-dbcm-ca.dts
> 
-- 
Ben Hutchings
Software Developer, Codethink Ltd.

      parent reply	other threads:[~2018-04-10 17:13 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-05 11:01 [cip-dev] [PATCH 00/15] Add UART support to r8a7743 Fabrizio Castro
2018-03-05 11:01 ` [cip-dev] [PATCH 01/15] serial: sh-sci: Update DT binding documentation for GPIO modem lines Fabrizio Castro
2018-03-05 11:01 ` [cip-dev] [PATCH 02/15] serial: sh-sci: Update DT binding documentation for dedicated RTS/CTS Fabrizio Castro
2018-03-05 11:01 ` [cip-dev] [PATCH 03/15] serial: sh-sci: Always set TIOCM_CTS in .get_mctrl() callback Fabrizio Castro
2018-03-05 11:02 ` [cip-dev] [PATCH 04/15] serial: sh-sci: Add support for GPIO-controlled modem lines Fabrizio Castro
2018-03-05 11:02 ` [cip-dev] [PATCH 05/15] serial: sh-sci: Do not open-code sci_getreg() Fabrizio Castro
2018-03-05 11:02 ` [cip-dev] [PATCH 06/15] serial: sh-sci: Add more Serial Port Register documentation Fabrizio Castro
2018-03-05 11:02 ` [cip-dev] [PATCH 07/15] serial: sh-sci: Add more Serial Port Control/Data " Fabrizio Castro
2018-03-05 11:02 ` [cip-dev] [PATCH 08/15] serial: sh-sci: Correct pin initialization on (H)SCIF Fabrizio Castro
2018-03-05 11:02 ` [cip-dev] [PATCH 09/15] serial: sh-sci: Add pin initialization for SCIFA/SCIFB Fabrizio Castro
2018-03-12 16:26   ` Ben Hutchings
2018-03-15 14:33     ` Fabrizio Castro
2018-04-10 16:39       ` Ben Hutchings
2018-03-05 11:02 ` [cip-dev] [PATCH 10/15] serial: sh-sci: Fix support for hardware-assisted RTS/CTS Fabrizio Castro
2018-03-05 11:02 ` [cip-dev] [PATCH 11/15] serial: sh-sci: Add DT support for dedicated RTS/CTS Fabrizio Castro
2018-03-05 11:02 ` [cip-dev] [PATCH 12/15] ARM: dts: iwg20d-q7: Rework DT architecture Fabrizio Castro
2018-03-07 17:47   ` Ben Hutchings
2018-03-07 17:49     ` Ben Hutchings
2018-03-15 14:16       ` Fabrizio Castro
2018-03-15 14:08     ` Fabrizio Castro
2018-03-05 11:02 ` [cip-dev] [PATCH 13/15] ARM: dts: iwg20d-q7-dbcm-ca: Add device trees for camera DB Fabrizio Castro
2018-03-05 11:02 ` [cip-dev] [PATCH 14/15] ARM: dts: iwg20d-q7: Add support for ttySC3 Fabrizio Castro
2018-03-05 11:02 ` [cip-dev] [PATCH 15/15] ARM: dts: iwg20d-q7: Add chosen node Fabrizio Castro
2018-04-10 17:13 ` Ben Hutchings [this message]

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=1523380380.2654.187.camel@codethink.co.uk \
    --to=ben.hutchings@codethink.co.uk \
    --cc=cip-dev@lists.cip-project.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox