1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/arm/hisilicon/controller/hip04-bootwrapper.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Bootwrapper boot method 8 9maintainers: 10 - Wei Xu <xuwei5@hisilicon.com> 11 12description: Bootwrapper boot method (software protocol on SMP) 13 14properties: 15 compatible: 16 items: 17 - const: hisilicon,hip04-bootwrapper 18 19 boot-method: 20 $ref: /schemas/types.yaml#/definitions/uint32-array 21 description: | 22 Address and size of boot method. 23 [0]: bootwrapper physical address 24 [1]: bootwrapper size 25 [2]: relocation physical address 26 [3]: relocation size 27 minItems: 2 28 maxItems: 4 29 30required: 31 - compatible 32 - boot-method 33 34additionalProperties: false 35... 36