Path: blob/master/Documentation/core-api/kho/bindings/kho.yaml
26298 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3title: Kexec HandOver (KHO) root tree45maintainers:6- Mike Rapoport <rppt@kernel.org>7- Changyuan Lyu <changyuanl@google.com>89description: |10System memory preserved by KHO across kexec.1112properties:13compatible:14enum:15- kho-v11617preserved-memory-map:18description: |19physical address (u64) of an in-memory structure describing all preserved20folios and memory ranges.2122patternProperties:23"$[0-9a-f_]+^":24$ref: sub-fdt.yaml#25description: physical address of a KHO user's own FDT.2627required:28- compatible29- preserved-memory-map3031additionalProperties: false3233examples:34- |35kho {36compatible = "kho-v1";37preserved-memory-map = <0xf0be16 0x1000000>;3839memblock {40fdt = <0x80cc16 0x1000000>;41};42};434445