[嵌入式linux]PCIe 热拔插(rescan)

news/2024/10/31 5:28:43/

linux下可通过/sys/bus/pci/devices/0000\:[bus number]\:[device number].[function number]/ 目录下的节点进行热拔插操作。

板子上电前PCIe插槽有一块NVME的固态硬盘

[    0.198515] pci 0000:00:00.0: [16c3:abcd] type 01 class 0x060400
[    0.199284] pci 0000:01:00.0: [126f:2263] type 00 class 0x010802
[    8.161374] nvme nvme0: pci function 0000:01:00.0
[    8.166407] nvme 0000:01:00.0: enabling device (0000 -> 0002)# ls /sys/bus/pci/devices/0000\:01\:00.0
broken_parity_status      enable                    rescan
class                     irq                       reset
config                    local_cpulist             resource
consistent_dma_mask_bits  local_cpus                subsystem
device                    modalias                  subsystem_device
devspec                   msi_bus                   subsystem_vendor
dma_mask_bits             power                     uevent
driver_override           remove                    vendor

现在需要在板子保持开机运行的状态下,先取下NVME的固态硬盘,再换上一块PCIe 网卡,并让网卡正常工作。

  • remove 原有设备,然后lspci查看, 0000:01:00.0: [126f:2263]已经不见了
# echo 1 > /sys/bus/pci/devices/0000\:01\:00.0/remove
#
# lspci
00:00.0 Class 0604: 16c3:abcd
  • 现在可以从插槽取下固态硬盘,插上网卡
  • 通过上游bus进行rescan
 echo 1 > /sys/bus/pci/devices/0000\:00\:00.0/rescan
[   72.436704] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   72.445041] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
[   72.451319] pci 0000:01:00.0: reg 0x10: initial BAR value 0x00000000 invalid
[   72.458380] pci 0000:01:00.0: reg 0x10: [io  size 0x0100]
[   72.464113] pci 0000:01:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit]
[   72.471112] pci 0000:01:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit]
[   72.479299] pci 0000:01:00.0: supports D1 D2
[   72.483583] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   72.490667] pci_bus 0000:01: busn_res: [bus 01] end is updated to 01
[   72.497090] pci 0000:00:00.0: BAR 7: assigned [io  0x1000-0x1fff]
[   72.503202] pci 0000:01:00.0: BAR 4: assigned [mem 0xf1100000-0xf1103fff 64bit]
[   72.510683] pci 0000:01:00.0: BAR 2: assigned [mem 0xf1104000-0xf1104fff 64bit]
[   72.518162] pci 0000:01:00.0: BAR 0: assigned [io  0x1000-0x10ff]
# [   72.569018] r8169 0000:01:00.0: no of_node; not parsing pinctrl DT
[   72.575313] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   72.580996] r8169 0000:01:00.0: enabling device (0000 -> 0003)
[   72.603261] r8169 0000:01:00.0 eth1: RTL8168h/8111h at 0xc8ea0000, e8:4e:06:72:f5:8a, XID 14100800 IRQ 66
[   72.612886] r8169 0000:01:00.0 eth1: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[   72.846167] r8169 0000:01:00.0: Direct firmware load for rtl_nic/rtl8168h-2.fw failed with error -2
[   72.855262] r8169 0000:01:00.0 eth1: unable to load firmware patch rtl_nic/rtl8168h-2.fw (-2)
[   72.876122] r8169 0000:01:00.0 eth1: link down

 

  • 查看新的网卡设备,多了一个eth1
# lspci
00:00.0 Class 0604: 16c3:abcd
01:00.0 Class 0200: 10ec:8168
#
#
# ifconfig
eth0      Link encap:Ethernet  HWaddr 02:67:AB:81:02:BBUP BROADCAST MULTICAST  MTU:1500  Metric:1RX packets:0 errors:0 dropped:0 overruns:0 frame:0TX packets:0 errors:0 dropped:0 overruns:0 carrier:0collisions:0 txqueuelen:1000RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)Interrupt:16eth1      Link encap:Ethernet  HWaddr E8:4E:06:72:F5:8AUP BROADCAST MULTICAST  MTU:1500  Metric:1RX packets:0 errors:0 dropped:0 overruns:0 frame:0TX packets:0 errors:0 dropped:0 overruns:0 carrier:0collisions:0 txqueuelen:1000RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)lo        Link encap:Local Loopbackinet addr:127.0.0.1  Mask:255.0.0.0UP LOOPBACK RUNNING  MTU:65536  Metric:1RX packets:0 errors:0 dropped:0 overruns:0 frame:0TX packets:0 errors:0 dropped:0 overruns:0 carrier:0collisions:0 txqueuelen:1RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

 


http://www.ppmy.cn/news/483430.html

相关文章

几个SQL的高级写法

一、ORDER BY FLELD() 自定义排序逻辑 MySql 中的排序 ORDER BY 除了可以用 ASC 和 DESC,还可以通过 ORDER BY FIELD(str,str1,...) 自定义字符串/数字来实现排序。这里用 order_diy 表举例,结构以及表数据展示: ORDER BY FIELD(str,str1,..…

关于微信小程序生成海报一个简单的办法

废话不多说,直接入题,先上GITHUB地址,这个组件很好用,有图形生成工具,你不用再自己写代码一个个元素对齐了,是不是很爽。 GITHUB:https://github.com/Kujiale-Mobile/Painter 生成painter代码…

TC8:SOMEIPSRV_OPTIONS_12-15

SOMEIPSRV_OPTIONS_12: Reserved field of the IPv4 Multicast Option 目的 IPv4 Multicast Option的Reserved字段应静态设置为0x00 这里指的是第二个Reserved字段 测试步骤 DUT CONFIGURE:启动具有下列信息的服务Service ID:SERVICE-ID-1Instance数量:1Tester:客户端-1发…

Jconsole 开启远程连接遇到的一些坑

最近在学习 JVM,其中涉及到性能、内存等指标分析需要使用工具分享,Java 提供了几个可视化工具来监控和管理 Java 应用,比如 Jconsole、JVisual、JMC,他们以图形化的界面实时的监控程序各种性能指标以及内存、CPU 的使用情况。 Jco…

Prometheus配置通过file_sd_configs中每个目标的module标签信息重置每个目标的metrics_path

配置方式如下: scrape_configs: - job_name: file_sd file_sd_configs:- files: - targets.jsonrelabel_configs:- source_labels: [__address__]regex: (http://)([^:])target_label: __address__ replacement: http://${2}- source_labels: [__port__] regex: (\d)target_la…

Davinci安装失败

Davinci安装失败 在安装Davinci的时候,遇到报错Failed to install DaVinci Resolve Panels. Continues with others components? 更新最新显卡驱动没有解决问题,后来想到可能是我把TMP,TEMP文件夹放到ramdisk,导致空间不够。在把…

基于FPGA的AD/DA实验

掌握并行DAC、ADC的接口时序 DDS信号的产生 参考《基于FPGA的DDS实现》用DDS合成信号,经过DAC输出用ADC采集信号 高速AD/DA转化器 AD9762是无符号的DAC器件 有符号补码需要先把高位取反再送给DAC* AD9200是无符号的ADC 最大电压对应MAX值 0电压对应0值 注意ADC芯…

电子设计大赛-AD与DA电路设计

全套资料免费下载: 关注v-x-公-众-号:【嵌入式基地】 后-台-回-复:【电赛】 即可获资料 回复【编程】即可获取 包括有:C、C、C#、JAVA、Python、JavaScript、PHP、数据库、微信小程序、人工智能、嵌入式、Linux、Unix、QT、物联网…