Microchip is adding more non-MEC devices to Zephyr such as SAM and PIC32. Each device family will have its own subfolder. We moved the existing MEC DTSI files into a new mec subfolder. We also updated the existing MEC boards include paths. Signed-off-by: Scott Worley <scott.worley@microchip.com>
20 lines
445 B
Text
20 lines
445 B
Text
/*
|
|
* Copyright (c) 2024 Microchip Technology Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/* Microchip MEC5 SoC's optional hardware power guard controllers
|
|
* Include this file in the soc {} section in the relevant chip DTSI files.
|
|
*/
|
|
pwrgrd0: pwrgrd@40003000 {
|
|
reg = <0x40003000 0x80>;
|
|
interrupts = <88 3>;
|
|
status = "disabled";
|
|
};
|
|
|
|
pwrgrd1: pwrgrd@40003080 {
|
|
reg = <0x40003080 0x80>;
|
|
interrupts = <89 3>;
|
|
status = "disabled";
|
|
};
|