brintos

brintos / linux-shallow public Read only

0
0
Text · 1.0 KiB · 52aa3e2 Raw
61 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/rtc/nxp,pcf85363.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Philips PCF85263/PCF85363 Real Time Clock8 9maintainers:10  - Alexandre Belloni <alexandre.belloni@bootlin.com>11 12allOf:13  - $ref: rtc.yaml#14 15properties:16  compatible:17    enum:18      - nxp,pcf8526319      - nxp,pcf8536320 21  reg:22    maxItems: 123 24  "#clock-cells":25    const: 026 27  clock-output-names:28    maxItems: 129 30  interrupts:31    maxItems: 132 33  quartz-load-femtofarads:34    description:35      The capacitive load of the quartz(x-tal).36    enum: [6000, 7000, 12500]37    default: 700038 39  start-year: true40  wakeup-source: true41 42required:43  - compatible44  - reg45 46additionalProperties: false47 48examples:49  - |50    i2c {51        #address-cells = <1>;52        #size-cells = <0>;53 54        rtc@51 {55            compatible = "nxp,pcf85363";56            reg = <0x51>;57            #clock-cells = <0>;58            quartz-load-femtofarads = <12500>;59        };60    };61