Skip to content

Commit 72394cb

Browse files
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 <laurentiu.mihalcea@nxp.com>
1 parent ff55d12 commit 72394cb

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

app/boards/nxp_adsp_imx8.overlay

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
* Copyright 2023 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/* TODO: this is a temporary workaround the fact that
8+
* currently the Linux kernel doesn't enable MU2's power.
9+
* As such, CCM (and all IPs that depend on Zephyr's
10+
* clock management) are not usable.
11+
*/
12+
&lpuart2 {
13+
status = "disabled";
14+
};
15+
16+
&ccm {
17+
status = "disabled";
18+
};

app/boards/nxp_adsp_imx8x.overlay

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
* Copyright 2023 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/* TODO: this is a temporary workaround the fact that
8+
* currently the Linux kernel doesn't enable MU2's power.
9+
* As such, CCM (and all IPs that depend on Zephyr's
10+
* clock management) are not usable.
11+
*/
12+
&lpuart2 {
13+
status = "disabled";
14+
};
15+
16+
&ccm {
17+
status = "disabled";
18+
};

0 commit comments

Comments
 (0)