This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

[参考译文] Linux/AM5728:U-boot UART 设置

Guru**** 2038710 points
Other Parts Discussed in Thread: AM5728
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/processors-group/processors/f/processors-forum/798045/linux-am5728-u-boot-uart-setting

主题中讨论的其他器件:AM5728

我有一个 AM5728定制板。

我想将 UART 默认设置从 UART3更改为 UART2。

1、引脚复用设置

u-boot/board/ti/am57xx/mux_data.h

const struct pad_conf_entry core_padconf_array_ess_am572x_idk[]={

(笑声)

{UART2_RXD、(M4 | PIN_INPUT)}、/* uart2_Rxd.uart2_RxD *
{UART2_TXD、(M4 | PIN_OUTPUT)}、/* uart2_TXD.uart2_TXD *

(笑声)

2.设备树设置

u-boot/arch/arm/dts/am57xx-idk-common.dtsi

(笑声)

选择{
stdout-path = uart2;
};

(笑声)

uart2{(&U)
状态="正常";
};

(笑声)

我想知道除了这个部分之外、我是否需要设置一些东西。

SDK = ti-processor-sdk-linux-rt-am57xx-evm-05.03.00.07

U-boot = u-boot-2018.01+gitAUTOINC+313dcd69c2-ge2bc936055

交叉编译器= arm-linux-gnueabihf-gcc

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
    您好、Sunmin、

    请参阅以下 e2e 线程:

    e2e.ti.com/.../754906
    e2e.ti.com/.../706153
    e2e.ti.com/.../666062

    此致、
    帕维尔
  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    大家好、Pavel

    我自己解决了这个问题。

    问题是我移除了电路板上的 EEPROM。

    但是、存在问题、因为是通过 EEPROM ID 识别芯片的结构。

    感谢你的答复。