diff --git a/darwin/shiro/services/caddy.nix b/darwin/shiro/services/caddy.nix index 43b2c24d..f541259c 100644 --- a/darwin/shiro/services/caddy.nix +++ b/darwin/shiro/services/caddy.nix @@ -4,31 +4,31 @@ ... }: { sops = { - secrets."hetzner/api_key".owner = config.services.caddy.user; + secrets."cloudflare/api_key".owner = config.services.caddy.user; templates = { - "HETZNER_API_KEY.env".content = '' - HETZNER_API_KEY=${config.sops.placeholder."hetzner/api_key"} + "CLOUDFLARE_API_KEY.env".content = '' + CLOUDFLARE_API_KEY=${config.sops.placeholder."cloudflare/api_key"} ''; }; }; services = { caddy = { enable = true; - environmentFile = config.sops.templates."HETZNER_API_KEY.env".path; + environmentFile = config.sops.templates."CLOUDFLARE_API_KEY.env".path; globalConfig = '' debug ''; extraConfig = '' - (hetzner) { + (cloudflare) { tls { propagation_timeout -1 propagation_delay 120s - dns hetzner {env.HETZNER_API_KEY} + dns cloudflare {env.CLOUDFLARE_API_KEY} resolvers 1.1.1.1 } } ''; - package = pkgs.caddyWithHetzner; + package = pkgs.caddyWithCloudflare; }; }; } diff --git a/darwin/shiro/services/lmstudio.nix b/darwin/shiro/services/lmstudio.nix index 7dc4ad56..21605081 100644 --- a/darwin/shiro/services/lmstudio.nix +++ b/darwin/shiro/services/lmstudio.nix @@ -1,7 +1,7 @@ {...}: { services = { caddy.virtualHosts."lmstudio.shiro.darksailor.dev" = '' - import hetzner + import cloudflare reverse_proxy localhost:1234 ''; }; diff --git a/nixos/ryu/services/caddy.nix b/nixos/ryu/services/caddy.nix index 7a3adf71..be7ced3a 100644 --- a/nixos/ryu/services/caddy.nix +++ b/nixos/ryu/services/caddy.nix @@ -4,10 +4,10 @@ ... }: { sops = { - secrets."hetzner/api_key".owner = config.services.caddy.user; + secrets."cloudflare/api_key".owner = config.services.caddy.user; templates = { - "HETZNER_API_KEY.env".content = '' - HETZNER_API_KEY=${config.sops.placeholder."hetzner/api_key"} + "CLOUDFLARE_API_KEY.env".content = '' + CLOUDFLARE_API_KEY=${config.sops.placeholder."cloudflare/api_key"} ''; }; }; @@ -15,28 +15,22 @@ caddy = { enable = true; extraConfig = '' - (hetzner) { + (cloudflare) { tls { propagation_timeout -1 propagation_delay 120s - dns hetzner {env.HETZNER_API_KEY} + dns cloudflare {env.CLOUDFLARE_API_KEY} resolvers 1.1.1.1 } } ''; - package = pkgs.caddyWithHetzner; - # package = pkgs.caddy.withPlugins { - # plugins = ["github.com/caddy-dns/hetzner@v1.0.0"]; - # # hash = "sha256-9ea0CfOHG7JhejB73HjfXQpnonn+ZRBqLNz1fFRkcDQ="; - # # hash = "sha256-9ea0CfOHG7JhejB73HjfXQpnonn+ZRBqLNz1fFRkcDQ=" - # hash = "sha256-YUrprDZQL+cX3P8fVLKHouXTMG4rw3sCaQdGqiq37uA="; - # }; + package = pkgs.caddyWithCloudflare; }; }; systemd.services.caddy = { after = ["sops-install-secrets.service"]; serviceConfig = { - EnvironmentFile = config.sops.templates."HETZNER_API_KEY.env".path; + EnvironmentFile = config.sops.templates."CLOUDFLARE_API_KEY.env".path; }; }; } diff --git a/nixos/ryu/services/llama.nix b/nixos/ryu/services/llama.nix index 01b78721..a4ec558a 100644 --- a/nixos/ryu/services/llama.nix +++ b/nixos/ryu/services/llama.nix @@ -27,7 +27,7 @@ }; caddy = { virtualHosts."llama.ryu.darksailor.dev".extraConfig = '' - import hetzner + import cloudflare reverse_proxy localhost:${builtins.toString config.services.llama-cpp.port} ''; }; diff --git a/nixos/ryu/services/ollama.nix b/nixos/ryu/services/ollama.nix index 868c4fd1..e0db7e27 100644 --- a/nixos/ryu/services/ollama.nix +++ b/nixos/ryu/services/ollama.nix @@ -41,7 +41,7 @@ # }; caddy = { # virtualHosts."llama.ryu.darksailor.dev".extraConfig = '' - # import hetzner + # import cloudflare # forward_auth tako:5555 { # uri /api/authz/forward-auth # copy_headers Remote-User Remote-Groups Remote-Email Remote-Name @@ -49,7 +49,7 @@ # reverse_proxy localhost:${builtins.toString config.services.open-webui.port} # ''; virtualHosts."ollama.ryu.darksailor.dev".extraConfig = '' - import hetzner + import cloudflare reverse_proxy localhost:${builtins.toString config.services.ollama.port} ''; }; diff --git a/nixos/tako/services/default.nix b/nixos/tako/services/default.nix index 51dad406..b4493aa1 100644 --- a/nixos/tako/services/default.nix +++ b/nixos/tako/services/default.nix @@ -5,14 +5,14 @@ ./flaresolverr.nix # # ./games # ./gitea.nix - # ./homepage.nix + ./homepage.nix # # ./llama.nix # # ./monitoring.nix # # ./nextcloud.nix # # ./paperless.nix ./prowlarr.nix # ./resolved.nix - # ./searxng.nix + ./searxng.nix # ./headscale.nix # ./shitpost.nix ./atuin.nix diff --git a/nixos/tako/services/homepage.nix b/nixos/tako/services/homepage.nix index 530e89d3..de136fc9 100644 --- a/nixos/tako/services/homepage.nix +++ b/nixos/tako/services/homepage.nix @@ -86,13 +86,13 @@ href = "https://cloud.darksailor.dev"; }; } - { - "Open WebUI" = { - icon = "open-webui.png"; - description = "Open WebUI for self hosted llms"; - href = "https://llama.darksailor.dev"; - }; - } + # { + # "Open WebUI" = { + # icon = "open-webui.png"; + # description = "Open WebUI for self hosted llms"; + # href = "https://llama.darksailor.dev"; + # }; + # } { "Immich" = { icon = "immich.png"; @@ -159,7 +159,7 @@ }; caddy = { virtualHosts."dashboard.darksailor.dev".extraConfig = '' - import auth + # import auth reverse_proxy localhost:${builtins.toString config.services.homepage-dashboard.listenPort} ''; }; diff --git a/nixos/tsuba/services/caddy.nix b/nixos/tsuba/services/caddy.nix index d1fe7f59..8efdb4f6 100644 --- a/nixos/tsuba/services/caddy.nix +++ b/nixos/tsuba/services/caddy.nix @@ -4,10 +4,10 @@ ... }: { sops = { - secrets."hetzner/api_key".owner = config.services.caddy.user; + secrets."cloudflare/api_key".owner = config.services.caddy.user; templates = { - "HETZNER_API_KEY.env".content = '' - HETZNER_API_KEY=${config.sops.placeholder."hetzner/api_key"} + "CLOUDFLARE_API_KEY.env".content = '' + CLOUDFLARE_API_KEY=${config.sops.placeholder."cloudflare/api_key"} ''; }; }; @@ -15,11 +15,11 @@ caddy = { enable = true; extraConfig = '' - (hetzner) { + (cloudflare) { tls { propagation_timeout -1 propagation_delay 120s - dns hetzner {env.HETZNER_API_KEY} + dns cloudflare {env.CLOUDFLARE_API_KEY} resolvers 1.1.1.1 } } @@ -31,17 +31,13 @@ } } ''; - package = pkgs.caddy.withPlugins { - plugins = ["github.com/caddy-dns/hetzner@v1.0.0"]; - hash = "sha256-Iwsu3s1qOwavcmmnd1w4GVeCkU1HhlWAJXMuc5NOc24="; - }; - # package = pkgs.caddyWithHetzner; + package = pkgs.caddyWithCloudflare; }; }; systemd.services.caddy = { after = ["sops-install-secrets.service"]; serviceConfig = { - EnvironmentFile = config.sops.templates."HETZNER_API_KEY.env".path; + EnvironmentFile = config.sops.templates."CLOUDFLARE_API_KEY.env".path; }; }; } diff --git a/nixos/tsuba/services/deluge.nix b/nixos/tsuba/services/deluge.nix index 430512b4..eec869e3 100644 --- a/nixos/tsuba/services/deluge.nix +++ b/nixos/tsuba/services/deluge.nix @@ -7,7 +7,7 @@ }; caddy = { virtualHosts."deluge.tsuba.darksailor.dev".extraConfig = '' - import hetzner + import cloudflare reverse_proxy localhost:8112 ''; }; diff --git a/nixos/tsuba/services/homeassistant.nix b/nixos/tsuba/services/homeassistant.nix index 0d9a860e..a5739a80 100644 --- a/nixos/tsuba/services/homeassistant.nix +++ b/nixos/tsuba/services/homeassistant.nix @@ -36,7 +36,7 @@ services.caddy = { virtualHosts."home.darksailor.dev".extraConfig = '' - import hetzner + import cloudflare reverse_proxy localhost:8123 ''; }; diff --git a/nixos/tsuba/services/jellyfin.nix b/nixos/tsuba/services/jellyfin.nix index 1b6d076d..b0e8c65b 100644 --- a/nixos/tsuba/services/jellyfin.nix +++ b/nixos/tsuba/services/jellyfin.nix @@ -33,15 +33,15 @@ # }; caddy = { # virtualHosts."jellyseerr.tsuba.darksailor.dev".extraConfig = '' - # import hetzner + # import cloudflare # reverse_proxy localhost:${builtins.toString config.services.jellyseerr.port} # ''; virtualHosts."jellyfin.tsuba.darksailor.dev".extraConfig = '' - import hetzner + import cloudflare reverse_proxy localhost:8096 ''; virtualHosts."media.darksailor.dev".extraConfig = '' - import hetzner + import cloudflare reverse_proxy localhost:8096 ''; }; diff --git a/nixos/tsuba/services/prowlarr.nix b/nixos/tsuba/services/prowlarr.nix index 3af246f8..a3ba5498 100644 --- a/nixos/tsuba/services/prowlarr.nix +++ b/nixos/tsuba/services/prowlarr.nix @@ -6,7 +6,7 @@ }; caddy = { virtualHosts."prowlarr.tsuba.darksailor.dev".extraConfig = '' - import hetzner + import cloudflare reverse_proxy localhost:9696 ''; }; diff --git a/nixos/tsuba/services/servarr.nix b/nixos/tsuba/services/servarr.nix index 8b0f91a4..c31437c5 100644 --- a/nixos/tsuba/services/servarr.nix +++ b/nixos/tsuba/services/servarr.nix @@ -37,27 +37,27 @@ }; caddy.virtualHosts = { "sonarr.tsuba.darksailor.dev".extraConfig = '' - import hetzner + import cloudflare import auth reverse_proxy localhost:${builtins.toString config.services.sonarr.settings.server.port} ''; "radarr.tsuba.darksailor.dev".extraConfig = '' - import hetzner + import cloudflare import auth reverse_proxy localhost:${builtins.toString config.services.radarr.settings.server.port} ''; "lidarr.tsuba.darksailor.dev".extraConfig = '' - import hetzner + import cloudflare import auth reverse_proxy localhost:${builtins.toString config.services.lidarr.settings.server.port} ''; "bazarr.tsuba.darksailor.dev".extraConfig = '' - import hetzner + import cloudflare import auth reverse_proxy localhost:${builtins.toString config.services.bazarr.listenPort} ''; "prowlarr.tsuba.darksailor.dev".extraConfig = '' - import hetzner + import cloudflare import auth reverse_proxy tako.darksailor.dev:9696 ''; diff --git a/overlays.nix b/overlays.nix index 68c0ab8f..f029d551 100644 --- a/overlays.nix +++ b/overlays.nix @@ -162,9 +162,9 @@ cargoLock = {lockFile = "${src}/Cargo.lock";}; }; # alvr-master = inputs.alvr.packages.${prev.system}.default; - caddyWithHetzner = final.pkgs.caddy.withPlugins { - plugins = ["github.com/caddy-dns/hetzner@v1.0.0"]; - hash = "sha256-KNKmbZ65NwbEbseo5S3O0HzKseJkm4ZPugNOjMai02s="; + caddyWithCloudflare = final.pkgs.caddy.withPlugins { + plugins = ["github.com/caddy-dns/cloudflare@v0.2.2"]; + hash = "sha256-ea8PC/+SlPRdEVVF/I3c1CBprlVp1nrumKM5cMwJJ3U="; }; nix-auth = inputs.nix-auth.packages.${prev.system}.nix-auth; kitty = inputs.nixpkgs-stable.legacyPackages.${prev.system}.kitty; diff --git a/secrets/secrets.yaml b/secrets/secrets.yaml index 1fa25951..0295d0a8 100644 --- a/secrets/secrets.yaml +++ b/secrets/secrets.yaml @@ -13,6 +13,8 @@ llama: api_key: ENC[AES256_GCM,data:wib+xbb25sTY2K9pacc1mU5eVSyQRurHiCMZyDVSqCAmG4yjkzEykvBevpThNbTZlsk6GZuK4hH0SYJM,iv:GTU6CQ83chXHAuuL0bFMf4L+UWqlcVfXnEE0/SxLzj4=,tag:0LkOSQsuuQd6TK3KHE95TA==,type:str] hetzner: api_key: ENC[AES256_GCM,data:8lDAf8wyM5b7SH/TaQxXyfITStiiO0obDMdWuRHHxHA=,iv:tHwpmW1Unr8DQXOUKutqyssOKOxtNYMIEc2aMXcmSbE=,tag:N2o9tsdaeoi/cm0ETf3UTQ==,type:str] +cloudflare: + api_key: ENC[AES256_GCM,data:t8kBhlFUxIqjV9f6eJboUrYMAmi5sH3serhD8gBZHVKAAiuy4HHlpg==,iv:xm1EBj5xqnfLYRIJ3XJ0VgyTubG7PMvKrkmlk86YTsE=,tag:0APDuhkAaxv/ozNPVsANLg==,type:str] openai: api_key: ENC[AES256_GCM,data:d6z9TySB6r2myUYu4u9aZwdoy1qL+DdU4MIuel1lFMMKD4XAqn5U9Vc3t5sJ/E3hDXud,iv:500n8CY8Qd/tg+MuT+RDRAyjgy6E9Aolud/2KrRyyqk=,tag:nCowF/czJMkYoNuSl1c3ZA==,type:str] openrouter: @@ -82,7 +84,7 @@ sops: VGZKdHpVeFRpQUxtSEkyaEhLMlBJcGsKLb0DvPNZosPBUuiX6qz1s5IO5INQh8CK ZtXTVClwMSmaUYhdSB2gKFrKVZHXTJZ4oAL5t/BpC0pOHyr+o96T3Q== -----END AGE ENCRYPTED FILE----- - lastmodified: "2025-11-27T13:28:41Z" - mac: ENC[AES256_GCM,data:KVdCTn6EXEAnj76kUL0d5eaYQJUc1HdfWTlwF+vku5wo2f9aJA2s6uyKXmhhx0e6q8muu10gMVObZzgae0vYZBOhO7GSxlLU9gCi4PaQo2Vz5mC75liCt3geoO9PTShZmLGaEPeuA9DFt/t3ggC2yqXij6uwz0SifvCuKM2QNzw=,iv:FSAa/eJBRDcxY+RLPy9O2PxLDibzRJrLh6+CtQNFtaQ=,tag:iNDr5XvpTJS8pNt9vZgOFw==,type:str] + lastmodified: "2025-11-27T16:07:40Z" + mac: ENC[AES256_GCM,data:uoEAPUETfHQHnuvP1Mv4OqLUmWqMZxEr4VAElMwaOoYmkMR2blr6htMY5A3y1Qzc1CDv9o5p7cUUNdkYU1VoCj/bGwKgASYjZKM7gZDmrivyl0/XXcdA56pmgPfmO5PCkml1SJwQwwty4uwGNruKfUDrhMH5fIfS4KbS/GmnFeQ=,iv:IIQNHJOoMY9WrWEw2blenTv7RDGRVN8dXxYwMDyZPg8=,tag:vTP8Zv3TOoacVs8JqgMi3A==,type:str] unencrypted_suffix: _unencrypted version: 3.11.0 diff --git a/server/facter.json b/server/facter.json deleted file mode 100644 index b910dba3..00000000 --- a/server/facter.json +++ /dev/null @@ -1,4784 +0,0 @@ -{ - "version": 1, - "system": "x86_64-linux", - "virtualisation": "none", - "hardware": { - "bios": { - "apm_info": { - "supported": false, - "enabled": false, - "version": 0, - "sub_version": 0, - "bios_flags": 0 - }, - "vbe_info": { - "version": 0, - "video_memory": 0 - }, - "pnp": false, - "pnp_id": 0, - "lba_support": false, - "low_memory_size": 0, - "smbios_version": 775 - }, - "bridge": [ - { - "index": 20, - "attached_to": 34, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 3, - "number": 0 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0004", - "name": "PCI bridge", - "value": 4 - }, - "pci_interface": { - "hex": "0000", - "name": "Normal decode", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1b21", - "value": 6945 - }, - "device": { - "hex": "43f4", - "value": 17396 - }, - "sub_device": { - "hex": "3328", - "value": 13096 - }, - "revision": { - "hex": "0001", - "value": 1 - }, - "model": "AMD PCI bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0", - "sysfs_bus_id": "0000:03:00.0", - "sysfs_iommu_group_id": 14, - "resources": [ - { - "type": "irq", - "base": 28, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 0, - "command": 7, - "header_type": 1, - "secondary_bus": 4, - "irq": 28, - "prog_if": 0 - }, - "driver": "pcieport", - "drivers": [ - "pcieport" - ], - "module_alias": "pci:v00001022d000043F4sv00001B21sd00003328bc06sc04i00" - }, - { - "index": 22, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 8 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0000", - "name": "Host bridge", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14da", - "value": 5338 - }, - "model": "AMD Host bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:08.0", - "sysfs_bus_id": "0000:00:08.0", - "sysfs_iommu_group_id": 7, - "detail": { - "function": 0, - "command": 0, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000014DAsv00000000sd00000000bc06sc00i00" - }, - { - "index": 23, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 24 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0000", - "name": "Host bridge", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14e3", - "value": 5347 - }, - "model": "AMD Host bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:18.3", - "sysfs_bus_id": "0000:00:18.3", - "sysfs_iommu_group_id": 11, - "detail": { - "function": 3, - "command": 0, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "driver": "k10temp", - "driver_module": "k10temp", - "drivers": [ - "k10temp" - ], - "driver_modules": [ - "k10temp" - ], - "module_alias": "pci:v00001022d000014E3sv00000000sd00000000bc06sc00i00" - }, - { - "index": 25, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 24 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0000", - "name": "Host bridge", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14e1", - "value": 5345 - }, - "model": "AMD Host bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:18.1", - "sysfs_bus_id": "0000:00:18.1", - "sysfs_iommu_group_id": 11, - "detail": { - "function": 1, - "command": 0, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000014E1sv00000000sd00000000bc06sc00i00" - }, - { - "index": 27, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 1 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0000", - "name": "Host bridge", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14da", - "value": 5338 - }, - "model": "AMD Host bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:01.0", - "sysfs_bus_id": "0000:00:01.0", - "sysfs_iommu_group_id": 0, - "detail": { - "function": 0, - "command": 0, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000014DAsv00000000sd00000000bc06sc00i00" - }, - { - "index": 30, - "attached_to": 20, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 4, - "number": 2 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0004", - "name": "PCI bridge", - "value": 4 - }, - "pci_interface": { - "hex": "0000", - "name": "Normal decode", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1b21", - "value": 6945 - }, - "device": { - "hex": "43f5", - "value": 17397 - }, - "sub_device": { - "hex": "3328", - "value": 13096 - }, - "revision": { - "hex": "0001", - "value": 1 - }, - "model": "AMD PCI bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0/0000:04:02.0", - "sysfs_bus_id": "0000:04:02.0", - "sysfs_iommu_group_id": 17, - "resources": [ - { - "type": "irq", - "base": 42, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 0, - "command": 1031, - "header_type": 1, - "secondary_bus": 7, - "irq": 42, - "prog_if": 0 - }, - "driver": "pcieport", - "drivers": [ - "pcieport" - ], - "module_alias": "pci:v00001022d000043F5sv00001B21sd00003328bc06sc04i00" - }, - { - "index": 31, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 4 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0000", - "name": "Host bridge", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14da", - "value": 5338 - }, - "model": "AMD Host bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:04.0", - "sysfs_bus_id": "0000:00:04.0", - "sysfs_iommu_group_id": 6, - "detail": { - "function": 0, - "command": 0, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000014DAsv00000000sd00000000bc06sc00i00" - }, - { - "index": 32, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 20 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0001", - "name": "ISA bridge", - "value": 1 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "790e", - "value": 30990 - }, - "sub_device": { - "hex": "790e", - "value": 30990 - }, - "revision": { - "hex": "0051", - "value": 81 - }, - "model": "AMD ISA bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:14.3", - "sysfs_bus_id": "0000:00:14.3", - "sysfs_iommu_group_id": 10, - "detail": { - "function": 3, - "command": 15, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d0000790Esv00001022sd0000790Ebc06sc01i00" - }, - { - "index": 34, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 2 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0004", - "name": "PCI bridge", - "value": 4 - }, - "pci_interface": { - "hex": "0000", - "name": "Normal decode", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14db", - "value": 5339 - }, - "sub_device": { - "hex": "1453", - "value": 5203 - }, - "model": "AMD PCI bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1", - "sysfs_bus_id": "0000:00:02.1", - "sysfs_iommu_group_id": 4, - "resources": [ - { - "type": "irq", - "base": 35, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 1, - "command": 1031, - "header_type": 1, - "secondary_bus": 3, - "irq": 35, - "prog_if": 0 - }, - "driver": "pcieport", - "drivers": [ - "pcieport" - ], - "module_alias": "pci:v00001022d000014DBsv00001022sd00001453bc06sc04i00" - }, - { - "index": 36, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 8 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0004", - "name": "PCI bridge", - "value": 4 - }, - "pci_interface": { - "hex": "0000", - "name": "Normal decode", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14dd", - "value": 5341 - }, - "sub_device": { - "hex": "14dd", - "value": 5341 - }, - "model": "AMD PCI bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:08.3", - "sysfs_bus_id": "0000:00:08.3", - "sysfs_iommu_group_id": 9, - "resources": [ - { - "type": "irq", - "base": 37, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 3, - "command": 1031, - "header_type": 1, - "secondary_bus": 14, - "irq": 37, - "prog_if": 0 - }, - "driver": "pcieport", - "drivers": [ - "pcieport" - ], - "module_alias": "pci:v00001022d000014DDsv00001022sd000014DDbc06sc04i00" - }, - { - "index": 37, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 24 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0000", - "name": "Host bridge", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14e6", - "value": 5350 - }, - "model": "AMD Host bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:18.6", - "sysfs_bus_id": "0000:00:18.6", - "sysfs_iommu_group_id": 11, - "detail": { - "function": 6, - "command": 0, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000014E6sv00000000sd00000000bc06sc00i00" - }, - { - "index": 38, - "attached_to": 20, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 4, - "number": 8 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0004", - "name": "PCI bridge", - "value": 4 - }, - "pci_interface": { - "hex": "0000", - "name": "Normal decode", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1b21", - "value": 6945 - }, - "device": { - "hex": "43f5", - "value": 17397 - }, - "sub_device": { - "hex": "3328", - "value": 13096 - }, - "revision": { - "hex": "0001", - "value": 1 - }, - "model": "AMD PCI bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0/0000:04:08.0", - "sysfs_bus_id": "0000:04:08.0", - "sysfs_iommu_group_id": 20, - "resources": [ - { - "type": "irq", - "base": 46, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 0, - "command": 1031, - "header_type": 1, - "secondary_bus": 10, - "irq": 46, - "prog_if": 0 - }, - "driver": "pcieport", - "drivers": [ - "pcieport" - ], - "module_alias": "pci:v00001022d000043F5sv00001B21sd00003328bc06sc04i00" - }, - { - "index": 39, - "attached_to": 20, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 4, - "number": 13 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0004", - "name": "PCI bridge", - "value": 4 - }, - "pci_interface": { - "hex": "0000", - "name": "Normal decode", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1b21", - "value": 6945 - }, - "device": { - "hex": "43f5", - "value": 17397 - }, - "sub_device": { - "hex": "3328", - "value": 13096 - }, - "revision": { - "hex": "0001", - "value": 1 - }, - "model": "AMD PCI bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0/0000:04:0d.0", - "sysfs_bus_id": "0000:04:0d.0", - "sysfs_iommu_group_id": 22, - "resources": [ - { - "type": "irq", - "base": 39, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 0, - "command": 7, - "header_type": 1, - "secondary_bus": 12, - "irq": 39, - "prog_if": 0 - }, - "driver": "pcieport", - "drivers": [ - "pcieport" - ], - "module_alias": "pci:v00001022d000043F5sv00001B21sd00003328bc06sc04i00" - }, - { - "index": 40, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 0 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0000", - "name": "Host bridge", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14d8", - "value": 5336 - }, - "sub_device": { - "hex": "14d8", - "value": 5336 - }, - "model": "AMD Host bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:00.0", - "sysfs_bus_id": "0000:00:00.0", - "detail": { - "function": 0, - "command": 0, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000014D8sv00001022sd000014D8bc06sc00i00" - }, - { - "index": 41, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 8 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0004", - "name": "PCI bridge", - "value": 4 - }, - "pci_interface": { - "hex": "0000", - "name": "Normal decode", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14dd", - "value": 5341 - }, - "sub_device": { - "hex": "14dd", - "value": 5341 - }, - "model": "AMD PCI bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:08.1", - "sysfs_bus_id": "0000:00:08.1", - "sysfs_iommu_group_id": 8, - "resources": [ - { - "type": "irq", - "base": 36, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 1, - "command": 1031, - "header_type": 1, - "secondary_bus": 13, - "irq": 36, - "prog_if": 0 - }, - "driver": "pcieport", - "drivers": [ - "pcieport" - ], - "module_alias": "pci:v00001022d000014DDsv00001022sd000014DDbc06sc04i00" - }, - { - "index": 42, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 24 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0000", - "name": "Host bridge", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14e4", - "value": 5348 - }, - "model": "AMD Host bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:18.4", - "sysfs_bus_id": "0000:00:18.4", - "sysfs_iommu_group_id": 11, - "detail": { - "function": 4, - "command": 0, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000014E4sv00000000sd00000000bc06sc00i00" - }, - { - "index": 43, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 1 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0004", - "name": "PCI bridge", - "value": 4 - }, - "pci_interface": { - "hex": "0000", - "name": "Normal decode", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14db", - "value": 5339 - }, - "sub_device": { - "hex": "1453", - "value": 5203 - }, - "model": "AMD PCI bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:01.3", - "sysfs_bus_id": "0000:00:01.3", - "sysfs_iommu_group_id": 2, - "resources": [ - { - "type": "irq", - "base": 34, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 3, - "command": 1031, - "header_type": 1, - "secondary_bus": 2, - "irq": 34, - "prog_if": 0 - }, - "driver": "pcieport", - "drivers": [ - "pcieport" - ], - "module_alias": "pci:v00001022d000014DBsv00001022sd00001453bc06sc04i00" - }, - { - "index": 45, - "attached_to": 20, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 4, - "number": 1 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0004", - "name": "PCI bridge", - "value": 4 - }, - "pci_interface": { - "hex": "0000", - "name": "Normal decode", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1b21", - "value": 6945 - }, - "device": { - "hex": "43f5", - "value": 17397 - }, - "sub_device": { - "hex": "3328", - "value": 13096 - }, - "revision": { - "hex": "0001", - "value": 1 - }, - "model": "AMD PCI bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0/0000:04:01.0", - "sysfs_bus_id": "0000:04:01.0", - "sysfs_iommu_group_id": 16, - "resources": [ - { - "type": "irq", - "base": 40, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 0, - "command": 1031, - "header_type": 1, - "secondary_bus": 6, - "irq": 40, - "prog_if": 0 - }, - "driver": "pcieport", - "drivers": [ - "pcieport" - ], - "module_alias": "pci:v00001022d000043F5sv00001B21sd00003328bc06sc04i00" - }, - { - "index": 46, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 3 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0000", - "name": "Host bridge", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14da", - "value": 5338 - }, - "model": "AMD Host bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:03.0", - "sysfs_bus_id": "0000:00:03.0", - "sysfs_iommu_group_id": 5, - "detail": { - "function": 0, - "command": 0, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000014DAsv00000000sd00000000bc06sc00i00" - }, - { - "index": 48, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 24 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0000", - "name": "Host bridge", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14e2", - "value": 5346 - }, - "model": "AMD Host bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:18.2", - "sysfs_bus_id": "0000:00:18.2", - "sysfs_iommu_group_id": 11, - "detail": { - "function": 2, - "command": 0, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000014E2sv00000000sd00000000bc06sc00i00" - }, - { - "index": 49, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 1 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0004", - "name": "PCI bridge", - "value": 4 - }, - "pci_interface": { - "hex": "0000", - "name": "Normal decode", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14db", - "value": 5339 - }, - "sub_device": { - "hex": "1453", - "value": 5203 - }, - "model": "AMD PCI bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:01.1", - "sysfs_bus_id": "0000:00:01.1", - "sysfs_iommu_group_id": 1, - "resources": [ - { - "type": "irq", - "base": 33, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 1, - "command": 1031, - "header_type": 1, - "secondary_bus": 1, - "irq": 33, - "prog_if": 0 - }, - "driver": "pcieport", - "drivers": [ - "pcieport" - ], - "module_alias": "pci:v00001022d000014DBsv00001022sd00001453bc06sc04i00" - }, - { - "index": 50, - "attached_to": 20, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 4, - "number": 4 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0004", - "name": "PCI bridge", - "value": 4 - }, - "pci_interface": { - "hex": "0000", - "name": "Normal decode", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1b21", - "value": 6945 - }, - "device": { - "hex": "43f5", - "value": 17397 - }, - "sub_device": { - "hex": "3328", - "value": 13096 - }, - "revision": { - "hex": "0001", - "value": 1 - }, - "model": "AMD PCI bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0/0000:04:04.0", - "sysfs_bus_id": "0000:04:04.0", - "sysfs_iommu_group_id": 19, - "resources": [ - { - "type": "irq", - "base": 45, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 0, - "command": 1031, - "header_type": 1, - "secondary_bus": 9, - "irq": 45, - "prog_if": 0 - }, - "driver": "pcieport", - "drivers": [ - "pcieport" - ], - "module_alias": "pci:v00001022d000043F5sv00001B21sd00003328bc06sc04i00" - }, - { - "index": 52, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 24 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0000", - "name": "Host bridge", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14e0", - "value": 5344 - }, - "model": "AMD Host bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:18.0", - "sysfs_bus_id": "0000:00:18.0", - "sysfs_iommu_group_id": 11, - "detail": { - "function": 0, - "command": 0, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000014E0sv00000000sd00000000bc06sc00i00" - }, - { - "index": 54, - "attached_to": 20, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 4, - "number": 12 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0004", - "name": "PCI bridge", - "value": 4 - }, - "pci_interface": { - "hex": "0000", - "name": "Normal decode", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1b21", - "value": 6945 - }, - "device": { - "hex": "43f5", - "value": 17397 - }, - "sub_device": { - "hex": "3328", - "value": 13096 - }, - "revision": { - "hex": "0001", - "value": 1 - }, - "model": "AMD PCI bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0/0000:04:0c.0", - "sysfs_bus_id": "0000:04:0c.0", - "sysfs_iommu_group_id": 21, - "resources": [ - { - "type": "irq", - "base": 28, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 0, - "command": 7, - "header_type": 1, - "secondary_bus": 11, - "irq": 28, - "prog_if": 0 - }, - "driver": "pcieport", - "drivers": [ - "pcieport" - ], - "module_alias": "pci:v00001022d000043F5sv00001B21sd00003328bc06sc04i00" - }, - { - "index": 56, - "attached_to": 20, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 4, - "number": 0 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0004", - "name": "PCI bridge", - "value": 4 - }, - "pci_interface": { - "hex": "0000", - "name": "Normal decode", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1b21", - "value": 6945 - }, - "device": { - "hex": "43f5", - "value": 17397 - }, - "sub_device": { - "hex": "3328", - "value": 13096 - }, - "revision": { - "hex": "0001", - "value": 1 - }, - "model": "AMD PCI bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0/0000:04:00.0", - "sysfs_bus_id": "0000:04:00.0", - "sysfs_iommu_group_id": 15, - "resources": [ - { - "type": "irq", - "base": 38, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 0, - "command": 1031, - "header_type": 1, - "secondary_bus": 5, - "irq": 38, - "prog_if": 0 - }, - "driver": "pcieport", - "drivers": [ - "pcieport" - ], - "module_alias": "pci:v00001022d000043F5sv00001B21sd00003328bc06sc04i00" - }, - { - "index": 58, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 2 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0000", - "name": "Host bridge", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14da", - "value": 5338 - }, - "model": "AMD Host bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:02.0", - "sysfs_bus_id": "0000:00:02.0", - "sysfs_iommu_group_id": 3, - "detail": { - "function": 0, - "command": 0, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000014DAsv00000000sd00000000bc06sc00i00" - }, - { - "index": 59, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 24 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0000", - "name": "Host bridge", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14e7", - "value": 5351 - }, - "model": "AMD Host bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:18.7", - "sysfs_bus_id": "0000:00:18.7", - "sysfs_iommu_group_id": 11, - "detail": { - "function": 7, - "command": 0, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000014E7sv00000000sd00000000bc06sc00i00" - }, - { - "index": 61, - "attached_to": 20, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 4, - "number": 3 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0004", - "name": "PCI bridge", - "value": 4 - }, - "pci_interface": { - "hex": "0000", - "name": "Normal decode", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1b21", - "value": 6945 - }, - "device": { - "hex": "43f5", - "value": 17397 - }, - "sub_device": { - "hex": "3328", - "value": 13096 - }, - "revision": { - "hex": "0001", - "value": 1 - }, - "model": "AMD PCI bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0/0000:04:03.0", - "sysfs_bus_id": "0000:04:03.0", - "sysfs_iommu_group_id": 18, - "resources": [ - { - "type": "irq", - "base": 44, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 0, - "command": 1031, - "header_type": 1, - "secondary_bus": 8, - "irq": 44, - "prog_if": 0 - }, - "driver": "pcieport", - "drivers": [ - "pcieport" - ], - "module_alias": "pci:v00001022d000043F5sv00001B21sd00003328bc06sc04i00" - }, - { - "index": 62, - "attached_to": 0, - "class_list": [ - "pci", - "bridge" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 24 - }, - "base_class": { - "hex": "0006", - "name": "Bridge", - "value": 6 - }, - "sub_class": { - "hex": "0000", - "name": "Host bridge", - "value": 0 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14e5", - "value": 5349 - }, - "model": "AMD Host bridge", - "sysfs_id": "/devices/pci0000:00/0000:00:18.5", - "sysfs_bus_id": "0000:00:18.5", - "sysfs_iommu_group_id": 11, - "detail": { - "function": 5, - "command": 0, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000014E5sv00000000sd00000000bc06sc00i00" - } - ], - "cpu": [ - { - "architecture": "x86_64", - "vendor_name": "AuthenticAMD", - "family": 25, - "model": 97, - "stepping": 2, - "features": [ - "fpu", - "vme", - "de", - "pse", - "tsc", - "msr", - "pae", - "mce", - "cx8", - "apic", - "sep", - "mtrr", - "pge", - "mca", - "cmov", - "pat", - "pse36", - "clflush", - "mmx", - "fxsr", - "sse", - "sse2", - "ht", - "syscall", - "nx", - "mmxext", - "fxsr_opt", - "pdpe1gb", - "rdtscp", - "lm", - "constant_tsc", - "rep_good", - "amd_lbr_v2", - "nopl", - "xtopology", - "nonstop_tsc", - "cpuid", - "extd_apicid", - "aperfmperf", - "rapl", - "pni", - "pclmulqdq", - "monitor", - "ssse3", - "fma", - "cx16", - "sse4_1", - "sse4_2", - "movbe", - "popcnt", - "aes", - "xsave", - "avx", - "f16c", - "rdrand", - "lahf_lm", - "cmp_legacy", - "svm", - "extapic", - "cr8_legacy", - "abm", - "sse4a", - "misalignsse", - "3dnowprefetch", - "osvw", - "ibs", - "skinit", - "wdt", - "tce", - "topoext", - "perfctr_core", - "perfctr_nb", - "bpext", - "perfctr_llc", - "mwaitx", - "cpb", - "cat_l3", - "cdp_l3", - "hw_pstate", - "ssbd", - "mba", - "perfmon_v2", - "ibrs", - "ibpb", - "stibp", - "ibrs_enhanced", - "vmmcall", - "fsgsbase", - "bmi1", - "avx2", - "smep", - "bmi2", - "erms", - "invpcid", - "cqm", - "rdt_a", - "avx512f", - "avx512dq", - "rdseed", - "adx", - "smap", - "avx512ifma", - "clflushopt", - "clwb", - "avx512cd", - "sha_ni", - "avx512bw", - "avx512vl", - "xsaveopt", - "xsavec", - "xgetbv1", - "xsaves", - "cqm_llc", - "cqm_occup_llc", - "cqm_mbm_total", - "cqm_mbm_local", - "user_shstk", - "avx512_bf16", - "clzero", - "irperf", - "xsaveerptr", - "rdpru", - "wbnoinvd", - "cppc", - "arat", - "npt", - "lbrv", - "svm_lock", - "nrip_save", - "tsc_scale", - "vmcb_clean", - "flushbyasid", - "decodeassists", - "pausefilter", - "pfthreshold", - "avic", - "vgif", - "x2avic", - "v_spec_ctrl", - "vnmi", - "avx512vbmi", - "umip" - ], - "bugs": [ - "sysret_ss_attrs", - "spectre_v1", - "spectre_v2", - "spec_store_bypass", - "srso" - ], - "power_management": [ - "ts", - "ttp", - "tm", - "hwpstate", - "cpb", - "eff_freq_ro", - "[13]", - "[14]" - ], - "bogo": 7585.32, - "cache": 1024, - "units": 16, - "physical_id": 0, - "siblings": 16, - "cores": 8, - "fpu": true, - "fpu_exception": true, - "cpuid_level": 16, - "write_protect": false, - "tlb_size": 3584, - "clflush_size": 64, - "cache_alignment": 64, - "address_sizes": { - "physical": 48, - "virtual": 48 - } - } - ], - "disk": [ - { - "index": 64, - "attached_to": 33, - "class_list": [ - "disk", - "block_device", - "nvme" - ], - "bus_type": { - "hex": "0096", - "name": "NVME", - "value": 150 - }, - "slot": { - "bus": 0, - "number": 0 - }, - "base_class": { - "hex": "0106", - "name": "Mass Storage Device", - "value": 262 - }, - "sub_class": { - "hex": "0000", - "name": "Disk", - "value": 0 - }, - "vendor": { - "hex": "144d", - "value": 5197 - }, - "sub_vendor": { - "hex": "144d", - "value": 5197 - }, - "device": { - "hex": "a80a", - "name": "SAMSUNG MZVL21T0HCLR-00B00", - "value": 43018 - }, - "sub_device": { - "hex": "a801", - "value": 43009 - }, - "serial": "S676NL0W810950", - "model": "SAMSUNG MZVL21T0HCLR-00B00", - "sysfs_id": "/class/block/nvme0n1", - "sysfs_bus_id": "nvme0", - "sysfs_device_link": "/devices/pci0000:00/0000:00:01.1/0000:01:00.0/nvme/nvme0", - "unix_device_name": "/dev/nvme0n1", - "unix_device_number": { - "type": 98, - "major": 259, - "minor": 0, - "range": 0 - }, - "unix_device_names": [ - "/dev/disk/by-diskseq/9", - "/dev/disk/by-id/nvme-SAMSUNG_MZVL21T0HCLR-00B00_S676NL0W810950", - "/dev/disk/by-id/nvme-SAMSUNG_MZVL21T0HCLR-00B00_S676NL0W810950_1", - "/dev/disk/by-id/nvme-eui.002538b831a16ca1", - "/dev/disk/by-path/pci-0000:01:00.0-nvme-1", - "/dev/nvme0n1" - ], - "resources": [ - { - "type": "disk_geo", - "cylinders": 976762, - "heads": 64, - "sectors": 32, - "size": 0, - "geo_type": "logical" - }, - { - "type": "size", - "unit": "sectors", - "value_1": 2000409264, - "value_2": 512 - } - ], - "driver": "nvme", - "driver_module": "nvme", - "drivers": [ - "nvme" - ], - "driver_modules": [ - "nvme" - ] - }, - { - "index": 65, - "attached_to": 26, - "class_list": [ - "disk", - "block_device", - "nvme" - ], - "bus_type": { - "hex": "0096", - "name": "NVME", - "value": 150 - }, - "slot": { - "bus": 0, - "number": 1 - }, - "base_class": { - "hex": "0106", - "name": "Mass Storage Device", - "value": 262 - }, - "sub_class": { - "hex": "0000", - "name": "Disk", - "value": 0 - }, - "vendor": { - "hex": "144d", - "value": 5197 - }, - "sub_vendor": { - "hex": "144d", - "value": 5197 - }, - "device": { - "hex": "a80a", - "name": "SAMSUNG MZVL21T0HCLR-00B00", - "value": 43018 - }, - "sub_device": { - "hex": "a801", - "value": 43009 - }, - "serial": "S676NL0W810953", - "model": "SAMSUNG MZVL21T0HCLR-00B00", - "sysfs_id": "/class/block/nvme1n1", - "sysfs_bus_id": "nvme1", - "sysfs_device_link": "/devices/pci0000:00/0000:00:01.3/0000:02:00.0/nvme/nvme1", - "unix_device_name": "/dev/nvme1n1", - "unix_device_number": { - "type": 98, - "major": 259, - "minor": 3, - "range": 0 - }, - "unix_device_names": [ - "/dev/disk/by-diskseq/10", - "/dev/disk/by-id/nvme-SAMSUNG_MZVL21T0HCLR-00B00_S676NL0W810953", - "/dev/disk/by-id/nvme-SAMSUNG_MZVL21T0HCLR-00B00_S676NL0W810953_1", - "/dev/disk/by-id/nvme-eui.002538b831a16ca4", - "/dev/disk/by-path/pci-0000:02:00.0-nvme-1", - "/dev/nvme1n1" - ], - "resources": [ - { - "type": "disk_geo", - "cylinders": 976762, - "heads": 64, - "sectors": 32, - "size": 0, - "geo_type": "logical" - }, - { - "type": "size", - "unit": "sectors", - "value_1": 2000409264, - "value_2": 512 - } - ], - "driver": "nvme", - "driver_module": "nvme", - "drivers": [ - "nvme" - ], - "driver_modules": [ - "nvme" - ] - } - ], - "graphics_card": [ - { - "index": 57, - "attached_to": 41, - "class_list": [ - "graphics_card", - "pci" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 13, - "number": 0 - }, - "base_class": { - "hex": "0003", - "name": "Display controller", - "value": 3 - }, - "sub_class": { - "hex": "0000", - "name": "VGA compatible controller", - "value": 0 - }, - "pci_interface": { - "hex": "0000", - "name": "VGA", - "value": 0 - }, - "vendor": { - "hex": "1002", - "name": "ATI Technologies Inc", - "value": 4098 - }, - "sub_vendor": { - "hex": "1002", - "name": "ATI Technologies Inc", - "value": 4098 - }, - "device": { - "hex": "164e", - "value": 5710 - }, - "sub_device": { - "hex": "164e", - "value": 5710 - }, - "revision": { - "hex": "00c5", - "value": 197 - }, - "model": "ATI VGA compatible controller", - "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:0d:00.0", - "sysfs_bus_id": "0000:0d:00.0", - "sysfs_iommu_group_id": 23, - "resources": [ - { - "type": "io", - "base": 57344, - "range": 256, - "enabled": true, - "access": "read_write" - }, - { - "type": "irq", - "base": 101, - "triggered": 0, - "enabled": true - }, - { - "type": "mem", - "base": 1086089854976, - "range": 268435456, - "enabled": true, - "access": "read_only", - "prefetch": "no" - }, - { - "type": "mem", - "base": 1086358290432, - "range": 2097152, - "enabled": true, - "access": "read_only", - "prefetch": "no" - }, - { - "type": "mem", - "base": 4136632320, - "range": 524288, - "enabled": true, - "access": "read_write", - "prefetch": "no" - } - ], - "detail": { - "function": 0, - "command": 3, - "header_type": 0, - "secondary_bus": 0, - "irq": 101, - "prog_if": 0 - }, - "module_alias": "pci:v00001002d0000164Esv00001002sd0000164Ebc03sc00i00" - } - ], - "hub": [ - { - "index": 66, - "attached_to": 51, - "class_list": [ - "usb", - "hub" - ], - "bus_type": { - "hex": "0086", - "name": "USB", - "value": 134 - }, - "slot": { - "bus": 0, - "number": 0 - }, - "base_class": { - "hex": "010a", - "name": "Hub", - "value": 266 - }, - "vendor": { - "hex": "1d6b", - "name": "Linux 6.11.10 xhci-hcd", - "value": 7531 - }, - "device": { - "hex": "0003", - "name": "xHCI Host Controller", - "value": 3 - }, - "revision": { - "hex": "0000", - "name": "6.11", - "value": 0 - }, - "serial": "0000:0d:00.4", - "model": "Linux 6.11.10 xhci-hcd xHCI Host Controller", - "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:0d:00.4/usb6/6-0:1.0", - "sysfs_bus_id": "6-0:1.0", - "detail": { - "device_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "device_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "device_protocol": 3, - "interface_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "interface_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "interface_protocol": 0, - "interface_number": 0, - "interface_alternate_setting": 0 - }, - "hotplug": "usb", - "driver": "hub", - "drivers": [ - "hub" - ], - "module_alias": "usb:v1D6Bp0003d0611dc09dsc00dp03ic09isc00ip00in00" - }, - { - "index": 67, - "attached_to": 29, - "class_list": [ - "usb", - "hub" - ], - "bus_type": { - "hex": "0086", - "name": "USB", - "value": 134 - }, - "slot": { - "bus": 0, - "number": 0 - }, - "base_class": { - "hex": "010a", - "name": "Hub", - "value": 266 - }, - "vendor": { - "hex": "1d6b", - "name": "Linux 6.11.10 xhci-hcd", - "value": 7531 - }, - "device": { - "hex": "0002", - "name": "xHCI Host Controller", - "value": 2 - }, - "revision": { - "hex": "0000", - "name": "6.11", - "value": 0 - }, - "serial": "0000:0d:00.3", - "model": "Linux 6.11.10 xhci-hcd xHCI Host Controller", - "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:0d:00.3/usb3/3-0:1.0", - "sysfs_bus_id": "3-0:1.0", - "resources": [ - { - "type": "baud", - "speed": 480000000, - "bits": 0, - "stop_bits": 0, - "parity": 0, - "handshake": 0 - } - ], - "detail": { - "device_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "device_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "device_protocol": 1, - "interface_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "interface_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "interface_protocol": 0, - "interface_number": 0, - "interface_alternate_setting": 0 - }, - "hotplug": "usb", - "driver": "hub", - "drivers": [ - "hub" - ], - "module_alias": "usb:v1D6Bp0002d0611dc09dsc00dp01ic09isc00ip00in00" - }, - { - "index": 68, - "attached_to": 53, - "class_list": [ - "usb", - "hub" - ], - "bus_type": { - "hex": "0086", - "name": "USB", - "value": 134 - }, - "slot": { - "bus": 0, - "number": 0 - }, - "base_class": { - "hex": "010a", - "name": "Hub", - "value": 266 - }, - "vendor": { - "hex": "1d6b", - "name": "Linux 6.11.10 xhci-hcd", - "value": 7531 - }, - "device": { - "hex": "0002", - "name": "xHCI Host Controller", - "value": 2 - }, - "revision": { - "hex": "0000", - "name": "6.11", - "value": 0 - }, - "serial": "0000:0e:00.0", - "model": "Linux 6.11.10 xhci-hcd xHCI Host Controller", - "sysfs_id": "/devices/pci0000:00/0000:00:08.3/0000:0e:00.0/usb7/7-0:1.0", - "sysfs_bus_id": "7-0:1.0", - "resources": [ - { - "type": "baud", - "speed": 480000000, - "bits": 0, - "stop_bits": 0, - "parity": 0, - "handshake": 0 - } - ], - "detail": { - "device_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "device_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "device_protocol": 1, - "interface_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "interface_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "interface_protocol": 0, - "interface_number": 0, - "interface_alternate_setting": 0 - }, - "hotplug": "usb", - "driver": "hub", - "drivers": [ - "hub" - ], - "module_alias": "usb:v1D6Bp0002d0611dc09dsc00dp01ic09isc00ip00in00" - }, - { - "index": 69, - "attached_to": 29, - "class_list": [ - "usb", - "hub" - ], - "bus_type": { - "hex": "0086", - "name": "USB", - "value": 134 - }, - "slot": { - "bus": 0, - "number": 0 - }, - "base_class": { - "hex": "010a", - "name": "Hub", - "value": 266 - }, - "vendor": { - "hex": "1d6b", - "name": "Linux 6.11.10 xhci-hcd", - "value": 7531 - }, - "device": { - "hex": "0003", - "name": "xHCI Host Controller", - "value": 3 - }, - "revision": { - "hex": "0000", - "name": "6.11", - "value": 0 - }, - "serial": "0000:0d:00.3", - "model": "Linux 6.11.10 xhci-hcd xHCI Host Controller", - "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:0d:00.3/usb4/4-0:1.0", - "sysfs_bus_id": "4-0:1.0", - "detail": { - "device_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "device_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "device_protocol": 3, - "interface_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "interface_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "interface_protocol": 0, - "interface_number": 0, - "interface_alternate_setting": 0 - }, - "hotplug": "usb", - "driver": "hub", - "drivers": [ - "hub" - ], - "module_alias": "usb:v1D6Bp0003d0611dc09dsc00dp03ic09isc00ip00in00" - }, - { - "index": 70, - "attached_to": 53, - "class_list": [ - "usb", - "hub" - ], - "bus_type": { - "hex": "0086", - "name": "USB", - "value": 134 - }, - "slot": { - "bus": 0, - "number": 0 - }, - "base_class": { - "hex": "010a", - "name": "Hub", - "value": 266 - }, - "vendor": { - "hex": "1d6b", - "name": "Linux 6.11.10 xhci-hcd", - "value": 7531 - }, - "device": { - "hex": "0003", - "name": "xHCI Host Controller", - "value": 3 - }, - "revision": { - "hex": "0000", - "name": "6.11", - "value": 0 - }, - "serial": "0000:0e:00.0", - "model": "Linux 6.11.10 xhci-hcd xHCI Host Controller", - "sysfs_id": "/devices/pci0000:00/0000:00:08.3/0000:0e:00.0/usb8/8-0:1.0", - "sysfs_bus_id": "8-0:1.0", - "detail": { - "device_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "device_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "device_protocol": 3, - "interface_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "interface_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "interface_protocol": 0, - "interface_number": 0, - "interface_alternate_setting": 0 - }, - "hotplug": "usb", - "module_alias": "usb:v1D6Bp0003d0611dc09dsc00dp03ic09isc00ip00in00" - }, - { - "index": 71, - "attached_to": 28, - "class_list": [ - "usb", - "hub" - ], - "bus_type": { - "hex": "0086", - "name": "USB", - "value": 134 - }, - "slot": { - "bus": 0, - "number": 0 - }, - "base_class": { - "hex": "010a", - "name": "Hub", - "value": 266 - }, - "vendor": { - "hex": "1d6b", - "name": "Linux 6.11.10 xhci-hcd", - "value": 7531 - }, - "device": { - "hex": "0002", - "name": "xHCI Host Controller", - "value": 2 - }, - "revision": { - "hex": "0000", - "name": "6.11", - "value": 0 - }, - "serial": "0000:0b:00.0", - "model": "Linux 6.11.10 xhci-hcd xHCI Host Controller", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0/0000:04:0c.0/0000:0b:00.0/usb1/1-0:1.0", - "sysfs_bus_id": "1-0:1.0", - "resources": [ - { - "type": "baud", - "speed": 480000000, - "bits": 0, - "stop_bits": 0, - "parity": 0, - "handshake": 0 - } - ], - "detail": { - "device_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "device_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "device_protocol": 1, - "interface_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "interface_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "interface_protocol": 0, - "interface_number": 0, - "interface_alternate_setting": 0 - }, - "hotplug": "usb", - "driver": "hub", - "drivers": [ - "hub" - ], - "module_alias": "usb:v1D6Bp0002d0611dc09dsc00dp01ic09isc00ip00in00" - }, - { - "index": 72, - "attached_to": 51, - "class_list": [ - "usb", - "hub" - ], - "bus_type": { - "hex": "0086", - "name": "USB", - "value": 134 - }, - "slot": { - "bus": 0, - "number": 0 - }, - "base_class": { - "hex": "010a", - "name": "Hub", - "value": 266 - }, - "vendor": { - "hex": "1d6b", - "name": "Linux 6.11.10 xhci-hcd", - "value": 7531 - }, - "device": { - "hex": "0002", - "name": "xHCI Host Controller", - "value": 2 - }, - "revision": { - "hex": "0000", - "name": "6.11", - "value": 0 - }, - "serial": "0000:0d:00.4", - "model": "Linux 6.11.10 xhci-hcd xHCI Host Controller", - "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:0d:00.4/usb5/5-0:1.0", - "sysfs_bus_id": "5-0:1.0", - "resources": [ - { - "type": "baud", - "speed": 480000000, - "bits": 0, - "stop_bits": 0, - "parity": 0, - "handshake": 0 - } - ], - "detail": { - "device_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "device_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "device_protocol": 1, - "interface_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "interface_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "interface_protocol": 0, - "interface_number": 0, - "interface_alternate_setting": 0 - }, - "hotplug": "usb", - "driver": "hub", - "drivers": [ - "hub" - ], - "module_alias": "usb:v1D6Bp0002d0611dc09dsc00dp01ic09isc00ip00in00" - }, - { - "index": 73, - "attached_to": 28, - "class_list": [ - "usb", - "hub" - ], - "bus_type": { - "hex": "0086", - "name": "USB", - "value": 134 - }, - "slot": { - "bus": 0, - "number": 0 - }, - "base_class": { - "hex": "010a", - "name": "Hub", - "value": 266 - }, - "vendor": { - "hex": "1d6b", - "name": "Linux 6.11.10 xhci-hcd", - "value": 7531 - }, - "device": { - "hex": "0003", - "name": "xHCI Host Controller", - "value": 3 - }, - "revision": { - "hex": "0000", - "name": "6.11", - "value": 0 - }, - "serial": "0000:0b:00.0", - "model": "Linux 6.11.10 xhci-hcd xHCI Host Controller", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0/0000:04:0c.0/0000:0b:00.0/usb2/2-0:1.0", - "sysfs_bus_id": "2-0:1.0", - "detail": { - "device_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "device_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "device_protocol": 3, - "interface_class": { - "hex": "0009", - "name": "hub", - "value": 9 - }, - "interface_subclass": { - "hex": "0000", - "name": "per_interface", - "value": 0 - }, - "interface_protocol": 0, - "interface_number": 0, - "interface_alternate_setting": 0 - }, - "hotplug": "usb", - "driver": "hub", - "drivers": [ - "hub" - ], - "module_alias": "usb:v1D6Bp0003d0611dc09dsc00dp03ic09isc00ip00in00" - } - ], - "memory": [ - { - "index": 19, - "attached_to": 0, - "class_list": [ - "memory" - ], - "base_class": { - "hex": "0101", - "name": "Internally Used Class", - "value": 257 - }, - "sub_class": { - "hex": "0002", - "name": "Main Memory", - "value": 2 - }, - "model": "Main Memory", - "resources": [ - { - "type": "mem", - "base": 0, - "range": 66491920384, - "enabled": true, - "access": "read_write", - "prefetch": "unknown" - }, - { - "type": "phys_mem", - "range": 64424509440 - } - ] - } - ], - "network_controller": [ - { - "index": 44, - "attached_to": 45, - "class_list": [ - "network_controller", - "pci" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 6, - "number": 0 - }, - "base_class": { - "hex": "0002", - "name": "Network controller", - "value": 2 - }, - "sub_class": { - "hex": "0000", - "name": "Ethernet controller", - "value": 0 - }, - "vendor": { - "hex": "8086", - "name": "Intel Corporation", - "value": 32902 - }, - "sub_vendor": { - "hex": "1849", - "value": 6217 - }, - "device": { - "hex": "1533", - "value": 5427 - }, - "sub_device": { - "hex": "1533", - "value": 5427 - }, - "revision": { - "hex": "0003", - "value": 3 - }, - "model": "Intel Ethernet controller", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0/0000:04:01.0/0000:06:00.0", - "sysfs_bus_id": "0000:06:00.0", - "sysfs_iommu_group_id": 16, - "unix_device_name": "enp6s0", - "unix_device_names": [ - "enp6s0" - ], - "resources": [ - { - "type": "hwaddr", - "address": 57 - }, - { - "type": "io", - "base": 61440, - "range": 32, - "enabled": true, - "access": "read_write" - }, - { - "type": "irq", - "base": 39, - "triggered": 0, - "enabled": true - }, - { - "type": "mem", - "base": 4139778048, - "range": 524288, - "enabled": true, - "access": "read_write", - "prefetch": "no" - }, - { - "type": "mem", - "base": 4140302336, - "range": 16384, - "enabled": true, - "access": "read_write", - "prefetch": "no" - }, - { - "type": "phwaddr", - "address": 57 - } - ], - "detail": { - "function": 0, - "command": 1031, - "header_type": 0, - "secondary_bus": 0, - "irq": 39, - "prog_if": 0 - }, - "driver": "igb", - "driver_module": "igb", - "drivers": [ - "igb" - ], - "driver_modules": [ - "igb" - ], - "module_alias": "pci:v00008086d00001533sv00001849sd00001533bc02sc00i00" - } - ], - "network_interface": [ - { - "index": 74, - "attached_to": 0, - "class_list": [ - "network_interface" - ], - "base_class": { - "hex": "0107", - "name": "Network Interface", - "value": 263 - }, - "sub_class": { - "hex": "0000", - "name": "Loopback", - "value": 0 - }, - "model": "Loopback network interface", - "sysfs_id": "/class/net/lo", - "unix_device_name": "lo", - "unix_device_names": [ - "lo" - ] - }, - { - "index": 75, - "attached_to": 44, - "class_list": [ - "network_interface" - ], - "base_class": { - "hex": "0107", - "name": "Network Interface", - "value": 263 - }, - "sub_class": { - "hex": "0001", - "name": "Ethernet", - "value": 1 - }, - "model": "Ethernet network interface", - "sysfs_id": "/class/net/enp6s0", - "sysfs_device_link": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0/0000:04:01.0/0000:06:00.0", - "unix_device_name": "enp6s0", - "unix_device_names": [ - "enp6s0" - ], - "resources": [ - { - "type": "hwaddr", - "address": 57 - }, - { - "type": "phwaddr", - "address": 57 - } - ], - "driver": "igb", - "driver_module": "igb", - "drivers": [ - "igb" - ], - "driver_modules": [ - "igb" - ] - } - ], - "pci": [ - { - "index": 24, - "attached_to": 41, - "class_list": [ - "pci", - "unknown" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 13, - "number": 0 - }, - "base_class": { - "hex": "0004", - "name": "Multimedia controller", - "value": 4 - }, - "sub_class": { - "hex": "0080", - "name": "Multimedia controller", - "value": 128 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "15e2", - "value": 5602 - }, - "sub_device": { - "hex": "15e2", - "value": 5602 - }, - "revision": { - "hex": "0062", - "value": 98 - }, - "model": "AMD Multimedia controller", - "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:0d:00.5", - "sysfs_bus_id": "0000:0d:00.5", - "sysfs_iommu_group_id": 27, - "resources": [ - { - "type": "irq", - "base": 126, - "triggered": 0, - "enabled": true - }, - { - "type": "mem", - "base": 4137156608, - "range": 262144, - "enabled": true, - "access": "read_write", - "prefetch": "no" - } - ], - "detail": { - "function": 5, - "command": 7, - "header_type": 0, - "secondary_bus": 0, - "irq": 126, - "prog_if": 0 - }, - "driver": "snd_rpl_pci_acp6x", - "driver_module": "snd_rpl_pci_acp6x", - "drivers": [ - "snd_rpl_pci_acp6x" - ], - "driver_modules": [ - "snd_rpl_pci_acp6x" - ], - "module_alias": "pci:v00001022d000015E2sv00001022sd000015E2bc04sc80i00" - }, - { - "index": 35, - "attached_to": 0, - "class_list": [ - "pci", - "unknown" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 0 - }, - "base_class": { - "hex": "0008", - "name": "Generic system peripheral", - "value": 8 - }, - "sub_class": { - "hex": "0006", - "value": 6 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "14d9", - "value": 5337 - }, - "sub_device": { - "hex": "14d9", - "value": 5337 - }, - "model": "AMD Generic system peripheral", - "sysfs_id": "/devices/pci0000:00/0000:00:00.2", - "sysfs_bus_id": "0000:00:00.2", - "resources": [ - { - "type": "irq", - "base": 30, - "triggered": 0, - "enabled": true - } - ], - "detail": { - "function": 2, - "command": 1024, - "header_type": 0, - "secondary_bus": 0, - "irq": 30, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000014D9sv00001022sd000014D9bc08sc06i00" - }, - { - "index": 55, - "attached_to": 41, - "class_list": [ - "pci", - "unknown" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 13, - "number": 0 - }, - "base_class": { - "hex": "0010", - "name": "Encryption controller", - "value": 16 - }, - "sub_class": { - "hex": "0080", - "name": "Encryption controller", - "value": 128 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "1649", - "value": 5705 - }, - "sub_device": { - "hex": "1649", - "value": 5705 - }, - "model": "AMD Encryption controller", - "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:0d:00.2", - "sysfs_bus_id": "0000:0d:00.2", - "sysfs_iommu_group_id": 24, - "resources": [ - { - "type": "irq", - "base": 118, - "triggered": 0, - "enabled": true - }, - { - "type": "mem", - "base": 4135583744, - "range": 1048576, - "enabled": true, - "access": "read_write", - "prefetch": "no" - }, - { - "type": "mem", - "base": 4137451520, - "range": 8192, - "enabled": true, - "access": "read_write", - "prefetch": "no" - } - ], - "detail": { - "function": 2, - "command": 1031, - "header_type": 0, - "secondary_bus": 0, - "irq": 118, - "prog_if": 0 - }, - "driver": "ccp", - "driver_module": "ccp", - "drivers": [ - "ccp" - ], - "driver_modules": [ - "ccp" - ], - "module_alias": "pci:v00001022d00001649sv00001022sd00001649bc10sc80i00" - }, - { - "index": 60, - "attached_to": 0, - "class_list": [ - "pci", - "unknown" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 0, - "number": 20 - }, - "base_class": { - "hex": "000c", - "name": "Serial bus controller", - "value": 12 - }, - "sub_class": { - "hex": "0005", - "name": "SMBus", - "value": 5 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "790b", - "value": 30987 - }, - "sub_device": { - "hex": "790b", - "value": 30987 - }, - "revision": { - "hex": "0071", - "value": 113 - }, - "model": "AMD SMBus", - "sysfs_id": "/devices/pci0000:00/0000:00:14.0", - "sysfs_bus_id": "0000:00:14.0", - "sysfs_iommu_group_id": 10, - "detail": { - "function": 0, - "command": 1027, - "header_type": 0, - "secondary_bus": 0, - "irq": 0, - "prog_if": 0 - }, - "driver": "piix4_smbus", - "driver_module": "i2c_piix4", - "drivers": [ - "piix4_smbus" - ], - "driver_modules": [ - "i2c_piix4" - ], - "module_alias": "pci:v00001022d0000790Bsv00001022sd0000790Bbc0Csc05i00" - } - ], - "sound": [ - { - "index": 47, - "attached_to": 41, - "class_list": [ - "sound", - "pci" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 13, - "number": 0 - }, - "base_class": { - "hex": "0004", - "name": "Multimedia controller", - "value": 4 - }, - "sub_class": { - "hex": "0003", - "value": 3 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "15e3", - "value": 5603 - }, - "sub_device": { - "hex": "d601", - "value": 54785 - }, - "model": "AMD Multimedia controller", - "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:0d:00.6", - "sysfs_bus_id": "0000:0d:00.6", - "sysfs_iommu_group_id": 28, - "resources": [ - { - "type": "irq", - "base": 255, - "triggered": 0, - "enabled": true - }, - { - "type": "mem", - "base": 4137418752, - "range": 32768, - "enabled": true, - "access": "read_write", - "prefetch": "no" - } - ], - "detail": { - "function": 6, - "command": 7, - "header_type": 0, - "secondary_bus": 0, - "irq": 255, - "prog_if": 0 - }, - "module_alias": "pci:v00001022d000015E3sv00001022sd0000D601bc04sc03i00" - } - ], - "storage_controller": [ - { - "index": 21, - "attached_to": 39, - "class_list": [ - "storage_controller", - "pci" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 12, - "number": 0 - }, - "base_class": { - "hex": "0001", - "name": "Mass storage controller", - "value": 1 - }, - "sub_class": { - "hex": "0006", - "value": 6 - }, - "pci_interface": { - "hex": "0001", - "value": 1 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1b21", - "value": 6945 - }, - "device": { - "hex": "43f6", - "value": 17398 - }, - "sub_device": { - "hex": "1062", - "value": 4194 - }, - "revision": { - "hex": "0001", - "value": 1 - }, - "model": "AMD Mass storage controller", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0/0000:04:0d.0/0000:0c:00.0", - "sysfs_bus_id": "0000:0c:00.0", - "sysfs_iommu_group_id": 22, - "resources": [ - { - "type": "irq", - "base": 83, - "triggered": 0, - "enabled": true - }, - { - "type": "mem", - "base": 4137680896, - "range": 524288, - "enabled": false, - "access": "read_only", - "prefetch": "no" - }, - { - "type": "mem", - "base": 4138205184, - "range": 1024, - "enabled": true, - "access": "read_write", - "prefetch": "no" - } - ], - "detail": { - "function": 0, - "command": 1030, - "header_type": 0, - "secondary_bus": 0, - "irq": 83, - "prog_if": 1 - }, - "driver": "ahci", - "driver_module": "ahci", - "drivers": [ - "ahci" - ], - "driver_modules": [ - "ahci" - ], - "module_alias": "pci:v00001022d000043F6sv00001B21sd00001062bc01sc06i01" - }, - { - "index": 26, - "attached_to": 43, - "class_list": [ - "storage_controller", - "pci" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 2, - "number": 0 - }, - "base_class": { - "hex": "0001", - "name": "Mass storage controller", - "value": 1 - }, - "sub_class": { - "hex": "0008", - "value": 8 - }, - "pci_interface": { - "hex": "0002", - "value": 2 - }, - "vendor": { - "hex": "144d", - "value": 5197 - }, - "sub_vendor": { - "hex": "144d", - "value": 5197 - }, - "device": { - "hex": "a80a", - "value": 43018 - }, - "sub_device": { - "hex": "a801", - "value": 43009 - }, - "model": "Mass storage controller", - "sysfs_id": "/devices/pci0000:00/0000:00:01.3/0000:02:00.0", - "sysfs_bus_id": "0000:02:00.0", - "sysfs_iommu_group_id": 13, - "resources": [ - { - "type": "irq", - "base": 47, - "triggered": 0, - "enabled": true - }, - { - "type": "mem", - "base": 4141875200, - "range": 16384, - "enabled": true, - "access": "read_write", - "prefetch": "no" - } - ], - "detail": { - "function": 0, - "command": 1030, - "header_type": 0, - "secondary_bus": 0, - "irq": 47, - "prog_if": 2 - }, - "driver": "nvme", - "driver_module": "nvme", - "drivers": [ - "nvme" - ], - "driver_modules": [ - "nvme" - ], - "module_alias": "pci:v0000144Dd0000A80Asv0000144Dsd0000A801bc01sc08i02" - }, - { - "index": 33, - "attached_to": 49, - "class_list": [ - "storage_controller", - "pci" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 1, - "number": 0 - }, - "base_class": { - "hex": "0001", - "name": "Mass storage controller", - "value": 1 - }, - "sub_class": { - "hex": "0008", - "value": 8 - }, - "pci_interface": { - "hex": "0002", - "value": 2 - }, - "vendor": { - "hex": "144d", - "value": 5197 - }, - "sub_vendor": { - "hex": "144d", - "value": 5197 - }, - "device": { - "hex": "a80a", - "value": 43018 - }, - "sub_device": { - "hex": "a801", - "value": 43009 - }, - "model": "Mass storage controller", - "sysfs_id": "/devices/pci0000:00/0000:00:01.1/0000:01:00.0", - "sysfs_bus_id": "0000:01:00.0", - "sysfs_iommu_group_id": 12, - "resources": [ - { - "type": "irq", - "base": 48, - "triggered": 0, - "enabled": true - }, - { - "type": "mem", - "base": 4142923776, - "range": 16384, - "enabled": true, - "access": "read_write", - "prefetch": "no" - } - ], - "detail": { - "function": 0, - "command": 1030, - "header_type": 0, - "secondary_bus": 0, - "irq": 48, - "prog_if": 2 - }, - "driver": "nvme", - "driver_module": "nvme", - "drivers": [ - "nvme" - ], - "driver_modules": [ - "nvme" - ], - "module_alias": "pci:v0000144Dd0000A80Asv0000144Dsd0000A801bc01sc08i02" - } - ], - "system": { - "form_factor": "desktop" - }, - "unknown": [ - { - "index": 63, - "attached_to": 0, - "class_list": [ - "unknown" - ], - "base_class": { - "hex": "0007", - "name": "Communication controller", - "value": 7 - }, - "sub_class": { - "hex": "0000", - "name": "Serial controller", - "value": 0 - }, - "pci_interface": { - "hex": "0002", - "name": "16550", - "value": 2 - }, - "device": { - "hex": "0000", - "name": "16550A", - "value": 0 - }, - "model": "16550A", - "unix_device_name": "/dev/ttyS0", - "unix_device_names": [ - "/dev/ttyS0" - ], - "resources": [ - { - "type": "io", - "base": 1016, - "range": 0, - "enabled": true, - "access": "read_write" - }, - { - "type": "irq", - "base": 0, - "triggered": 0, - "enabled": true - } - ] - } - ], - "usb_controller": [ - { - "index": 28, - "attached_to": 54, - "class_list": [ - "usb_controller", - "pci" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 11, - "number": 0 - }, - "base_class": { - "hex": "000c", - "name": "Serial bus controller", - "value": 12 - }, - "sub_class": { - "hex": "0003", - "name": "USB Controller", - "value": 3 - }, - "pci_interface": { - "hex": "0030", - "value": 48 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1b21", - "value": 6945 - }, - "device": { - "hex": "43f9", - "value": 17401 - }, - "sub_device": { - "hex": "1142", - "value": 4418 - }, - "revision": { - "hex": "0001", - "value": 1 - }, - "model": "AMD USB Controller", - "sysfs_id": "/devices/pci0000:00/0000:00:02.1/0000:03:00.0/0000:04:0c.0/0000:0b:00.0", - "sysfs_bus_id": "0000:0b:00.0", - "sysfs_iommu_group_id": 21, - "resources": [ - { - "type": "irq", - "base": 28, - "triggered": 0, - "enabled": true - }, - { - "type": "mem", - "base": 4138729472, - "range": 32768, - "enabled": true, - "access": "read_write", - "prefetch": "no" - } - ], - "detail": { - "function": 0, - "command": 1030, - "header_type": 0, - "secondary_bus": 0, - "irq": 28, - "prog_if": 48 - }, - "driver": "xhci_hcd", - "driver_module": "xhci_pci", - "drivers": [ - "xhci_hcd" - ], - "driver_modules": [ - "xhci_pci" - ], - "module_alias": "pci:v00001022d000043F9sv00001B21sd00001142bc0Csc03i30" - }, - { - "index": 29, - "attached_to": 41, - "class_list": [ - "usb_controller", - "pci" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 13, - "number": 0 - }, - "base_class": { - "hex": "000c", - "name": "Serial bus controller", - "value": 12 - }, - "sub_class": { - "hex": "0003", - "name": "USB Controller", - "value": 3 - }, - "pci_interface": { - "hex": "0030", - "value": 48 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "15b6", - "value": 5558 - }, - "sub_device": { - "hex": "15b6", - "value": 5558 - }, - "model": "AMD USB Controller", - "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:0d:00.3", - "sysfs_bus_id": "0000:0d:00.3", - "sysfs_iommu_group_id": 25, - "resources": [ - { - "type": "irq", - "base": 92, - "triggered": 0, - "enabled": true - }, - { - "type": "mem", - "base": 4134535168, - "range": 1048576, - "enabled": true, - "access": "read_write", - "prefetch": "no" - } - ], - "detail": { - "function": 3, - "command": 1031, - "header_type": 0, - "secondary_bus": 0, - "irq": 92, - "prog_if": 48 - }, - "driver": "xhci_hcd", - "driver_module": "xhci_pci", - "drivers": [ - "xhci_hcd" - ], - "driver_modules": [ - "xhci_pci" - ], - "module_alias": "pci:v00001022d000015B6sv00001022sd000015B6bc0Csc03i30" - }, - { - "index": 51, - "attached_to": 41, - "class_list": [ - "usb_controller", - "pci" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 13, - "number": 0 - }, - "base_class": { - "hex": "000c", - "name": "Serial bus controller", - "value": 12 - }, - "sub_class": { - "hex": "0003", - "name": "USB Controller", - "value": 3 - }, - "pci_interface": { - "hex": "0030", - "value": 48 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "15b7", - "value": 5559 - }, - "sub_device": { - "hex": "15b6", - "value": 5558 - }, - "model": "AMD USB Controller", - "sysfs_id": "/devices/pci0000:00/0000:00:08.1/0000:0d:00.4", - "sysfs_bus_id": "0000:0d:00.4", - "sysfs_iommu_group_id": 26, - "resources": [ - { - "type": "irq", - "base": 101, - "triggered": 0, - "enabled": true - }, - { - "type": "mem", - "base": 4133486592, - "range": 1048576, - "enabled": true, - "access": "read_write", - "prefetch": "no" - } - ], - "detail": { - "function": 4, - "command": 1031, - "header_type": 0, - "secondary_bus": 0, - "irq": 101, - "prog_if": 48 - }, - "driver": "xhci_hcd", - "driver_module": "xhci_pci", - "drivers": [ - "xhci_hcd" - ], - "driver_modules": [ - "xhci_pci" - ], - "module_alias": "pci:v00001022d000015B7sv00001022sd000015B6bc0Csc03i30" - }, - { - "index": 53, - "attached_to": 36, - "class_list": [ - "usb_controller", - "pci" - ], - "bus_type": { - "hex": "0004", - "name": "PCI", - "value": 4 - }, - "slot": { - "bus": 14, - "number": 0 - }, - "base_class": { - "hex": "000c", - "name": "Serial bus controller", - "value": 12 - }, - "sub_class": { - "hex": "0003", - "name": "USB Controller", - "value": 3 - }, - "pci_interface": { - "hex": "0030", - "value": 48 - }, - "vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "sub_vendor": { - "hex": "1022", - "name": "AMD", - "value": 4130 - }, - "device": { - "hex": "15b8", - "value": 5560 - }, - "sub_device": { - "hex": "15b6", - "value": 5558 - }, - "model": "AMD USB Controller", - "sysfs_id": "/devices/pci0000:00/0000:00:08.3/0000:0e:00.0", - "sysfs_bus_id": "0000:0e:00.0", - "sysfs_iommu_group_id": 29, - "resources": [ - { - "type": "irq", - "base": 28, - "triggered": 0, - "enabled": true - }, - { - "type": "mem", - "base": 4140826624, - "range": 1048576, - "enabled": true, - "access": "read_write", - "prefetch": "no" - } - ], - "detail": { - "function": 0, - "command": 1031, - "header_type": 0, - "secondary_bus": 0, - "irq": 28, - "prog_if": 48 - }, - "driver": "xhci_hcd", - "driver_module": "xhci_pci", - "drivers": [ - "xhci_hcd" - ], - "driver_modules": [ - "xhci_pci" - ], - "module_alias": "pci:v00001022d000015B8sv00001022sd000015B6bc0Csc03i30" - } - ] - }, - "smbios": { - "bios": { - "handle": 0, - "vendor": "American Megatrends International, LLC.", - "version": "20.11", - "date": "10/24/2024", - "features": [ - "PCI supported", - "BIOS flashable", - "BIOS shadowing allowed", - "CD boot supported", - "Selectable boot supported", - "BIOS ROM socketed", - "EDD spec supported", - "1.2MB NEC 9800 Japanese Floppy supported", - "1.2MB Toshiba Japanese Floppy supported", - "360kB Floppy supported", - "1.2MB Floppy supported", - "720kB Floppy supported", - "2.88MB Floppy supported", - "Print Screen supported", - "Serial Services supported", - "Printer Services supported", - "CGA/Mono Video supported", - "ACPI supported", - "USB Legacy supported", - "BIOS Boot Spec supported" - ], - "start_address": "0xf0000", - "rom_size": 16777216 - }, - "board": { - "handle": 2, - "manufacturer": "ASRockRack", - "product": "B665D4U-1L", - "version": "3.03", - "board_type": { - "hex": "000a", - "name": "Motherboard", - "value": 10 - }, - "features": [ - "Hosting Board", - "Replaceable" - ], - "location": "To Be Filled By O.E.M.", - "chassis": 3 - }, - "cache": [ - { - "handle": 8, - "socket": "L1 - Cache", - "size_max": 512, - "size_current": 512, - "speed": 1, - "mode": { - "hex": "0001", - "name": "Write Back", - "value": 1 - }, - "enabled": true, - "location": { - "hex": "0000", - "name": "Internal", - "value": 0 - }, - "socketed": false, - "level": 0, - "ecc": { - "hex": "0006", - "name": "Multi-bit", - "value": 6 - }, - "cache_type": { - "hex": "0005", - "name": "Unified", - "value": 5 - }, - "associativity": { - "hex": "0007", - "name": "8-way Set-Associative", - "value": 7 - }, - "sram_type_current": [ - "Pipeline Burst" - ], - "sram_type_supported": [ - "Pipeline Burst" - ] - }, - { - "handle": 9, - "socket": "L2 - Cache", - "size_max": 8192, - "size_current": 8192, - "speed": 1, - "mode": { - "hex": "0001", - "name": "Write Back", - "value": 1 - }, - "enabled": true, - "location": { - "hex": "0000", - "name": "Internal", - "value": 0 - }, - "socketed": false, - "level": 1, - "ecc": { - "hex": "0006", - "name": "Multi-bit", - "value": 6 - }, - "cache_type": { - "hex": "0005", - "name": "Unified", - "value": 5 - }, - "associativity": { - "hex": "0007", - "name": "8-way Set-Associative", - "value": 7 - }, - "sram_type_current": [ - "Pipeline Burst" - ], - "sram_type_supported": [ - "Pipeline Burst" - ] - }, - { - "handle": 10, - "socket": "L3 - Cache", - "size_max": 32768, - "size_current": 32768, - "speed": 1, - "mode": { - "hex": "0001", - "name": "Write Back", - "value": 1 - }, - "enabled": true, - "location": { - "hex": "0000", - "name": "Internal", - "value": 0 - }, - "socketed": false, - "level": 2, - "ecc": { - "hex": "0006", - "name": "Multi-bit", - "value": 6 - }, - "cache_type": { - "hex": "0005", - "name": "Unified", - "value": 5 - }, - "associativity": { - "hex": "0008", - "name": "16-way Set-Associative", - "value": 8 - }, - "sram_type_current": [ - "Pipeline Burst" - ], - "sram_type_supported": [ - "Pipeline Burst" - ] - } - ], - "chassis": { - "handle": 3, - "manufacturer": "To Be Filled By O.E.M.", - "version": "To Be Filled By O.E.M.", - "chassis_type": { - "hex": "0003", - "name": "Desktop", - "value": 3 - }, - "lock_present": false, - "bootup_state": { - "hex": "0003", - "name": "Safe", - "value": 3 - }, - "power_state": { - "hex": "0003", - "name": "Safe", - "value": 3 - }, - "thermal_state": { - "hex": "0003", - "name": "Safe", - "value": 3 - }, - "security_state": { - "hex": "0003", - "name": "None", - "value": 3 - }, - "oem": "0x0" - }, - "language": [ - { - "handle": 27, - "languages": [ - "en|US|iso8859-1" - ] - } - ], - "memory_array": [ - { - "handle": 14, - "location": { - "hex": "0003", - "name": "Motherboard", - "value": 3 - }, - "usage": { - "hex": "0003", - "name": "System memory", - "value": 3 - }, - "ecc": { - "hex": "0003", - "name": "None", - "value": 3 - }, - "max_size": 134217728, - "error_handle": 13, - "slots": 4 - } - ], - "memory_array_mapped_address": [ - { - "handle": 15, - "array_handle": 14, - "start_address": 0, - "end_address": 68719476736, - "part_width": 2 - } - ], - "memory_device": [ - { - "handle": 17, - "location": "DIMM 0", - "bank_location": "P0 CHANNEL A", - "manufacturer": "Unknown", - "part_number": "Unknown", - "array_handle": 14, - "error_handle": 16, - "width": 0, - "ecc_bits": 0, - "size": 0, - "form_factor": { - "hex": "0002", - "name": "Unknown", - "value": 2 - }, - "set": 0, - "memory_type": { - "hex": "0002", - "name": "Unknown", - "value": 2 - }, - "memory_type_details": [ - "Unknown" - ], - "speed": 0 - }, - { - "handle": 19, - "location": "DIMM 1", - "bank_location": "P0 CHANNEL A", - "manufacturer": "Unknown", - "part_number": "CT32G48C40U5.C16A1", - "array_handle": 14, - "error_handle": 18, - "width": 64, - "ecc_bits": 0, - "size": 33554432, - "form_factor": { - "hex": "0009", - "name": "DIMM", - "value": 9 - }, - "set": 0, - "memory_type": { - "hex": "0022", - "name": "Other", - "value": 34 - }, - "memory_type_details": [ - "Synchronous" - ], - "speed": 4800 - }, - { - "handle": 22, - "location": "DIMM 0", - "bank_location": "P0 CHANNEL B", - "manufacturer": "Unknown", - "part_number": "Unknown", - "array_handle": 14, - "error_handle": 21, - "width": 0, - "ecc_bits": 0, - "size": 0, - "form_factor": { - "hex": "0002", - "name": "Unknown", - "value": 2 - }, - "set": 0, - "memory_type": { - "hex": "0002", - "name": "Unknown", - "value": 2 - }, - "memory_type_details": [ - "Unknown" - ], - "speed": 0 - }, - { - "handle": 24, - "location": "DIMM 1", - "bank_location": "P0 CHANNEL B", - "manufacturer": "Unknown", - "part_number": "CT32G48C40U5.C16A1", - "array_handle": 14, - "error_handle": 23, - "width": 64, - "ecc_bits": 0, - "size": 33554432, - "form_factor": { - "hex": "0009", - "name": "DIMM", - "value": 9 - }, - "set": 0, - "memory_type": { - "hex": "0022", - "name": "Other", - "value": 34 - }, - "memory_type_details": [ - "Synchronous" - ], - "speed": 4800 - } - ], - "memory_device_mapped_address": [ - { - "handle": 20, - "memory_device_handle": 19, - "array_map_handle": 15, - "start_address": 0, - "end_address": 34359738368, - "row_position": 255, - "interleave_position": 255, - "interleave_depth": 255 - }, - { - "handle": 25, - "memory_device_handle": 24, - "array_map_handle": 15, - "start_address": 34359738368, - "end_address": 68719476736, - "row_position": 255, - "interleave_position": 255, - "interleave_depth": 255 - } - ], - "memory_error": [ - { - "handle": 13, - "error_type": { - "hex": "0003", - "name": "OK", - "value": 3 - }, - "granularity": { - "hex": "0002", - "name": "Unknown", - "value": 2 - }, - "operation": { - "hex": "0002", - "name": "Unknown", - "value": 2 - }, - "syndrome": 0, - "array_address": 2147483648, - "device_address": 2147483648, - "range": 2147483648 - }, - { - "handle": 16, - "error_type": { - "hex": "0003", - "name": "OK", - "value": 3 - }, - "granularity": { - "hex": "0002", - "name": "Unknown", - "value": 2 - }, - "operation": { - "hex": "0002", - "name": "Unknown", - "value": 2 - }, - "syndrome": 0, - "array_address": 2147483648, - "device_address": 2147483648, - "range": 2147483648 - }, - { - "handle": 18, - "error_type": { - "hex": "0003", - "name": "OK", - "value": 3 - }, - "granularity": { - "hex": "0002", - "name": "Unknown", - "value": 2 - }, - "operation": { - "hex": "0002", - "name": "Unknown", - "value": 2 - }, - "syndrome": 0, - "array_address": 2147483648, - "device_address": 2147483648, - "range": 2147483648 - }, - { - "handle": 21, - "error_type": { - "hex": "0003", - "name": "OK", - "value": 3 - }, - "granularity": { - "hex": "0002", - "name": "Unknown", - "value": 2 - }, - "operation": { - "hex": "0002", - "name": "Unknown", - "value": 2 - }, - "syndrome": 0, - "array_address": 2147483648, - "device_address": 2147483648, - "range": 2147483648 - }, - { - "handle": 23, - "error_type": { - "hex": "0003", - "name": "OK", - "value": 3 - }, - "granularity": { - "hex": "0002", - "name": "Unknown", - "value": 2 - }, - "operation": { - "hex": "0002", - "name": "Unknown", - "value": 2 - }, - "syndrome": 0, - "array_address": 2147483648, - "device_address": 2147483648, - "range": 2147483648 - } - ], - "onboard": [ - { - "handle": 4, - "devices": [ - { - "name": "To Be Filled By O.E.M.", - "type": { - "hex": "0003", - "name": "Video", - "value": 3 - }, - "enabled": true - } - ] - } - ], - "processor": [ - { - "handle": 11, - "socket": "AM5", - "socket_type": { - "hex": "0049", - "name": "Other", - "value": 73 - }, - "socket_populated": true, - "manufacturer": "Advanced Micro Devices, Inc.", - "version": "AMD Ryzen 7 7700 8-Core Processor", - "part": "Unknown", - "processor_type": { - "hex": "0003", - "name": "CPU", - "value": 3 - }, - "processor_family": { - "hex": "006b", - "name": "Other", - "value": 107 - }, - "processor_status": { - "hex": "0001", - "name": "Enabled", - "value": 1 - }, - "clock_ext": 100, - "clock_max": 5350, - "cache_handle_l1": 8, - "cache_handle_l2": 9, - "cache_handle_l3": 10 - } - ], - "system": { - "handle": 1, - "manufacturer": "Hetzner", - "product": "", - "version": "1.0", - "wake_up": { - "hex": "0006", - "name": "Power Switch", - "value": 6 - } - } - } -}