blob: eace94f5fa4b2bd8e46823333f0bd0ba25016841 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
/*
* Copyright (C) 2024 Marek Vasut <marex@denx.de>
*/
#include "stm32mp13xx-dhcor-u-boot.dtsi"
&uart4 {
bootph-all;
};
&uart4_pins_b {
bootph-all;
pins1 {
bootph-all;
};
pins2 {
bootph-all;
};
};
&usbphyc {
bootph-all;
};
&st33htph {
reset-gpios = <&gpioe 12 GPIO_ACTIVE_LOW>;
};
/* LDO2 is expansion connector 3V3 supply on STM32MP13xx DHCOR DHSBC rev.200 */
&vdd_ldo2 {
bootph-all;
regulator-always-on;
regulator-boot-on;
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
};
/* LDO5 is carrier board 3V3 supply on STM32MP13xx DHCOR DHSBC rev.200 */
&vdd_sd {
bootph-all;
regulator-always-on;
regulator-boot-on;
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
};
|