-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
--- We've added PCI ID listing feature to SpecProbe! You can now get the name of the device using your vendor and your device IDs. --- Type: add Breaking: False Doc Required: True Backport Required: False Part: 1/1
- Loading branch information
Showing
7 changed files
with
38,786 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// | ||
// SpecProbe Copyright (C) 2023-2024 Aptivi | ||
// | ||
// This file is part of SpecProbe | ||
// | ||
// SpecProbe is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// SpecProbe is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY, without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
// | ||
|
||
namespace SpecProbe.Pci.Elements | ||
{ | ||
/// <summary> | ||
/// PCI device information | ||
/// </summary> | ||
public class PciDeviceInfo | ||
{ | ||
internal string deviceName; | ||
internal int deviceId; | ||
internal int vendorId; | ||
internal PciDeviceInfo[] subDevices = []; | ||
|
||
/// <summary> | ||
/// Device name | ||
/// </summary> | ||
public string Name => | ||
deviceName; | ||
|
||
/// <summary> | ||
/// Device ID | ||
/// </summary> | ||
public int Id => | ||
deviceId; | ||
|
||
/// <summary> | ||
/// Vendor ID | ||
/// </summary> | ||
public int VendorId => | ||
vendorId; | ||
|
||
/// <summary> | ||
/// List of subdevices | ||
/// </summary> | ||
public PciDeviceInfo[] SubDevices => | ||
subDevices; | ||
|
||
internal PciDeviceInfo(string deviceName, int deviceId, int vendorId) | ||
{ | ||
this.deviceName = deviceName; | ||
this.deviceId = deviceId; | ||
this.vendorId = vendorId; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// | ||
// SpecProbe Copyright (C) 2023-2024 Aptivi | ||
// | ||
// This file is part of SpecProbe | ||
// | ||
// SpecProbe is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// SpecProbe is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY, without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
// | ||
|
||
namespace SpecProbe.Pci.Elements | ||
{ | ||
/// <summary> | ||
/// PCI vendor information | ||
/// </summary> | ||
public class PciVendorInfo | ||
{ | ||
internal string vendorName; | ||
internal int vendorId; | ||
internal PciDeviceInfo[] devices = []; | ||
|
||
/// <summary> | ||
/// Vendor name | ||
/// </summary> | ||
public string Name => | ||
vendorName; | ||
|
||
/// <summary> | ||
/// Vendor ID | ||
/// </summary> | ||
public int Id => | ||
vendorId; | ||
|
||
/// <summary> | ||
/// List of PCI device info that this vendor made | ||
/// </summary> | ||
public PciDeviceInfo[] Devices => | ||
devices; | ||
|
||
internal PciVendorInfo(string vendorName, int vendorId) | ||
{ | ||
this.vendorName = vendorName; | ||
this.vendorId = vendorId; | ||
} | ||
} | ||
} |
Oops, something went wrong.