From 30df8904d0f6973bbce1ecb51f14c1e4725ddf0b Mon Sep 17 00:00:00 2001 From: Andre Przywara Date: Thu, 24 Mar 2022 11:55:57 +0000 Subject: [PATCH] fix(morello): dts: add model names The core root node DT bindings require every DT to have a "model" property. Linux' "make dtbs_check" reports: ============ .../morello-soc.dt.yaml: /: 'model' is a required property From schema: dt-schema.git/dtschema/schemas/root-node.yaml ============ Add a model name to both the SoC and FVP files to improve bindings compliance. Signed-off-by: Andre Przywara Change-Id: I64923edb947f8939dfa24c13a37996b1ba34ea54 --- fdts/morello-fvp.dts | 3 ++- fdts/morello-soc.dts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/fdts/morello-fvp.dts b/fdts/morello-fvp.dts index 55c87bfc0..69c2abcbf 100644 --- a/fdts/morello-fvp.dts +++ b/fdts/morello-fvp.dts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020, Arm Limited. All rights reserved. + * Copyright (c) 2020-2022, Arm Limited. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ @@ -8,6 +8,7 @@ #include "morello.dtsi" / { + model = "Arm Morello Fixed Virtual Platform"; chosen { stdout-path = "serial0:115200n8"; diff --git a/fdts/morello-soc.dts b/fdts/morello-soc.dts index f93f980b4..2f9865bd9 100644 --- a/fdts/morello-soc.dts +++ b/fdts/morello-soc.dts @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021, Arm Limited. All rights reserved. + * Copyright (c) 2021-2022, Arm Limited. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ @@ -8,6 +8,7 @@ #include "morello.dtsi" / { + model = "Arm Morello System Development Platform"; chosen { stdout-path = "serial0:115200n8";