Skip to content

Commit 3190e9f

Browse files
AlexCharltonkartben
authored andcommitted
boards: beaglev_fire: fix uart
uart1 is not connected to anything as far as I can tell. uart0 was the previous correctly selected uart, so this changes back to that. Signed-off-by: Alex Charlton <[email protected]>
1 parent 1caf683 commit 3190e9f

File tree

4 files changed

+12
-36
lines changed

4 files changed

+12
-36
lines changed

boards/beagle/beaglev_fire/beaglev_fire_common.dtsi

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,18 @@
1414
compatible = "beagle,beaglev-fire", "microchip,mpfs";
1515
aliases {
1616
};
17+
18+
chosen {
19+
zephyr,console = &uart0;
20+
zephyr,shell-uart = &uart0;
21+
zephyr,sram = &sram1;
22+
};
23+
};
24+
25+
&uart0 {
26+
status = "okay";
27+
current-speed = <115200>;
28+
clock-frequency = <150000000>;
1729
};
1830

1931
&gpio2 {

boards/beagle/beaglev_fire/beaglev_fire_polarfire_e51.dts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,4 @@
2121
status = "disabled";
2222
};
2323
};
24-
25-
chosen {
26-
zephyr,console = &uart0;
27-
zephyr,shell-uart = &uart0;
28-
zephyr,sram = &sram1;
29-
};
30-
};
31-
32-
&uart0 {
33-
status = "okay";
34-
current-speed = <115200>;
35-
clock-frequency = <150000000>;
3624
};

boards/beagle/beaglev_fire/beaglev_fire_polarfire_u54.dts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,9 @@
55
model = "beagle,beaglev-fire";
66
compatible = "beagle,beaglev-fire", "microchip,mpfs";
77

8-
chosen {
9-
zephyr,console = &uart1;
10-
zephyr,shell-uart = &uart1;
11-
zephyr,sram = &sram1;
12-
};
13-
148
cpus {
159
cpu@0 {
1610
status = "disabled";
1711
};
1812
};
1913
};
20-
21-
&uart1 {
22-
status = "okay";
23-
current-speed = <115200>;
24-
clock-frequency = <150000000>;
25-
};

boards/beagle/beaglev_fire/beaglev_fire_polarfire_u54_smp.dts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,4 @@
44
/ {
55
model = "beagle,beaglev-fire";
66
compatible = "beagle,beaglev-fire", "microchip,mpfs";
7-
8-
chosen {
9-
zephyr,console = &uart1;
10-
zephyr,shell-uart = &uart1;
11-
zephyr,sram = &sram1;
12-
};
13-
};
14-
15-
&uart1 {
16-
status = "okay";
17-
current-speed = <115200>;
18-
clock-frequency = <150000000>;
197
};

0 commit comments

Comments
 (0)