All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michal Simek <michal.simek@xilinx.com>
To: Jolly Shah <jolly.shah@xilinx.com>, <olof@lixom.net>,
	<mturquette@baylibre.com>, <sboyd@codeaurora.org>,
	<michal.simek@xilinx.com>, <arm@kernel.org>,
	<linux-clk@vger.kernel.org>
Cc: <rajanv@xilinx.com>, <linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>, Jolly Shah <jollys@xilinx.com>
Subject: Re: [PATCH v6 0/4] drivers: clk: Add ZynqMP clock driver support
Date: Tue, 9 Oct 2018 13:29:49 +0200	[thread overview]
Message-ID: <65353e3c-035b-30ee-f93c-041885e112b6@xilinx.com> (raw)
In-Reply-To: <1539022906-18073-1-git-send-email-jollys@xilinx.com>

On 8.10.2018 20:21, Jolly Shah wrote:
> This patchset adds CCF compliant clock driver for ZynqMP.Clock driver queries 
> supported clock information from firmware and regiters pll and output clocks with CCF.
> 
> This patch series is earlier reveiwed as part of FW patchset (https://patchwork.kernel.org/cover/10555405/). 
> FW driver from that patchset is merged. This patchset contains only clock driver and is based on top of 
> xilinx firmware patch set available in below tree:
> https://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git/log/?h=next/drivers
> 
> v6:
>  - Updated eemi return payload type to be u32 instead of le32 and Eemi ops in FW driver will be updated to take care of endianess
>  - Added Stephen's review tag
>  
> v5:
>  - Added "Acked-by: Olof Johansson <olof@lixom.net>" for patches
>  
> v4:
>  - Fixed minor review comments received for v3 patchset
>  
> v3:
>  - Added check to pass only valid ioctls for ioctl eemi api
>  - Added eemi documentation including ioctl details
> 
> Jolly Shah (1):
>   drivers: clk: Add ZynqMP clock driver
> 
> Rajan Vaja (3):
>   Documentation: xilinx: Add documentation for eemi APIs
>   firmware: xilinx: Add zynqmp IOCTL API for device control
>   dt-bindings: clock: Add bindings for ZynqMP clock driver
> 
>  .../firmware/xilinx/xlnx,zynqmp-firmware.txt       |  53 ++
>  Documentation/xilinx/eemi.txt                      |  67 ++
>  drivers/clk/Kconfig                                |   1 +
>  drivers/clk/Makefile                               |   1 +
>  drivers/clk/zynqmp/Kconfig                         |  10 +
>  drivers/clk/zynqmp/Makefile                        |   4 +
>  drivers/clk/zynqmp/clk-gate-zynqmp.c               | 144 +++++
>  drivers/clk/zynqmp/clk-mux-zynqmp.c                | 141 ++++
>  drivers/clk/zynqmp/clk-zynqmp.h                    |  68 ++
>  drivers/clk/zynqmp/clkc.c                          | 716 +++++++++++++++++++++
>  drivers/clk/zynqmp/divider.c                       | 217 +++++++
>  drivers/clk/zynqmp/pll.c                           | 335 ++++++++++
>  drivers/firmware/xilinx/zynqmp.c                   |  42 ++
>  include/dt-bindings/clock/xlnx,zynqmp-clk.h        | 116 ++++
>  include/linux/firmware/xlnx-zynqmp.h               |   5 +-
>  15 files changed, 1919 insertions(+), 1 deletion(-)
>  create mode 100644 Documentation/xilinx/eemi.txt
>  create mode 100644 drivers/clk/zynqmp/Kconfig
>  create mode 100644 drivers/clk/zynqmp/Makefile
>  create mode 100644 drivers/clk/zynqmp/clk-gate-zynqmp.c
>  create mode 100644 drivers/clk/zynqmp/clk-mux-zynqmp.c
>  create mode 100644 drivers/clk/zynqmp/clk-zynqmp.h
>  create mode 100644 drivers/clk/zynqmp/clkc.c
>  create mode 100644 drivers/clk/zynqmp/divider.c
>  create mode 100644 drivers/clk/zynqmp/pll.c
>  create mode 100644 include/dt-bindings/clock/xlnx,zynqmp-clk.h
> 

Applied all.

Thanks,
Michal

WARNING: multiple messages have this Message-ID (diff)
From: michal.simek@xilinx.com (Michal Simek)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v6 0/4] drivers: clk: Add ZynqMP clock driver support
Date: Tue, 9 Oct 2018 13:29:49 +0200	[thread overview]
Message-ID: <65353e3c-035b-30ee-f93c-041885e112b6@xilinx.com> (raw)
In-Reply-To: <1539022906-18073-1-git-send-email-jollys@xilinx.com>

