~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/clock/starfive,jh7110-aoncrg.yaml

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
  2 %YAML 1.2
  3 ---
  4 $id: http://devicetree.org/schemas/clock/starfive,jh7110-aoncrg.yaml#
  5 $schema: http://devicetree.org/meta-schemas/core.yaml#
  6 
  7 title: StarFive JH7110 Always-On Clock and Reset Generator
  8 
  9 maintainers:
 10   - Emil Renner Berthing <kernel@esmil.dk>
 11 
 12 properties:
 13   compatible:
 14     const: starfive,jh7110-aoncrg
 15 
 16   reg:
 17     maxItems: 1
 18 
 19   clocks:
 20     oneOf:
 21       - items:
 22           - description: Main Oscillator (24 MHz)
 23           - description: GMAC0 RMII reference or GMAC0 RGMII RX
 24           - description: STG AXI/AHB
 25           - description: APB Bus
 26           - description: GMAC0 GTX
 27 
 28       - items:
 29           - description: Main Oscillator (24 MHz)
 30           - description: GMAC0 RMII reference or GMAC0 RGMII RX
 31           - description: STG AXI/AHB or GMAC0 RGMII RX
 32           - description: APB Bus or STG AXI/AHB
 33           - description: GMAC0 GTX or APB Bus
 34           - description: RTC Oscillator (32.768 kHz) or GMAC0 GTX
 35 
 36       - items:
 37           - description: Main Oscillator (24 MHz)
 38           - description: GMAC0 RMII reference
 39           - description: GMAC0 RGMII RX
 40           - description: STG AXI/AHB
 41           - description: APB Bus
 42           - description: GMAC0 GTX
 43           - description: RTC Oscillator (32.768 kHz)
 44 
 45   clock-names:
 46     oneOf:
 47       - minItems: 5
 48         items:
 49           - const: osc
 50           - enum:
 51               - gmac0_rmii_refin
 52               - gmac0_rgmii_rxin
 53           - const: stg_axiahb
 54           - const: apb_bus
 55           - const: gmac0_gtxclk
 56           - const: rtc_osc
 57 
 58       - minItems: 6
 59         items:
 60           - const: osc
 61           - const: gmac0_rmii_refin
 62           - const: gmac0_rgmii_rxin
 63           - const: stg_axiahb
 64           - const: apb_bus
 65           - const: gmac0_gtxclk
 66           - const: rtc_osc
 67 
 68   '#clock-cells':
 69     const: 1
 70     description:
 71       See <dt-bindings/clock/starfive,jh7110-crg.h> for valid indices.
 72 
 73   '#reset-cells':
 74     const: 1
 75     description:
 76       See <dt-bindings/reset/starfive,jh7110-crg.h> for valid indices.
 77 
 78 required:
 79   - compatible
 80   - reg
 81   - clocks
 82   - clock-names
 83   - '#clock-cells'
 84   - '#reset-cells'
 85 
 86 additionalProperties: false
 87 
 88 examples:
 89   - |
 90     #include <dt-bindings/clock/starfive,jh7110-crg.h>
 91 
 92     clock-controller@17000000 {
 93         compatible = "starfive,jh7110-aoncrg";
 94         reg = <0x17000000 0x10000>;
 95         clocks = <&osc>, <&gmac0_rmii_refin>,
 96                  <&gmac0_rgmii_rxin>,
 97                  <&syscrg JH7110_SYSCLK_STG_AXIAHB>,
 98                  <&syscrg JH7110_SYSCLK_APB_BUS>,
 99                  <&syscrg JH7110_SYSCLK_GMAC0_GTXCLK>,
100                  <&rtc_osc>;
101         clock-names = "osc", "gmac0_rmii_refin",
102                       "gmac0_rgmii_rxin", "stg_axiahb",
103                       "apb_bus", "gmac0_gtxclk",
104                       "rtc_osc";
105         #clock-cells = <1>;
106         #reset-cells = <1>;
107     };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php