devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg KH <gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>
To: Neil Armstrong <narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
Cc: khilman-rdvid1DuHRBWk0Htik3J/w@public.gmane.org,
	hgkr.klein-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
	linux-serial-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-amlogic-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH v5 0/4] tty/serial: meson_uart: add support for core clock handling
Date: Tue, 20 Jun 2017 10:51:37 +0800	[thread overview]
Message-ID: <20170620025137.GA7258@kroah.com> (raw)
In-Reply-To: <f4179b26-54fc-30ee-2d8d-7659349ccb74-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>

On Mon, Jun 19, 2017 at 10:43:05AM +0200, Neil Armstrong wrote:
> On 06/14/2017 10:29 AM, Neil Armstrong wrote:
> > This patchset is a re-spin of Helmut Klein's v3 patchset at [0] and the v4 patchset at [1].
> > 
> > Initially, the original patchset was made to enable usage on the non-AO UARTS
> > not enabled by the Bootloader (uart_B and uart_C), but the patchset needed
> > an overall change to have clean and stable DT bindings.
> > 
> > The Amlogic Meson UART Driver did not have stable DT bindings and mismatched
> > clock handling on non-AO UARTs since these "EE" UARTs needs a clock gate to
> > be ungated to works correctly.
> > In the same way, the AO UARTs does not need gating and can be used as
> > Early Consoles.
> > 
> > In the same time, the UART Interfaces can take clock input for the baudrate
> > generate from either the external Xtal or the internal Bus Clock (clk81).
> > 
> > So new bindings was necessary to meet these requirements and the DT
> > maintainers requirements.
> > 
> > The "legacy" binding actually used in the driver is left until all the DT
> > files are switched to the new bindings.
> > 
> > The GX DT has been tested, but the last 4 Meson6/Meson8/b are only
> > compile-tested, and testing is welcome.
> > Thus only the first 3 patches can be merged until the Meson6/Meson8/b are
> > formally tested.
> > 
> > It must be noted that the meson6 cannot work today except using an early
> > console since the UART driver could not probe without a clocks property.
> > 
> > Changes since v4 at [1]:
> >  - Droped meson8/meson8b DT patches
> >  - Fixes copy/paste error in patch 2
> >  - Refactored clock probing in patch 2
> >  - merged meson6 patches together to avoid breaking bisect
> > 
> > [0] http://lkml.kernel.org/r/20170331165437.26227-1-hgkr.klein-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
> > [1] http://lkml.kernel.org/r/1497001756-942-1-git-send-email-narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.org
> > 
> > Helmut Klein (3):
> >   dt-bindings: serial: Add bindings for the Amlogic Meson UARTs
> >   tty/serial: meson_uart: update to stable bindings
> >   ARM64: dts: meson-gx: use stable UART bindings with correct gate clock
> > 
> > Neil Armstrong (1):
> >   ARM: dts: meson6: use stable UART bindings
> > 
> >  .../bindings/serial/amlogic,meson-uart.txt         | 38 +++++++++
> >  arch/arm/boot/dts/meson.dtsi                       |  8 +-
> >  arch/arm/boot/dts/meson6.dtsi                      | 28 +++++++
> >  arch/arm64/boot/dts/amlogic/meson-gx.dtsi          | 12 ++-
> >  arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi        | 25 ++++++
> >  arch/arm64/boot/dts/amlogic/meson-gxl.dtsi         | 25 ++++++
> >  drivers/tty/serial/meson_uart.c                    | 90 ++++++++++++++++++++--
> >  7 files changed, 209 insertions(+), 17 deletions(-)
> >  create mode 100644 Documentation/devicetree/bindings/serial/amlogic,meson-uart.txt
> > 
> 
> 
> Hi Greg,
> 
> Patches 3 & 4 will need a respin to avoid breaking compatibility with old kernel
> like the tty patch does by keeping the legacy compatible string.
> I will re-send then in a separate thread and Kevin will handle them.
> 
> Patches 1 & 2 can be taken if they are OK for you.

Looks good, now applied, thanks.

Feel free to resend the other two whenever you have them ready.

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

      parent reply	other threads:[~2017-06-20  2:51 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-14  8:29 [PATCH v5 0/4] tty/serial: meson_uart: add support for core clock handling Neil Armstrong
2017-06-14  8:29 ` [PATCH v5 3/4] ARM64: dts: meson-gx: use stable UART bindings with correct gate clock Neil Armstrong
2017-06-16 20:57   ` Kevin Hilman
2017-06-19  8:40     ` Neil Armstrong
     [not found] ` <1497428957-19942-1-git-send-email-narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
2017-06-14  8:29   ` [PATCH v5 1/4] dt-bindings: serial: Add bindings for the Amlogic Meson UARTs Neil Armstrong
2017-06-18 14:05     ` Rob Herring
2017-06-14  8:29   ` [PATCH v5 4/4] ARM: dts: meson6: use stable UART bindings Neil Armstrong
2017-06-19  8:43 ` [PATCH v5 0/4] tty/serial: meson_uart: add support for core clock handling Neil Armstrong
     [not found]   ` <f4179b26-54fc-30ee-2d8d-7659349ccb74-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
2017-06-20  2:51     ` Greg KH [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=20170620025137.GA7258@kroah.com \
    --to=gregkh-hqyy1w1ycw8ekmwlsbkhg0b+6bgklq7r@public.gmane.org \
    --cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=hgkr.klein-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=khilman-rdvid1DuHRBWk0Htik3J/w@public.gmane.org \
    --cc=linux-amlogic-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-serial-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.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;
as well as URLs for NNTP newsgroup(s).