Commit b31abceb authored by Rob Herring's avatar Rob Herring
Browse files

dt-bindings: altera: Convert clkmgr binding to json-schema



Convert Altera clkmgr to DT schema format using json-schema.

Cc: Mark Rutland <mark.rutland@arm.com>
Acked-by: default avatarDinh Nguyen <dinguyen@kernel.org>
Cc: devicetree@vger.kernel.org
Signed-off-by: default avatarRob Herring <robh@kernel.org>
parent 00ce8a80
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
Altera SOCFPGA Clock Manager

Required properties:
- compatible : "altr,clk-mgr"
- reg : Should contain base address and length for Clock Manager

Example:
	 clkmgr@ffd04000 {
		compatible = "altr,clk-mgr";
		reg = <0xffd04000 0x1000>;
	};
+31 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
%YAML 1.2
---
$id: http://devicetree.org/schemas/arm/altera/socfpga-clk-manager.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Altera SOCFPGA Clock Manager

maintainers:
  - Dinh Nguyen <dinguyen@kernel.org>

description: test

properties:
  compatible:
    items:
      - const: altr,clk-mgr
  reg:
    maxItems: 1

required:
  - compatible

examples:
  - |
    clkmgr@ffd04000 {
      compatible = "altr,clk-mgr";
      reg = <0xffd04000 0x1000>;
    };

...