[PATCH 1/4] dt-bindings: rtc: Add NXP PCF8525 RTC
Shiv Prakash Gupta <[email protected]>
| Newsgroups | org.kernel.vger.linux-hwmon,org.kernel.vger.linux-devicetree,org.kernel.vger.linux-kernel,org.kernel.vger.linux-rtc,org.kernel.vger.linux-watchdog |
|---|---|
| Message-ID | <[email protected]> |
Add a Devicetree binding for the NXP PCF8525 I2C RTC. Describe the optional INTA interrupt used for RTC alarm and timestamp events, and the INTB interrupt used by the watchdog. Add properties to select the external crystal load capacitance and temperature-compensation crystal model. Also allow the common start-year, wakeup-source and reset-source properties, with reset-source enabling watchdog registration Signed-off-by: Lakshay Piplani <[email protected]> Signed-off-by: Shiv Prakash Gupta <[email protected]> --- .../devicetree/bindings/rtc/nxp,pcf8525.yaml | 86 +++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 Documentation/devicetree/bindings/rtc/nxp,pcf8525.yaml diff --git a/Documentation/devicetree/bindings/rtc/nxp,pcf8525.yaml b/Documentation/devicetree/bindings/rtc/nxp,pcf8525.yaml new file mode 100644 index 000000000000..bee71ec3da80 --- /dev/null +++ b/Documentation/devicetree/bindings/rtc/nxp,pcf8525.yaml @@ -0,0 +1,86 @@ +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/rtc/nxp,pcf8525.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: NXP PCF8525 Real Time Clock + +description: + The PCF8525 is an I2C real-time clock with alarm, timestamp, watchdog, + backup battery switch-over, and temperature compensation for an external + 32.768 kHz crystal. + +allOf: + - $ref: rtc.yaml# + +maintainers: + - Lakshay Piplani <[email protected]> + - Shiv Prakash Gupta <[email protected]> + +properties: + compatible: + enum: + - nxp,pcf8525 + + reg: + maxItems: 1 + + interrupts: + minItems: 1 + maxItems: 2 + description: + INTA, followed by INTB when both interrupt outputs are connected. + + interrupt-names: + minItems: 1 + items: + - const: inta + - const: intb + + quartz-load-femtofarads: + description: + Effective load capacitance of the external 32.768 kHz crystal. + enum: [6000, 7000] + default: 6000 + + nxp,xtal-type: + $ref: /schemas/types.yaml#/definitions/uint32 + description: + Crystal model used by the temperature compensation engine. + Value 1 selects -0.035 ppm/degC^2 and value 2 selects + -0.04 ppm/degC^2. + enum: [1, 2] + default: 1 + + start-year: true + + wakeup-source: true + + reset-source: true + +required: + - compatible + - reg + +additionalProperties: false + +examples: + - | + #include <dt-bindings/interrupt-controller/irq.h> + i2c { + #address-cells = <1>; + #size-cells = <0>; + + rtc@51 { + compatible = "nxp,pcf8525"; + reg = <0x51>; + interrupt-parent = <&gpio2>; + interrupts = <2 IRQ_TYPE_EDGE_FALLING>, + <3 IRQ_TYPE_EDGE_FALLING>; + interrupt-names = "inta", "intb"; + quartz-load-femtofarads = <7000>; + nxp,xtal-type = <2>; + reset-source; + }; + }; -- 2.34.1