devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ben Whitten <benwhitten@gmail.com>
To: "Andreas Färber" <afaerber@suse.de>
Cc: "David S. Miller" <davem@davemloft.net>,
	Rob Herring <robh+dt@kernel.org>,
	Mark Rutland <mark.rutland@arm.com>,
	netdev <netdev@vger.kernel.org>,
	devicetree@vger.kernel.org, LKML <linux-kernel@vger.kernel.org>,
	linux-lpwan@lists.infradead.org
Subject: Re: [PATCH v3 lora-next 2/4] dt-bindings: lora: sx125x: add basic documentation
Date: Thu, 24 Jan 2019 15:03:42 +0000	[thread overview]
Message-ID: <CAF3==isTrF7cT5ZNL7CetprgHLN50Zyh2t1ViP6XyBSFtQ_LUA@mail.gmail.com> (raw)
In-Reply-To: <20190124145309.21698-3-ben.whitten@lairdtech.com>

Missed linux-lpwan

On Thu, 24 Jan 2019 at 14:53, Ben Whitten <ben.whitten@gmail.com> wrote:
>
> From: Ben Whitten <ben.whitten@gmail.com>
>
> The SX125x family are IQ radio transceivers from Semtech configured over
> SPI, they are typically connected to an SX130x series concentrator however
> may be connected to a host directly.
>
> Required properties include the radio number of the host or concentrator
> bus.
>
> Signed-off-by: Ben Whitten <ben.whitten@gmail.com>
> ---
> v2 -> v3:
> * Renamed example node name to be consistent with concentrator
> v1 -> v2:
> * Dropped spi-max-frequency binding
> * Wording changes to commit and descriptions
> * Added spi wrapper suggested by Rob H
> * Dual licence
> ---
>  .../bindings/net/lora/semtech,sx125x.yaml     | 44 +++++++++++++++++++
>  1 file changed, 44 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/net/lora/semtech,sx125x.yaml
>
> diff --git a/Documentation/devicetree/bindings/net/lora/semtech,sx125x.yaml b/Documentation/devicetree/bindings/net/lora/semtech,sx125x.yaml
> new file mode 100644
> index 000000000000..fe2d2a23c28b
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/net/lora/semtech,sx125x.yaml
> @@ -0,0 +1,44 @@
> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/net/lora/semtech,sx125x.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Semtech IQ modulator/de-modulator transeiver
> +
> +maintainers:
> +  - Andreas Färber <afaerber@suse.de>
> +  - Ben Whitten <ben.whitten@gmail.com>
> +
> +description: |
> +  The SX125x family are transceivers capable of supporting multiple constant
> +  and non-constant envelope modulation schemes.
> +
> +properties:
> +  compatible:
> +    items:
> +      - enum:
> +        - semtech,sx1255
> +        - semtech,sx1257
> +        - semtech,sx1258
> +
> +  reg:
> +    maxItems: 1
> +    description: The chip select on the SPI bus or radio number in concentrator
> +      , with radio A = 0 and radio B = 1.
> +
> +required:
> +  - compatible
> +  - reg
> +
> +examples:
> +  - |
> +    spi {
> +      #address-cells = <1>;
> +      #size-cells = <0>;
> +
> +      radio0: radio@0 {
> +        compatible = "semtech,sx1257";
> +        reg = <0>;
> +      };
> +    };
> --
> 2.17.1
>

  reply	other threads:[~2019-01-24 15:03 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-24 14:53 [PATCH v3 lora-next 0/4] net: lora: Add documentation for SX130x and SX125x parts Ben Whitten
2019-01-24 14:53 ` [PATCH v3 lora-next 1/4] dt-bindings: lora: sx130x: add basic documentation Ben Whitten
2019-01-24 15:03   ` Ben Whitten
2019-01-28 18:18   ` Rob Herring
2019-01-24 14:53 ` [PATCH v3 lora-next 2/4] dt-bindings: lora: sx125x: " Ben Whitten
2019-01-24 15:03   ` Ben Whitten [this message]
2019-01-28 18:18   ` Rob Herring
2019-01-24 14:53 ` [PATCH v3 lora-next 3/4] dt-bindings: lora: sx125x: add clock bindings Ben Whitten
2019-01-24 15:03   ` Ben Whitten
2019-01-28 18:21   ` Rob Herring
2019-01-24 14:53 ` [PATCH v3 lora-next 4/4] dt-bindings: lora: sx130x: " Ben Whitten
2019-01-24 15:04   ` Ben Whitten
2019-01-28 18:23   ` Rob Herring
2019-01-24 15:02 ` [PATCH v3 lora-next 0/4] net: lora: Add documentation for SX130x and SX125x parts Ben Whitten

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='CAF3==isTrF7cT5ZNL7CetprgHLN50Zyh2t1ViP6XyBSFtQ_LUA@mail.gmail.com' \
    --to=benwhitten@gmail.com \
    --cc=afaerber@suse.de \
    --cc=davem@davemloft.net \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-lpwan@lists.infradead.org \
    --cc=mark.rutland@arm.com \
    --cc=netdev@vger.kernel.org \
    --cc=robh+dt@kernel.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).