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 <alex.n.charlton@gmail.com>
This commit is contained in:
Alex Charlton 2024-10-30 20:47:04 -07:00 committed by Benjamin Cabé
commit 3190e9f1cd
4 changed files with 12 additions and 36 deletions

View file

@ -14,6 +14,18 @@
compatible = "beagle,beaglev-fire", "microchip,mpfs"; compatible = "beagle,beaglev-fire", "microchip,mpfs";
aliases { aliases {
}; };
chosen {
zephyr,console = &uart0;
zephyr,shell-uart = &uart0;
zephyr,sram = &sram1;
};
};
&uart0 {
status = "okay";
current-speed = <115200>;
clock-frequency = <150000000>;
}; };
&gpio2 { &gpio2 {

View file

@ -21,16 +21,4 @@
status = "disabled"; status = "disabled";
}; };
}; };
chosen {
zephyr,console = &uart0;
zephyr,shell-uart = &uart0;
zephyr,sram = &sram1;
};
};
&uart0 {
status = "okay";
current-speed = <115200>;
clock-frequency = <150000000>;
}; };

View file

@ -5,21 +5,9 @@
model = "beagle,beaglev-fire"; model = "beagle,beaglev-fire";
compatible = "beagle,beaglev-fire", "microchip,mpfs"; compatible = "beagle,beaglev-fire", "microchip,mpfs";
chosen {
zephyr,console = &uart1;
zephyr,shell-uart = &uart1;
zephyr,sram = &sram1;
};
cpus { cpus {
cpu@0 { cpu@0 {
status = "disabled"; status = "disabled";
}; };
}; };
}; };
&uart1 {
status = "okay";
current-speed = <115200>;
clock-frequency = <150000000>;
};

View file

@ -4,16 +4,4 @@
/ { / {
model = "beagle,beaglev-fire"; model = "beagle,beaglev-fire";
compatible = "beagle,beaglev-fire", "microchip,mpfs"; compatible = "beagle,beaglev-fire", "microchip,mpfs";
chosen {
zephyr,console = &uart1;
zephyr,shell-uart = &uart1;
zephyr,sram = &sram1;
};
};
&uart1 {
status = "okay";
current-speed = <115200>;
clock-frequency = <150000000>;
}; };