39 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/st,m48t86.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: ST M48T86 / Dallas DS12887 RTC with SRAM8 9maintainers:10 - Alexandre Belloni <alexandre.belloni@bootlin.com>11 12allOf:13 - $ref: rtc.yaml14 15properties:16 compatible:17 enum:18 - st,m48t8619 20 reg:21 items:22 - description: index register23 - description: data register24 25required:26 - compatible27 - reg28 29unevaluatedProperties: false30 31examples:32 - |33 rtc@10800000 {34 compatible = "st,m48t86";35 reg = <0x10800000 0x1>, <0x11700000 0x1>;36 };37 38...39