Skip to content

Commit

Permalink
app: boards: Add overlays for i.MX8QM and i.MX8QXP
Browse files Browse the repository at this point in the history
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
LaurentiuM1234 committed Nov 8, 2023
1 parent ff55d12 commit 72394cb
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
18 changes: 18 additions & 0 deletions app/boards/nxp_adsp_imx8.overlay
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";
};
18 changes: 18 additions & 0 deletions app/boards/nxp_adsp_imx8x.overlay
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";
};

0 comments on commit 72394cb

Please sign in to comment.