linux-watchdog.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Bartosz Golaszewski <brgl@bgdev.pl>
To: Bjorn Andersson <andersson@kernel.org>,
	Andy Gross <agross@kernel.org>,
	Konrad Dybcio <konrad.dybcio@linaro.org>,
	Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	Manivannan Sadhasivam <mani@kernel.org>,
	Jassi Brar <jassisinghbrar@gmail.com>,
	Wim Van Sebroeck <wim@linux-watchdog.org>,
	Guenter Roeck <linux@roeck-us.net>
Cc: linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-watchdog@vger.kernel.org,
	Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Subject: Re: [PATCH v3 0/5] arm64: qcom: add initial support for qcom sa8775p-ride
Date: Mon, 6 Feb 2023 22:08:52 +0100	[thread overview]
Message-ID: <CAMRc=MdEQw=W3CGUepUyPyGF0BEKhhZz8griuRuLW=KEL7ct5Q@mail.gmail.com> (raw)
In-Reply-To: <20230201152038.203387-1-brgl@bgdev.pl>

On Wed, Feb 1, 2023 at 4:21 PM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
>
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> This iteration contains a fixed DTS and all not already applied DT bindings
> patches (with tags collected).
>
> v2 -> v3:
> - reorder properties (reg always first, etc.)
> - tweak node names
> - remove properties filled in by the firmware
>
> v1 -> v2:
> - lots of improvements all around the place to make the dts pass dtbs_check
>   (with some additional patches fixing bugs in existing dt bindings),
>   make dtbs W=1 and checkpatch.pl
> - move board-specific properties to the board .dts file
> - ordered top-level nodes alphabetically and sub-nodes by the reg property
> - fixed licensing
> - set #address-cells and #size-cells to <2> in the soc node and update sub-nodes
>
> Bartosz Golaszewski (5):
>   dt-bindings: firmware: qcom,scm: add qcom,scm-sa8775p compatible
>   dt-bindings: mailbox: qcom-ipcc: document the sa8775p platform
>   dt-bindings: watchdog: qcom-wdt: add qcom,apss-wdt-sa8775p compatible
>   dt-bindings: arm: qcom: add the sa8775p-ride board
>   arm64: dts: qcom: add initial support for qcom sa8775p-ride
>
>  .../devicetree/bindings/arm/qcom.yaml         |   7 +
>  .../bindings/firmware/qcom,scm.yaml           |   1 +
>  .../bindings/mailbox/qcom-ipcc.yaml           |   1 +
>  .../bindings/watchdog/qcom-wdt.yaml           |   1 +
>  arch/arm64/boot/dts/qcom/Makefile             |   1 +
>  arch/arm64/boot/dts/qcom/sa8775p-ride.dts     |  47 +
>  arch/arm64/boot/dts/qcom/sa8775p.dtsi         | 812 ++++++++++++++++++
>  7 files changed, 870 insertions(+)
>  create mode 100644 arch/arm64/boot/dts/qcom/sa8775p-ride.dts
>  create mode 100644 arch/arm64/boot/dts/qcom/sa8775p.dtsi
>
> --
> 2.37.2
>

Hey Bjorn, can you pick up this series as it looks like it's ready to go?

Bart

  parent reply	other threads:[~2023-02-06 21:09 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-01 15:20 [PATCH v3 0/5] arm64: qcom: add initial support for qcom sa8775p-ride Bartosz Golaszewski
2023-02-01 15:20 ` [PATCH v3 1/5] dt-bindings: firmware: qcom,scm: add qcom,scm-sa8775p compatible Bartosz Golaszewski
2023-02-01 15:20 ` [PATCH v3 2/5] dt-bindings: mailbox: qcom-ipcc: document the sa8775p platform Bartosz Golaszewski
2023-02-01 18:00   ` Krzysztof Kozlowski
2023-02-01 15:20 ` [PATCH v3 3/5] dt-bindings: watchdog: qcom-wdt: add qcom,apss-wdt-sa8775p compatible Bartosz Golaszewski
2023-02-01 15:36   ` Guenter Roeck
2023-02-01 15:20 ` [PATCH v3 4/5] dt-bindings: arm: qcom: add the sa8775p-ride board Bartosz Golaszewski
2023-02-01 15:20 ` [PATCH v3 5/5] arm64: dts: qcom: add initial support for qcom sa8775p-ride Bartosz Golaszewski
2023-02-01 18:02   ` Krzysztof Kozlowski
2023-02-09 18:04   ` Eric Chanudet
2023-02-09 19:52     ` Bartosz Golaszewski
2023-02-14  9:28   ` Bartosz Golaszewski
2023-02-06 21:08 ` Bartosz Golaszewski [this message]
2023-03-15 23:34 ` (subset) [PATCH v3 0/5] arm64: " 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='CAMRc=MdEQw=W3CGUepUyPyGF0BEKhhZz8griuRuLW=KEL7ct5Q@mail.gmail.com' \
    --to=brgl@bgdev.pl \
    --cc=agross@kernel.org \
    --cc=andersson@kernel.org \
    --cc=bartosz.golaszewski@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=jassisinghbrar@gmail.com \
    --cc=konrad.dybcio@linaro.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=mani@kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=wim@linux-watchdog.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).