mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-06 19:39:05 +00:00

DTC issues below warnings for STM32MP1 platform for using upper case in unit address: fdts/stm32mp15-ddr.dtsi:8.20-151.5: Warning (simple_bus_reg): /soc/ddr@5A003000: simple-bus unit address format error, expected "5a003000" fdts/stm32mp157c-security.dtsi:9.25-13.5: Warning (simple_bus_reg): /soc/stgen@5C008000: simple-bus unit address format error, expected "5c008000" Fix this by using the lower case unit address for concerned nodes. Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Change-Id: Id3d19ac3b47ec6bcea2bd3382225e2e923dc4a70
34 lines
618 B
Text
34 lines
618 B
Text
/*
|
|
* Copyright (c) 2017-2019, STMicroelectronics - All Rights Reserved
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+ BSD-3-Clause
|
|
*/
|
|
|
|
/ {
|
|
soc {
|
|
stgen: stgen@5c008000 {
|
|
compatible = "st,stm32-stgen";
|
|
reg = <0x5C008000 0x1000>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
|
|
&bsec {
|
|
mac_addr: mac_addr@e4 {
|
|
reg = <0xe4 0x6>;
|
|
status = "okay";
|
|
secure-status = "okay";
|
|
};
|
|
/* Spare field to align on 32-bit OTP granularity */
|
|
spare_ns_ea: spare_ns_ea@ea {
|
|
reg = <0xea 0x2>;
|
|
status = "okay";
|
|
secure-status = "okay";
|
|
};
|
|
board_id: board_id@ec {
|
|
reg = <0xec 0x4>;
|
|
status = "okay";
|
|
secure-status = "okay";
|
|
};
|
|
};
|