15def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 25def4c47SEmmanuel Vadot%YAML 1.2 35def4c47SEmmanuel Vadot--- 45def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/clock/intel,easic-n5x.yaml# 55def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 65def4c47SEmmanuel Vadot 7*8bab661aSEmmanuel Vadottitle: Intel SoCFPGA eASIC N5X platform clock controller 85def4c47SEmmanuel Vadot 95def4c47SEmmanuel Vadotmaintainers: 105def4c47SEmmanuel Vadot - Dinh Nguyen <dinguyen@kernel.org> 115def4c47SEmmanuel Vadot 125def4c47SEmmanuel Vadotdescription: 135def4c47SEmmanuel Vadot The Intel eASIC N5X Clock controller is an integrated clock controller, which 145def4c47SEmmanuel Vadot generates and supplies to all modules. 155def4c47SEmmanuel Vadot 165def4c47SEmmanuel Vadotproperties: 175def4c47SEmmanuel Vadot compatible: 185def4c47SEmmanuel Vadot const: intel,easic-n5x-clkmgr 195def4c47SEmmanuel Vadot 205def4c47SEmmanuel Vadot '#clock-cells': 215def4c47SEmmanuel Vadot const: 1 225def4c47SEmmanuel Vadot 235def4c47SEmmanuel Vadot reg: 245def4c47SEmmanuel Vadot maxItems: 1 255def4c47SEmmanuel Vadot 265def4c47SEmmanuel Vadot clocks: 275def4c47SEmmanuel Vadot maxItems: 1 285def4c47SEmmanuel Vadot 295def4c47SEmmanuel Vadotrequired: 305def4c47SEmmanuel Vadot - compatible 315def4c47SEmmanuel Vadot - reg 325def4c47SEmmanuel Vadot - clocks 335def4c47SEmmanuel Vadot - '#clock-cells' 345def4c47SEmmanuel Vadot 355def4c47SEmmanuel VadotadditionalProperties: false 365def4c47SEmmanuel Vadot 375def4c47SEmmanuel Vadotexamples: 385def4c47SEmmanuel Vadot # Clock controller node: 395def4c47SEmmanuel Vadot - | 405def4c47SEmmanuel Vadot clkmgr: clock-controller@ffd10000 { 415def4c47SEmmanuel Vadot compatible = "intel,easic-n5x-clkmgr"; 425def4c47SEmmanuel Vadot reg = <0xffd10000 0x1000>; 435def4c47SEmmanuel Vadot clocks = <&osc1>; 445def4c47SEmmanuel Vadot #clock-cells = <1>; 455def4c47SEmmanuel Vadot }; 465def4c47SEmmanuel Vadot... 47