beaglebone black:启用 uart 时没有插槽

beaglebone black: no slots while enable uart

我正在尝试将 UART5 与 python 一起使用,我已编辑 uEnv.txt 以禁用 HDMI

我已将 BeagleBone Black 升级到 Debian 10 BeagleBoard.org Debian Buster IoT Image 2020-04-06

uname -a 显示:

Linux beaglebone 4.19.94-ti-r45 #1buster SMP PREEMPT Thu Jun 18 19:18:41 UTC 2020 armv7l GNU/Linux

我正在尝试将 UART5 与 python 一起使用,但它对每个 UART 都失败,python 显示消息:

py_setup_uart(UART5): set_pin_mode() failed for pin=P8_38Traceback (most recent call last):

当我执行 config-pin 时,它显示:

/sys/devices/platform/ocp/ocp:P8_34_pinmux/state failed, No such device

也没有插槽: /sys/devices/bone_capemgr.*/slots': No such file or directory

dmesg | grep serial 显示:

[    1.667328] 44e09000.serial: ttyS0 at MMIO 0x44e09000 (irq = 21, base_baud = 3000000) is a 8250
[    1.699936] 48022000.serial: ttyS1 at MMIO 0x48022000 (irq = 28, base_baud = 3000000) is a 8250
[    1.700824] 48024000.serial: ttyS2 at MMIO 0x48024000 (irq = 29, base_baud = 3000000) is a 8250
[    1.701657] 481a6000.serial: ttyS3 at MMIO 0x481a6000 (irq = 42, base_baud = 3000000) is a 8250
[    1.702467] 481a8000.serial: ttyS4 at MMIO 0x481a8000 (irq = 43, base_baud = 3000000) is a 8250
[    1.703290] 481aa000.serial: ttyS5 at MMIO 0x481aa000 (irq = 44, base_baud = 3000000) is a 8250

这是我的 /boot/uEnv.txt

#Docs: http://elinux.org/Beagleboard:U-boot_partitioning_layout_2.0

uname_r=4.19.94-ti-r45
#uuid=
#dtb=

###U-Boot Overlays###
###Documentation: http://elinux.org/Beagleboard:BeagleBoneBlack_Debian#U-Boot_Overlays
###Master Enable
enable_uboot_overlays=1
###
###Overide capes with eeprom
#uboot_overlay_addr0=/lib/firmware/<file0>.dtbo
#uboot_overlay_addr1=/lib/firmware/<file1>.dtbo
#uboot_overlay_addr2=/lib/firmware/<file2>.dtbo
#uboot_overlay_addr3=/lib/firmware/<file3>.dtbo
###

###Overide capes with eeprom
uboot_overlay_addr0=/lib/firmware/BB-UART1-00A0.dtbo
uboot_overlay_addr1=/lib/firmware/BB-UART2-00A0.dtbo
uboot_overlay_addr2=/lib/firmware/BB-UART4-00A0.dtbo
uboot_overlay_addr3=/lib/firmware/BB-UART5-00A0.dtbo


###Additional custom capes
#uboot_overlay_addr4=/lib/firmware/<file4>.dtbo
#uboot_overlay_addr5=/lib/firmware/<file5>.dtbo
#uboot_overlay_addr6=/lib/firmware/<file6>.dtbo
#uboot_overlay_addr7=/lib/firmware/<file7>.dtbo
###

###Custom Cape
#dtb_overlay=/lib/firmware/<file8>.dtbo
###
###Disable auto loading of virtual capes (emmc/video/wireless/adc)
#disable_uboot_overlay_emmc=1
disable_uboot_overlay_video=1
#disable_uboot_overlay_audio=1
#disable_uboot_overlay_wireless=1
#disable_uboot_overlay_adc=1
###
###PRUSS OPTIONS
###pru_rproc (4.14.x-ti kernel)
#uboot_overlay_pru=/lib/firmware/AM335X-PRU-RPROC-4-14-TI-00A0.dtbo
###pru_rproc (4.19.x-ti kernel)
uboot_overlay_pru=/lib/firmware/AM335X-PRU-RPROC-4-19-TI-00A0.dtbo
###pru_uio (4.14.x-ti, 4.19.x-ti & mainline/bone kernel)
#uboot_overlay_pru=/lib/firmware/AM335X-PRU-UIO-00A0.dtbo
###
###Cape Universal Enable
enable_uboot_cape_universal=1
##Disable HDMI
cape_disable=bone_capemgr.disable_partno=BB-BONELT-HDMI,BB-BONELT-HDMIN
optargs=capemgr.enable_partno=BB-UART1,BB-UART2,BB-UART4,BB-UART5
###
###Debug: disable uboot autoload of Cape
#disable_uboot_overlay_addr0=1
#disable_uboot_overlay_addr1=1
#disable_uboot_overlay_addr2=1
#disable_uboot_overlay_addr3=1
###
###U-Boot fdt tweaks... (60000 = 384KB)
#uboot_fdt_buffer=0x60000
###U-Boot Overlays###

cmdline=coherent_pool=1M net.ifnames=0 lpj=1990656 rng_core.default_quality=100 quiet

#In the event of edid real failures, uncomment this next line:
#cmdline=coherent_pool=1M net.ifnames=0 lpj=1990656 rng_core.default_quality=100 quiet video=HDMI-A-1:1024x768@60e

##enable Generic eMMC Flasher:
#cmdline=init=/opt/scripts/tools/eMMC/init-eMMC-flasher-v3.sh

请帮帮我

在 /boot/uEnv.txt 中,取消注释 disable_uboot_overlay_video=1.

如果 _video=1 行的取消注释不起作用,事情会变得复杂。

我可以提供进一步帮助,但请回复是否有效。

来自 config-pin 的神秘错误“没有这样的设备”意味着您尝试 select 该引脚不存在的模式。 P8_34 没有 uart 模式,uart 5 使用 P8_37 作为 txd,使用 P8_38 或 P8_31 作为 rxd。例如:

config-pin P8_37 uart
config-pin P8_38 uart

您也可以使用此 tiny python module 在您的 python 代码中执行配置引脚的功能,例如:

from bone_pinmux import set_pinmux_state  # https://pastebin.com/MKtWJ8G8
set_pinmux_state( 'P8_37', 'uart' )
set_pinmux_state( 'P8_38', 'uart' )

bone_capemgr 已过时,不再存在。我猜你的 /boot/uEnv.txt 中的 cape_disable=bone_capemgr.disable_partno= 行是你在网上找到的一些旧信息,但同样过时了。 optargs=capemgr.enable_partno=看起来更古老

通常您只需取消注释 disable_uboot_overlay_video=1(就像您所做的那样)以释放与 hdmi 相关的引脚(P8.27-46、P9.25、P9.28-29、P9.31)并使用 config-pin 在运行时配置引脚。

或者,如果您愿意,您可以仍然使用覆盖,但最好您应该使用变量 uboot_overlay_addr4..7 和 dtb_overlay。 uboot_overlay_addr0..3 主要用于覆盖实际物理斗篷(带有斗篷识别 eeprom)的自动检测覆盖,但在没有斗篷的情况下,您可以将它们用于其他覆盖。

请记住,如果引脚是由覆盖层配置的,则无法在运行时使用 config-pin 重新配置它们。