On 8.10.2018 20:21, Jolly Shah wrote:
> This patchset adds CCF compliant clock driver for ZynqMP.Clock driver queries 
> supported clock information from firmware and regiters pll and output clocks with CCF.
> 
> This patch series is earlier reveiwed as part of FW patchset (https://patchwork.kernel.org/cover/10555405/). 
> FW driver from that patchset is merged. This patchset contains only clock driver and is based on top of 
> xilinx firmware patch set available in below tree:
> https://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git/log/?h=next/drivers
> 
> v6:
>  - Updated eemi return payload type to be u32 instead of le32 and Eemi ops in FW driver will be updated to take care of endianess
>  - Added Stephen's review tag
>  
> v5:
>  - Added "Acked-by: Olof Johansson <olof@lixom.net>" for patches
>  
> v4:
>  - Fixed minor review comments received for v3 patchset
>  
> v3:
>  - Added check to pass only valid ioctls for ioctl eemi api
>  - Added eemi documentation including ioctl details
> 
> Jolly Shah (1):
>   drivers: clk: Add ZynqMP clock driver
> 
> Rajan Vaja (3):
>   Documentation: xilinx: Add documentation for eemi APIs
>   firmware: xilinx: Add zynqmp IOCTL API for device control
>   dt-bindings: clock: Add bindings for ZynqMP clock driver
> 
>  .../firmware/xilinx/xlnx,zynqmp-firmware.txt       |  53 ++
>  Documentation/xilinx/eemi.txt                      |  67 ++
>  drivers/clk/Kconfig                                |   1 +
>  drivers/clk/Makefile                               |   1 +
>  drivers/clk/zynqmp/Kconfig                         |  10 +
>  drivers/clk/zynqmp/Makefile                        |   4 +
>  drivers/clk/zynqmp/clk-gate-zynqmp.c               | 144 +++++
>  drivers/clk/zynqmp/clk-mux-zynqmp.c                | 141 ++++
>  drivers/clk/zynqmp/clk-zynqmp.h                    |  68 ++
>  drivers/clk/zynqmp/clkc.c                          | 716 +++++++++++++++++++++
>  drivers/clk/zynqmp/divider.c                       | 217 +++++++
>  drivers/clk/zynqmp/pll.c                           | 335 ++++++++++
>  drivers/firmware/xilinx/zynqmp.c                   |  42 ++
>  include/dt-bindings/clock/xlnx,zynqmp-clk.h        | 116 ++++
>  include/linux/firmware/xlnx-zynqmp.h               |   5 +-
>  15 files changed, 1919 insertions(+), 1 deletion(-)
>  create mode 100644 Documentation/xilinx/eemi.txt
>  create mode 100644 drivers/clk/zynqmp/Kconfig
>  create mode 100644 drivers/clk/zynqmp/Makefile
>  create mode 100644 drivers/clk/zynqmp/clk-gate-zynqmp.c
>  create mode 100644 drivers/clk/zynqmp/clk-mux-zynqmp.c
>  create mode 100644 drivers/clk/zynqmp/clk-zynqmp.h
>  create mode 100644 drivers/clk/zynqmp/clkc.c
>  create mode 100644 drivers/clk/zynqmp/divider.c
>  create mode 100644 drivers/clk/zynqmp/pll.c
>  create mode 100644 include/dt-bindings/clock/xlnx,zynqmp-clk.h
> 

Applied all.

Thanks,
Michal

  parent reply	other threads:[~2018-10-09 11:30 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-08 18:21 [PATCH v6 0/4] drivers: clk: Add ZynqMP clock driver support Jolly Shah
2018-10-08 18:21 ` Jolly Shah
2018-10-08 18:21 ` [PATCH v6 1/4] Documentation: xilinx: Add documentation for eemi APIs Jolly Shah
2018-10-08 18:21   ` Jolly Shah
2018-10-08 18:21 ` [PATCH v6 2/4] firmware: xilinx: Add zynqmp IOCTL API for device control Jolly Shah
2018-10-08 18:21   ` Jolly Shah
2018-10-08 18:21 ` [PATCH v6 3/4] dt-bindings: clock: Add bindings for ZynqMP clock driver Jolly Shah
2018-10-08 18:21   ` Jolly Shah
2018-10-08 18:21 ` [PATCH v6 4/4] drivers: clk: Add " Jolly Shah
2018-10-08 18:21   ` Jolly Shah
2018-10-09 11:29 ` Michal Simek [this message]
2018-10-09 11:29   ` [PATCH v6 0/4] drivers: clk: Add ZynqMP clock driver support Michal Simek

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=65353e3c-035b-30ee-f93c-041885e112b6@xilinx.com \
    --to=michal.simek@xilinx.com \
    --cc=arm@kernel.org \
    --cc=jolly.shah@xilinx.com \
    --cc=jollys@xilinx.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=olof@lixom.net \
    --cc=rajanv@xilinx.com \
    --cc=sboyd@codeaurora.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.