brintos

brintos / linux-shallow public Read only

0
0
Text · 12.6 KiB · 19bb1f3 Raw
385 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/thermal/nvidia,tegra124-soctherm.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: NVIDIA Tegra124 SOCTHERM Thermal Management System8 9maintainers:10  - Thierry Reding <thierry.reding@gmail.com>11  - Jon Hunter <jonathanh@nvidia.com>12 13description: The SOCTHERM IP block contains thermal sensors, support for14  polled or interrupt-based thermal monitoring, CPU and GPU throttling based15  on temperature trip points, and handling external overcurrent notifications.16  It is also used to manage emergency shutdown in an overheating situation.17 18properties:19  compatible:20    enum:21      - nvidia,tegra124-soctherm22      - nvidia,tegra132-soctherm23      - nvidia,tegra210-soctherm24 25  reg:26    maxItems: 227 28  reg-names:29    maxItems: 230 31  interrupts:32    items:33      - description: module interrupt34      - description: EDP interrupt35 36  interrupt-names:37    items:38      - const: thermal39      - const: edp40 41  clocks:42    items:43      - description: thermal sensor clock44      - description: module clock45 46  clock-names:47    items:48      - const: tsensor49      - const: soctherm50 51  resets:52    items:53      - description: module reset54 55  reset-names:56    items:57      - const: soctherm58 59  "#thermal-sensor-cells":60    const: 161 62  throttle-cfgs:63    $ref: thermal-cooling-devices.yaml64    description: A sub-node which is a container of configuration for each65      hardware throttle events. These events can be set as cooling devices.66      Throttle event sub-nodes must be named as "light" or "heavy".67    unevaluatedProperties: false68    patternProperties:69      "^(light|heavy|oc1)$":70        type: object71        additionalProperties: false72 73        properties:74          "#cooling-cells":75            const: 276 77          nvidia,priority:78            $ref: /schemas/types.yaml#/definitions/uint3279            minimum: 180            maximum: 10081            description: Each throttles has its own throttle settings, so the82              SW need to set priorities for various throttle, the HW arbiter83              can select the final throttle settings. Bigger value indicates84              higher priority, In general, higher priority translates to lower85              target frequency. SW needs to ensure that critical thermal86              alarms are given higher priority, and ensure that there is no87              race if priority of two vectors is set to the same value.88 89          nvidia,cpu-throt-percent:90            description: This property is for Tegra124 and Tegra210. It is the91              throttling depth of pulse skippers, it's the percentage92              throttling.93            minimum: 094            maximum: 10095 96          nvidia,cpu-throt-level:97            $ref: /schemas/types.yaml#/definitions/uint3298            description: This property is only for Tegra132, it is the level99              of pulse skippers, which used to throttle clock frequencies. It100              indicates cpu clock throttling depth, and the depth can be101              programmed.102            enum:103              # none (TEGRA_SOCTHERM_THROT_LEVEL_NONE)104              - 0105              # low (TEGRA_SOCTHERM_THROT_LEVEL_LOW)106              - 1107              # medium (TEGRA_SOCTHERM_THROT_LEVEL_MED)108              - 2109              # high (TEGRA_SOCTHERM_THROT_LEVEL_HIGH)110              - 3111 112          nvidia,gpu-throt-level:113            $ref: /schemas/types.yaml#/definitions/uint32114            description: This property is for Tegra124 and Tegra210. It is the115              level of pulse skippers, which used to throttle clock116              frequencies. It indicates gpu clock throttling depth and can be117              programmed to any of the following values which represent a118              throttling percentage.119            enum:120              # none (0%, TEGRA_SOCTHERM_THROT_LEVEL_NONE)121              - 0122              # low (50%, TEGRA_SOCTHERM_THROT_LEVEL_LOW)123              - 1124              # medium (75%, TEGRA_SOCTHERM_THROT_LEVEL_MED)125              - 2126              # high (85%, TEGRA_SOCTHERM_THROT_LEVEL_HIGH)127              - 3128 129          # optional130          # Tegra210 specific and valid only for OCx throttle events131          nvidia,count-threshold:132            $ref: /schemas/types.yaml#/definitions/uint32133            description: Specifies the number of OC events that are required134              for triggering an interrupt. Interrupts are not triggered if the135              property is missing. A value of 0 will interrupt on every OC136              alarm.137 138          nvidia,polarity-active-low:139            $ref: /schemas/types.yaml#/definitions/flag140            description: Configures the polarity of the OC alaram signal. If141              present, this means assert low, otherwise assert high.142 143          nvidia,alarm-filter:144            $ref: /schemas/types.yaml#/definitions/uint32145            description: Number of clocks to filter event. When the filter146              expires (which means the OC event has not occurred for a long147              time), the counter is cleared and filter is rearmed.148            default: 0149 150          nvidia,throttle-period-us:151            description: Specifies the number of microseconds for which152              throttling is engaged after the OC event is deasserted.153            default: 0154 155  # optional156  nvidia,thermtrips:157    $ref: /schemas/types.yaml#/definitions/uint32-matrix158    description: |159      When present, this property specifies the temperature at which the160      SOCTHERM hardware will assert the thermal trigger signal to the Power161      Management IC, which can be configured to reset or shutdown the device.162      It is an array of pairs where each pair represents a tsensor ID followed163      by a temperature in milli Celcius. In the absence of this property the164      critical trip point will be used for thermtrip temperature.165 166      Note:167      - the "critical" type trip points will be used to set the temperature at168        which the SOCTHERM hardware will assert a thermal trigger if the169        "nvidia,thermtrips" property is missing.  When the thermtrips property170        is present, the breach of a critical trip point is reported back to171        the thermal framework to implement software shutdown.172 173      - the "hot" type trip points will be set to SOCTHERM hardware as the174        throttle temperature.  Once the temperature of this thermal zone is175        higher than it, it will trigger the HW throttle event.176    items:177      items:178        - description: sensor ID179          oneOf:180            - description: CPU sensor181              const: 0182            - description: MEM sensor183              const: 1184            - description: GPU sensor185              const: 2186            - description: PLLX sensor187              const: 3188        - description: temperature threshold (in millidegree Celsius)189 190required:191  - compatible192  - reg193  - reg-names194  - interrupts195  - interrupt-names196  - clocks197  - clock-names198  - resets199  - reset-names200 201allOf:202  - $ref: thermal-sensor.yaml203  - if:204      properties:205        compatible:206          contains:207            enum:208              - nvidia,tegra124-soctherm209              - nvidia,tegra210-soctherm210    then:211      properties:212        reg:213          items:214            - description: SOCTHERM register set215            - description: clock and reset controller registers216 217        reg-names:218          items:219            - const: soctherm-reg220            - const: car-reg221 222    else:223      properties:224        reg:225          items:226            - description: SOCTHERM register set227            - description: CCROC registers228 229        reg-names:230          items:231            - const: soctherm-reg232            - const: ccroc-reg233 234additionalProperties: false235 236examples:237  - |238    #include <dt-bindings/clock/tegra124-car.h>239    #include <dt-bindings/interrupt-controller/arm-gic.h>240    #include <dt-bindings/thermal/tegra124-soctherm.h>241 242    soctherm@700e2000 {243        compatible = "nvidia,tegra124-soctherm";244        reg = <0x700e2000 0x600>, /* SOC_THERM reg_base */245              <0x60006000 0x400>; /* CAR reg_base */246        reg-names = "soctherm-reg", "car-reg";247        interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>,248                     <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;249        interrupt-names = "thermal", "edp";250        clocks = <&tegra_car TEGRA124_CLK_TSENSOR>,251                 <&tegra_car TEGRA124_CLK_SOC_THERM>;252        clock-names = "tsensor", "soctherm";253        resets = <&tegra_car 78>;254        reset-names = "soctherm";255 256        #thermal-sensor-cells = <1>;257 258        nvidia,thermtrips = <TEGRA124_SOCTHERM_SENSOR_CPU 102500>,259                            <TEGRA124_SOCTHERM_SENSOR_GPU 103000>;260 261        throttle-cfgs {262            /*263             * When the "heavy" cooling device triggered,264             * the HW will skip cpu clock's pulse in 85% depth,265             * skip gpu clock's pulse in 85% level266             */267            heavy {268                nvidia,priority = <100>;269                nvidia,cpu-throt-percent = <85>;270                nvidia,gpu-throt-level = <TEGRA_SOCTHERM_THROT_LEVEL_HIGH>;271 272                #cooling-cells = <2>;273            };274 275            /*276             * When the "light" cooling device triggered,277             * the HW will skip cpu clock's pulse in 50% depth,278             * skip gpu clock's pulse in 50% level279             */280            light {281                nvidia,priority = <80>;282                nvidia,cpu-throt-percent = <50>;283                nvidia,gpu-throt-level = <TEGRA_SOCTHERM_THROT_LEVEL_LOW>;284 285                #cooling-cells = <2>;286            };287 288            /*289             * If these two devices are triggered in same time, the HW throttle290             * arbiter will select the highest priority as the final throttle291             * settings to skip cpu pulse.292             */293 294            oc1 {295                nvidia,priority = <50>;296                nvidia,polarity-active-low;297                nvidia,count-threshold = <100>;298                nvidia,alarm-filter = <5100000>;299                nvidia,throttle-period-us = <0>;300                nvidia,cpu-throt-percent = <75>;301                nvidia,gpu-throt-level = <TEGRA_SOCTHERM_THROT_LEVEL_MED>;302            };303        };304    };305 306  # referring to Tegra132's "reg", "reg-names" and "throttle-cfgs"307  - |308    thermal-sensor@700e2000 {309        compatible = "nvidia,tegra132-soctherm";310        reg = <0x700e2000 0x600>, /* SOC_THERM reg_base */311              <0x70040000 0x200>; /* CCROC reg_base */312        reg-names = "soctherm-reg", "ccroc-reg";313        interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>,314                     <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;315        interrupt-names = "thermal", "edp";316        clocks = <&tegra_car TEGRA124_CLK_TSENSOR>,317                 <&tegra_car TEGRA124_CLK_SOC_THERM>;318        clock-names = "tsensor", "soctherm";319        resets = <&tegra_car 78>;320        reset-names = "soctherm";321        #thermal-sensor-cells = <1>;322 323        throttle-cfgs {324            /*325             * When the "heavy" cooling device triggered,326             * the HW will skip cpu clock's pulse in HIGH level327             */328            heavy {329                nvidia,priority = <100>;330                nvidia,cpu-throt-level = <TEGRA_SOCTHERM_THROT_LEVEL_HIGH>;331 332                #cooling-cells = <2>;333            };334 335            /*336             * When the "light" cooling device triggered,337             * the HW will skip cpu clock's pulse in MED level338             */339            light {340                nvidia,priority = <80>;341                nvidia,cpu-throt-level = <TEGRA_SOCTHERM_THROT_LEVEL_MED>;342 343                #cooling-cells = <2>;344            };345 346            /*347             * If these two devices are triggered in same time, the HW throttle348             * arbiter will select the highest priority as the final throttle349             * settings to skip cpu pulse.350             */351        };352    };353 354  # referring to thermal sensors355  - |356    thermal-zones {357        cpu-thermal {358            polling-delay-passive = <1000>;359            polling-delay = <1000>;360 361            thermal-sensors = <&soctherm TEGRA124_SOCTHERM_SENSOR_CPU>;362 363            trips {364                cpu_shutdown_trip: shutdown-trip {365                    temperature = <102500>;366                    hysteresis = <1000>;367                    type = "critical";368                };369 370                cpu_throttle_trip: throttle-trip {371                    temperature = <100000>;372                    hysteresis = <1000>;373                    type = "hot";374                };375            };376 377            cooling-maps {378                map0 {379                    trip = <&cpu_throttle_trip>;380                    cooling-device = <&throttle_heavy 1 1>;381                };382            };383        };384    };385