All of lore.kernel.org
 help / color / mirror / Atom feed
From: Varadarajan Narayanan <varada@codeaurora.org>
To: bjorn.andersson@linaro.org, robh+dt@kernel.org,
	mark.rutland@arm.com, mturquette@baylibre.com,
	sboyd@codeaurora.org, linus.walleij@linaro.org,
	andy.gross@linaro.org, david.brown@linaro.org,
	catalin.marinas@arm.com, will.deacon@arm.com,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-clk@vger.kernel.org, linux-gpio@vger.kernel.org,
	linux-arm-msm@vger.kernel.org, linux-soc@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Cc: absahu@codeaurora.org, sjaganat@codeaurora.org,
	sricharan@codeaurora.org,
	Varadarajan Narayanan <varada@codeaurora.org>
Subject: [PATCH v6 0/6] Add minimal boot support for IPQ8074
Date: Fri,  9 Jun 2017 15:11:53 +0530	[thread overview]
Message-ID: <1497001319-30353-1-git-send-email-varada@codeaurora.org> (raw)

v6:
  * Include Rob's Ack to the first patch.

v5:
  * Removed the 'NA' binding from documentation

v4:
  * Split the clock patch and addressed a minor comment
    in the clock driver as per stephen's feedback.

v3:
  * Addressed review feedback from Bjorn for pinctrl
     - Unified the names for qpic pads.
     - Corrected the names for pwm pins.
  * Updated pinctrl documentation.
  * Updated the default bootargs in ipq8074-hk01.dts.
  * Updated the gcc clocks driver for removing the
    unused halt_bit in few places.

v2:
  * Addressed review feedback from Stephen
    - Removed cpu-map entries
    - Added mmio-timer nodes
  * Fix sparse warnings in the gcc-ipq8074.c
  * Updated pinctrl documentation

v1:
  https://www.spinics.net/lists/kernel/msg2498734.html
  This series adds minimal board boot support for ipq8074-hk01
  board.

Abhishek Sahu (3):
  clk: qcom: Add DT bindings for ipq8074 gcc clock controller
  clk: qcom: Add ipq8074 Global Clock Controller support
  arm64: defconfig: Enable qcom ipq8074 clock and pinctrl

Varadarajan Narayanan (3):
  pinctrl: qcom: Add ipq8074 pinctrl driver
  dt-bindings: qcom: Add ipq8074 bindings
  arm64: dts: Add ipq8074 SoC and HK01 board support

 Documentation/devicetree/bindings/arm/qcom.txt     |    2 +
 .../devicetree/bindings/clock/qcom,gcc.txt         |    1 +
 .../bindings/pinctrl/qcom,ipq8074-pinctrl.txt      |  172 ++++
 arch/arm64/boot/dts/qcom/Makefile                  |    1 +
 arch/arm64/boot/dts/qcom/ipq8074-hk01.dts          |   53 +
 arch/arm64/boot/dts/qcom/ipq8074.dtsi              |  194 ++++
 arch/arm64/configs/defconfig                       |    2 +
 drivers/clk/qcom/Kconfig                           |    9 +
 drivers/clk/qcom/Makefile                          |    1 +
 drivers/clk/qcom/gcc-ipq8074.c                     | 1007 ++++++++++++++++++
 drivers/pinctrl/qcom/Kconfig                       |   10 +
 drivers/pinctrl/qcom/Makefile                      |    1 +
 drivers/pinctrl/qcom/pinctrl-ipq8074.c             | 1076 ++++++++++++++++++++
 include/dt-bindings/clock/qcom,gcc-ipq8074.h       |  152 +++
 14 files changed, 2681 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/pinctrl/qcom,ipq8074-pinctrl.txt
 create mode 100644 arch/arm64/boot/dts/qcom/ipq8074-hk01.dts
 create mode 100644 arch/arm64/boot/dts/qcom/ipq8074.dtsi
 create mode 100644 drivers/clk/qcom/gcc-ipq8074.c
 create mode 100644 drivers/pinctrl/qcom/pinctrl-ipq8074.c
 create mode 100644 include/dt-bindings/clock/qcom,gcc-ipq8074.h

-- 
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation


WARNING: multiple messages have this Message-ID (diff)
From: varada@codeaurora.org (Varadarajan Narayanan)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v6 0/6] Add minimal boot support for IPQ8074
Date: Fri,  9 Jun 2017 15:11:53 +0530	[thread overview]
Message-ID: <1497001319-30353-1-git-send-email-varada@codeaurora.org> (raw)

v6:
  * Include Rob's Ack to the first patch.

v5:
  * Removed the 'NA' binding from documentation

v4:
  * Split the clock patch and addressed a minor comment
    in the clock driver as per stephen's feedback.

v3:
  * Addressed review feedback from Bjorn for pinctrl
     - Unified the names for qpic pads.
     - Corrected the names for pwm pins.
  * Updated pinctrl documentation.
  * Updated the default bootargs in ipq8074-hk01.dts.
  * Updated the gcc clocks driver for removing the
    unused halt_bit in few places.

v2:
  * Addressed review feedback from Stephen
    - Removed cpu-map entries
    - Added mmio-timer nodes
  * Fix sparse warnings in the gcc-ipq8074.c
  * Updated pinctrl documentation

v1:
  https://www.spinics.net/lists/kernel/msg2498734.html
  This series adds minimal board boot support for ipq8074-hk01
  board.

Abhishek Sahu (3):
  clk: qcom: Add DT bindings for ipq8074 gcc clock controller
  clk: qcom: Add ipq8074 Global Clock Controller support
  arm64: defconfig: Enable qcom ipq8074 clock and pinctrl

