Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(nanna): switch to facter

cosmeak 8cdc8980 d3803c7b

+4169 -3
-1
modules/features/nvidia-gpu.nix
··· 3 3 4 4 flake.nixosModules.nvidia-gpu = { config, ... }: { 5 5 services.xserver.videoDrivers = [ "nvidia" ]; 6 - hardware.graphics.enable = true; 7 6 hardware.nvidia = { 8 7 package = config.boot.kernelPackages.nvidiaPackages.latest; 9 8 modesetting.enable = true;
+26 -2
modules/hosts/nanna/configuration.nix
··· 1 1 { inputs, ... }: 2 2 { 3 - flake.nixosModules.nanna = { pkgs, ... }: { 3 + flake.nixosModules.nanna = { pkgs, config, ... }: { 4 4 imports = 5 5 with inputs.self.nixosModules; 6 6 with inputs.self.factory; 7 7 [ 8 - /etc/nixos/hardware-configuration.nix 9 8 inputs.nixos-hardware.nixosModules.lenovo-legion-y530-15ich 10 9 bootloader 11 10 cinnamon-desktop ··· 13 12 juliette 14 13 gaming 15 14 ]; 15 + 16 + hardware.facter.reportPath = ./facter.json; 17 + 18 + fileSystems = { 19 + "/boot" = { 20 + device = "/dev/disk/by-uuid/8405-A347"; 21 + fsType = "vfat"; 22 + options = [ "fmask=0077" "dmask=0077" ]; 23 + }; 24 + 25 + "/" = { 26 + device = "/dev/disk/by-uuid/c3595901-7f4d-44ce-8cc6-7c4af85b2fd2"; 27 + fsType = "btrfs"; 28 + options = [ "subvol=@" ]; 29 + }; 30 + 31 + "/home" = { 32 + device = "/dev/disk/by-uuid/8621865b-dac9-4aa3-8e1c-c9aa99d7ba31"; 33 + fsType = "btrfs"; 34 + }; 35 + }; 36 + 37 + swapDevices = [ { device = "/dev/disk/by-uuid/136c0ad8-ffd0-4f9e-8bdf-6a9a445d2a55"; } ]; 38 + 39 + hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.latest; 16 40 17 41 # Activate network configuration 18 42 networking.networkmanager.enable = true;
+4143
modules/hosts/nanna/facter.json
··· 1 + { 2 + "version": 1, 3 + "system": "x86_64-linux", 4 + "virtualisation": "none", 5 + "uefi": { 6 + "supported": true, 7 + "platform_size": 64 8 + }, 9 + "hardware": { 10 + "bios": { 11 + "apm_info": { 12 + "supported": false, 13 + "enabled": false, 14 + "version": 0, 15 + "sub_version": 0, 16 + "bios_flags": 0 17 + }, 18 + "vbe_info": { 19 + "version": 0, 20 + "video_memory": 0 21 + }, 22 + "pnp": false, 23 + "pnp_id": 0, 24 + "lba_support": false, 25 + "low_memory_size": 0, 26 + "smbios_version": 768 27 + }, 28 + "bluetooth": [ 29 + { 30 + "index": 40, 31 + "attached_to": 43, 32 + "class_list": [ 33 + "usb", 34 + "bluetooth" 35 + ], 36 + "bus_type": { 37 + "hex": "0086", 38 + "name": "USB", 39 + "value": 134 40 + }, 41 + "slot": { 42 + "bus": 0, 43 + "number": 0 44 + }, 45 + "base_class": { 46 + "hex": "0115", 47 + "name": "Bluetooth Device", 48 + "value": 277 49 + }, 50 + "vendor": { 51 + "hex": "0cf3", 52 + "value": 3315 53 + }, 54 + "device": { 55 + "hex": "e500", 56 + "value": 58624 57 + }, 58 + "revision": { 59 + "hex": "0000", 60 + "name": "0.01", 61 + "value": 0 62 + }, 63 + "model": "Bluetooth Device", 64 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb1/1-14/1-14:1.0", 65 + "sysfs_bus_id": "1-14:1.0", 66 + "resources": [ 67 + { 68 + "type": "baud", 69 + "speed": 12000000, 70 + "bits": 0, 71 + "stop_bits": 0, 72 + "parity": 0, 73 + "handshake": 0 74 + } 75 + ], 76 + "detail": { 77 + "device_class": { 78 + "hex": "00e0", 79 + "name": "wireless", 80 + "value": 224 81 + }, 82 + "device_subclass": { 83 + "hex": "0001", 84 + "name": "audio", 85 + "value": 1 86 + }, 87 + "device_protocol": 1, 88 + "interface_class": { 89 + "hex": "00e0", 90 + "name": "wireless", 91 + "value": 224 92 + }, 93 + "interface_subclass": { 94 + "hex": "0001", 95 + "name": "audio", 96 + "value": 1 97 + }, 98 + "interface_protocol": 1, 99 + "interface_number": 0, 100 + "interface_alternate_setting": 0 101 + }, 102 + "hotplug": "usb", 103 + "driver": "btusb", 104 + "driver_module": "btusb", 105 + "drivers": [ 106 + "btusb" 107 + ], 108 + "driver_modules": [ 109 + "btusb" 110 + ], 111 + "module_alias": "usb:v0CF3pE500d0001dcE0dsc01dp01icE0isc01ip01in00" 112 + }, 113 + { 114 + "index": 44, 115 + "attached_to": 43, 116 + "class_list": [ 117 + "usb", 118 + "bluetooth" 119 + ], 120 + "bus_type": { 121 + "hex": "0086", 122 + "name": "USB", 123 + "value": 134 124 + }, 125 + "slot": { 126 + "bus": 0, 127 + "number": 0 128 + }, 129 + "base_class": { 130 + "hex": "0115", 131 + "name": "Bluetooth Device", 132 + "value": 277 133 + }, 134 + "vendor": { 135 + "hex": "0cf3", 136 + "value": 3315 137 + }, 138 + "device": { 139 + "hex": "e500", 140 + "value": 58624 141 + }, 142 + "revision": { 143 + "hex": "0000", 144 + "name": "0.01", 145 + "value": 0 146 + }, 147 + "model": "Bluetooth Device", 148 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb1/1-14/1-14:1.1", 149 + "sysfs_bus_id": "1-14:1.1", 150 + "resources": [ 151 + { 152 + "type": "baud", 153 + "speed": 12000000, 154 + "bits": 0, 155 + "stop_bits": 0, 156 + "parity": 0, 157 + "handshake": 0 158 + } 159 + ], 160 + "detail": { 161 + "device_class": { 162 + "hex": "00e0", 163 + "name": "wireless", 164 + "value": 224 165 + }, 166 + "device_subclass": { 167 + "hex": "0001", 168 + "name": "audio", 169 + "value": 1 170 + }, 171 + "device_protocol": 1, 172 + "interface_class": { 173 + "hex": "00e0", 174 + "name": "wireless", 175 + "value": 224 176 + }, 177 + "interface_subclass": { 178 + "hex": "0001", 179 + "name": "audio", 180 + "value": 1 181 + }, 182 + "interface_protocol": 1, 183 + "interface_number": 1, 184 + "interface_alternate_setting": 0 185 + }, 186 + "hotplug": "usb", 187 + "driver": "btusb", 188 + "driver_module": "btusb", 189 + "drivers": [ 190 + "btusb" 191 + ], 192 + "driver_modules": [ 193 + "btusb" 194 + ], 195 + "module_alias": "usb:v0CF3pE500d0001dcE0dsc01dp01icE0isc01ip01in01" 196 + } 197 + ], 198 + "bridge": [ 199 + { 200 + "index": 15, 201 + "attached_to": 0, 202 + "class_list": [ 203 + "pci", 204 + "bridge" 205 + ], 206 + "bus_type": { 207 + "hex": "0004", 208 + "name": "PCI", 209 + "value": 4 210 + }, 211 + "slot": { 212 + "bus": 0, 213 + "number": 31 214 + }, 215 + "base_class": { 216 + "hex": "0006", 217 + "name": "Bridge", 218 + "value": 6 219 + }, 220 + "sub_class": { 221 + "hex": "0001", 222 + "name": "ISA bridge", 223 + "value": 1 224 + }, 225 + "vendor": { 226 + "hex": "8086", 227 + "name": "Intel Corporation", 228 + "value": 32902 229 + }, 230 + "sub_vendor": { 231 + "hex": "17aa", 232 + "value": 6058 233 + }, 234 + "device": { 235 + "hex": "a30d", 236 + "value": 41741 237 + }, 238 + "sub_device": { 239 + "hex": "3810", 240 + "value": 14352 241 + }, 242 + "revision": { 243 + "hex": "0010", 244 + "value": 16 245 + }, 246 + "model": "Intel ISA bridge", 247 + "sysfs_id": "/devices/pci0000:00/0000:00:1f.0", 248 + "sysfs_bus_id": "0000:00:1f.0", 249 + "detail": { 250 + "function": 0, 251 + "command": 7, 252 + "header_type": 0, 253 + "secondary_bus": 0, 254 + "prog_if": 0 255 + }, 256 + "module_alias": "pci:v00008086d0000A30Dsv000017AAsd00003810bc06sc01i00" 257 + }, 258 + { 259 + "index": 16, 260 + "attached_to": 0, 261 + "class_list": [ 262 + "pci", 263 + "bridge" 264 + ], 265 + "bus_type": { 266 + "hex": "0004", 267 + "name": "PCI", 268 + "value": 4 269 + }, 270 + "slot": { 271 + "bus": 0, 272 + "number": 1 273 + }, 274 + "base_class": { 275 + "hex": "0006", 276 + "name": "Bridge", 277 + "value": 6 278 + }, 279 + "sub_class": { 280 + "hex": "0004", 281 + "name": "PCI bridge", 282 + "value": 4 283 + }, 284 + "pci_interface": { 285 + "hex": "0000", 286 + "name": "Normal decode", 287 + "value": 0 288 + }, 289 + "vendor": { 290 + "hex": "8086", 291 + "name": "Intel Corporation", 292 + "value": 32902 293 + }, 294 + "sub_vendor": { 295 + "hex": "17aa", 296 + "value": 6058 297 + }, 298 + "device": { 299 + "hex": "1901", 300 + "value": 6401 301 + }, 302 + "sub_device": { 303 + "hex": "380c", 304 + "value": 14348 305 + }, 306 + "revision": { 307 + "hex": "0007", 308 + "value": 7 309 + }, 310 + "model": "Intel PCI bridge", 311 + "sysfs_id": "/devices/pci0000:00/0000:00:01.0", 312 + "sysfs_bus_id": "0000:00:01.0", 313 + "detail": { 314 + "function": 0, 315 + "command": 1031, 316 + "header_type": 1, 317 + "secondary_bus": 1, 318 + "prog_if": 0 319 + }, 320 + "driver": "pcieport", 321 + "driver_module": "pcieportdrv", 322 + "drivers": [ 323 + "pcieport" 324 + ], 325 + "driver_modules": [ 326 + "pcieportdrv" 327 + ], 328 + "module_alias": "pci:v00008086d00001901sv000017AAsd0000380Cbc06sc04i00" 329 + }, 330 + { 331 + "index": 25, 332 + "attached_to": 0, 333 + "class_list": [ 334 + "pci", 335 + "bridge" 336 + ], 337 + "bus_type": { 338 + "hex": "0004", 339 + "name": "PCI", 340 + "value": 4 341 + }, 342 + "slot": { 343 + "bus": 0, 344 + "number": 0 345 + }, 346 + "base_class": { 347 + "hex": "0006", 348 + "name": "Bridge", 349 + "value": 6 350 + }, 351 + "sub_class": { 352 + "hex": "0000", 353 + "name": "Host bridge", 354 + "value": 0 355 + }, 356 + "vendor": { 357 + "hex": "8086", 358 + "name": "Intel Corporation", 359 + "value": 32902 360 + }, 361 + "sub_vendor": { 362 + "hex": "17aa", 363 + "value": 6058 364 + }, 365 + "device": { 366 + "hex": "3e10", 367 + "value": 15888 368 + }, 369 + "sub_device": { 370 + "hex": "3802", 371 + "value": 14338 372 + }, 373 + "revision": { 374 + "hex": "0007", 375 + "value": 7 376 + }, 377 + "model": "Intel Host bridge", 378 + "sysfs_id": "/devices/pci0000:00/0000:00:00.0", 379 + "sysfs_bus_id": "0000:00:00.0", 380 + "detail": { 381 + "function": 0, 382 + "command": 6, 383 + "header_type": 0, 384 + "secondary_bus": 0, 385 + "prog_if": 0 386 + }, 387 + "driver": "skl_uncore", 388 + "driver_module": "intel_uncore", 389 + "drivers": [ 390 + "skl_uncore" 391 + ], 392 + "driver_modules": [ 393 + "intel_uncore" 394 + ], 395 + "module_alias": "pci:v00008086d00003E10sv000017AAsd00003802bc06sc00i00" 396 + }, 397 + { 398 + "index": 27, 399 + "attached_to": 0, 400 + "class_list": [ 401 + "pci", 402 + "bridge" 403 + ], 404 + "bus_type": { 405 + "hex": "0004", 406 + "name": "PCI", 407 + "value": 4 408 + }, 409 + "slot": { 410 + "bus": 0, 411 + "number": 29 412 + }, 413 + "base_class": { 414 + "hex": "0006", 415 + "name": "Bridge", 416 + "value": 6 417 + }, 418 + "sub_class": { 419 + "hex": "0004", 420 + "name": "PCI bridge", 421 + "value": 4 422 + }, 423 + "pci_interface": { 424 + "hex": "0000", 425 + "name": "Normal decode", 426 + "value": 0 427 + }, 428 + "vendor": { 429 + "hex": "8086", 430 + "name": "Intel Corporation", 431 + "value": 32902 432 + }, 433 + "sub_vendor": { 434 + "hex": "17aa", 435 + "value": 6058 436 + }, 437 + "device": { 438 + "hex": "a334", 439 + "value": 41780 440 + }, 441 + "sub_device": { 442 + "hex": "3820", 443 + "value": 14368 444 + }, 445 + "revision": { 446 + "hex": "00f0", 447 + "value": 240 448 + }, 449 + "model": "Intel PCI bridge", 450 + "sysfs_id": "/devices/pci0000:00/0000:00:1d.4", 451 + "sysfs_bus_id": "0000:00:1d.4", 452 + "detail": { 453 + "function": 4, 454 + "command": 1031, 455 + "header_type": 1, 456 + "secondary_bus": 7, 457 + "prog_if": 0 458 + }, 459 + "driver": "pcieport", 460 + "driver_module": "pcieportdrv", 461 + "drivers": [ 462 + "pcieport" 463 + ], 464 + "driver_modules": [ 465 + "pcieportdrv" 466 + ], 467 + "module_alias": "pci:v00008086d0000A334sv000017AAsd00003820bc06sc04i00" 468 + }, 469 + { 470 + "index": 30, 471 + "attached_to": 0, 472 + "class_list": [ 473 + "pci", 474 + "bridge" 475 + ], 476 + "bus_type": { 477 + "hex": "0004", 478 + "name": "PCI", 479 + "value": 4 480 + }, 481 + "slot": { 482 + "bus": 0, 483 + "number": 29 484 + }, 485 + "base_class": { 486 + "hex": "0006", 487 + "name": "Bridge", 488 + "value": 6 489 + }, 490 + "sub_class": { 491 + "hex": "0004", 492 + "name": "PCI bridge", 493 + "value": 4 494 + }, 495 + "pci_interface": { 496 + "hex": "0000", 497 + "name": "Normal decode", 498 + "value": 0 499 + }, 500 + "vendor": { 501 + "hex": "8086", 502 + "name": "Intel Corporation", 503 + "value": 32902 504 + }, 505 + "sub_vendor": { 506 + "hex": "ffff", 507 + "value": 65535 508 + }, 509 + "device": { 510 + "hex": "a330", 511 + "value": 41776 512 + }, 513 + "sub_device": { 514 + "hex": "ffff", 515 + "value": 65535 516 + }, 517 + "revision": { 518 + "hex": "00f0", 519 + "value": 240 520 + }, 521 + "model": "Intel PCI bridge", 522 + "sysfs_id": "/devices/pci0000:00/0000:00:1d.0", 523 + "sysfs_bus_id": "0000:00:1d.0", 524 + "detail": { 525 + "function": 0, 526 + "command": 1031, 527 + "header_type": 1, 528 + "secondary_bus": 6, 529 + "prog_if": 0 530 + }, 531 + "driver": "pcieport", 532 + "driver_module": "pcieportdrv", 533 + "drivers": [ 534 + "pcieport" 535 + ], 536 + "driver_modules": [ 537 + "pcieportdrv" 538 + ], 539 + "module_alias": "pci:v00008086d0000A330sv0000FFFFsd0000FFFFbc06sc04i00" 540 + }, 541 + { 542 + "index": 36, 543 + "attached_to": 0, 544 + "class_list": [ 545 + "pci", 546 + "bridge" 547 + ], 548 + "bus_type": { 549 + "hex": "0004", 550 + "name": "PCI", 551 + "value": 4 552 + }, 553 + "slot": { 554 + "bus": 0, 555 + "number": 29 556 + }, 557 + "base_class": { 558 + "hex": "0006", 559 + "name": "Bridge", 560 + "value": 6 561 + }, 562 + "sub_class": { 563 + "hex": "0004", 564 + "name": "PCI bridge", 565 + "value": 4 566 + }, 567 + "pci_interface": { 568 + "hex": "0000", 569 + "name": "Normal decode", 570 + "value": 0 571 + }, 572 + "vendor": { 573 + "hex": "8086", 574 + "name": "Intel Corporation", 575 + "value": 32902 576 + }, 577 + "sub_vendor": { 578 + "hex": "17aa", 579 + "value": 6058 580 + }, 581 + "device": { 582 + "hex": "a335", 583 + "value": 41781 584 + }, 585 + "sub_device": { 586 + "hex": "3821", 587 + "value": 14369 588 + }, 589 + "revision": { 590 + "hex": "00f0", 591 + "value": 240 592 + }, 593 + "model": "Intel PCI bridge", 594 + "sysfs_id": "/devices/pci0000:00/0000:00:1d.5", 595 + "sysfs_bus_id": "0000:00:1d.5", 596 + "detail": { 597 + "function": 5, 598 + "command": 1031, 599 + "header_type": 1, 600 + "secondary_bus": 8, 601 + "prog_if": 0 602 + }, 603 + "driver": "pcieport", 604 + "driver_module": "pcieportdrv", 605 + "drivers": [ 606 + "pcieport" 607 + ], 608 + "driver_modules": [ 609 + "pcieportdrv" 610 + ], 611 + "module_alias": "pci:v00008086d0000A335sv000017AAsd00003821bc06sc04i00" 612 + } 613 + ], 614 + "camera": [ 615 + { 616 + "index": 41, 617 + "attached_to": 43, 618 + "class_list": [ 619 + "camera", 620 + "usb" 621 + ], 622 + "bus_type": { 623 + "hex": "0086", 624 + "name": "USB", 625 + "value": 134 626 + }, 627 + "slot": { 628 + "bus": 0, 629 + "number": 0 630 + }, 631 + "base_class": { 632 + "hex": "010f", 633 + "name": "Camera", 634 + "value": 271 635 + }, 636 + "vendor": { 637 + "hex": "04f2", 638 + "name": "Chicony Electronics Co., Ltd.", 639 + "value": 1266 640 + }, 641 + "device": { 642 + "hex": "b604", 643 + "name": "Integrated Camera", 644 + "value": 46596 645 + }, 646 + "revision": { 647 + "hex": "0000", 648 + "name": "0.27", 649 + "value": 0 650 + }, 651 + "serial": "0001", 652 + "model": "Chicony Electronics Integrated Camera", 653 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.0", 654 + "sysfs_bus_id": "1-6:1.0", 655 + "resources": [ 656 + { 657 + "type": "baud", 658 + "speed": 480000000, 659 + "bits": 0, 660 + "stop_bits": 0, 661 + "parity": 0, 662 + "handshake": 0 663 + } 664 + ], 665 + "detail": { 666 + "device_class": { 667 + "hex": "00ef", 668 + "name": "miscellaneous", 669 + "value": 239 670 + }, 671 + "device_subclass": { 672 + "hex": "0002", 673 + "name": "comm", 674 + "value": 2 675 + }, 676 + "device_protocol": 1, 677 + "interface_class": { 678 + "hex": "000e", 679 + "name": "video", 680 + "value": 14 681 + }, 682 + "interface_subclass": { 683 + "hex": "0001", 684 + "name": "audio", 685 + "value": 1 686 + }, 687 + "interface_protocol": 0, 688 + "interface_number": 0, 689 + "interface_alternate_setting": 0, 690 + "interface_association": { 691 + "function_class": { 692 + "hex": "000e", 693 + "name": "video", 694 + "value": 14 695 + }, 696 + "function_subclass": { 697 + "hex": "0003", 698 + "name": "hid", 699 + "value": 3 700 + }, 701 + "function_protocol": 0, 702 + "interface_count": 2, 703 + "first_interface": 0 704 + } 705 + }, 706 + "hotplug": "usb", 707 + "driver": "uvcvideo", 708 + "driver_module": "uvcvideo", 709 + "drivers": [ 710 + "uvcvideo" 711 + ], 712 + "driver_modules": [ 713 + "uvcvideo" 714 + ], 715 + "module_alias": "usb:v04F2pB604d0027dcEFdsc02dp01ic0Eisc01ip00in00" 716 + }, 717 + { 718 + "index": 45, 719 + "attached_to": 43, 720 + "class_list": [ 721 + "camera", 722 + "usb" 723 + ], 724 + "bus_type": { 725 + "hex": "0086", 726 + "name": "USB", 727 + "value": 134 728 + }, 729 + "slot": { 730 + "bus": 0, 731 + "number": 0 732 + }, 733 + "base_class": { 734 + "hex": "010f", 735 + "name": "Camera", 736 + "value": 271 737 + }, 738 + "vendor": { 739 + "hex": "04f2", 740 + "name": "Chicony Electronics Co., Ltd.", 741 + "value": 1266 742 + }, 743 + "device": { 744 + "hex": "b604", 745 + "name": "Integrated Camera", 746 + "value": 46596 747 + }, 748 + "revision": { 749 + "hex": "0000", 750 + "name": "0.27", 751 + "value": 0 752 + }, 753 + "serial": "0001", 754 + "model": "Chicony Electronics Integrated Camera", 755 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.1", 756 + "sysfs_bus_id": "1-6:1.1", 757 + "resources": [ 758 + { 759 + "type": "baud", 760 + "speed": 480000000, 761 + "bits": 0, 762 + "stop_bits": 0, 763 + "parity": 0, 764 + "handshake": 0 765 + } 766 + ], 767 + "detail": { 768 + "device_class": { 769 + "hex": "00ef", 770 + "name": "miscellaneous", 771 + "value": 239 772 + }, 773 + "device_subclass": { 774 + "hex": "0002", 775 + "name": "comm", 776 + "value": 2 777 + }, 778 + "device_protocol": 1, 779 + "interface_class": { 780 + "hex": "000e", 781 + "name": "video", 782 + "value": 14 783 + }, 784 + "interface_subclass": { 785 + "hex": "0002", 786 + "name": "comm", 787 + "value": 2 788 + }, 789 + "interface_protocol": 0, 790 + "interface_number": 1, 791 + "interface_alternate_setting": 0, 792 + "interface_association": { 793 + "function_class": { 794 + "hex": "000e", 795 + "name": "video", 796 + "value": 14 797 + }, 798 + "function_subclass": { 799 + "hex": "0003", 800 + "name": "hid", 801 + "value": 3 802 + }, 803 + "function_protocol": 0, 804 + "interface_count": 2, 805 + "first_interface": 0 806 + } 807 + }, 808 + "hotplug": "usb", 809 + "driver": "uvcvideo", 810 + "driver_module": "uvcvideo", 811 + "drivers": [ 812 + "uvcvideo" 813 + ], 814 + "driver_modules": [ 815 + "uvcvideo" 816 + ], 817 + "module_alias": "usb:v04F2pB604d0027dcEFdsc02dp01ic0Eisc02ip00in01" 818 + } 819 + ], 820 + "cpu": [ 821 + { 822 + "architecture": "x86_64", 823 + "vendor_name": "GenuineIntel", 824 + "model_name": "Intel(R) Core(TM) i5-8300H CPU @ 2.30GHz", 825 + "family": 6, 826 + "model": 158, 827 + "stepping": 10, 828 + "features": [ 829 + "fpu", 830 + "vme", 831 + "de", 832 + "pse", 833 + "tsc", 834 + "msr", 835 + "pae", 836 + "mce", 837 + "cx8", 838 + "apic", 839 + "sep", 840 + "mtrr", 841 + "pge", 842 + "mca", 843 + "cmov", 844 + "pat", 845 + "pse36", 846 + "clflush", 847 + "dts", 848 + "acpi", 849 + "mmx", 850 + "fxsr", 851 + "sse", 852 + "sse2", 853 + "ss", 854 + "ht", 855 + "tm", 856 + "pbe", 857 + "syscall", 858 + "nx", 859 + "pdpe1gb", 860 + "rdtscp", 861 + "lm", 862 + "constant_tsc", 863 + "art", 864 + "arch_perfmon", 865 + "pebs", 866 + "bts", 867 + "rep_good", 868 + "nopl", 869 + "xtopology", 870 + "nonstop_tsc", 871 + "cpuid", 872 + "aperfmperf", 873 + "pni", 874 + "pclmulqdq", 875 + "dtes64", 876 + "monitor", 877 + "ds_cpl", 878 + "vmx", 879 + "est", 880 + "tm2", 881 + "ssse3", 882 + "sdbg", 883 + "fma", 884 + "cx16", 885 + "xtpr", 886 + "pdcm", 887 + "pcid", 888 + "sse4_1", 889 + "sse4_2", 890 + "x2apic", 891 + "movbe", 892 + "popcnt", 893 + "tsc_deadline_timer", 894 + "aes", 895 + "xsave", 896 + "avx", 897 + "f16c", 898 + "rdrand", 899 + "lahf_lm", 900 + "abm", 901 + "3dnowprefetch", 902 + "cpuid_fault", 903 + "epb", 904 + "pti", 905 + "ssbd", 906 + "ibrs", 907 + "ibpb", 908 + "stibp", 909 + "tpr_shadow", 910 + "flexpriority", 911 + "ept", 912 + "vpid", 913 + "ept_ad", 914 + "fsgsbase", 915 + "tsc_adjust", 916 + "bmi1", 917 + "avx2", 918 + "smep", 919 + "bmi2", 920 + "erms", 921 + "invpcid", 922 + "mpx", 923 + "rdseed", 924 + "adx", 925 + "smap", 926 + "clflushopt", 927 + "intel_pt", 928 + "xsaveopt", 929 + "xsavec", 930 + "xgetbv1", 931 + "xsaves", 932 + "dtherm", 933 + "ida", 934 + "arat", 935 + "pln", 936 + "pts", 937 + "hwp", 938 + "hwp_notify", 939 + "hwp_act_window", 940 + "hwp_epp", 941 + "vnmi", 942 + "md_clear", 943 + "flush_l1d", 944 + "arch_capabilities" 945 + ], 946 + "bugs": [ 947 + "cpu_meltdown", 948 + "spectre_v1", 949 + "spectre_v2", 950 + "spec_store_bypass", 951 + "l1tf", 952 + "mds", 953 + "swapgs", 954 + "itlb_multihit", 955 + "srbds", 956 + "mmio_stale_data", 957 + "retbleed", 958 + "gds", 959 + "spectre_v2_user", 960 + "vmscape" 961 + ], 962 + "power_management": [ 963 + "" 964 + ], 965 + "bogo": 4599, 966 + "cache": 8192, 967 + "units": 16, 968 + "page_size": 4096, 969 + "physical_id": 0, 970 + "siblings": 8, 971 + "cores": 4, 972 + "fpu": false, 973 + "fpu_exception": false, 974 + "cpuid_level": 22, 975 + "write_protect": false, 976 + "clflush_size": 64, 977 + "cache_alignment": 64, 978 + "address_sizes": { 979 + "physical": "0x27", 980 + "virtual": "0x30" 981 + } 982 + } 983 + ], 984 + "disk": [ 985 + { 986 + "index": 38, 987 + "attached_to": 28, 988 + "class_list": [ 989 + "disk", 990 + "block_device", 991 + "nvme" 992 + ], 993 + "bus_type": { 994 + "hex": "0096", 995 + "name": "NVME", 996 + "value": 150 997 + }, 998 + "slot": { 999 + "bus": 0, 1000 + "number": 0 1001 + }, 1002 + "base_class": { 1003 + "hex": "0106", 1004 + "name": "Mass Storage Device", 1005 + "value": 262 1006 + }, 1007 + "sub_class": { 1008 + "hex": "0000", 1009 + "name": "Disk", 1010 + "value": 0 1011 + }, 1012 + "vendor": { 1013 + "hex": "1c5c", 1014 + "value": 7260 1015 + }, 1016 + "sub_vendor": { 1017 + "hex": "1c5c", 1018 + "value": 7260 1019 + }, 1020 + "device": { 1021 + "hex": "1327", 1022 + "name": "HFM128GDHTNG-8310A", 1023 + "value": 4903 1024 + }, 1025 + "sub_device": { 1026 + "hex": "0000", 1027 + "value": 0 1028 + }, 1029 + "serial": "NJ89N639811509O3Q", 1030 + "model": "HFM128GDHTNG-8310A", 1031 + "sysfs_id": "/class/block/nvme0n1", 1032 + "sysfs_bus_id": "nvme0", 1033 + "sysfs_device_link": "/devices/pci0000:00/0000:00:1d.0/0000:06:00.0/nvme/nvme0", 1034 + "unix_device_names": [ 1035 + "/dev/disk/by-id/nvme-HFM128GDHTNG-8310A_NJ89N639811509O3Q", 1036 + "/dev/disk/by-id/nvme-HFM128GDHTNG-8310A_NJ89N639811509O3Q_1", 1037 + "/dev/disk/by-id/nvme-nvme.1c5c-4e4a38394e3633393831313530394f3351-48464d313238474448544e472d3833313041-00000001", 1038 + "/dev/disk/by-path/pci-0000:06:00.0-nvme-1", 1039 + "/dev/nvme0n1" 1040 + ], 1041 + "resources": [ 1042 + { 1043 + "type": "disk_geo", 1044 + "cylinders": 122104, 1045 + "heads": 64, 1046 + "sectors": 32, 1047 + "size": "0x0", 1048 + "geo_type": "logical" 1049 + }, 1050 + { 1051 + "type": "size", 1052 + "unit": "sectors", 1053 + "value_1": 250069680, 1054 + "value_2": 512 1055 + } 1056 + ], 1057 + "driver": "nvme", 1058 + "driver_module": "nvme", 1059 + "drivers": [ 1060 + "nvme" 1061 + ], 1062 + "driver_modules": [ 1063 + "nvme" 1064 + ] 1065 + }, 1066 + { 1067 + "index": 39, 1068 + "attached_to": 12, 1069 + "class_list": [ 1070 + "disk", 1071 + "ide", 1072 + "block_device" 1073 + ], 1074 + "bus_type": { 1075 + "hex": "0085", 1076 + "name": "IDE", 1077 + "value": 133 1078 + }, 1079 + "slot": { 1080 + "bus": 4, 1081 + "number": 0 1082 + }, 1083 + "base_class": { 1084 + "hex": "0106", 1085 + "name": "Mass Storage Device", 1086 + "value": 262 1087 + }, 1088 + "sub_class": { 1089 + "hex": "0000", 1090 + "name": "Disk", 1091 + "value": 0 1092 + }, 1093 + "vendor": { 1094 + "hex": "0000", 1095 + "name": "WDC", 1096 + "value": 0 1097 + }, 1098 + "device": { 1099 + "hex": "0000", 1100 + "name": "WD10SPZX-24Z", 1101 + "value": 0 1102 + }, 1103 + "revision": { 1104 + "hex": "0000", 1105 + "name": "1A04", 1106 + "value": 0 1107 + }, 1108 + "serial": "WD-WXM1AB88H84F", 1109 + "model": "WDC WD10SPZX-24Z", 1110 + "sysfs_id": "/class/block/sda", 1111 + "sysfs_bus_id": "4:0:0:0", 1112 + "sysfs_device_link": "/devices/pci0000:00/0000:00:17.0/ata5/host4/target4:0:0/4:0:0:0", 1113 + "unix_device_names": [ 1114 + "/dev/disk/by-id/ata-WDC_WD10SPZX-24Z10_WD-WXM1AB88H84F", 1115 + "/dev/disk/by-id/wwn-0x50014ee210ad16a2", 1116 + "/dev/disk/by-path/pci-0000:00:17.0-ata-5", 1117 + "/dev/disk/by-path/pci-0000:00:17.0-ata-5.0", 1118 + "/dev/sda" 1119 + ], 1120 + "resources": [ 1121 + { 1122 + "type": "disk_geo", 1123 + "cylinders": 121601, 1124 + "heads": 255, 1125 + "sectors": 63, 1126 + "size": "0x0", 1127 + "geo_type": "logical" 1128 + }, 1129 + { 1130 + "type": "size", 1131 + "unit": "sectors", 1132 + "value_1": 1953525168, 1133 + "value_2": 512 1134 + } 1135 + ], 1136 + "driver": "ahci", 1137 + "driver_module": "ahci", 1138 + "drivers": [ 1139 + "ahci", 1140 + "sd" 1141 + ], 1142 + "driver_modules": [ 1143 + "ahci", 1144 + "sd_mod" 1145 + ] 1146 + } 1147 + ], 1148 + "graphics_card": [ 1149 + { 1150 + "index": 20, 1151 + "attached_to": 16, 1152 + "class_list": [ 1153 + "graphics_card", 1154 + "pci" 1155 + ], 1156 + "bus_type": { 1157 + "hex": "0004", 1158 + "name": "PCI", 1159 + "value": 4 1160 + }, 1161 + "slot": { 1162 + "bus": 1, 1163 + "number": 0 1164 + }, 1165 + "base_class": { 1166 + "hex": "0003", 1167 + "name": "Display controller", 1168 + "value": 3 1169 + }, 1170 + "sub_class": { 1171 + "hex": "0000", 1172 + "name": "VGA compatible controller", 1173 + "value": 0 1174 + }, 1175 + "pci_interface": { 1176 + "hex": "0000", 1177 + "name": "VGA", 1178 + "value": 0 1179 + }, 1180 + "vendor": { 1181 + "hex": "10de", 1182 + "name": "nVidia Corporation", 1183 + "value": 4318 1184 + }, 1185 + "sub_vendor": { 1186 + "hex": "17aa", 1187 + "value": 6058 1188 + }, 1189 + "device": { 1190 + "hex": "1c8d", 1191 + "value": 7309 1192 + }, 1193 + "sub_device": { 1194 + "hex": "39fe", 1195 + "value": 14846 1196 + }, 1197 + "revision": { 1198 + "hex": "00a1", 1199 + "value": 161 1200 + }, 1201 + "model": "nVidia VGA compatible controller", 1202 + "sysfs_id": "/devices/pci0000:00/0000:00:01.0/0000:01:00.0", 1203 + "sysfs_bus_id": "0000:01:00.0", 1204 + "resources": [ 1205 + { 1206 + "type": "io", 1207 + "base": 16384, 1208 + "range": 128, 1209 + "enabled": true, 1210 + "access": "read_write" 1211 + } 1212 + ], 1213 + "detail": { 1214 + "function": 0, 1215 + "command": 1031, 1216 + "header_type": 0, 1217 + "secondary_bus": 0, 1218 + "prog_if": 0 1219 + }, 1220 + "driver": "nvidia", 1221 + "driver_module": "nvidia", 1222 + "drivers": [ 1223 + "nvidia" 1224 + ], 1225 + "driver_modules": [ 1226 + "nvidia" 1227 + ], 1228 + "module_alias": "pci:v000010DEd00001C8Dsv000017AAsd000039FEbc03sc00i00" 1229 + }, 1230 + { 1231 + "index": 33, 1232 + "attached_to": 0, 1233 + "class_list": [ 1234 + "graphics_card", 1235 + "pci" 1236 + ], 1237 + "bus_type": { 1238 + "hex": "0004", 1239 + "name": "PCI", 1240 + "value": 4 1241 + }, 1242 + "slot": { 1243 + "bus": 0, 1244 + "number": 2 1245 + }, 1246 + "base_class": { 1247 + "hex": "0003", 1248 + "name": "Display controller", 1249 + "value": 3 1250 + }, 1251 + "sub_class": { 1252 + "hex": "0000", 1253 + "name": "VGA compatible controller", 1254 + "value": 0 1255 + }, 1256 + "pci_interface": { 1257 + "hex": "0000", 1258 + "name": "VGA", 1259 + "value": 0 1260 + }, 1261 + "vendor": { 1262 + "hex": "8086", 1263 + "name": "Intel Corporation", 1264 + "value": 32902 1265 + }, 1266 + "sub_vendor": { 1267 + "hex": "17aa", 1268 + "value": 6058 1269 + }, 1270 + "device": { 1271 + "hex": "3e9b", 1272 + "value": 16027 1273 + }, 1274 + "sub_device": { 1275 + "hex": "39fe", 1276 + "value": 14846 1277 + }, 1278 + "model": "Intel VGA compatible controller", 1279 + "sysfs_id": "/devices/pci0000:00/0000:00:02.0", 1280 + "sysfs_bus_id": "0000:00:02.0", 1281 + "resources": [ 1282 + { 1283 + "type": "io", 1284 + "base": 20480, 1285 + "range": 64, 1286 + "enabled": true, 1287 + "access": "read_write" 1288 + } 1289 + ], 1290 + "detail": { 1291 + "function": 0, 1292 + "command": 1031, 1293 + "header_type": 0, 1294 + "secondary_bus": 0, 1295 + "prog_if": 0 1296 + }, 1297 + "driver": "i915", 1298 + "driver_module": "i915", 1299 + "drivers": [ 1300 + "i915" 1301 + ], 1302 + "driver_modules": [ 1303 + "i915" 1304 + ], 1305 + "module_alias": "pci:v00008086d00003E9Bsv000017AAsd000039FEbc03sc00i00" 1306 + } 1307 + ], 1308 + "hub": [ 1309 + { 1310 + "index": 43, 1311 + "attached_to": 34, 1312 + "class_list": [ 1313 + "usb", 1314 + "hub" 1315 + ], 1316 + "bus_type": { 1317 + "hex": "0086", 1318 + "name": "USB", 1319 + "value": 134 1320 + }, 1321 + "slot": { 1322 + "bus": 0, 1323 + "number": 0 1324 + }, 1325 + "base_class": { 1326 + "hex": "010a", 1327 + "name": "Hub", 1328 + "value": 266 1329 + }, 1330 + "vendor": { 1331 + "hex": "1d6b", 1332 + "name": "Linux 6.19.8-cachyos xhci-hcd", 1333 + "value": 7531 1334 + }, 1335 + "device": { 1336 + "hex": "0002", 1337 + "name": "xHCI Host Controller", 1338 + "value": 2 1339 + }, 1340 + "revision": { 1341 + "hex": "0000", 1342 + "name": "6.19", 1343 + "value": 0 1344 + }, 1345 + "serial": "0000:00:14.0", 1346 + "model": "Linux 6.19.8-cachyos xhci-hcd xHCI Host Controller", 1347 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb1/1-0:1.0", 1348 + "sysfs_bus_id": "1-0:1.0", 1349 + "resources": [ 1350 + { 1351 + "type": "baud", 1352 + "speed": 480000000, 1353 + "bits": 0, 1354 + "stop_bits": 0, 1355 + "parity": 0, 1356 + "handshake": 0 1357 + } 1358 + ], 1359 + "detail": { 1360 + "device_class": { 1361 + "hex": "0009", 1362 + "name": "hub", 1363 + "value": 9 1364 + }, 1365 + "device_subclass": { 1366 + "hex": "0000", 1367 + "name": "per_interface", 1368 + "value": 0 1369 + }, 1370 + "device_protocol": 1, 1371 + "interface_class": { 1372 + "hex": "0009", 1373 + "name": "hub", 1374 + "value": 9 1375 + }, 1376 + "interface_subclass": { 1377 + "hex": "0000", 1378 + "name": "per_interface", 1379 + "value": 0 1380 + }, 1381 + "interface_protocol": 0, 1382 + "interface_number": 0, 1383 + "interface_alternate_setting": 0 1384 + }, 1385 + "hotplug": "usb", 1386 + "driver": "hub", 1387 + "driver_module": "usbcore", 1388 + "drivers": [ 1389 + "hub" 1390 + ], 1391 + "driver_modules": [ 1392 + "usbcore" 1393 + ], 1394 + "module_alias": "usb:v1D6Bp0002d0619dc09dsc00dp01ic09isc00ip00in00" 1395 + }, 1396 + { 1397 + "index": 48, 1398 + "attached_to": 34, 1399 + "class_list": [ 1400 + "usb", 1401 + "hub" 1402 + ], 1403 + "bus_type": { 1404 + "hex": "0086", 1405 + "name": "USB", 1406 + "value": 134 1407 + }, 1408 + "slot": { 1409 + "bus": 0, 1410 + "number": 0 1411 + }, 1412 + "base_class": { 1413 + "hex": "010a", 1414 + "name": "Hub", 1415 + "value": 266 1416 + }, 1417 + "vendor": { 1418 + "hex": "1d6b", 1419 + "name": "Linux 6.19.8-cachyos xhci-hcd", 1420 + "value": 7531 1421 + }, 1422 + "device": { 1423 + "hex": "0003", 1424 + "name": "xHCI Host Controller", 1425 + "value": 3 1426 + }, 1427 + "revision": { 1428 + "hex": "0000", 1429 + "name": "6.19", 1430 + "value": 0 1431 + }, 1432 + "serial": "0000:00:14.0", 1433 + "model": "Linux 6.19.8-cachyos xhci-hcd xHCI Host Controller", 1434 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb2/2-0:1.0", 1435 + "sysfs_bus_id": "2-0:1.0", 1436 + "detail": { 1437 + "device_class": { 1438 + "hex": "0009", 1439 + "name": "hub", 1440 + "value": 9 1441 + }, 1442 + "device_subclass": { 1443 + "hex": "0000", 1444 + "name": "per_interface", 1445 + "value": 0 1446 + }, 1447 + "device_protocol": 3, 1448 + "interface_class": { 1449 + "hex": "0009", 1450 + "name": "hub", 1451 + "value": 9 1452 + }, 1453 + "interface_subclass": { 1454 + "hex": "0000", 1455 + "name": "per_interface", 1456 + "value": 0 1457 + }, 1458 + "interface_protocol": 0, 1459 + "interface_number": 0, 1460 + "interface_alternate_setting": 0 1461 + }, 1462 + "hotplug": "usb", 1463 + "driver": "hub", 1464 + "driver_module": "usbcore", 1465 + "drivers": [ 1466 + "hub" 1467 + ], 1468 + "driver_modules": [ 1469 + "usbcore" 1470 + ], 1471 + "module_alias": "usb:v1D6Bp0003d0619dc09dsc00dp03ic09isc00ip00in00" 1472 + } 1473 + ], 1474 + "memory": [ 1475 + { 1476 + "index": 11, 1477 + "attached_to": 0, 1478 + "class_list": [ 1479 + "memory" 1480 + ], 1481 + "base_class": { 1482 + "hex": "0101", 1483 + "name": "Internally Used Class", 1484 + "value": 257 1485 + }, 1486 + "sub_class": { 1487 + "hex": "0002", 1488 + "name": "Main Memory", 1489 + "value": 2 1490 + }, 1491 + "model": "Main Memory", 1492 + "resources": [ 1493 + { 1494 + "type": "phys_mem", 1495 + "range": 16106127360 1496 + } 1497 + ] 1498 + } 1499 + ], 1500 + "monitor": [ 1501 + { 1502 + "index": 37, 1503 + "attached_to": 33, 1504 + "class_list": [ 1505 + "monitor" 1506 + ], 1507 + "base_class": { 1508 + "hex": "0100", 1509 + "name": "Monitor", 1510 + "value": 256 1511 + }, 1512 + "sub_class": { 1513 + "hex": "0002", 1514 + "name": "LCD Monitor", 1515 + "value": 2 1516 + }, 1517 + "vendor": { 1518 + "hex": "30e4", 1519 + "name": "LG Display", 1520 + "value": 12516 1521 + }, 1522 + "device": { 1523 + "hex": "05e5", 1524 + "value": 1509 1525 + }, 1526 + "serial": "0", 1527 + "model": "LG Display LCD Monitor", 1528 + "resources": [ 1529 + { 1530 + "type": "monitor", 1531 + "width": 1920, 1532 + "height": 1080, 1533 + "vertical_frequency": 60, 1534 + "interlaced": false 1535 + }, 1536 + { 1537 + "type": "size", 1538 + "unit": "mm", 1539 + "value_1": 344, 1540 + "value_2": 194 1541 + } 1542 + ], 1543 + "detail": { 1544 + "manufacture_year": 2018, 1545 + "manufacture_week": 0, 1546 + "vertical_sync": { 1547 + "min": 0, 1548 + "max": 0 1549 + }, 1550 + "horizontal_sync": { 1551 + "min": 0, 1552 + "max": 0 1553 + }, 1554 + "horizontal_sync_timings": { 1555 + "disp": 1920, 1556 + "sync_start": 1968, 1557 + "sync_end": 2000, 1558 + "total": 2080 1559 + }, 1560 + "vertical_sync_timings": { 1561 + "disp": 1080, 1562 + "sync_start": 1083, 1563 + "sync_end": 1088, 1564 + "total": 1111 1565 + }, 1566 + "clock": 138600, 1567 + "width": 1920, 1568 + "height": 1080, 1569 + "width_millimetres": 344, 1570 + "height_millimetres": 194, 1571 + "horizontal_flag": 45, 1572 + "vertical_flag": 45, 1573 + "vendor": "LG Display", 1574 + "name": "" 1575 + } 1576 + } 1577 + ], 1578 + "mouse": [ 1579 + { 1580 + "index": 47, 1581 + "attached_to": 43, 1582 + "class_list": [ 1583 + "mouse", 1584 + "usb" 1585 + ], 1586 + "bus_type": { 1587 + "hex": "0086", 1588 + "name": "USB", 1589 + "value": 134 1590 + }, 1591 + "slot": { 1592 + "bus": 0, 1593 + "number": 0 1594 + }, 1595 + "base_class": { 1596 + "hex": "0105", 1597 + "name": "Mouse", 1598 + "value": 261 1599 + }, 1600 + "sub_class": { 1601 + "hex": "0003", 1602 + "name": "USB Mouse", 1603 + "value": 3 1604 + }, 1605 + "vendor": { 1606 + "hex": "1b1c", 1607 + "name": "Corsair", 1608 + "value": 6940 1609 + }, 1610 + "device": { 1611 + "hex": "1b65", 1612 + "name": "CORSAIR HARPOON RGB WIRELESS Gaming Dongle", 1613 + "value": 7013 1614 + }, 1615 + "revision": { 1616 + "hex": "0000", 1617 + "name": "0.05", 1618 + "value": 0 1619 + }, 1620 + "serial": "5A19AE43EBBF50DE", 1621 + "compat_vendor": "Unknown", 1622 + "compat_device": "Generic USB Mouse", 1623 + "model": "Corsair CORSAIR HARPOON RGB WIRELESS Gaming Dongle", 1624 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0", 1625 + "sysfs_bus_id": "1-1:1.0", 1626 + "unix_device_names": [ 1627 + "/dev/input/mice" 1628 + ], 1629 + "unix_device_name2": "/dev/input/mouse2", 1630 + "resources": [ 1631 + { 1632 + "type": "baud", 1633 + "speed": 12000000, 1634 + "bits": 0, 1635 + "stop_bits": 0, 1636 + "parity": 0, 1637 + "handshake": 0 1638 + } 1639 + ], 1640 + "detail": { 1641 + "device_class": { 1642 + "hex": "0000", 1643 + "name": "per_interface", 1644 + "value": 0 1645 + }, 1646 + "device_subclass": { 1647 + "hex": "0000", 1648 + "name": "per_interface", 1649 + "value": 0 1650 + }, 1651 + "device_protocol": 0, 1652 + "interface_class": { 1653 + "hex": "0003", 1654 + "name": "hid", 1655 + "value": 3 1656 + }, 1657 + "interface_subclass": { 1658 + "hex": "0000", 1659 + "name": "per_interface", 1660 + "value": 0 1661 + }, 1662 + "interface_protocol": 0, 1663 + "interface_number": 0, 1664 + "interface_alternate_setting": 0 1665 + }, 1666 + "hotplug": "usb", 1667 + "driver": "usbhid", 1668 + "driver_module": "usbhid", 1669 + "drivers": [ 1670 + "usbhid" 1671 + ], 1672 + "driver_modules": [ 1673 + "usbhid" 1674 + ], 1675 + "driver_info": { 1676 + "type": "mouse", 1677 + "db_entry_0": [ 1678 + "explorerps/2", 1679 + "exps2" 1680 + ], 1681 + "xf86": "explorerps/2", 1682 + "gpm": "exps2", 1683 + "buttons": -1, 1684 + "wheels": -1 1685 + }, 1686 + "module_alias": "usb:v1B1Cp1B65d0005dc00dsc00dp00ic03isc00ip00in00" 1687 + }, 1688 + { 1689 + "index": 52, 1690 + "attached_to": 0, 1691 + "bus_type": { 1692 + "hex": "0081", 1693 + "name": "serial", 1694 + "value": 129 1695 + }, 1696 + "base_class": { 1697 + "hex": "0118", 1698 + "name": "touchpad", 1699 + "value": 280 1700 + }, 1701 + "sub_class": { 1702 + "hex": "0001", 1703 + "name": "bus", 1704 + "value": 1 1705 + }, 1706 + "vendor": { 1707 + "hex": "06cb", 1708 + "value": 1739 1709 + }, 1710 + "device": { 1711 + "hex": "cd5f", 1712 + "value": 52575 1713 + }, 1714 + "sysfs_id": "/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-6/i2c-SYNA2B46:00/0018:06CB:CD5F.0001/input/input11", 1715 + "unix_device_names": [ 1716 + "/dev/input/event8", 1717 + "/dev/input/ + handler" 1718 + ] 1719 + } 1720 + ], 1721 + "network_controller": [ 1722 + { 1723 + "index": 17, 1724 + "attached_to": 36, 1725 + "class_list": [ 1726 + "network_controller", 1727 + "pci" 1728 + ], 1729 + "bus_type": { 1730 + "hex": "0004", 1731 + "name": "PCI", 1732 + "value": 4 1733 + }, 1734 + "slot": { 1735 + "bus": 8, 1736 + "number": 0 1737 + }, 1738 + "base_class": { 1739 + "hex": "0002", 1740 + "name": "Network controller", 1741 + "value": 2 1742 + }, 1743 + "sub_class": { 1744 + "hex": "0000", 1745 + "name": "Ethernet controller", 1746 + "value": 0 1747 + }, 1748 + "vendor": { 1749 + "hex": "10ec", 1750 + "value": 4332 1751 + }, 1752 + "sub_vendor": { 1753 + "hex": "17aa", 1754 + "value": 6058 1755 + }, 1756 + "device": { 1757 + "hex": "8168", 1758 + "value": 33128 1759 + }, 1760 + "sub_device": { 1761 + "hex": "38b4", 1762 + "value": 14516 1763 + }, 1764 + "revision": { 1765 + "hex": "0015", 1766 + "value": 21 1767 + }, 1768 + "model": "Ethernet controller", 1769 + "sysfs_id": "/devices/pci0000:00/0000:00:1d.5/0000:08:00.0", 1770 + "sysfs_bus_id": "0000:08:00.0", 1771 + "unix_device_names": [ 1772 + "enp8s0" 1773 + ], 1774 + "resources": [ 1775 + { 1776 + "type": "hwaddr", 1777 + "address": 101 1778 + }, 1779 + { 1780 + "type": "io", 1781 + "base": 12288, 1782 + "range": 256, 1783 + "enabled": true, 1784 + "access": "read_write" 1785 + }, 1786 + { 1787 + "type": "phwaddr", 1788 + "address": 101 1789 + } 1790 + ], 1791 + "detail": { 1792 + "function": 0, 1793 + "command": 1031, 1794 + "header_type": 0, 1795 + "secondary_bus": 0, 1796 + "prog_if": 0 1797 + }, 1798 + "driver": "r8169", 1799 + "driver_module": "r8169", 1800 + "drivers": [ 1801 + "r8169" 1802 + ], 1803 + "driver_modules": [ 1804 + "r8169" 1805 + ], 1806 + "module_alias": "pci:v000010ECd00008168sv000017AAsd000038B4bc02sc00i00" 1807 + }, 1808 + { 1809 + "index": 22, 1810 + "attached_to": 27, 1811 + "class_list": [ 1812 + "network_controller", 1813 + "pci", 1814 + "wlan_card" 1815 + ], 1816 + "bus_type": { 1817 + "hex": "0004", 1818 + "name": "PCI", 1819 + "value": 4 1820 + }, 1821 + "slot": { 1822 + "bus": 7, 1823 + "number": 0 1824 + }, 1825 + "base_class": { 1826 + "hex": "0002", 1827 + "name": "Network controller", 1828 + "value": 2 1829 + }, 1830 + "sub_class": { 1831 + "hex": "0082", 1832 + "name": "WLAN controller", 1833 + "value": 130 1834 + }, 1835 + "vendor": { 1836 + "hex": "168c", 1837 + "value": 5772 1838 + }, 1839 + "sub_vendor": { 1840 + "hex": "17aa", 1841 + "value": 6058 1842 + }, 1843 + "device": { 1844 + "hex": "0042", 1845 + "value": 66 1846 + }, 1847 + "sub_device": { 1848 + "hex": "0901", 1849 + "value": 2305 1850 + }, 1851 + "revision": { 1852 + "hex": "0031", 1853 + "value": 49 1854 + }, 1855 + "model": "WLAN controller", 1856 + "sysfs_id": "/devices/pci0000:00/0000:00:1d.4/0000:07:00.0", 1857 + "sysfs_bus_id": "0000:07:00.0", 1858 + "unix_device_names": [ 1859 + "wlp7s0" 1860 + ], 1861 + "resources": [ 1862 + { 1863 + "type": "hwaddr", 1864 + "address": 102 1865 + }, 1866 + { 1867 + "type": "phwaddr", 1868 + "address": 102 1869 + }, 1870 + { 1871 + "type": "wlan", 1872 + "channels": [ 1873 + "1", 1874 + "2", 1875 + "3", 1876 + "4", 1877 + "5", 1878 + "6", 1879 + "7", 1880 + "8", 1881 + "9", 1882 + "10", 1883 + "11", 1884 + "12", 1885 + "13", 1886 + "36", 1887 + "40", 1888 + "44", 1889 + "48", 1890 + "52", 1891 + "56", 1892 + "60", 1893 + "64", 1894 + "100", 1895 + "104", 1896 + "108", 1897 + "112", 1898 + "116", 1899 + "120", 1900 + "124", 1901 + "128", 1902 + "132", 1903 + "136", 1904 + "140" 1905 + ], 1906 + "frequencies": [ 1907 + "2.412", 1908 + "2.417", 1909 + "2.422", 1910 + "2.427", 1911 + "2.432", 1912 + "2.437", 1913 + "2.442", 1914 + "2.447", 1915 + "2.452", 1916 + "2.457", 1917 + "2.462", 1918 + "2.467", 1919 + "2.472", 1920 + "5.18", 1921 + "5.2", 1922 + "5.22", 1923 + "5.24", 1924 + "5.26", 1925 + "5.28", 1926 + "5.3", 1927 + "5.32", 1928 + "5.5", 1929 + "5.52", 1930 + "5.54", 1931 + "5.56", 1932 + "5.58", 1933 + "5.6", 1934 + "5.62", 1935 + "5.64", 1936 + "5.66", 1937 + "5.68", 1938 + "5.7" 1939 + ], 1940 + "auth_modes": [ 1941 + "open", 1942 + "sharedkey", 1943 + "wpa-psk", 1944 + "wpa-eap" 1945 + ], 1946 + "enc_modes": [ 1947 + "WEP40", 1948 + "WEP104", 1949 + "TKIP", 1950 + "CCMP" 1951 + ] 1952 + } 1953 + ], 1954 + "detail": { 1955 + "function": 0, 1956 + "command": 1030, 1957 + "header_type": 0, 1958 + "secondary_bus": 0, 1959 + "prog_if": 0 1960 + }, 1961 + "driver": "ath10k_pci", 1962 + "driver_module": "ath10k_pci", 1963 + "drivers": [ 1964 + "ath10k_pci" 1965 + ], 1966 + "driver_modules": [ 1967 + "ath10k_pci" 1968 + ], 1969 + "module_alias": "pci:v0000168Cd00000042sv000017AAsd00000901bc02sc80i00" 1970 + } 1971 + ], 1972 + "network_interface": [ 1973 + { 1974 + "index": 49, 1975 + "attached_to": 0, 1976 + "class_list": [ 1977 + "network_interface" 1978 + ], 1979 + "base_class": { 1980 + "hex": "0107", 1981 + "name": "Network Interface", 1982 + "value": 263 1983 + }, 1984 + "sub_class": { 1985 + "hex": "0000", 1986 + "name": "Loopback", 1987 + "value": 0 1988 + }, 1989 + "model": "Loopback network interface", 1990 + "sysfs_id": "/class/net/lo", 1991 + "unix_device_names": [ 1992 + "lo" 1993 + ] 1994 + }, 1995 + { 1996 + "index": 50, 1997 + "attached_to": 17, 1998 + "class_list": [ 1999 + "network_interface" 2000 + ], 2001 + "base_class": { 2002 + "hex": "0107", 2003 + "name": "Network Interface", 2004 + "value": 263 2005 + }, 2006 + "sub_class": { 2007 + "hex": "0001", 2008 + "name": "Ethernet", 2009 + "value": 1 2010 + }, 2011 + "model": "Ethernet network interface", 2012 + "sysfs_id": "/class/net/enp8s0", 2013 + "sysfs_device_link": "/devices/pci0000:00/0000:00:1d.5/0000:08:00.0", 2014 + "unix_device_names": [ 2015 + "enp8s0" 2016 + ], 2017 + "resources": [ 2018 + { 2019 + "type": "hwaddr", 2020 + "address": 101 2021 + }, 2022 + { 2023 + "type": "phwaddr", 2024 + "address": 101 2025 + } 2026 + ], 2027 + "driver": "r8169", 2028 + "driver_module": "r8169", 2029 + "drivers": [ 2030 + "r8169" 2031 + ], 2032 + "driver_modules": [ 2033 + "r8169" 2034 + ] 2035 + }, 2036 + { 2037 + "index": 51, 2038 + "attached_to": 22, 2039 + "class_list": [ 2040 + "network_interface" 2041 + ], 2042 + "base_class": { 2043 + "hex": "0107", 2044 + "name": "Network Interface", 2045 + "value": 263 2046 + }, 2047 + "sub_class": { 2048 + "hex": "0001", 2049 + "name": "Ethernet", 2050 + "value": 1 2051 + }, 2052 + "model": "Ethernet network interface", 2053 + "sysfs_id": "/class/net/wlp7s0", 2054 + "sysfs_device_link": "/devices/pci0000:00/0000:00:1d.4/0000:07:00.0", 2055 + "unix_device_names": [ 2056 + "wlp7s0" 2057 + ], 2058 + "resources": [ 2059 + { 2060 + "type": "hwaddr", 2061 + "address": 102 2062 + }, 2063 + { 2064 + "type": "phwaddr", 2065 + "address": 102 2066 + } 2067 + ], 2068 + "driver": "ath10k_pci", 2069 + "driver_module": "ath10k_pci", 2070 + "drivers": [ 2071 + "ath10k_pci" 2072 + ], 2073 + "driver_modules": [ 2074 + "ath10k_pci" 2075 + ] 2076 + } 2077 + ], 2078 + "pci": [ 2079 + { 2080 + "index": 13, 2081 + "attached_to": 0, 2082 + "class_list": [ 2083 + "pci", 2084 + "unknown" 2085 + ], 2086 + "bus_type": { 2087 + "hex": "0004", 2088 + "name": "PCI", 2089 + "value": 4 2090 + }, 2091 + "slot": { 2092 + "bus": 0, 2093 + "number": 8 2094 + }, 2095 + "base_class": { 2096 + "hex": "0008", 2097 + "name": "Generic system peripheral", 2098 + "value": 8 2099 + }, 2100 + "sub_class": { 2101 + "hex": "0080", 2102 + "name": "System peripheral", 2103 + "value": 128 2104 + }, 2105 + "vendor": { 2106 + "hex": "8086", 2107 + "name": "Intel Corporation", 2108 + "value": 32902 2109 + }, 2110 + "sub_vendor": { 2111 + "hex": "17aa", 2112 + "value": 6058 2113 + }, 2114 + "device": { 2115 + "hex": "1911", 2116 + "value": 6417 2117 + }, 2118 + "sub_device": { 2119 + "hex": "384e", 2120 + "value": 14414 2121 + }, 2122 + "model": "Intel System peripheral", 2123 + "sysfs_id": "/devices/pci0000:00/0000:00:08.0", 2124 + "sysfs_bus_id": "0000:00:08.0", 2125 + "detail": { 2126 + "function": 0, 2127 + "command": 6, 2128 + "header_type": 0, 2129 + "secondary_bus": 0, 2130 + "prog_if": 0 2131 + }, 2132 + "module_alias": "pci:v00008086d00001911sv000017AAsd0000384Ebc08sc80i00" 2133 + }, 2134 + { 2135 + "index": 14, 2136 + "attached_to": 0, 2137 + "class_list": [ 2138 + "pci", 2139 + "unknown" 2140 + ], 2141 + "bus_type": { 2142 + "hex": "0004", 2143 + "name": "PCI", 2144 + "value": 4 2145 + }, 2146 + "slot": { 2147 + "bus": 0, 2148 + "number": 21 2149 + }, 2150 + "base_class": { 2151 + "hex": "000c", 2152 + "name": "Serial bus controller", 2153 + "value": 12 2154 + }, 2155 + "sub_class": { 2156 + "hex": "0080", 2157 + "value": 128 2158 + }, 2159 + "vendor": { 2160 + "hex": "8086", 2161 + "name": "Intel Corporation", 2162 + "value": 32902 2163 + }, 2164 + "sub_vendor": { 2165 + "hex": "17aa", 2166 + "value": 6058 2167 + }, 2168 + "device": { 2169 + "hex": "a369", 2170 + "value": 41833 2171 + }, 2172 + "sub_device": { 2173 + "hex": "3809", 2174 + "value": 14345 2175 + }, 2176 + "revision": { 2177 + "hex": "0010", 2178 + "value": 16 2179 + }, 2180 + "model": "Intel Serial bus controller", 2181 + "sysfs_id": "/devices/pci0000:00/0000:00:15.1", 2182 + "sysfs_bus_id": "0000:00:15.1", 2183 + "detail": { 2184 + "function": 1, 2185 + "command": 6, 2186 + "header_type": 0, 2187 + "secondary_bus": 0, 2188 + "prog_if": 0 2189 + }, 2190 + "driver": "intel-lpss", 2191 + "driver_module": "intel_lpss_pci", 2192 + "drivers": [ 2193 + "intel-lpss" 2194 + ], 2195 + "driver_modules": [ 2196 + "intel_lpss_pci" 2197 + ], 2198 + "module_alias": "pci:v00008086d0000A369sv000017AAsd00003809bc0Csc80i00" 2199 + }, 2200 + { 2201 + "index": 18, 2202 + "attached_to": 0, 2203 + "class_list": [ 2204 + "pci", 2205 + "unknown" 2206 + ], 2207 + "bus_type": { 2208 + "hex": "0004", 2209 + "name": "PCI", 2210 + "value": 4 2211 + }, 2212 + "slot": { 2213 + "bus": 0, 2214 + "number": 4 2215 + }, 2216 + "base_class": { 2217 + "hex": "0011", 2218 + "name": "Signal processing controller", 2219 + "value": 17 2220 + }, 2221 + "sub_class": { 2222 + "hex": "0080", 2223 + "name": "Signal processing controller", 2224 + "value": 128 2225 + }, 2226 + "vendor": { 2227 + "hex": "8086", 2228 + "name": "Intel Corporation", 2229 + "value": 32902 2230 + }, 2231 + "sub_vendor": { 2232 + "hex": "17aa", 2233 + "value": 6058 2234 + }, 2235 + "device": { 2236 + "hex": "1903", 2237 + "value": 6403 2238 + }, 2239 + "sub_device": { 2240 + "hex": "381f", 2241 + "value": 14367 2242 + }, 2243 + "revision": { 2244 + "hex": "0007", 2245 + "value": 7 2246 + }, 2247 + "model": "Intel Signal processing controller", 2248 + "sysfs_id": "/devices/pci0000:00/0000:00:04.0", 2249 + "sysfs_bus_id": "0000:00:04.0", 2250 + "detail": { 2251 + "function": 0, 2252 + "command": 6, 2253 + "header_type": 0, 2254 + "secondary_bus": 0, 2255 + "prog_if": 0 2256 + }, 2257 + "driver": "proc_thermal", 2258 + "driver_module": "processor_thermal_device_pci_legacy", 2259 + "drivers": [ 2260 + "proc_thermal" 2261 + ], 2262 + "driver_modules": [ 2263 + "processor_thermal_device_pci_legacy" 2264 + ], 2265 + "module_alias": "pci:v00008086d00001903sv000017AAsd0000381Fbc11sc80i00" 2266 + }, 2267 + { 2268 + "index": 19, 2269 + "attached_to": 0, 2270 + "class_list": [ 2271 + "pci", 2272 + "unknown" 2273 + ], 2274 + "bus_type": { 2275 + "hex": "0004", 2276 + "name": "PCI", 2277 + "value": 4 2278 + }, 2279 + "slot": { 2280 + "bus": 0, 2281 + "number": 22 2282 + }, 2283 + "base_class": { 2284 + "hex": "0007", 2285 + "name": "Communication controller", 2286 + "value": 7 2287 + }, 2288 + "sub_class": { 2289 + "hex": "0080", 2290 + "name": "Communication controller", 2291 + "value": 128 2292 + }, 2293 + "vendor": { 2294 + "hex": "8086", 2295 + "name": "Intel Corporation", 2296 + "value": 32902 2297 + }, 2298 + "sub_vendor": { 2299 + "hex": "17aa", 2300 + "value": 6058 2301 + }, 2302 + "device": { 2303 + "hex": "a360", 2304 + "value": 41824 2305 + }, 2306 + "sub_device": { 2307 + "hex": "380e", 2308 + "value": 14350 2309 + }, 2310 + "revision": { 2311 + "hex": "0010", 2312 + "value": 16 2313 + }, 2314 + "model": "Intel Communication controller", 2315 + "sysfs_id": "/devices/pci0000:00/0000:00:16.0", 2316 + "sysfs_bus_id": "0000:00:16.0", 2317 + "detail": { 2318 + "function": 0, 2319 + "command": 1030, 2320 + "header_type": 0, 2321 + "secondary_bus": 0, 2322 + "prog_if": 0 2323 + }, 2324 + "driver": "mei_me", 2325 + "driver_module": "mei_me", 2326 + "drivers": [ 2327 + "mei_me" 2328 + ], 2329 + "driver_modules": [ 2330 + "mei_me" 2331 + ], 2332 + "module_alias": "pci:v00008086d0000A360sv000017AAsd0000380Ebc07sc80i00" 2333 + }, 2334 + { 2335 + "index": 21, 2336 + "attached_to": 0, 2337 + "class_list": [ 2338 + "pci", 2339 + "unknown" 2340 + ], 2341 + "bus_type": { 2342 + "hex": "0004", 2343 + "name": "PCI", 2344 + "value": 4 2345 + }, 2346 + "slot": { 2347 + "bus": 0, 2348 + "number": 31 2349 + }, 2350 + "base_class": { 2351 + "hex": "000c", 2352 + "name": "Serial bus controller", 2353 + "value": 12 2354 + }, 2355 + "sub_class": { 2356 + "hex": "0080", 2357 + "value": 128 2358 + }, 2359 + "vendor": { 2360 + "hex": "8086", 2361 + "name": "Intel Corporation", 2362 + "value": 32902 2363 + }, 2364 + "sub_vendor": { 2365 + "hex": "17aa", 2366 + "value": 6058 2367 + }, 2368 + "device": { 2369 + "hex": "a324", 2370 + "value": 41764 2371 + }, 2372 + "sub_device": { 2373 + "hex": "3801", 2374 + "value": 14337 2375 + }, 2376 + "revision": { 2377 + "hex": "0010", 2378 + "value": 16 2379 + }, 2380 + "model": "Intel Serial bus controller", 2381 + "sysfs_id": "/devices/pci0000:00/0000:00:1f.5", 2382 + "sysfs_bus_id": "0000:00:1f.5", 2383 + "detail": { 2384 + "function": 5, 2385 + "command": 1030, 2386 + "header_type": 0, 2387 + "secondary_bus": 0, 2388 + "prog_if": 0 2389 + }, 2390 + "driver": "intel-spi", 2391 + "driver_module": "spi_intel_pci", 2392 + "drivers": [ 2393 + "intel-spi" 2394 + ], 2395 + "driver_modules": [ 2396 + "spi_intel_pci" 2397 + ], 2398 + "module_alias": "pci:v00008086d0000A324sv000017AAsd00003801bc0Csc80i00" 2399 + }, 2400 + { 2401 + "index": 23, 2402 + "attached_to": 0, 2403 + "class_list": [ 2404 + "pci", 2405 + "unknown" 2406 + ], 2407 + "bus_type": { 2408 + "hex": "0004", 2409 + "name": "PCI", 2410 + "value": 4 2411 + }, 2412 + "slot": { 2413 + "bus": 0, 2414 + "number": 30 2415 + }, 2416 + "base_class": { 2417 + "hex": "0007", 2418 + "name": "Communication controller", 2419 + "value": 7 2420 + }, 2421 + "sub_class": { 2422 + "hex": "0080", 2423 + "name": "Communication controller", 2424 + "value": 128 2425 + }, 2426 + "vendor": { 2427 + "hex": "8086", 2428 + "name": "Intel Corporation", 2429 + "value": 32902 2430 + }, 2431 + "sub_vendor": { 2432 + "hex": "17aa", 2433 + "value": 6058 2434 + }, 2435 + "device": { 2436 + "hex": "a328", 2437 + "value": 41768 2438 + }, 2439 + "sub_device": { 2440 + "hex": "380f", 2441 + "value": 14351 2442 + }, 2443 + "revision": { 2444 + "hex": "0010", 2445 + "value": 16 2446 + }, 2447 + "model": "Intel Communication controller", 2448 + "sysfs_id": "/devices/pci0000:00/0000:00:1e.0", 2449 + "sysfs_bus_id": "0000:00:1e.0", 2450 + "detail": { 2451 + "function": 0, 2452 + "command": 6, 2453 + "header_type": 0, 2454 + "secondary_bus": 0, 2455 + "prog_if": 0 2456 + }, 2457 + "driver": "intel-lpss", 2458 + "driver_module": "intel_lpss_pci", 2459 + "drivers": [ 2460 + "intel-lpss" 2461 + ], 2462 + "driver_modules": [ 2463 + "intel_lpss_pci" 2464 + ], 2465 + "module_alias": "pci:v00008086d0000A328sv000017AAsd0000380Fbc07sc80i00" 2466 + }, 2467 + { 2468 + "index": 26, 2469 + "attached_to": 0, 2470 + "class_list": [ 2471 + "pci", 2472 + "unknown" 2473 + ], 2474 + "bus_type": { 2475 + "hex": "0004", 2476 + "name": "PCI", 2477 + "value": 4 2478 + }, 2479 + "slot": { 2480 + "bus": 0, 2481 + "number": 18 2482 + }, 2483 + "base_class": { 2484 + "hex": "0011", 2485 + "name": "Signal processing controller", 2486 + "value": 17 2487 + }, 2488 + "sub_class": { 2489 + "hex": "0080", 2490 + "name": "Signal processing controller", 2491 + "value": 128 2492 + }, 2493 + "vendor": { 2494 + "hex": "8086", 2495 + "name": "Intel Corporation", 2496 + "value": 32902 2497 + }, 2498 + "sub_vendor": { 2499 + "hex": "17aa", 2500 + "value": 6058 2501 + }, 2502 + "device": { 2503 + "hex": "a379", 2504 + "value": 41849 2505 + }, 2506 + "sub_device": { 2507 + "hex": "3807", 2508 + "value": 14343 2509 + }, 2510 + "revision": { 2511 + "hex": "0010", 2512 + "value": 16 2513 + }, 2514 + "model": "Intel Signal processing controller", 2515 + "sysfs_id": "/devices/pci0000:00/0000:00:12.0", 2516 + "sysfs_bus_id": "0000:00:12.0", 2517 + "detail": { 2518 + "function": 0, 2519 + "command": 6, 2520 + "header_type": 0, 2521 + "secondary_bus": 0, 2522 + "prog_if": 0 2523 + }, 2524 + "driver": "intel_pch_thermal", 2525 + "driver_module": "intel_pch_thermal", 2526 + "drivers": [ 2527 + "intel_pch_thermal" 2528 + ], 2529 + "driver_modules": [ 2530 + "intel_pch_thermal" 2531 + ], 2532 + "module_alias": "pci:v00008086d0000A379sv000017AAsd00003807bc11sc80i00" 2533 + }, 2534 + { 2535 + "index": 29, 2536 + "attached_to": 0, 2537 + "class_list": [ 2538 + "pci", 2539 + "unknown" 2540 + ], 2541 + "bus_type": { 2542 + "hex": "0004", 2543 + "name": "PCI", 2544 + "value": 4 2545 + }, 2546 + "slot": { 2547 + "bus": 0, 2548 + "number": 21 2549 + }, 2550 + "base_class": { 2551 + "hex": "000c", 2552 + "name": "Serial bus controller", 2553 + "value": 12 2554 + }, 2555 + "sub_class": { 2556 + "hex": "0080", 2557 + "value": 128 2558 + }, 2559 + "vendor": { 2560 + "hex": "8086", 2561 + "name": "Intel Corporation", 2562 + "value": 32902 2563 + }, 2564 + "sub_vendor": { 2565 + "hex": "17aa", 2566 + "value": 6058 2567 + }, 2568 + "device": { 2569 + "hex": "a368", 2570 + "value": 41832 2571 + }, 2572 + "sub_device": { 2573 + "hex": "3806", 2574 + "value": 14342 2575 + }, 2576 + "revision": { 2577 + "hex": "0010", 2578 + "value": 16 2579 + }, 2580 + "model": "Intel Serial bus controller", 2581 + "sysfs_id": "/devices/pci0000:00/0000:00:15.0", 2582 + "sysfs_bus_id": "0000:00:15.0", 2583 + "detail": { 2584 + "function": 0, 2585 + "command": 6, 2586 + "header_type": 0, 2587 + "secondary_bus": 0, 2588 + "prog_if": 0 2589 + }, 2590 + "driver": "intel-lpss", 2591 + "driver_module": "intel_lpss_pci", 2592 + "drivers": [ 2593 + "intel-lpss" 2594 + ], 2595 + "driver_modules": [ 2596 + "intel_lpss_pci" 2597 + ], 2598 + "module_alias": "pci:v00008086d0000A368sv000017AAsd00003806bc0Csc80i00" 2599 + }, 2600 + { 2601 + "index": 32, 2602 + "attached_to": 0, 2603 + "class_list": [ 2604 + "pci", 2605 + "unknown" 2606 + ], 2607 + "bus_type": { 2608 + "hex": "0004", 2609 + "name": "PCI", 2610 + "value": 4 2611 + }, 2612 + "slot": { 2613 + "bus": 0, 2614 + "number": 20 2615 + }, 2616 + "base_class": { 2617 + "hex": "0005", 2618 + "name": "Memory controller", 2619 + "value": 5 2620 + }, 2621 + "sub_class": { 2622 + "hex": "0000", 2623 + "name": "RAM memory", 2624 + "value": 0 2625 + }, 2626 + "vendor": { 2627 + "hex": "8086", 2628 + "name": "Intel Corporation", 2629 + "value": 32902 2630 + }, 2631 + "sub_vendor": { 2632 + "hex": "17aa", 2633 + "value": 6058 2634 + }, 2635 + "device": { 2636 + "hex": "a36f", 2637 + "value": 41839 2638 + }, 2639 + "sub_device": { 2640 + "hex": "3801", 2641 + "value": 14337 2642 + }, 2643 + "revision": { 2644 + "hex": "0010", 2645 + "value": 16 2646 + }, 2647 + "model": "Intel RAM memory", 2648 + "sysfs_id": "/devices/pci0000:00/0000:00:14.2", 2649 + "sysfs_bus_id": "0000:00:14.2", 2650 + "detail": { 2651 + "function": 2, 2652 + "command": 6, 2653 + "header_type": 0, 2654 + "secondary_bus": 0, 2655 + "prog_if": 0 2656 + }, 2657 + "module_alias": "pci:v00008086d0000A36Fsv000017AAsd00003801bc05sc00i00" 2658 + }, 2659 + { 2660 + "index": 35, 2661 + "attached_to": 0, 2662 + "class_list": [ 2663 + "pci", 2664 + "unknown" 2665 + ], 2666 + "bus_type": { 2667 + "hex": "0004", 2668 + "name": "PCI", 2669 + "value": 4 2670 + }, 2671 + "slot": { 2672 + "bus": 0, 2673 + "number": 31 2674 + }, 2675 + "base_class": { 2676 + "hex": "000c", 2677 + "name": "Serial bus controller", 2678 + "value": 12 2679 + }, 2680 + "sub_class": { 2681 + "hex": "0005", 2682 + "name": "SMBus", 2683 + "value": 5 2684 + }, 2685 + "vendor": { 2686 + "hex": "8086", 2687 + "name": "Intel Corporation", 2688 + "value": 32902 2689 + }, 2690 + "sub_vendor": { 2691 + "hex": "17aa", 2692 + "value": 6058 2693 + }, 2694 + "device": { 2695 + "hex": "a323", 2696 + "value": 41763 2697 + }, 2698 + "sub_device": { 2699 + "hex": "3813", 2700 + "value": 14355 2701 + }, 2702 + "revision": { 2703 + "hex": "0010", 2704 + "value": 16 2705 + }, 2706 + "model": "Intel SMBus", 2707 + "sysfs_id": "/devices/pci0000:00/0000:00:1f.4", 2708 + "sysfs_bus_id": "0000:00:1f.4", 2709 + "resources": [ 2710 + { 2711 + "type": "io", 2712 + "base": 20544, 2713 + "range": 32, 2714 + "enabled": true, 2715 + "access": "read_write" 2716 + } 2717 + ], 2718 + "detail": { 2719 + "function": 4, 2720 + "command": 3, 2721 + "header_type": 0, 2722 + "secondary_bus": 0, 2723 + "prog_if": 0 2724 + }, 2725 + "driver": "i801_smbus", 2726 + "driver_module": "i2c_i801", 2727 + "drivers": [ 2728 + "i801_smbus" 2729 + ], 2730 + "driver_modules": [ 2731 + "i2c_i801" 2732 + ], 2733 + "module_alias": "pci:v00008086d0000A323sv000017AAsd00003813bc0Csc05i00" 2734 + } 2735 + ], 2736 + "sound": [ 2737 + { 2738 + "index": 24, 2739 + "attached_to": 0, 2740 + "class_list": [ 2741 + "sound", 2742 + "pci" 2743 + ], 2744 + "bus_type": { 2745 + "hex": "0004", 2746 + "name": "PCI", 2747 + "value": 4 2748 + }, 2749 + "slot": { 2750 + "bus": 0, 2751 + "number": 31 2752 + }, 2753 + "base_class": { 2754 + "hex": "0004", 2755 + "name": "Multimedia controller", 2756 + "value": 4 2757 + }, 2758 + "sub_class": { 2759 + "hex": "0003", 2760 + "value": 3 2761 + }, 2762 + "vendor": { 2763 + "hex": "8086", 2764 + "name": "Intel Corporation", 2765 + "value": 32902 2766 + }, 2767 + "sub_vendor": { 2768 + "hex": "17aa", 2769 + "value": 6058 2770 + }, 2771 + "device": { 2772 + "hex": "a348", 2773 + "value": 41800 2774 + }, 2775 + "sub_device": { 2776 + "hex": "3812", 2777 + "value": 14354 2778 + }, 2779 + "revision": { 2780 + "hex": "0010", 2781 + "value": 16 2782 + }, 2783 + "model": "Intel Multimedia controller", 2784 + "sysfs_id": "/devices/pci0000:00/0000:00:1f.3", 2785 + "sysfs_bus_id": "0000:00:1f.3", 2786 + "detail": { 2787 + "function": 3, 2788 + "command": 1030, 2789 + "header_type": 0, 2790 + "secondary_bus": 0, 2791 + "prog_if": 0 2792 + }, 2793 + "driver": "snd_hda_intel", 2794 + "driver_module": "snd_hda_intel", 2795 + "drivers": [ 2796 + "snd_hda_intel" 2797 + ], 2798 + "driver_modules": [ 2799 + "snd_hda_intel" 2800 + ], 2801 + "module_alias": "pci:v00008086d0000A348sv000017AAsd00003812bc04sc03i00" 2802 + }, 2803 + { 2804 + "index": 31, 2805 + "attached_to": 16, 2806 + "class_list": [ 2807 + "sound", 2808 + "pci" 2809 + ], 2810 + "bus_type": { 2811 + "hex": "0004", 2812 + "name": "PCI", 2813 + "value": 4 2814 + }, 2815 + "slot": { 2816 + "bus": 1, 2817 + "number": 0 2818 + }, 2819 + "base_class": { 2820 + "hex": "0004", 2821 + "name": "Multimedia controller", 2822 + "value": 4 2823 + }, 2824 + "sub_class": { 2825 + "hex": "0003", 2826 + "value": 3 2827 + }, 2828 + "vendor": { 2829 + "hex": "10de", 2830 + "name": "nVidia Corporation", 2831 + "value": 4318 2832 + }, 2833 + "sub_vendor": { 2834 + "hex": "ffff", 2835 + "value": 65535 2836 + }, 2837 + "device": { 2838 + "hex": "0fb9", 2839 + "value": 4025 2840 + }, 2841 + "sub_device": { 2842 + "hex": "ffff", 2843 + "value": 65535 2844 + }, 2845 + "revision": { 2846 + "hex": "00a1", 2847 + "value": 161 2848 + }, 2849 + "model": "nVidia Multimedia controller", 2850 + "sysfs_id": "/devices/pci0000:00/0000:00:01.0/0000:01:00.1", 2851 + "sysfs_bus_id": "0000:01:00.1", 2852 + "detail": { 2853 + "function": 1, 2854 + "command": 6, 2855 + "header_type": 0, 2856 + "secondary_bus": 0, 2857 + "prog_if": 0 2858 + }, 2859 + "driver": "snd_hda_intel", 2860 + "driver_module": "snd_hda_intel", 2861 + "drivers": [ 2862 + "snd_hda_intel" 2863 + ], 2864 + "driver_modules": [ 2865 + "snd_hda_intel" 2866 + ], 2867 + "module_alias": "pci:v000010DEd00000FB9sv0000FFFFsd0000FFFFbc04sc03i00" 2868 + } 2869 + ], 2870 + "storage_controller": [ 2871 + { 2872 + "index": 12, 2873 + "attached_to": 0, 2874 + "class_list": [ 2875 + "storage_controller", 2876 + "pci" 2877 + ], 2878 + "bus_type": { 2879 + "hex": "0004", 2880 + "name": "PCI", 2881 + "value": 4 2882 + }, 2883 + "slot": { 2884 + "bus": 0, 2885 + "number": 23 2886 + }, 2887 + "base_class": { 2888 + "hex": "0001", 2889 + "name": "Mass storage controller", 2890 + "value": 1 2891 + }, 2892 + "sub_class": { 2893 + "hex": "0006", 2894 + "value": 6 2895 + }, 2896 + "pci_interface": { 2897 + "hex": "0001", 2898 + "value": 1 2899 + }, 2900 + "vendor": { 2901 + "hex": "8086", 2902 + "name": "Intel Corporation", 2903 + "value": 32902 2904 + }, 2905 + "sub_vendor": { 2906 + "hex": "17aa", 2907 + "value": 6058 2908 + }, 2909 + "device": { 2910 + "hex": "a353", 2911 + "value": 41811 2912 + }, 2913 + "sub_device": { 2914 + "hex": "380a", 2915 + "value": 14346 2916 + }, 2917 + "revision": { 2918 + "hex": "0010", 2919 + "value": 16 2920 + }, 2921 + "model": "Intel Mass storage controller", 2922 + "sysfs_id": "/devices/pci0000:00/0000:00:17.0", 2923 + "sysfs_bus_id": "0000:00:17.0", 2924 + "resources": [ 2925 + { 2926 + "type": "io", 2927 + "base": 20576, 2928 + "range": 32, 2929 + "enabled": true, 2930 + "access": "read_write" 2931 + }, 2932 + { 2933 + "type": "io", 2934 + "base": 20608, 2935 + "range": 8, 2936 + "enabled": true, 2937 + "access": "read_write" 2938 + }, 2939 + { 2940 + "type": "io", 2941 + "base": 20616, 2942 + "range": 4, 2943 + "enabled": true, 2944 + "access": "read_write" 2945 + } 2946 + ], 2947 + "detail": { 2948 + "function": 0, 2949 + "command": 1031, 2950 + "header_type": 0, 2951 + "secondary_bus": 0, 2952 + "prog_if": 1 2953 + }, 2954 + "driver": "ahci", 2955 + "driver_module": "ahci", 2956 + "drivers": [ 2957 + "ahci" 2958 + ], 2959 + "driver_modules": [ 2960 + "ahci" 2961 + ], 2962 + "module_alias": "pci:v00008086d0000A353sv000017AAsd0000380Abc01sc06i01" 2963 + }, 2964 + { 2965 + "index": 28, 2966 + "attached_to": 30, 2967 + "class_list": [ 2968 + "storage_controller", 2969 + "pci" 2970 + ], 2971 + "bus_type": { 2972 + "hex": "0004", 2973 + "name": "PCI", 2974 + "value": 4 2975 + }, 2976 + "slot": { 2977 + "bus": 6, 2978 + "number": 0 2979 + }, 2980 + "base_class": { 2981 + "hex": "0001", 2982 + "name": "Mass storage controller", 2983 + "value": 1 2984 + }, 2985 + "sub_class": { 2986 + "hex": "0008", 2987 + "value": 8 2988 + }, 2989 + "pci_interface": { 2990 + "hex": "0002", 2991 + "value": 2 2992 + }, 2993 + "vendor": { 2994 + "hex": "1c5c", 2995 + "value": 7260 2996 + }, 2997 + "sub_vendor": { 2998 + "hex": "1c5c", 2999 + "value": 7260 3000 + }, 3001 + "device": { 3002 + "hex": "1327", 3003 + "value": 4903 3004 + }, 3005 + "sub_device": { 3006 + "hex": "0000", 3007 + "value": 0 3008 + }, 3009 + "model": "Mass storage controller", 3010 + "sysfs_id": "/devices/pci0000:00/0000:00:1d.0/0000:06:00.0", 3011 + "sysfs_bus_id": "0000:06:00.0", 3012 + "detail": { 3013 + "function": 0, 3014 + "command": 1031, 3015 + "header_type": 0, 3016 + "secondary_bus": 0, 3017 + "prog_if": 2 3018 + }, 3019 + "driver": "nvme", 3020 + "driver_module": "nvme", 3021 + "drivers": [ 3022 + "nvme" 3023 + ], 3024 + "driver_modules": [ 3025 + "nvme" 3026 + ], 3027 + "module_alias": "pci:v00001C5Cd00001327sv00001C5Csd00000000bc01sc08i02" 3028 + } 3029 + ], 3030 + "system": { 3031 + "form_factor": "laptop" 3032 + }, 3033 + "usb": [ 3034 + { 3035 + "index": 42, 3036 + "attached_to": 43, 3037 + "class_list": [ 3038 + "usb", 3039 + "unknown" 3040 + ], 3041 + "bus_type": { 3042 + "hex": "0086", 3043 + "name": "USB", 3044 + "value": 134 3045 + }, 3046 + "slot": { 3047 + "bus": 0, 3048 + "number": 0 3049 + }, 3050 + "base_class": { 3051 + "hex": "0000", 3052 + "name": "Unclassified device", 3053 + "value": 0 3054 + }, 3055 + "sub_class": { 3056 + "hex": "0000", 3057 + "name": "Unclassified device", 3058 + "value": 0 3059 + }, 3060 + "vendor": { 3061 + "hex": "1b1c", 3062 + "name": "Corsair", 3063 + "value": 6940 3064 + }, 3065 + "device": { 3066 + "hex": "1b65", 3067 + "name": "CORSAIR HARPOON RGB WIRELESS Gaming Dongle", 3068 + "value": 7013 3069 + }, 3070 + "revision": { 3071 + "hex": "0000", 3072 + "name": "0.05", 3073 + "value": 0 3074 + }, 3075 + "serial": "5A19AE43EBBF50DE", 3076 + "model": "Corsair CORSAIR HARPOON RGB WIRELESS Gaming Dongle", 3077 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1", 3078 + "sysfs_bus_id": "1-1:1.1", 3079 + "resources": [ 3080 + { 3081 + "type": "baud", 3082 + "speed": 12000000, 3083 + "bits": 0, 3084 + "stop_bits": 0, 3085 + "parity": 0, 3086 + "handshake": 0 3087 + } 3088 + ], 3089 + "detail": { 3090 + "device_class": { 3091 + "hex": "0000", 3092 + "name": "per_interface", 3093 + "value": 0 3094 + }, 3095 + "device_subclass": { 3096 + "hex": "0000", 3097 + "name": "per_interface", 3098 + "value": 0 3099 + }, 3100 + "device_protocol": 0, 3101 + "interface_class": { 3102 + "hex": "0003", 3103 + "name": "hid", 3104 + "value": 3 3105 + }, 3106 + "interface_subclass": { 3107 + "hex": "0000", 3108 + "name": "per_interface", 3109 + "value": 0 3110 + }, 3111 + "interface_protocol": 0, 3112 + "interface_number": 1, 3113 + "interface_alternate_setting": 0 3114 + }, 3115 + "hotplug": "usb", 3116 + "driver": "usbhid", 3117 + "driver_module": "usbhid", 3118 + "drivers": [ 3119 + "usbhid" 3120 + ], 3121 + "driver_modules": [ 3122 + "usbhid" 3123 + ], 3124 + "module_alias": "usb:v1B1Cp1B65d0005dc00dsc00dp00ic03isc00ip00in01" 3125 + }, 3126 + { 3127 + "index": 46, 3128 + "attached_to": 43, 3129 + "class_list": [ 3130 + "usb", 3131 + "unknown" 3132 + ], 3133 + "bus_type": { 3134 + "hex": "0086", 3135 + "name": "USB", 3136 + "value": 134 3137 + }, 3138 + "slot": { 3139 + "bus": 0, 3140 + "number": 0 3141 + }, 3142 + "base_class": { 3143 + "hex": "0000", 3144 + "name": "Unclassified device", 3145 + "value": 0 3146 + }, 3147 + "sub_class": { 3148 + "hex": "0000", 3149 + "name": "Unclassified device", 3150 + "value": 0 3151 + }, 3152 + "vendor": { 3153 + "hex": "1b1c", 3154 + "name": "Corsair", 3155 + "value": 6940 3156 + }, 3157 + "device": { 3158 + "hex": "1b65", 3159 + "name": "CORSAIR HARPOON RGB WIRELESS Gaming Dongle", 3160 + "value": 7013 3161 + }, 3162 + "revision": { 3163 + "hex": "0000", 3164 + "name": "0.05", 3165 + "value": 0 3166 + }, 3167 + "serial": "5A19AE43EBBF50DE", 3168 + "model": "Corsair CORSAIR HARPOON RGB WIRELESS Gaming Dongle", 3169 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2", 3170 + "sysfs_bus_id": "1-1:1.2", 3171 + "resources": [ 3172 + { 3173 + "type": "baud", 3174 + "speed": 12000000, 3175 + "bits": 0, 3176 + "stop_bits": 0, 3177 + "parity": 0, 3178 + "handshake": 0 3179 + } 3180 + ], 3181 + "detail": { 3182 + "device_class": { 3183 + "hex": "0000", 3184 + "name": "per_interface", 3185 + "value": 0 3186 + }, 3187 + "device_subclass": { 3188 + "hex": "0000", 3189 + "name": "per_interface", 3190 + "value": 0 3191 + }, 3192 + "device_protocol": 0, 3193 + "interface_class": { 3194 + "hex": "0003", 3195 + "name": "hid", 3196 + "value": 3 3197 + }, 3198 + "interface_subclass": { 3199 + "hex": "0000", 3200 + "name": "per_interface", 3201 + "value": 0 3202 + }, 3203 + "interface_protocol": 0, 3204 + "interface_number": 2, 3205 + "interface_alternate_setting": 0 3206 + }, 3207 + "hotplug": "usb", 3208 + "driver": "usbhid", 3209 + "driver_module": "usbhid", 3210 + "drivers": [ 3211 + "usbhid" 3212 + ], 3213 + "driver_modules": [ 3214 + "usbhid" 3215 + ], 3216 + "module_alias": "usb:v1B1Cp1B65d0005dc00dsc00dp00ic03isc00ip00in02" 3217 + } 3218 + ], 3219 + "usb_controller": [ 3220 + { 3221 + "index": 34, 3222 + "attached_to": 0, 3223 + "class_list": [ 3224 + "usb_controller", 3225 + "pci" 3226 + ], 3227 + "bus_type": { 3228 + "hex": "0004", 3229 + "name": "PCI", 3230 + "value": 4 3231 + }, 3232 + "slot": { 3233 + "bus": 0, 3234 + "number": 20 3235 + }, 3236 + "base_class": { 3237 + "hex": "000c", 3238 + "name": "Serial bus controller", 3239 + "value": 12 3240 + }, 3241 + "sub_class": { 3242 + "hex": "0003", 3243 + "name": "USB Controller", 3244 + "value": 3 3245 + }, 3246 + "pci_interface": { 3247 + "hex": "0030", 3248 + "value": 48 3249 + }, 3250 + "vendor": { 3251 + "hex": "8086", 3252 + "name": "Intel Corporation", 3253 + "value": 32902 3254 + }, 3255 + "sub_vendor": { 3256 + "hex": "17aa", 3257 + "value": 6058 3258 + }, 3259 + "device": { 3260 + "hex": "a36d", 3261 + "value": 41837 3262 + }, 3263 + "sub_device": { 3264 + "hex": "3803", 3265 + "value": 14339 3266 + }, 3267 + "revision": { 3268 + "hex": "0010", 3269 + "value": 16 3270 + }, 3271 + "model": "Intel USB Controller", 3272 + "sysfs_id": "/devices/pci0000:00/0000:00:14.0", 3273 + "sysfs_bus_id": "0000:00:14.0", 3274 + "detail": { 3275 + "function": 0, 3276 + "command": 1030, 3277 + "header_type": 0, 3278 + "secondary_bus": 0, 3279 + "prog_if": 48 3280 + }, 3281 + "driver": "xhci_hcd", 3282 + "driver_module": "xhci_pci", 3283 + "drivers": [ 3284 + "xhci_hcd" 3285 + ], 3286 + "driver_modules": [ 3287 + "xhci_pci" 3288 + ], 3289 + "module_alias": "pci:v00008086d0000A36Dsv000017AAsd00003803bc0Csc03i30" 3290 + } 3291 + ] 3292 + }, 3293 + "smbios": { 3294 + "bios": { 3295 + "handle": 0, 3296 + "vendor": "LENOVO", 3297 + "version": "8JCN56WW", 3298 + "date": "11/30/2020", 3299 + "features": [ 3300 + "PCI supported", 3301 + "BIOS flashable", 3302 + "BIOS shadowing allowed", 3303 + "CD boot supported", 3304 + "Selectable boot supported", 3305 + "EDD spec supported", 3306 + "1.2MB NEC 9800 Japanese Floppy supported", 3307 + "1.2MB Toshiba Japanese Floppy supported", 3308 + "360kB Floppy supported", 3309 + "1.2MB Floppy supported", 3310 + "720kB Floppy supported", 3311 + "2.88MB Floppy supported", 3312 + "8042 Keyboard Services supported", 3313 + "CGA/Mono Video supported", 3314 + "ACPI supported", 3315 + "USB Legacy supported", 3316 + "BIOS Boot Spec supported" 3317 + ], 3318 + "start_address": "0xe0000", 3319 + "rom_size": 10485760 3320 + }, 3321 + "board": { 3322 + "handle": 2, 3323 + "manufacturer": "LENOVO", 3324 + "product": "LNVNB161216", 3325 + "version": "SDK0J40709 WIN", 3326 + "board_type": { 3327 + "hex": "000a", 3328 + "name": "Motherboard", 3329 + "value": 10 3330 + }, 3331 + "features": [ 3332 + "Hosting Board", 3333 + "Replaceable" 3334 + ], 3335 + "location": "Type2 - Board Chassis Location", 3336 + "chassis": 3 3337 + }, 3338 + "cache": [ 3339 + { 3340 + "handle": 5, 3341 + "socket": "L1 Cache", 3342 + "size_max": 256, 3343 + "size_current": 256, 3344 + "speed": 0, 3345 + "mode": { 3346 + "hex": "0001", 3347 + "name": "Write Back", 3348 + "value": 1 3349 + }, 3350 + "enabled": true, 3351 + "location": { 3352 + "hex": "0000", 3353 + "name": "Internal", 3354 + "value": 0 3355 + }, 3356 + "socketed": false, 3357 + "level": 0, 3358 + "ecc": { 3359 + "hex": "0004", 3360 + "name": "Parity", 3361 + "value": 4 3362 + }, 3363 + "cache_type": { 3364 + "hex": "0005", 3365 + "name": "Unified", 3366 + "value": 5 3367 + }, 3368 + "associativity": { 3369 + "hex": "0007", 3370 + "name": "8-way Set-Associative", 3371 + "value": 7 3372 + }, 3373 + "sram_type_current": [ 3374 + "Synchronous" 3375 + ], 3376 + "sram_type_supported": [ 3377 + "Synchronous" 3378 + ] 3379 + }, 3380 + { 3381 + "handle": 6, 3382 + "socket": "L2 Cache", 3383 + "size_max": 1024, 3384 + "size_current": 1024, 3385 + "speed": 0, 3386 + "mode": { 3387 + "hex": "0001", 3388 + "name": "Write Back", 3389 + "value": 1 3390 + }, 3391 + "enabled": true, 3392 + "location": { 3393 + "hex": "0000", 3394 + "name": "Internal", 3395 + "value": 0 3396 + }, 3397 + "socketed": false, 3398 + "level": 1, 3399 + "ecc": { 3400 + "hex": "0005", 3401 + "name": "Single-bit", 3402 + "value": 5 3403 + }, 3404 + "cache_type": { 3405 + "hex": "0005", 3406 + "name": "Unified", 3407 + "value": 5 3408 + }, 3409 + "associativity": { 3410 + "hex": "0005", 3411 + "name": "4-way Set-Associative", 3412 + "value": 5 3413 + }, 3414 + "sram_type_current": [ 3415 + "Synchronous" 3416 + ], 3417 + "sram_type_supported": [ 3418 + "Synchronous" 3419 + ] 3420 + }, 3421 + { 3422 + "handle": 7, 3423 + "socket": "L3 Cache", 3424 + "size_max": 8192, 3425 + "size_current": 8192, 3426 + "speed": 0, 3427 + "mode": { 3428 + "hex": "0001", 3429 + "name": "Write Back", 3430 + "value": 1 3431 + }, 3432 + "enabled": true, 3433 + "location": { 3434 + "hex": "0000", 3435 + "name": "Internal", 3436 + "value": 0 3437 + }, 3438 + "socketed": false, 3439 + "level": 2, 3440 + "ecc": { 3441 + "hex": "0006", 3442 + "name": "Multi-bit", 3443 + "value": 6 3444 + }, 3445 + "cache_type": { 3446 + "hex": "0005", 3447 + "name": "Unified", 3448 + "value": 5 3449 + }, 3450 + "associativity": { 3451 + "hex": "0008", 3452 + "name": "16-way Set-Associative", 3453 + "value": 8 3454 + }, 3455 + "sram_type_current": [ 3456 + "Synchronous" 3457 + ], 3458 + "sram_type_supported": [ 3459 + "Synchronous" 3460 + ] 3461 + } 3462 + ], 3463 + "chassis": [ 3464 + { 3465 + "handle": 3, 3466 + "manufacturer": "LENOVO", 3467 + "version": "Lenovo Legion Y530-15ICH", 3468 + "chassis_type": { 3469 + "hex": "000a", 3470 + "name": "Notebook", 3471 + "value": 10 3472 + }, 3473 + "lock_present": false, 3474 + "bootup_state": { 3475 + "hex": "0003", 3476 + "name": "Safe", 3477 + "value": 3 3478 + }, 3479 + "power_state": { 3480 + "hex": "0003", 3481 + "name": "Safe", 3482 + "value": 3 3483 + }, 3484 + "thermal_state": { 3485 + "hex": "0003", 3486 + "name": "Safe", 3487 + "value": 3 3488 + }, 3489 + "security_state": { 3490 + "hex": "0003", 3491 + "name": "None", 3492 + "value": 3 3493 + }, 3494 + "oem": "0x0" 3495 + } 3496 + ], 3497 + "config": { 3498 + "handle": 31, 3499 + "options": [ 3500 + "ConfigOptions1", 3501 + "ConfigOptions2", 3502 + "ConfigOptions3" 3503 + ] 3504 + }, 3505 + "group_associations": [ 3506 + { 3507 + "handle": 33, 3508 + "name": "Intel(R) Silicon View Technology", 3509 + "handles": [ 3510 + 62 3511 + ] 3512 + }, 3513 + { 3514 + "handle": 34, 3515 + "name": "$MEI", 3516 + "handles": [ 3517 + 61 3518 + ] 3519 + }, 3520 + { 3521 + "handle": 35, 3522 + "name": "$MEI", 3523 + "handles": [ 3524 + 60 3525 + ] 3526 + }, 3527 + { 3528 + "handle": 45, 3529 + "power": { 3530 + "hex": "0000", 3531 + "name": "Disabled", 3532 + "value": 0 3533 + }, 3534 + "keyboard": { 3535 + "hex": "0000", 3536 + "name": "Disabled", 3537 + "value": 0 3538 + }, 3539 + "admin": { 3540 + "hex": "0000", 3541 + "name": "Disabled", 3542 + "value": 0 3543 + }, 3544 + "reset": { 3545 + "hex": "0000", 3546 + "name": "Disabled", 3547 + "value": 0 3548 + } 3549 + } 3550 + ], 3551 + "language": [ 3552 + { 3553 + "handle": 32, 3554 + "languages": [ 3555 + "en|US|iso8859-1,0", 3556 + "fr|FR|iso8859-1,0", 3557 + "zh|TW|unicode,0", 3558 + "ja|JP|unicode,0", 3559 + "it|IT|iso8859-1,0", 3560 + "es|ES|iso8859-1,0", 3561 + "de|DE|iso8859-1,0", 3562 + "pt|PT|iso8859-1,0" 3563 + ] 3564 + } 3565 + ], 3566 + "memory_array": [ 3567 + { 3568 + "handle": 37, 3569 + "location": { 3570 + "hex": "0003", 3571 + "name": "Motherboard", 3572 + "value": 3 3573 + }, 3574 + "usage": { 3575 + "hex": "0003", 3576 + "name": "System memory", 3577 + "value": 3 3578 + }, 3579 + "ecc": { 3580 + "hex": "0003", 3581 + "name": "None", 3582 + "value": 3 3583 + }, 3584 + "max_size": "0x2000000", 3585 + "error_handle": 65535, 3586 + "slots": 2 3587 + } 3588 + ], 3589 + "memory_array_mapped_address": [ 3590 + { 3591 + "handle": 40, 3592 + "array_handle": 37, 3593 + "start_address": "0x0", 3594 + "end_address": "0x400000000", 3595 + "part_width": 2 3596 + } 3597 + ], 3598 + "memory_device": [ 3599 + { 3600 + "handle": 38, 3601 + "location": "ChannelA-DIMM0", 3602 + "bank_location": "BANK 0", 3603 + "manufacturer": "Micron", 3604 + "part_number": "8ATF1G64HZ-2G6E1", 3605 + "array_handle": 37, 3606 + "error_handle": 65535, 3607 + "width": 64, 3608 + "ecc_bits": 0, 3609 + "size": 8388608, 3610 + "form_factor": { 3611 + "hex": "000d", 3612 + "name": "SODIMM", 3613 + "value": 13 3614 + }, 3615 + "set": 0, 3616 + "memory_type": { 3617 + "hex": "001a", 3618 + "name": "Other", 3619 + "value": 26 3620 + }, 3621 + "memory_type_details": [ 3622 + "Synchronous" 3623 + ], 3624 + "speed": 2667 3625 + }, 3626 + { 3627 + "handle": 39, 3628 + "location": "ChannelB-DIMM0", 3629 + "bank_location": "BANK 2", 3630 + "manufacturer": "Micron", 3631 + "part_number": "8ATF1G64HZ-3G2J1", 3632 + "array_handle": 37, 3633 + "error_handle": 65535, 3634 + "width": 64, 3635 + "ecc_bits": 0, 3636 + "size": 8388608, 3637 + "form_factor": { 3638 + "hex": "000d", 3639 + "name": "SODIMM", 3640 + "value": 13 3641 + }, 3642 + "set": 0, 3643 + "memory_type": { 3644 + "hex": "001a", 3645 + "name": "Other", 3646 + "value": 26 3647 + }, 3648 + "memory_type_details": [ 3649 + "Synchronous" 3650 + ], 3651 + "speed": 2667 3652 + } 3653 + ], 3654 + "memory_device_mapped_address": [ 3655 + { 3656 + "handle": 41, 3657 + "memory_device_handle": 38, 3658 + "array_map_handle": 40, 3659 + "start_address": "0x0", 3660 + "end_address": "0x200000000", 3661 + "row_position": 255, 3662 + "interleave_position": 1, 3663 + "interleave_depth": 1 3664 + }, 3665 + { 3666 + "handle": 42, 3667 + "memory_device_handle": 39, 3668 + "array_map_handle": 40, 3669 + "start_address": "0x0", 3670 + "end_address": "0x200000000", 3671 + "row_position": 255, 3672 + "interleave_position": 2, 3673 + "interleave_depth": 1 3674 + } 3675 + ], 3676 + "pointing_device": [ 3677 + { 3678 + "handle": 43, 3679 + "mouse_type": { 3680 + "hex": "0007", 3681 + "name": "Touch Pad", 3682 + "value": 7 3683 + }, 3684 + "interface": { 3685 + "hex": "0004", 3686 + "name": "PS/2", 3687 + "value": 4 3688 + }, 3689 + "buttons": 4 3690 + } 3691 + ], 3692 + "port_connector": [ 3693 + { 3694 + "handle": 8, 3695 + "port_type": { 3696 + "hex": "000d", 3697 + "name": "Keyboard Port", 3698 + "value": 13 3699 + }, 3700 + "internal_reference_designator": "J1A1", 3701 + "external_connector_type": { 3702 + "hex": "000f", 3703 + "name": "PS/2", 3704 + "value": 15 3705 + }, 3706 + "external_reference_designator": "Keyboard" 3707 + }, 3708 + { 3709 + "handle": 9, 3710 + "port_type": { 3711 + "hex": "000e", 3712 + "name": "Mouse Port", 3713 + "value": 14 3714 + }, 3715 + "internal_reference_designator": "J1A1", 3716 + "external_connector_type": { 3717 + "hex": "000f", 3718 + "name": "PS/2", 3719 + "value": 15 3720 + }, 3721 + "external_reference_designator": "Mouse" 3722 + }, 3723 + { 3724 + "handle": 10, 3725 + "port_type": { 3726 + "hex": "001c", 3727 + "name": "Video Port", 3728 + "value": 28 3729 + }, 3730 + "internal_reference_designator": "J2A1", 3731 + "external_connector_type": { 3732 + "hex": "000d", 3733 + "name": "Mini-DIN", 3734 + "value": 13 3735 + }, 3736 + "external_reference_designator": "TV OUT" 3737 + }, 3738 + { 3739 + "handle": 11, 3740 + "port_type": { 3741 + "hex": "001c", 3742 + "name": "Video Port", 3743 + "value": 28 3744 + }, 3745 + "internal_reference_designator": "J2A2", 3746 + "external_connector_type": { 3747 + "hex": "0007", 3748 + "name": "DB-15 pin female", 3749 + "value": 7 3750 + }, 3751 + "external_reference_designator": "CRT" 3752 + }, 3753 + { 3754 + "handle": 12, 3755 + "port_type": { 3756 + "hex": "0009", 3757 + "name": "Serial Port 16550A Compatible", 3758 + "value": 9 3759 + }, 3760 + "internal_reference_designator": "J2A2", 3761 + "external_connector_type": { 3762 + "hex": "0008", 3763 + "name": "DB-9 pin male", 3764 + "value": 8 3765 + }, 3766 + "external_reference_designator": "COM 1" 3767 + }, 3768 + { 3769 + "handle": 13, 3770 + "port_type": { 3771 + "hex": "0010", 3772 + "name": "USB", 3773 + "value": 16 3774 + }, 3775 + "internal_reference_designator": "J3A1", 3776 + "external_connector_type": { 3777 + "hex": "0012", 3778 + "name": "Access Bus [USB]", 3779 + "value": 18 3780 + }, 3781 + "external_reference_designator": "USB" 3782 + }, 3783 + { 3784 + "handle": 14, 3785 + "port_type": { 3786 + "hex": "0010", 3787 + "name": "USB", 3788 + "value": 16 3789 + }, 3790 + "internal_reference_designator": "J3A1", 3791 + "external_connector_type": { 3792 + "hex": "0012", 3793 + "name": "Access Bus [USB]", 3794 + "value": 18 3795 + }, 3796 + "external_reference_designator": "USB" 3797 + }, 3798 + { 3799 + "handle": 15, 3800 + "port_type": { 3801 + "hex": "0010", 3802 + "name": "USB", 3803 + "value": 16 3804 + }, 3805 + "internal_reference_designator": "J3A1", 3806 + "external_connector_type": { 3807 + "hex": "0012", 3808 + "name": "Access Bus [USB]", 3809 + "value": 18 3810 + }, 3811 + "external_reference_designator": "USB" 3812 + }, 3813 + { 3814 + "handle": 16, 3815 + "port_type": { 3816 + "hex": "0010", 3817 + "name": "USB", 3818 + "value": 16 3819 + }, 3820 + "internal_reference_designator": "J5A1", 3821 + "external_connector_type": { 3822 + "hex": "0012", 3823 + "name": "Access Bus [USB]", 3824 + "value": 18 3825 + }, 3826 + "external_reference_designator": "USB" 3827 + }, 3828 + { 3829 + "handle": 17, 3830 + "port_type": { 3831 + "hex": "0010", 3832 + "name": "USB", 3833 + "value": 16 3834 + }, 3835 + "internal_reference_designator": "J5A1", 3836 + "external_connector_type": { 3837 + "hex": "0012", 3838 + "name": "Access Bus [USB]", 3839 + "value": 18 3840 + }, 3841 + "external_reference_designator": "USB" 3842 + }, 3843 + { 3844 + "handle": 18, 3845 + "port_type": { 3846 + "hex": "0010", 3847 + "name": "USB", 3848 + "value": 16 3849 + }, 3850 + "internal_reference_designator": "J5A2", 3851 + "external_connector_type": { 3852 + "hex": "0012", 3853 + "name": "Access Bus [USB]", 3854 + "value": 18 3855 + }, 3856 + "external_reference_designator": "USB" 3857 + }, 3858 + { 3859 + "handle": 19, 3860 + "port_type": { 3861 + "hex": "001f", 3862 + "name": "Network Port", 3863 + "value": 31 3864 + }, 3865 + "internal_reference_designator": "J5A1", 3866 + "external_connector_type": { 3867 + "hex": "000b", 3868 + "name": "RJ-45", 3869 + "value": 11 3870 + }, 3871 + "external_reference_designator": "Network" 3872 + }, 3873 + { 3874 + "handle": 20, 3875 + "port_type": { 3876 + "hex": "00ff", 3877 + "name": "Other", 3878 + "value": 255 3879 + }, 3880 + "internal_connector_type": { 3881 + "hex": "0017", 3882 + "name": "On Board Floppy", 3883 + "value": 23 3884 + }, 3885 + "internal_reference_designator": "J9G2", 3886 + "external_reference_designator": "OnBoard Floppy Type" 3887 + }, 3888 + { 3889 + "handle": 21, 3890 + "port_type": { 3891 + "hex": "00ff", 3892 + "name": "Other", 3893 + "value": 255 3894 + }, 3895 + "internal_connector_type": { 3896 + "hex": "0016", 3897 + "name": "On Board IDE", 3898 + "value": 22 3899 + }, 3900 + "internal_reference_designator": "J7J1", 3901 + "external_reference_designator": "OnBoard Primary IDE" 3902 + }, 3903 + { 3904 + "handle": 22, 3905 + "port_type": { 3906 + "hex": "001d", 3907 + "name": "Audio Port", 3908 + "value": 29 3909 + }, 3910 + "internal_reference_designator": "J30", 3911 + "external_connector_type": { 3912 + "hex": "001f", 3913 + "name": "Mini-jack [headphones]", 3914 + "value": 31 3915 + }, 3916 + "external_reference_designator": "Microphone In" 3917 + }, 3918 + { 3919 + "handle": 23, 3920 + "port_type": { 3921 + "hex": "001d", 3922 + "name": "Audio Port", 3923 + "value": 29 3924 + }, 3925 + "internal_reference_designator": "J30", 3926 + "external_connector_type": { 3927 + "hex": "001f", 3928 + "name": "Mini-jack [headphones]", 3929 + "value": 31 3930 + }, 3931 + "external_reference_designator": "Line In" 3932 + }, 3933 + { 3934 + "handle": 24, 3935 + "port_type": { 3936 + "hex": "001d", 3937 + "name": "Audio Port", 3938 + "value": 29 3939 + }, 3940 + "internal_reference_designator": "J30", 3941 + "external_connector_type": { 3942 + "hex": "001f", 3943 + "name": "Mini-jack [headphones]", 3944 + "value": 31 3945 + }, 3946 + "external_reference_designator": "Speaker Out" 3947 + } 3948 + ], 3949 + "processor": [ 3950 + { 3951 + "handle": 4, 3952 + "socket": "U3E1", 3953 + "socket_type": { 3954 + "hex": "0034", 3955 + "name": "Other", 3956 + "value": 52 3957 + }, 3958 + "socket_populated": true, 3959 + "manufacturer": "Intel(R) Corporation", 3960 + "version": "Intel(R) Core(TM) i5-8300H CPU @ 2.30GHz", 3961 + "part": "To Be Filled By O.E.M.", 3962 + "processor_type": { 3963 + "hex": "0003", 3964 + "name": "CPU", 3965 + "value": 3 3966 + }, 3967 + "processor_family": { 3968 + "hex": "00cd", 3969 + "name": "Other", 3970 + "value": 205 3971 + }, 3972 + "processor_status": { 3973 + "hex": "0001", 3974 + "name": "Enabled", 3975 + "value": 1 3976 + }, 3977 + "clock_ext": 100, 3978 + "clock_max": 0, 3979 + "cache_handle_l1": 5, 3980 + "cache_handle_l2": 6, 3981 + "cache_handle_l3": 7 3982 + } 3983 + ], 3984 + "slot": [ 3985 + { 3986 + "handle": 25, 3987 + "designation": "J6C1", 3988 + "slot_type": { 3989 + "hex": "00a6", 3990 + "name": "Other", 3991 + "value": 166 3992 + }, 3993 + "bus_width": { 3994 + "hex": "0008", 3995 + "name": "Other", 3996 + "value": 8 3997 + }, 3998 + "usage": { 3999 + "hex": "0003", 4000 + "name": "Available", 4001 + "value": 3 4002 + }, 4003 + "length": { 4004 + "hex": "0001", 4005 + "name": "Other", 4006 + "value": 1 4007 + }, 4008 + "id": 1, 4009 + "features": [ 4010 + "PME#", 4011 + "Hot-Plug" 4012 + ] 4013 + }, 4014 + { 4015 + "handle": 26, 4016 + "designation": "J6D2", 4017 + "slot_type": { 4018 + "hex": "00a6", 4019 + "name": "Other", 4020 + "value": 166 4021 + }, 4022 + "bus_width": { 4023 + "hex": "0008", 4024 + "name": "Other", 4025 + "value": 8 4026 + }, 4027 + "usage": { 4028 + "hex": "0003", 4029 + "name": "Available", 4030 + "value": 3 4031 + }, 4032 + "length": { 4033 + "hex": "0001", 4034 + "name": "Other", 4035 + "value": 1 4036 + }, 4037 + "id": 2, 4038 + "features": [ 4039 + "PME#", 4040 + "Hot-Plug" 4041 + ] 4042 + }, 4043 + { 4044 + "handle": 27, 4045 + "designation": "J7C1", 4046 + "slot_type": { 4047 + "hex": "00a6", 4048 + "name": "Other", 4049 + "value": 166 4050 + }, 4051 + "bus_width": { 4052 + "hex": "0008", 4053 + "name": "Other", 4054 + "value": 8 4055 + }, 4056 + "usage": { 4057 + "hex": "0003", 4058 + "name": "Available", 4059 + "value": 3 4060 + }, 4061 + "length": { 4062 + "hex": "0001", 4063 + "name": "Other", 4064 + "value": 1 4065 + }, 4066 + "id": 3, 4067 + "features": [ 4068 + "PME#", 4069 + "Hot-Plug" 4070 + ] 4071 + }, 4072 + { 4073 + "handle": 28, 4074 + "designation": "J7D1", 4075 + "slot_type": { 4076 + "hex": "00a6", 4077 + "name": "Other", 4078 + "value": 166 4079 + }, 4080 + "bus_width": { 4081 + "hex": "0008", 4082 + "name": "Other", 4083 + "value": 8 4084 + }, 4085 + "usage": { 4086 + "hex": "0003", 4087 + "name": "Available", 4088 + "value": 3 4089 + }, 4090 + "length": { 4091 + "hex": "0001", 4092 + "name": "Other", 4093 + "value": 1 4094 + }, 4095 + "id": 4, 4096 + "features": [ 4097 + "PME#", 4098 + "Hot-Plug" 4099 + ] 4100 + }, 4101 + { 4102 + "handle": 29, 4103 + "designation": "J8C1", 4104 + "slot_type": { 4105 + "hex": "00a8", 4106 + "name": "Other", 4107 + "value": 168 4108 + }, 4109 + "bus_width": { 4110 + "hex": "000a", 4111 + "name": "Other", 4112 + "value": 10 4113 + }, 4114 + "usage": { 4115 + "hex": "0003", 4116 + "name": "Available", 4117 + "value": 3 4118 + }, 4119 + "length": { 4120 + "hex": "0001", 4121 + "name": "Other", 4122 + "value": 1 4123 + }, 4124 + "id": 5, 4125 + "features": [ 4126 + "PME#", 4127 + "Hot-Plug" 4128 + ] 4129 + } 4130 + ], 4131 + "system": { 4132 + "handle": 1, 4133 + "manufacturer": "LENOVO", 4134 + "product": "81FV", 4135 + "version": "Lenovo Legion Y530-15ICH", 4136 + "wake_up": { 4137 + "hex": "0006", 4138 + "name": "Power Switch", 4139 + "value": 6 4140 + } 4141 + } 4142 + } 4143 + }