1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 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 SRAM 8 9maintainers: 10 - Alexandre Belloni <alexandre.belloni@bootlin.com> 11 12allOf: 13 - $ref: rtc.yaml 14 15properties: 16 compatible: 17 enum: 18 - st,m48t86 19 20 reg: 21 items: 22 - description: index register 23 - description: data register 24 25required: 26 - compatible 27 - reg 28 29unevaluatedProperties: false 30 31examples: 32 - | 33 rtc@10800000 { 34 compatible = "st,m48t86"; 35 reg = <0x10800000 0x1>, <0x11700000 0x1>; 36 }; 37 38... 39