Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

boards: Add overlays for QM/QXP to fix upcoming issue #8460

Merged
merged 2 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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";
};
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ manifest:

- name: zephyr
repo-path: zephyr
revision: 26002b0607081182cd6183b690dc0f24f1ef7b29
revision: 35e9104de7a32a1cb2f7083015da0609a89f04b5
remote: zephyrproject

# Import some projects listed in zephyr/west.yml@revision
Expand Down