# SPDX-License-Identifier: GPL-2.0 # Copyright (C) 2008-2011 Freescale Semiconductor Inc. %YAML 1.2 --- $id: http://devicetree.org/schemas/crypto/fsl,sec-v4.0-mon.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Freescale Secure Non-Volatile Storage (SNVS) maintainers: - '"Horia Geantă" ' - Pankaj Gupta - Gaurav Jain description: Node defines address range and the associated interrupt for the SNVS function. This function monitors security state information & reports security violations. This also included rtc, system power off and ON/OFF key. properties: compatible: oneOf: - items: - const: fsl,sec-v4.0-mon - const: syscon - const: simple-mfd - items: - const: fsl,sec-v5.0-mon - const: fsl,sec-v4.0-mon - items: - enum: - fsl,sec-v5.3-mon - fsl,sec-v5.4-mon - const: fsl,sec-v5.0-mon - const: fsl,sec-v4.0-mon reg: maxItems: 1 interrupts: maxItems: 2 snvs-rtc-lp: type: object additionalProperties: false description: Secure Non-Volatile Storage (SNVS) Low Power (LP) RTC Node properties: compatible: const: fsl,sec-v4.0-mon-rtc-lp clocks: maxItems: 1 clock-names: const: snvs-rtc interrupts: # VFxxx has only one. What is the 2nd one? minItems: 1 maxItems: 2 regmap: description: Parent node containing registers $ref: /schemas/types.yaml#/definitions/phandle offset: description: LP register offset $ref: /schemas/types.yaml#/definitions/uint32 default: 0x34 required: - compatible - interrupts - regmap snvs-powerkey: type: object additionalProperties: false description: The snvs-pwrkey is designed to enable POWER key function which controlled by SNVS ONOFF, the driver can report the status of POWER key and wakeup system if pressed after system suspend. $ref: /schemas/input/input.yaml properties: compatible: const: fsl,sec-v4.0-pwrkey clocks: maxItems: 1 clock-names: const: snvs-pwrkey interrupts: maxItems: 1 regmap: description: Parent node containing registers $ref: /schemas/types.yaml#/definitions/phandle wakeup-source: true linux,keycode: $ref: /schemas/types.yaml#/definitions/uint32 default: 116 deprecated: true linux,keycodes: maxItems: 1 default: 116 power-off-time-sec: enum: [0, 5, 10, 15] required: - compatible - interrupts - regmap snvs-lpgpr: $ref: /schemas/nvmem/snvs-lpgpr.yaml# snvs-poweroff: description: The SNVS could drive signal to PMIC to turn off system power by setting SNVS_LP LPCR register. $ref: /schemas/power/reset/syscon-poweroff.yaml# required: - compatible - reg additionalProperties: false examples: - | #include #include sec_mon: sec-mon@314000 { compatible = "fsl,sec-v4.0-mon", "syscon", "simple-mfd"; reg = <0x314000 0x1000>; snvs-rtc-lp { compatible = "fsl,sec-v4.0-mon-rtc-lp"; regmap = <&sec_mon>; offset = <0x34>; clocks = <&clks IMX7D_SNVS_CLK>; clock-names = "snvs-rtc"; interrupts = , ; }; snvs-powerkey { compatible = "fsl,sec-v4.0-pwrkey"; regmap = <&sec_mon>; clocks = <&clks IMX7D_SNVS_CLK>; clock-names = "snvs-pwrkey"; interrupts = ; linux,keycode = <116>; /* KEY_POWER */ wakeup-source; }; };