1*833e5d42SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*833e5d42SEmmanuel Vadot%YAML 1.2 3*833e5d42SEmmanuel Vadot--- 4*833e5d42SEmmanuel Vadot$id: http://devicetree.org/schemas/power/reset/apple,smc-reboot.yaml# 5*833e5d42SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*833e5d42SEmmanuel Vadot 7*833e5d42SEmmanuel Vadottitle: Apple SMC Reboot Controller 8*833e5d42SEmmanuel Vadot 9*833e5d42SEmmanuel Vadotdescription: 10*833e5d42SEmmanuel Vadot The Apple System Management Controller (SMC) provides reboot functionality 11*833e5d42SEmmanuel Vadot on Apple Silicon SoCs. It uses NVMEM cells to store and track various 12*833e5d42SEmmanuel Vadot system state information related to boot, shutdown, and panic events. 13*833e5d42SEmmanuel Vadot 14*833e5d42SEmmanuel Vadotmaintainers: 15*833e5d42SEmmanuel Vadot - Sven Peter <sven@kernel.org> 16*833e5d42SEmmanuel Vadot 17*833e5d42SEmmanuel Vadotproperties: 18*833e5d42SEmmanuel Vadot compatible: 19*833e5d42SEmmanuel Vadot const: apple,smc-reboot 20*833e5d42SEmmanuel Vadot 21*833e5d42SEmmanuel Vadot nvmem-cells: 22*833e5d42SEmmanuel Vadot items: 23*833e5d42SEmmanuel Vadot - description: Flag indicating shutdown (as opposed to reboot) 24*833e5d42SEmmanuel Vadot - description: Stage at which the boot process stopped (0x30 for normal boot) 25*833e5d42SEmmanuel Vadot - description: Counter for boot errors 26*833e5d42SEmmanuel Vadot - description: Counter for system panics 27*833e5d42SEmmanuel Vadot 28*833e5d42SEmmanuel Vadot nvmem-cell-names: 29*833e5d42SEmmanuel Vadot items: 30*833e5d42SEmmanuel Vadot - const: shutdown_flag 31*833e5d42SEmmanuel Vadot - const: boot_stage 32*833e5d42SEmmanuel Vadot - const: boot_error_count 33*833e5d42SEmmanuel Vadot - const: panic_count 34*833e5d42SEmmanuel Vadot 35*833e5d42SEmmanuel Vadotrequired: 36*833e5d42SEmmanuel Vadot - compatible 37*833e5d42SEmmanuel Vadot - nvmem-cells 38*833e5d42SEmmanuel Vadot - nvmem-cell-names 39*833e5d42SEmmanuel Vadot 40*833e5d42SEmmanuel VadotadditionalProperties: false 41