xref: /freebsd/sys/contrib/device-tree/Bindings/pwm/intel,keembay-pwm.yaml (revision 7ef62cebc2f965b0f640263e179276928885e33d)
15def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
25def4c47SEmmanuel Vadot# Copyright (C) 2020 Intel Corporation
35def4c47SEmmanuel Vadot%YAML 1.2
45def4c47SEmmanuel Vadot---
55def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/pwm/intel,keembay-pwm.yaml#
65def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
75def4c47SEmmanuel Vadot
8*7ef62cebSEmmanuel Vadottitle: Intel Keem Bay PWM
95def4c47SEmmanuel Vadot
105def4c47SEmmanuel Vadotmaintainers:
115def4c47SEmmanuel Vadot  - Vijayakannan Ayyathurai <vijayakannan.ayyathurai@intel.com>
125def4c47SEmmanuel Vadot
135def4c47SEmmanuel VadotallOf:
145def4c47SEmmanuel Vadot  - $ref: pwm.yaml#
155def4c47SEmmanuel Vadot
165def4c47SEmmanuel Vadotproperties:
175def4c47SEmmanuel Vadot  compatible:
185def4c47SEmmanuel Vadot    enum:
195def4c47SEmmanuel Vadot      - intel,keembay-pwm
205def4c47SEmmanuel Vadot
215def4c47SEmmanuel Vadot  reg:
225def4c47SEmmanuel Vadot    maxItems: 1
235def4c47SEmmanuel Vadot
245def4c47SEmmanuel Vadot  clocks:
255def4c47SEmmanuel Vadot    maxItems: 1
265def4c47SEmmanuel Vadot
275def4c47SEmmanuel Vadot  "#pwm-cells":
285def4c47SEmmanuel Vadot    const: 2
295def4c47SEmmanuel Vadot
305def4c47SEmmanuel Vadotrequired:
315def4c47SEmmanuel Vadot  - compatible
325def4c47SEmmanuel Vadot  - reg
335def4c47SEmmanuel Vadot  - clocks
345def4c47SEmmanuel Vadot
355def4c47SEmmanuel VadotadditionalProperties: false
365def4c47SEmmanuel Vadot
375def4c47SEmmanuel Vadotexamples:
385def4c47SEmmanuel Vadot  - |
395def4c47SEmmanuel Vadot    #define KEEM_BAY_A53_GPIO
405def4c47SEmmanuel Vadot
415def4c47SEmmanuel Vadot    pwm@203200a0 {
425def4c47SEmmanuel Vadot        compatible = "intel,keembay-pwm";
435def4c47SEmmanuel Vadot        reg = <0x203200a0 0xe8>;
445def4c47SEmmanuel Vadot        clocks = <&scmi_clk KEEM_BAY_A53_GPIO>;
455def4c47SEmmanuel Vadot        #pwm-cells = <2>;
465def4c47SEmmanuel Vadot    };
47