Existe um comando que pode mostrar se uma porta Thunderbolt está presente no hardware?

2

Eu acho que o lspci seria a ferramenta para fazer isso, mas não consigo encontrar nenhuma saída de identificação. Existe uma maneira de saber, a partir da linha de comando, se uma porta Thunderbolt está presente em uma máquina?

Eu tenho um computador que eu sei que tem uma porta Thunderbolt e o lspci mostra isso:

00:00.0 Host bridge: Intel Corporation Device 3ec2 (rev 07)
00:01.0 PCI bridge: Intel Corporation Skylake PCIe Controller (x16) (rev 07)
00:02.0 VGA compatible controller: Intel Corporation Device 3e92
00:08.0 System peripheral: Intel Corporation Skylake Gaussian Mixture Model
00:12.0 Signal processing controller: Intel Corporation Device a379 (rev 10)
00:14.0 USB controller: Intel Corporation Device a36d (rev 10)
00:14.2 RAM memory: Intel Corporation Device a36f (rev 10)
00:15.0 Serial bus controller [0c80]: Intel Corporation Device a368 (rev 10)
00:16.0 Communication controller: Intel Corporation Device a360 (rev 10)
00:17.0 SATA controller: Intel Corporation Device a352 (rev 10)
00:1d.0 PCI bridge: Intel Corporation Device a330 (rev f0)
00:1f.0 ISA bridge: Intel Corporation Device a306 (rev 10)
00:1f.3 Audio device: Intel Corporation Device a348 (rev 10)
00:1f.4 SMBus: Intel Corporation Device a323 (rev 10)
00:1f.5 Serial bus controller [0c80]: Intel Corporation Device a324 (rev 10)
00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection (7) I219-LM (rev 10)
01:00.0 Multimedia video controller: Blackmagic Design DeckLink Mini Recorder
02:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)

Eu fiz o login remotamente em outra máquina e gostaria de saber se ela tem uma porta Thunderbolt e o lspci mostra o seguinte:

00:00.0 Host bridge: Intel Corporation Device 191f (rev 07)
00:01.0 PCI bridge: Intel Corporation Device 1901 (rev 07)
00:02.0 VGA compatible controller: Intel Corporation Device 1912 (rev 06)
00:14.0 USB controller: Intel Corporation Device a12f (rev 31)
00:14.2 Signal processing controller: Intel Corporation Device a131 (rev 31)
00:16.0 Communication controller: Intel Corporation Device a13a (rev 31)
00:16.3 Serial controller: Intel Corporation Device a13d (rev 31)
00:17.0 RAID bus controller: Intel Corporation 82801 SATA Controller [RAID mode] (rev 31)
00:1d.0 PCI bridge: Intel Corporation Device a118 (rev f1)
00:1f.0 ISA bridge: Intel Corporation Device a146 (rev 31)
00:1f.2 Memory controller: Intel Corporation Device a121 (rev 31)
00:1f.3 Audio device: Intel Corporation Device a170 (rev 31)
00:1f.4 SMBus: Intel Corporation Device a123 (rev 31)
00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection (2) I219-LM (rev 31)
01:00.0 Multimedia video controller: Blackmagic Design DeckLink Mini Recorder
02:00.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5722 Gigabit Ethernet PCI Express
    
por mpr 11.09.2018 / 18:46

2 respostas

0

No meu sistema, pelo menos, com o Thunderbolt 3, ele é invisível para o lshw & Isusb se nada está ligado a ele (eu vejo a porta USB3). Eu tenho um laptop Clevo N131WU, que você pode comprar de fornecedores como o System76 e o Tuxedo.

Dito isto, os módulos são carregados:

[tara@tuxmonster ~]$ lsmod | grep thund
intel_wmi_thunderbolt    16384  0
wmi                    28672  1 intel_wmi_thunderbolt
[tara@tuxmonster ~]$

E eu verifiquei duas vezes no meu computador de mesa, que não tem raio, mas está executando a mesma distribuição & kernel (Arch, no 4.18), e o driver thunderbolt não está carregado na área de trabalho.

    
por 27.10.2018 / 19:57
3

No hardware Mac, o hot-plug Thunderbolt é gerenciado principalmente pelo sistema operacional e, portanto, o controlador Thunderbolt fica sempre visível.

Mas no hardware de PC x86, o Thunderbolt (pelo menos o Thunderbolt 1) tende a ser gerenciado pelo firmware ACPI, e o hotplugging é tratado como um evento padrão PCIe hotplug. Como resultado, o barramento Thunderbolt pode ser completamente invisível para o sistema operacional se nada estiver conectado a ele. Mas quando você conecta algo a ele, vários dispositivos de bridge, do ponto de vista do Linux, surgem: você verá muita saída em dmesg à medida que os recursos forem alocados para o barramento Thunderbolt e os dispositivos dentro dele.

O Thunderbolt 3 pode ser detectado, pois coexiste com conectores USB Type-C e pode ser visível nos dados de configuração do Tipo-C. No entanto, não tenho acesso a nenhum sistema com Thunderbolt 3 no momento, por isso não posso verificar isso agora.

    
por 11.09.2018 / 21:34

Tags