Skip to content

Commit 6d6dcb1

Browse files
committed
boards: frdm_mcxa156: Add overlay for rework spi
Add overlay for a reworked board that breaks out LPSPI1 to the arduino header. Signed-off-by: Declan Snyder <declan.snyder@nxp.com>
1 parent 6896593 commit 6d6dcb1

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/*
2+
* Copyright 2025 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
&lpspi1 {
8+
status = "okay";
9+
pinctrl-0 = <&pinmux_lpspi1>;
10+
pinctrl-names = "default";
11+
};
12+
13+
&pinctrl {
14+
/* J2 pins 12, 10, 8, 6 -> CLK, MISO, MOSI, PCS */
15+
pinmux_lpspi1: pinmux_lpspi1 {
16+
group0 {
17+
pinmux = <LPSPI1_SDO_P2_13>,
18+
<LPSPI1_SCK_P2_12>,
19+
<LPSPI1_SDI_P2_16>,
20+
<LPSPI1_PCS1_P2_6>;
21+
slew-rate = "fast";
22+
drive-strength = "low";
23+
input-enable;
24+
};
25+
};
26+
};

0 commit comments

Comments
 (0)