xref: /freebsd/sys/contrib/device-tree/Bindings/display/intel,keembay-msscam.yaml (revision 5def4c47d4bd90b209b9b4a4ba9faec15846d8fd)
1*5def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*5def4c47SEmmanuel Vadot%YAML 1.2
3*5def4c47SEmmanuel Vadot---
4*5def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/display/intel,keembay-msscam.yaml#
5*5def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*5def4c47SEmmanuel Vadot
7*5def4c47SEmmanuel Vadottitle: Devicetree bindings for Intel Keem Bay MSSCAM
8*5def4c47SEmmanuel Vadot
9*5def4c47SEmmanuel Vadotmaintainers:
10*5def4c47SEmmanuel Vadot  - Anitha Chrisanthus <anitha.chrisanthus@intel.com>
11*5def4c47SEmmanuel Vadot  - Edmond J Dea <edmund.j.dea@intel.com>
12*5def4c47SEmmanuel Vadot
13*5def4c47SEmmanuel Vadotdescription: |
14*5def4c47SEmmanuel Vadot   MSSCAM controls local clocks in the display subsystem namely LCD clocks and
15*5def4c47SEmmanuel Vadot   MIPI DSI clocks. It also configures the interconnect between LCD and
16*5def4c47SEmmanuel Vadot   MIPI DSI.
17*5def4c47SEmmanuel Vadot
18*5def4c47SEmmanuel Vadotproperties:
19*5def4c47SEmmanuel Vadot  compatible:
20*5def4c47SEmmanuel Vadot    items:
21*5def4c47SEmmanuel Vadot      - const: intel,keembay-msscam
22*5def4c47SEmmanuel Vadot      - const: syscon
23*5def4c47SEmmanuel Vadot
24*5def4c47SEmmanuel Vadot  reg:
25*5def4c47SEmmanuel Vadot    maxItems: 1
26*5def4c47SEmmanuel Vadot
27*5def4c47SEmmanuel Vadot  reg-io-width:
28*5def4c47SEmmanuel Vadot    const: 4
29*5def4c47SEmmanuel Vadot
30*5def4c47SEmmanuel Vadotrequired:
31*5def4c47SEmmanuel Vadot  - compatible
32*5def4c47SEmmanuel Vadot  - reg
33*5def4c47SEmmanuel Vadot  - reg-io-width
34*5def4c47SEmmanuel Vadot
35*5def4c47SEmmanuel VadotadditionalProperties: false
36*5def4c47SEmmanuel Vadot
37*5def4c47SEmmanuel Vadotexamples:
38*5def4c47SEmmanuel Vadot  - |
39*5def4c47SEmmanuel Vadot    msscam:msscam@20910000 {
40*5def4c47SEmmanuel Vadot        compatible = "intel,keembay-msscam", "syscon";
41*5def4c47SEmmanuel Vadot        reg = <0x20910000 0x30>;
42*5def4c47SEmmanuel Vadot        reg-io-width = <4>;
43*5def4c47SEmmanuel Vadot    };
44