Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit 54f71b0

Browse files
committed
Merge tag 'rtc-6.10' of git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux
Pull RTC updates from Alexandre Belloni: "There is one new driver and then most of the changes are the device tree bindings conversions to yaml. New driver: - Epson RX8111 Drivers: - Many Device Tree bindings conversions to dtschema - pcf8563: wakeup-source support" * tag 'rtc-6.10' of git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux: pcf8563: add wakeup-source support rtc: rx8111: handle VLOW flag rtc: rx8111: demote warnings to debug level rtc: rx6110: Constify struct regmap_config dt-bindings: rtc: convert trivial devices into dtschema dt-bindings: rtc: stmp3xxx-rtc: convert to dtschema dt-bindings: rtc: pxa-rtc: convert to dtschema rtc: Add driver for Epson RX8111 dt-bindings: rtc: Add Epson RX8111 rtc: mcp795: drop unneeded MODULE_ALIAS rtc: nuvoton: Modify part number value rtc: test: Split rtc unit test into slow and normal speed test dt-bindings: rtc: nxp,lpc1788-rtc: convert to dtschema dt-bindings: rtc: digicolor-rtc: move to trivial-rtc dt-bindings: rtc: alphascale,asm9260-rtc: convert to dtschema dt-bindings: rtc: armada-380-rtc: convert to dtschema rtc: cros-ec: provide ID table for avoiding fallback match
2 parents 4286e1f + 4c9a91b commit 54f71b0

29 files changed

+702
-250
lines changed

Documentation/devicetree/bindings/rtc/alphascale,asm9260-rtc.txt

Lines changed: 0 additions & 19 deletions
This file was deleted.
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/rtc/alphascale,asm9260-rtc.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: Alphascale asm9260 SoC Real Time Clock
8+
9+
maintainers:
10+
- Javier Carrasco <javier.carrasco.cruz@gmail.com>
11+
12+
allOf:
13+
- $ref: rtc.yaml#
14+
15+
properties:
16+
compatible:
17+
const: alphascale,asm9260-rtc
18+
19+
reg:
20+
maxItems: 1
21+
22+
clocks:
23+
maxItems: 1
24+
25+
clock-names:
26+
const: ahb
27+
28+
interrupts:
29+
maxItems: 1
30+
31+
required:
32+
- compatible
33+
- reg
34+
- clocks
35+
- clock-names
36+
- interrupts
37+
38+
unevaluatedProperties: false
39+
40+
examples:
41+
- |
42+
#include <dt-bindings/clock/alphascale,asm9260.h>
43+
44+
rtc@800a0000 {
45+
compatible = "alphascale,asm9260-rtc";
46+
reg = <0x800a0000 0x100>;
47+
clocks = <&acc CLKID_AHB_RTC>;
48+
clock-names = "ahb";
49+
interrupts = <2>;
50+
};

Documentation/devicetree/bindings/rtc/armada-380-rtc.txt

Lines changed: 0 additions & 24 deletions
This file was deleted.

Documentation/devicetree/bindings/rtc/digicolor-rtc.txt

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/rtc/fsl,stmp3xxx-rtc.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: STMP3xxx/i.MX28 Time Clock Controller
8+
9+
maintainers:
10+
- Javier Carrasco <javier.carrasco.cruz@gmail.com>
11+
12+
allOf:
13+
- $ref: rtc.yaml#
14+
15+
properties:
16+
compatible:
17+
oneOf:
18+
- items:
19+
- enum:
20+
- fsl,imx28-rtc
21+
- fsl,imx23-rtc
22+
- const: fsl,stmp3xxx-rtc
23+
- const: fsl,stmp3xxx-rtc
24+
25+
reg:
26+
maxItems: 1
27+
28+
interrupts:
29+
maxItems: 1
30+
31+
stmp,crystal-freq:
32+
description:
33+
Override crystal frequency as determined from fuse bits.
34+
Use <0> for "no crystal".
35+
$ref: /schemas/types.yaml#/definitions/uint32
36+
enum: [0, 32000, 32768]
37+
38+
required:
39+
- compatible
40+
- reg
41+
- interrupts
42+
43+
unevaluatedProperties: false
44+
45+
examples:
46+
- |
47+
rtc@80056000 {
48+
compatible = "fsl,imx28-rtc", "fsl,stmp3xxx-rtc";
49+
reg = <0x80056000 2000>;
50+
interrupts = <29>;
51+
};

Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt

Lines changed: 0 additions & 17 deletions
This file was deleted.

Documentation/devicetree/bindings/rtc/lpc32xx-rtc.txt

Lines changed: 0 additions & 15 deletions
This file was deleted.
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/rtc/marvell,armada-380-rtc.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: RTC controller for the Armada 38x, 7K and 8K SoCs
8+
9+
maintainers:
10+
- Javier Carrasco <javier.carrasco.cruz@gmail.com>
11+
12+
allOf:
13+
- $ref: rtc.yaml#
14+
15+
properties:
16+
compatible:
17+
enum:
18+
- marvell,armada-380-rtc
19+
- marvell,armada-8k-rtc
20+
21+
reg:
22+
items:
23+
- description: RTC base address size
24+
- description: Base address and size of SoC related registers
25+
26+
reg-names:
27+
items:
28+
- const: rtc
29+
- const: rtc-soc
30+
31+
interrupts:
32+
maxItems: 1
33+
34+
required:
35+
- compatible
36+
- reg
37+
- reg-names
38+
- interrupts
39+
40+
unevaluatedProperties: false
41+
42+
examples:
43+
- |
44+
#include <dt-bindings/interrupt-controller/arm-gic.h>
45+
46+
rtc@a3800 {
47+
compatible = "marvell,armada-380-rtc";
48+
reg = <0xa3800 0x20>, <0x184a0 0x0c>;
49+
reg-names = "rtc", "rtc-soc";
50+
interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>;
51+
};
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/rtc/marvell,pxa-rtc.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: PXA Real Time Clock
8+
9+
maintainers:
10+
- Javier Carrasco <javier.carrasco.cruz@gmail.com>
11+
12+
allOf:
13+
- $ref: rtc.yaml#
14+
15+
properties:
16+
compatible:
17+
const: marvell,pxa-rtc
18+
19+
reg:
20+
maxItems: 1
21+
22+
interrupts:
23+
items:
24+
- description: 1 Hz
25+
- description: Alarm
26+
27+
required:
28+
- compatible
29+
- reg
30+
- interrupts
31+
32+
unevaluatedProperties: false
33+
34+
examples:
35+
- |
36+
rtc@40900000 {
37+
compatible = "marvell,pxa-rtc";
38+
reg = <0x40900000 0x3c>;
39+
interrupts = <30>, <31>;
40+
};

Documentation/devicetree/bindings/rtc/maxim,ds1742.txt

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)