AM62 UART: Difference between revisions

From Variscite Wiki
(Created page with "<!-- Set release according to "release" parameter in URL and use am62-yocto-dunfell-5.10.140_08.06.00.42-v1.0 as default --> {{INIT_RELEASE_PARAM|am62-yocto-dunfell-5.10.140_0...")
 
No edit summary
Line 30: Line 30:
| /dev/ttyS5
| /dev/ttyS5
| main_uart5
| main_uart5
| Used on SOM for Bluetooth interface and can be accessible only if the [{{#var:META_VARISCITE_GIT_HTTP}}/blob/{{#var:META_VARISCITE_BRANCH}}/recipes-connectivity/bcm43xx-utils/bcm43xx-utils/imx93-var-som/variscite-bt variscite-bt] Systemd service is disabled or SOM without "WBD" and "WB"
| Used on SOM for Bluetooth interface and can be accessible only if the [{{#var:META_VARISCITE_GIT_HTTP}}/blob/{{#var:META_VARISCITE_BRANCH}}/recipes-connectivity/bcm43xx-utils/bcm43xx-utils/am62x-var-som/variscite-bt variscite-bt] Systemd service is disabled or SOM without "WBD" and "WB"
|-
|-
| UART6
| UART6

Revision as of 18:05, 17 March 2023

Warning: This page is designed to be used with a 'release' URL parameter.

This page is using the default release am62-yocto-dunfell-5.10.140_08.06.00.42-v1.0.
To view this page for a specific Variscite SoM and software release, please follow these steps:

  1. Visit variwiki.com
  2. Select your SoM
  3. Select the software release
                                                                                                                                                                                                                                                                                                                                           Expression error: Unexpected >= operator.                             Expression error: Unexpected >= operator.                                                                                                                                                                  
UART

UART Overview

The exposes up to seven LPUART interfaces, some of which are multiplexed with other peripherals.

Serial Port Device Node Device Tree Note
UART0 /dev/ttyS0 main_uart0 Connected to Symphony board serial console
UART2 /dev/ttyS2 main_uart2 Connected to Symphony board J18.7 and J18.9
UART5 /dev/ttyS5 main_uart5 Used on SOM for Bluetooth interface and can be accessible only if the [/blob//recipes-connectivity/bcm43xx-utils/bcm43xx-utils/am62x-var-som/variscite-bt variscite-bt] Systemd service is disabled or SOM without "WBD" and "WB"
UART6 /dev/ttyS6 main_uart6 Connected to Symphony board J18.3 and J18.5

Testing UART0

Short J18.7 and J18.9 pins and run the following commands:

# stty -F /dev/ttyS0 -echo -onlcr 115200
# cat /dev/ttyS0 &
# echo hello > /dev/ttyS0

For each invocation of echo command the "hello" string should appear on the terminal.

Testing UART6

Short J18.3 and J18.5 pins and run the following commands:

# stty -F /dev/ttyS6 -echo -onlcr 115200
# cat /dev/ttyS6 &
# echo hello > /dev/ttyS6

For each invocation of echo command the "hello" string should appear on the terminal.

Disabling UART6

To disable UART5 edit arch/arm64/boot/dts/ti/ under kernel source directory and modify

&main_uart6 {
        ...
        status = "okay";
};

to

&main_uart6 {
        ...
        status = "disabled";
};

Other UARTs can be disabled in a similar manner by referencing the table above.