-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app: boards: Add overlays for i.MX8QM and i.MX8QXP
This commit is needed because the current Linux kernel version used in our internal testing doesn't contain the patches that enable MU2's power. As such, to avoid failures in the internal tests, disable the CCM and LPUART2 IPs. Signed-off-by: Laurentiu Mihalcea <[email protected]>
- Loading branch information
1 parent
4da19a9
commit 925a486
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* Copyright 2023 NXP | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/* TODO: this is a temporary workaround the fact that | ||
* currently the Linux kernel doesn't enable MU2's power. | ||
* As such, CCM (and all IPs that depend on Zephyr's | ||
* clock management) are not usable. | ||
*/ | ||
&lpuart2 { | ||
status = "disabled"; | ||
}; | ||
|
||
&ccm { | ||
status = "disabled"; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* Copyright 2023 NXP | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/* TODO: this is a temporary workaround the fact that | ||
* currently the Linux kernel doesn't enable MU2's power. | ||
* As such, CCM (and all IPs that depend on Zephyr's | ||
* clock management) are not usable. | ||
*/ | ||
&lpuart2 { | ||
status = "disabled"; | ||
}; | ||
|
||
&ccm { | ||
status = "disabled"; | ||
}; |