mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 05:34:28 +00:00
91600a6a84
The ESM handling on J7 processor board requires routing the MCU_SAFETY_ERROR signal to the PMIC on the board for critical safety error handling. The PMIC itself should then reset the board based on receiving it. Enable the support for the board by adding the esm node in place. Signed-off-by: Tero Kristo <t-kristo@ti.com>
34 lines
465 B
Text
34 lines
465 B
Text
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2020 Texas Instruments Incorporated - http://www.ti.com/
|
|
*/
|
|
|
|
/ {
|
|
chosen {
|
|
firmware-loader = &fs_loader0;
|
|
};
|
|
|
|
fs_loader0: fs_loader@0 {
|
|
u-boot,dm-pre-reloc;
|
|
compatible = "u-boot,fs-loader";
|
|
};
|
|
};
|
|
|
|
&main_r5fss0 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&main_r5fss0_core0 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&main_r5fss0_core1 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&tps659413a {
|
|
esm: esm {
|
|
compatible = "ti,tps659413-esm";
|
|
u-boot,dm-spl;
|
|
};
|
|
};
|