mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2025-01-09 05:57:59 +00:00
thermosphere: proper uart_reset impl for uart-b
This commit is contained in:
parent
24f0af9e02
commit
001cd7a7b0
1 changed files with 9 additions and 3 deletions
|
@ -69,10 +69,16 @@ void uart_config(UartDevice dev) {
|
||||||
void uart_reset(UartDevice dev)
|
void uart_reset(UartDevice dev)
|
||||||
{
|
{
|
||||||
CarDevice uartCarDevs[] = { CARDEVICE_UARTA, CARDEVICE_UARTB, CARDEVICE_UARTC, CARDEVICE_UARTD };
|
CarDevice uartCarDevs[] = { CARDEVICE_UARTA, CARDEVICE_UARTB, CARDEVICE_UARTC, CARDEVICE_UARTD };
|
||||||
|
if (dev == UART_B) {
|
||||||
|
gpio_configure_mode(TEGRA_GPIO(G, 0), GPIO_MODE_SFIO);
|
||||||
|
} else {
|
||||||
|
gpio_configure_mode(TEGRA_GPIO(G, 0), GPIO_MODE_GPIO);
|
||||||
|
}
|
||||||
|
|
||||||
if (dev == UART_C) {
|
if (dev == UART_C) {
|
||||||
gpio_configure_mode(TEGRA_GPIO(G, 0), GPIO_MODE_GPIO); // Leave UART-B as GPIO
|
gpio_configure_mode(TEGRA_GPIO(D, 1), GPIO_MODE_SFIO);
|
||||||
gpio_configure_mode(TEGRA_GPIO(D, 1), GPIO_MODE_SFIO); // Change UART-C to SPIO
|
} else {
|
||||||
// Fixme other uart?
|
gpio_configure_mode(TEGRA_GPIO(D, 1), GPIO_MODE_GPIO);
|
||||||
}
|
}
|
||||||
|
|
||||||
uart_config(dev);
|
uart_config(dev);
|
||||||
|
|
Loading…
Reference in a new issue