Skip to content

Commit 9969ae5

Browse files
VitekSTfabiobaltieri
authored andcommitted
samples: rtxxx-amp: Enable mimxrt700_evk/mimxrt798s/hifi4
Add remote target selection. Explicitly enable GPIO support in amp_blinky. Disable peripherals driven from the hifi4 domain in the cm33_cpu0 domain to overcome resource conflicts. Select mailboxes for amp_mbox. Set CONFIG_DMA_TCD_QUEUE_SIZE for amp_audio_output and amp_audio_loopback. Select i2s devices for amp_audio_loopback. Signed-off-by: Vit Stanicek <[email protected]>
1 parent 837e745 commit 9969ae5

File tree

11 files changed

+74
-1
lines changed

11 files changed

+74
-1
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#
2+
# Copyright 2025 NXP
3+
#
4+
# SPDX-License-Identifier: Apache-2.0
5+
#
6+
7+
CONFIG_DMA_TCD_QUEUE_SIZE=8
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* Copyright 2025 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/ {
8+
aliases {
9+
i2s-rx = &sai0;
10+
i2s-tx = &sai0;
11+
};
12+
};

samples/boards/nxp/adsp/rtxxx/amp_audio_loopback/sample.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ common:
88
min_flash: 1024
99
platform_allow:
1010
- mimxrt685_evk/mimxrt685s/cm33
11+
- mimxrt700_evk/mimxrt798s/cm33_cpu0
1112
harness: console
1213
harness_config:
1314
type: one_line
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/*
2+
* Copyright 2025 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
&flexcomm2 {
8+
status = "disabled";
9+
};
10+
11+
&flexcomm2_lpi2c2 {
12+
status = "disabled";
13+
};
14+
15+
&gpio0 {
16+
status = "disabled";
17+
};
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#
2+
# Copyright 2025 NXP
3+
#
4+
# SPDX-License-Identifier: Apache-2.0
5+
#
6+
7+
CONFIG_DMA_TCD_QUEUE_SIZE=4

samples/boards/nxp/adsp/rtxxx/amp_audio_output/sample.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ common:
88
min_flash: 1024
99
platform_allow:
1010
- mimxrt685_evk/mimxrt685s/cm33
11+
- mimxrt700_evk/mimxrt798s/cm33_cpu0
1112
harness: console
1213
harness_config:
1314
type: one_line

samples/boards/nxp/adsp/rtxxx/amp_blinky/sample.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ common:
88
min_flash: 1024
99
platform_allow:
1010
- mimxrt685_evk/mimxrt685s/cm33
11+
- mimxrt700_evk/mimxrt798s/cm33_cpu0
1112
harness: console
1213
harness_config:
1314
type: one_line
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/*
2+
* Copyright 2025 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/ {
8+
aliases {
9+
mbox = &mbox4;
10+
};
11+
};
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/*
2+
* Copyright 2025 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/ {
8+
aliases {
9+
mbox = &mbox4;
10+
};
11+
};

samples/boards/nxp/adsp/rtxxx/amp_mbox/sample.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ common:
88
min_flash: 1024
99
platform_allow:
1010
- mimxrt685_evk/mimxrt685s/cm33
11+
- mimxrt700_evk/mimxrt798s/cm33_cpu0
1112
harness: console
1213
harness_config:
1314
type: one_line

0 commit comments

Comments
 (0)