hc
2024-10-12 a5969cabbb4660eab42b6ef0412cbbd1200cf14d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/hwmon/moortec,mr75203.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
 
title: Moortec Semiconductor MR75203 PVT Controller bindings
 
maintainers:
  - Rahul Tanwar <rtanwar@maxlinear.com>
 
properties:
  compatible:
    const: moortec,mr75203
 
  reg:
    items:
      - description: PVT common registers
      - description: PVT temprature sensor registers
      - description: PVT process detector registers
      - description: PVT voltage monitor registers
 
  reg-names:
    items:
      - const: common
      - const: ts
      - const: pd
      - const: vm
 
  intel,vm-map:
    description:
      PVT controller has 5 VM (voltage monitor) sensors.
      vm-map defines CPU core to VM instance mapping. A
      value of 0xff means that VM sensor is unused.
    $ref: /schemas/types.yaml#definitions/uint8-array
    maxItems: 5
 
  clocks:
    maxItems: 1
 
  resets:
    maxItems: 1
 
  "#thermal-sensor-cells":
    const: 1
 
required:
  - compatible
  - reg
  - reg-names
  - intel,vm-map
  - clocks
  - resets
  - "#thermal-sensor-cells"
 
additionalProperties: false
 
examples:
  - |
    pvt: pvt@e0680000 {
        compatible = "moortec,mr75203";
        reg = <0xe0680000 0x80>,
              <0xe0680080 0x180>,
              <0xe0680200 0x200>,
              <0xe0680400 0xc00>;
        reg-names = "common", "ts", "pd", "vm";
        intel,vm-map = [03 01 04 ff ff];
        clocks = <&osc0>;
        resets = <&rcu0 0x40 7>;
        #thermal-sensor-cells = <1>;
    };