Skip to content

Commit a7eddf5

Browse files
committed
tests: sdmmc: add STM32H747I Disco M7 test configuration
Add configuration and devicetree overlay files to enable running SDMMC subsystem tests on the STM32H747I Discovery M7 core. Signed-off-by: Sara Touqan <zephyr@exalt.ps> Signed-off-by: Sarah Younis <zephyr@exalt.ps> Signed-off-by: Mohammad Odeh <zephyr@exalt.ps>
1 parent 2df0b06 commit a7eddf5

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright (c) 2025 EXALT Technologies.
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
CONFIG_HEAP_MEM_POOL_SIZE=2048
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*
2+
* Copyright (c) 2025 EXALT Technologies.
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
/ {
8+
aliases {
9+
sdhc0 = &sdhc;
10+
};
11+
};
12+
13+
sdhc: &sdmmc1 {
14+
compatible = "st,stm32-sdhc";
15+
interrupts = <49 0>;
16+
interrupt-names = "event";
17+
hw-flow-control;
18+
bus-width = <4>;
19+
status = "okay";
20+
min-bus-freq = <DT_FREQ_K(400)>;
21+
max-bus-freq = <DT_FREQ_M(208)>;
22+
/delete-property/ disk-name;
23+
};

0 commit comments

Comments
 (0)