Varadarajan Narayanan (3):
  pinctrl: qcom: Add ipq8074 pinctrl driver
  dt-bindings: qcom: Add ipq8074 bindings
  arm64: dts: Add ipq8074 SoC and HK01 board support

 Documentation/devicetree/bindings/arm/qcom.txt     |    2 +
 .../devicetree/bindings/clock/qcom,gcc.txt         |    1 +
 .../bindings/pinctrl/qcom,ipq8074-pinctrl.txt      |  172 ++++
 arch/arm64/boot/dts/qcom/Makefile                  |    1 +
 arch/arm64/boot/dts/qcom/ipq8074-hk01.dts          |   53 +
 arch/arm64/boot/dts/qcom/ipq8074.dtsi              |  194 ++++
 arch/arm64/configs/defconfig                       |    2 +
 drivers/clk/qcom/Kconfig                           |    9 +
 drivers/clk/qcom/Makefile                          |    1 +
 drivers/clk/qcom/gcc-ipq8074.c                     | 1007 ++++++++++++++++++
 drivers/pinctrl/qcom/Kconfig                       |   10 +
 drivers/pinctrl/qcom/Makefile                      |    1 +
 drivers/pinctrl/qcom/pinctrl-ipq8074.c             | 1076 ++++++++++++++++++++
 include/dt-bindings/clock/qcom,gcc-ipq8074.h       |  152 +++
 14 files changed, 2681 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/pinctrl/qcom,ipq8074-pinctrl.txt
 create mode 100644 arch/arm64/boot/dts/qcom/ipq8074-hk01.dts
 create mode 100644 arch/arm64/boot/dts/qcom/ipq8074.dtsi
 create mode 100644 drivers/clk/qcom/gcc-ipq8074.c
 create mode 100644 drivers/pinctrl/qcom/pinctrl-ipq8074.c
 create mode 100644 include/dt-bindings/clock/qcom,gcc-ipq8074.h

-- 
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

             reply	other threads:[~2017-06-09  9:41 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-09  9:41 Varadarajan Narayanan [this message]
2017-06-09  9:41 ` [PATCH v6 0/6] Add minimal boot support for IPQ8074 Varadarajan Narayanan
2017-06-09  9:41 ` [PATCH v6 1/6] pinctrl: qcom: Add ipq8074 pinctrl driver Varadarajan Narayanan
2017-06-09  9:41   ` Varadarajan Narayanan
     [not found]   ` <1497001319-30353-2-git-send-email-varada-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2017-06-13  5:20     ` Varadarajan Narayanan
2017-06-13  5:20       ` Varadarajan Narayanan
2017-06-13  5:20       ` Varadarajan Narayanan
2017-06-29  4:30   ` Bjorn Andersson
2017-06-29  4:30     ` Bjorn Andersson
     [not found] ` <1497001319-30353-1-git-send-email-varada-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2017-06-09  9:41   ` [PATCH v6 2/6] dt-bindings: qcom: Add ipq8074 bindings Varadarajan Narayanan
2017-06-09  9:41     ` Varadarajan Narayanan
2017-06-09  9:41     ` Varadarajan Narayanan
2017-06-09  9:41 ` [PATCH v6 3/6] clk: qcom: Add DT bindings for ipq8074 gcc clock controller Varadarajan Narayanan
2017-06-09  9:41   ` Varadarajan Narayanan
     [not found]   ` <1497001319-30353-4-git-send-email-varada-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2017-06-20  0:43     ` Stephen Boyd
2017-06-20  0:43       ` Stephen Boyd
2017-06-20  0:43       ` Stephen Boyd
2017-06-09  9:41 ` [PATCH v6 4/6] clk: qcom: Add ipq8074 Global Clock Controller support Varadarajan Narayanan
2017-06-09  9:41   ` Varadarajan Narayanan
     [not found]   ` <1497001319-30353-5-git-send-email-varada-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2017-06-13  5:21     ` Varadarajan Narayanan
2017-06-13  5:21       ` Varadarajan Narayanan
2017-06-13  5:21       ` Varadarajan Narayanan
2017-06-20  0:43   ` Stephen Boyd
2017-06-20  0:43     ` Stephen Boyd
2017-06-09  9:41 ` [PATCH v6 5/6] arm64: dts: Add ipq8074 SoC and HK01 board support Varadarajan Narayanan
2017-06-09  9:41   ` Varadarajan Narayanan
     [not found]   ` <1497001319-30353-6-git-send-email-varada-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2017-06-29  4:43     ` Bjorn Andersson
2017-06-29  4:43       ` Bjorn Andersson
2017-06-29  4:43       ` Bjorn Andersson
2017-06-09  9:41 ` [PATCH v6 6/6] arm64: defconfig: Enable qcom ipq8074 clock and pinctrl Varadarajan Narayanan
2017-06-09  9:41   ` Varadarajan Narayanan
2017-06-29  4:32   ` Bjorn Andersson
2017-06-29  4:32     ` Bjorn Andersson

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=1497001319-30353-1-git-send-email-varada@codeaurora.org \
    --to=varada@codeaurora.org \
    --cc=absahu@codeaurora.org \
    --cc=andy.gross@linaro.org \
    --cc=bjorn.andersson@linaro.org \
    --cc=catalin.marinas@arm.com \
    --cc=david.brown@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-soc@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=mturquette@baylibre.com \
    --cc=robh+dt@kernel.org \
    --cc=sboyd@codeaurora.org \
    --cc=sjaganat@codeaurora.org \
    --cc=sricharan@codeaurora.org \
    --cc=will.deacon@arm.com \
    /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.