Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Sep 2020 16:54:38 +0900
From:      KIRIYAMA Kazuhiko <kiri@truefc.org>
To:        <fischerking1905@yahoo.co.jp>
Cc:        KIRIYAMA Kazuhiko <kiri@truefc.org>, Niclas Zeising <zeising+freebsd@daemonic.se>, "x11@FreeBSD.org" <x11@FreeBSD.org>
Subject:   Re: GTX 1050Ti not detected
Message-ID:  <202009190754.08J7sc60073066@kx.truefc.org>
In-Reply-To: <722742384.88476.1600482714407.JavaMail.yahoo@mail.yahoo.co.jp>
References:  <202009180235.08I2ZQu3027795@kx.truefc.org> <95eccf05-f629-f60c-c86c-132f686f4fcb@daemonic.se> <202009181122.08IBMmAD009256@kx.truefc.org> <ff3a3060-574e-4a46-8ab4-506b122e9c29@daemonic.se> <202009190132.08J1WhFR021351@kx.truefc.org> <722742384.88476.1600482714407.JavaMail.yahoo@mail.yahoo.co.jp>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, 19 Sep 2020 11:31:54 +0900,
<fischerking1905@yahoo.co.jp> wrote:
> 
> what happens when you run nvidia-xconfig?

I've retried nvidia-xconfig and then new xorg.conf seemed to
be correct:

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 440.100

Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" RightOf "Screen0"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
    ModulePath      "/usr/local/lib/xorg/modules"
    FontPath        "/usr/local/share/fonts/misc/"
    FontPath        "/usr/local/share/fonts/TTF/"
    FontPath        "/usr/local/share/fonts/OTF/"
    FontPath        "/usr/local/share/fonts/Type1/"
    FontPath        "/usr/local/share/fonts/100dpi/"
    FontPath        "/usr/local/share/fonts/75dpi/"
    FontPath        "catalogue:/usr/local/etc/X11/fontpath.d"
EndSection

Section "Module"
    Load           "glxserver_nvidia"
    Load           "glx"
EndSection

Section "InputDevice"
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "InputDevice"
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/sysmouse"
    Option         "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Monitor Vendor"
    ModelName      "Monitor Model"
EndSection

Section "Monitor"
    Identifier     "Monitor1"
    VendorName     "Monitor Vendor"
    ModelName      "Monitor Model"
EndSection

Section "Device"
    Identifier     "Card0"
    Driver         "nvidia"
    BusID          "PCI:101:0:0"
EndSection

Section "Device"

        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "SWcursor"           	# [<bool>]
        #Option     "kmsdev"             	# <str>
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "AccelMethod"        	# <str>
        #Option     "PageFlip"           	# [<bool>]
        #Option     "ZaphodHeads"        	# <str>
        #Option     "DoubleShadow"       	# [<bool>]
        #Option     "Atomic"             	# [<bool>]
    Identifier     "Card1"
    Driver         "nvidia"
    BusID          "PCI:3:0:0"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Card0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Viewport    0 0
        Depth       1
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       4
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       8
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       15
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       16
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "Card1"
    Monitor        "Monitor1"
    DefaultDepth    24
    SubSection     "Display"
        Viewport    0 0
        Depth       1
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       4
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       8
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       15
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       16
    EndSubSection
    SubSection     "Display"
        Viewport    0 0
        Depth       24
    EndSubSection
EndSection


`startx' had successfully done :-) But resolution was poor
(600x400). So add monitor spec (HorizSync and VertRefresh)
in Monitor section and resolution spec (Modes "1920x1080")
in Screen section:

--- tmp/xorg.conf	2020-09-19 15:55:14.429523000 +0900
+++ tmp/xorg.conf.nvidia.440.100	2020-09-19 15:55:40.073074000 +0900
@@ -1,6 +1,7 @@
 # nvidia-xconfig: X configuration file generated by nvidia-xconfig
 # nvidia-xconfig:  version 440.100
 
+
 Section "ServerLayout"
     Identifier     "X.org Configured"
     Screen      0  "Screen0" 0 0
@@ -42,12 +43,18 @@
     Identifier     "Monitor0"
     VendorName     "Monitor Vendor"
     ModelName      "Monitor Model"
+    HorizSync       28.0 - 33.0
+    VertRefresh     43.0 - 72.0
+    Option         "DPMS"
 EndSection
 
 Section "Monitor"
     Identifier     "Monitor1"
     VendorName     "Monitor Vendor"
     ModelName      "Monitor Model"
+    HorizSync       28.0 - 33.0
+    VertRefresh     43.0 - 72.0
+    Option         "DPMS"
 EndSection
 
 Section "Device"
@@ -104,6 +111,7 @@
     SubSection     "Display"
         Viewport    0 0
         Depth       24
+	Modes	    "1920x1080"
     EndSubSection
 EndSection
 
@@ -135,6 +143,7 @@
     SubSection     "Display"
         Viewport    0 0
         Depth       24
+	Modes	    "1920x1080"
     EndSubSection
 EndSection
 
Then all went right:

kiri@smtp:~[1001]% xwininfo 

xwininfo: Please select the window about which you
          would like information by clicking the
          mouse in that window.

xwininfo: Window id: 0x1d0 (the root window) (has no name)

  Absolute upper-left X:  0
  Absolute upper-left Y:  0
  Relative upper-left X:  0
  Relative upper-left Y:  0
  Width: 1920
  Height: 1080
  Depth: 24
  Visual: 0x21
  Visual Class: TrueColor
  Border width: 0
  Class: InputOutput
  Colormap: 0x20 (installed)
  Bit Gravity State: ForgetGravity
  Window Gravity State: NorthWestGravity
  Backing Store State: NotUseful
  Save Under State: no
  Map State: IsViewable
  Override Redirect State: no
  Corners:  +0+0  -0+0  -0-0  +0-0
  -geometry 1920x1080+0+0

kiri@smtp:~[1002]% 

Xorg.0.log:

[ 28471.187] 
X.Org X Server 1.20.8
X Protocol Version 11, Revision 0
[ 28471.187] Build Operating System: FreeBSD 13.0-CURRENT amd64 
[ 28471.187] Current Operating System: FreeBSD smtp 13.0-CURRENT FreeBSD 13.0-CURRENT #0 r363381M: Thu Jul 30 16:46:49 JST 2020     root@msrvkxb:/usr/obj/usr/src/amd64.amd64/sys/XIJ amd64
[ 28471.187] Build Date: 24 July 2020  05:37:17PM
[ 28471.187]  
[ 28471.187] Current version of pixman: 0.40.0
[ 28471.187] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[ 28471.187] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 28471.188] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Sep 19 15:45:09 2020
[ 28471.188] (==) Using config file: "/etc/X11/xorg.conf"
[ 28471.188] (==) Using system config directory "/usr/local/share/X11/xorg.conf.d"
[ 28471.188] (==) ServerLayout "X.org Configured"
[ 28471.188] (**) |-->Screen "Screen0" (0)
[ 28471.188] (**) |   |-->Monitor "Monitor0"
[ 28471.189] (**) |   |-->Device "Card0"
[ 28471.189] (**) |-->Screen "Screen1" (1)
[ 28471.189] (**) |   |-->Monitor "Monitor1"
[ 28471.189] (**) |   |-->Device "Card1"
[ 28471.189] (**) |-->Input Device "Mouse0"
[ 28471.189] (**) |-->Input Device "Keyboard0"
[ 28471.189] (==) Automatically adding devices
[ 28471.189] (==) Automatically enabling devices
[ 28471.189] (==) Not automatically adding GPU devices
[ 28471.189] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 28471.189] (**) FontPath set to:
	/usr/local/share/fonts/misc/,
	/usr/local/share/fonts/TTF/,
	/usr/local/share/fonts/OTF/,
	/usr/local/share/fonts/Type1/,
	/usr/local/share/fonts/100dpi/,
	/usr/local/share/fonts/75dpi/,
	catalogue:/usr/local/etc/X11/fontpath.d,
	/usr/local/share/fonts/misc/,
	/usr/local/share/fonts/TTF/,
	/usr/local/share/fonts/OTF/,
	/usr/local/share/fonts/Type1/,
	/usr/local/share/fonts/100dpi/,
	/usr/local/share/fonts/75dpi/,
	catalogue:/usr/local/etc/X11/fontpath.d
[ 28471.189] (**) ModulePath set to "/usr/local/lib/xorg/modules"
[ 28471.189] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[ 28471.190] (WW) Disabling Mouse0
[ 28471.190] (WW) Disabling Keyboard0
[ 28471.190] (II) Loader magic: 0x4341b0
[ 28471.190] (II) Module ABI versions:
[ 28471.190] 	X.Org ANSI C Emulation: 0.4
[ 28471.190] 	X.Org Video Driver: 24.1
[ 28471.190] 	X.Org XInput driver : 24.1
[ 28471.190] 	X.Org Server Extension : 10.0
[ 28471.190] (!!) More than one possible primary device found
[ 28471.190] (--) PCI: (3@0:0:0) 1a03:2000:15d9:095d rev 65, Mem @ 0xa3000000/16777216, 0xa4000000/131072, I/O @ 0x00003000/128, BIOS @ 0x????????/65536
[ 28471.190] (--) PCI: (101@0:0:0) 10de:1c82:1462:8c96 rev 161, Mem @ 0xdf000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000b000/128, BIOS @ 0x????????/65536
[ 28471.190] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[ 28471.190] (II) LoadModule: "glxservernvidia"
[ 28471.191] (WW) Warning, couldn't open module glxservernvidia
[ 28471.191] (EE) Failed to load module "glxservernvidia" (module does not exist, 0)
[ 28471.191] (II) LoadModule: "glx"
[ 28471.191] (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so
[ 28471.193] (II) Module glx: vendor="X.Org Foundation"
[ 28471.193] 	compiled for 1.20.8, module version = 1.0.0
[ 28471.193] 	ABI class: X.Org Server Extension, version 10.0
[ 28471.193] (II) LoadModule: "nvidia"
[ 28471.193] (II) Loading /usr/local/lib/xorg/modules/drivers/nvidia_drv.so
[ 28471.193] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 28471.193] 	compiled for 1.6.99.901, module version = 1.0.0
[ 28471.194] 	Module class: X.Org Video Driver
[ 28471.194] (II) NVIDIA dlloader X Driver  440.100  Fri May 29 08:13:34 UTC 2020
[ 28471.194] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 28471.194] (--) Using syscons driver with X support (version 2.0)
[ 28471.194] (--) using VT number 9

[ 28471.395] (II) Loading sub module "fb"
[ 28471.395] (II) LoadModule: "fb"
[ 28471.395] (II) Loading /usr/local/lib/xorg/modules/libfb.so
[ 28471.395] (II) Module fb: vendor="X.Org Foundation"
[ 28471.395] 	compiled for 1.20.8, module version = 1.0.0
[ 28471.395] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 28471.395] (II) Loading sub module "wfb"
[ 28471.395] (II) LoadModule: "wfb"
[ 28471.396] (II) Loading /usr/local/lib/xorg/modules/libwfb.so
[ 28471.396] (II) Module wfb: vendor="X.Org Foundation"
[ 28471.396] 	compiled for 1.20.8, module version = 1.0.0
[ 28471.396] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 28471.396] (II) Loading sub module "ramdac"
[ 28471.396] (II) LoadModule: "ramdac"
[ 28471.396] (II) Module "ramdac" already built-in
[ 28471.396] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[ 28471.396] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[ 28471.396] (==) NVIDIA(0): RGB weight 888
[ 28471.396] (==) NVIDIA(0): Default visual is TrueColor
[ 28471.397] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 28471.397] (**) NVIDIA(0): Enabling 2D acceleration
[ 28471.397] (II) Loading sub module "glxserver_nvidia"
[ 28471.397] (II) LoadModule: "glxserver_nvidia"
[ 28471.397] (II) Loading /usr/local/lib/xorg/modules/extensions/libglxserver_nvidia.so
[ 28471.402] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[ 28471.402] 	compiled for 1.6.99.901, module version = 1.0.0
[ 28471.402] 	Module class: X.Org Server Extension
[ 28471.402] (II) NVIDIA GLX Module  440.100  Fri May 29 08:12:16 UTC 2020
[ 28471.403] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 28472.001] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:101:0:0
[ 28472.001] (--) NVIDIA(0):     DFP-0
[ 28472.001] (--) NVIDIA(0):     DFP-1 (boot)
[ 28472.001] (--) NVIDIA(0):     DFP-2
[ 28472.001] (--) NVIDIA(0):     DFP-3
[ 28472.002] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 1050 Ti (GP107-A) at PCI:101:0:0
[ 28472.002] (II) NVIDIA(0):     (GPU-0)
[ 28472.002] (--) NVIDIA(0): Memory: 4194304 kBytes
[ 28472.002] (--) NVIDIA(0): VideoBIOS: 86.07.42.00.88
[ 28472.002] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 28472.003] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 28472.003] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[ 28472.003] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[ 28472.003] (--) NVIDIA(GPU-0): 
[ 28472.033] (--) NVIDIA(GPU-0): Northgate (DFP-1): connected
[ 28472.033] (--) NVIDIA(GPU-0): Northgate (DFP-1): Internal TMDS
[ 28472.034] (--) NVIDIA(GPU-0): Northgate (DFP-1): 600.0 MHz maximum pixel clock
[ 28472.034] (--) NVIDIA(GPU-0): 
[ 28472.034] (--) NVIDIA(GPU-0): DFP-2: disconnected
[ 28472.034] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[ 28472.034] (--) NVIDIA(GPU-0): DFP-2: 1440.0 MHz maximum pixel clock
[ 28472.034] (--) NVIDIA(GPU-0): 
[ 28472.035] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 28472.035] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[ 28472.035] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[ 28472.035] (--) NVIDIA(GPU-0): 
[ 28472.040] (II) NVIDIA(0): Validated MetaModes:
[ 28472.040] (II) NVIDIA(0):     "DFP-1:1920x1080"
[ 28472.040] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1080
[ 28472.045] (--) NVIDIA(0): DPI set to (162, 119); computed from "UseEdidDpi" X config
[ 28472.045] (--) NVIDIA(0):     option
[ 28472.046] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[ 28472.046] (II) NVIDIA:     access.
[ 28472.053] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 28472.053] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[ 28472.053] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[ 28472.053] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[ 28472.053] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[ 28472.053] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[ 28472.053] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[ 28472.054] (II) NVIDIA(0):     Config Options in the README.
[ 28472.091] (II) NVIDIA(0): Setting mode "DFP-1:1920x1080"
[ 28472.146] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 28472.147] (==) NVIDIA(0): Backing store enabled
[ 28472.147] (==) NVIDIA(0): Silken mouse enabled
[ 28472.147] (**) NVIDIA(0): DPMS enabled
[ 28472.147] (II) Loading sub module "dri2"
[ 28472.147] (II) LoadModule: "dri2"
[ 28472.147] (II) Module "dri2" already built-in
[ 28472.147] (II) NVIDIA(0): [DRI2] Setup complete
[ 28472.147] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[ 28472.147] (II) Initializing extension Generic Event Extension
[ 28472.148] (II) Initializing extension SHAPE
[ 28472.148] (II) Initializing extension MIT-SHM
[ 28472.149] (II) Initializing extension XInputExtension
[ 28472.149] (II) Initializing extension XTEST
[ 28472.150] (II) Initializing extension BIG-REQUESTS
[ 28472.150] (II) Initializing extension SYNC
[ 28472.151] (II) Initializing extension XKEYBOARD
[ 28472.151] (II) Initializing extension XC-MISC
[ 28472.152] (II) Initializing extension SECURITY
[ 28472.152] (II) Initializing extension XFIXES
[ 28472.153] (II) Initializing extension RENDER
[ 28472.153] (II) Initializing extension RANDR
[ 28472.154] (II) Initializing extension COMPOSITE
[ 28472.154] (II) Initializing extension DAMAGE
[ 28472.155] (II) Initializing extension MIT-SCREEN-SAVER
[ 28472.155] (II) Initializing extension DOUBLE-BUFFER
[ 28472.156] (II) Initializing extension RECORD
[ 28472.156] (II) Initializing extension DPMS
[ 28472.157] (II) Initializing extension Present
[ 28472.157] (II) Initializing extension DRI3
[ 28472.157] (II) Initializing extension X-Resource
[ 28472.157] (II) Initializing extension XVideo
[ 28472.158] (II) Initializing extension XVideo-MotionCompensation
[ 28472.158] (II) Initializing extension GLX
[ 28472.158] (II) Initializing extension GLX
[ 28472.158] (II) Indirect GLX disabled.
[ 28472.159] (II) GLX: Another vendor is already registered for screen 0
[ 28472.159] (II) Initializing extension XFree86-VidModeExtension
[ 28472.159] (II) Initializing extension XFree86-DGA
[ 28472.159] (II) Initializing extension XFree86-DRI
[ 28472.160] (II) Initializing extension DRI2
[ 28472.160] (II) Initializing extension NV-GLX
[ 28472.160] (II) Initializing extension NV-CONTROL
[ 28472.161] (II) Initializing extension XINERAMA
[ 28472.329] (II) config/udev: Adding input device System mouse (/dev/input/event0)
[ 28472.329] (**) System mouse: Applying InputClass "libinput pointer catchall"
[ 28472.329] (II) LoadModule: "libinput"
[ 28472.329] (II) Loading /usr/local/lib/xorg/modules/input/libinput_drv.so
[ 28472.332] (II) Module libinput: vendor="X.Org Foundation"
[ 28472.332] 	compiled for 1.20.8, module version = 0.30.0
[ 28472.332] 	Module class: X.Org XInput Driver
[ 28472.332] 	ABI class: X.Org XInput driver, version 24.1
[ 28472.332] (II) Using input driver 'libinput' for 'System mouse'
[ 28472.332] (**) System mouse: always reports core events
[ 28472.332] (**) Option "Device" "/dev/input/event0"
[ 28472.332] (**) Option "_source" "server/udev"
[ 28472.335] (II) event0  - System mouse: is tagged by udev as: Mouse
[ 28472.335] (II) event0  - System mouse: device is a pointer
[ 28472.336] (II) event0  - System mouse: device removed
[ 28472.336] (**) Option "config_info" "udev:/dev/input/event0"
[ 28472.336] (II) XINPUT: Adding extended input device "System mouse" (type: MOUSE, id 6)
[ 28472.336] (**) Option "AccelerationScheme" "none"
[ 28472.336] (**) System mouse: (accel) selected scheme none/0
[ 28472.336] (**) System mouse: (accel) acceleration factor: 2.000
[ 28472.336] (**) System mouse: (accel) acceleration threshold: 4
[ 28472.337] (II) event0  - System mouse: is tagged by udev as: Mouse
[ 28472.337] (II) event0  - System mouse: device is a pointer
[ 28472.338] (II) config/udev: Adding input device System keyboard multiplexer (/dev/input/event1)
[ 28472.338] (**) System keyboard multiplexer: Applying InputClass "Evdev keyboard"
[ 28472.338] (**) System keyboard multiplexer: Applying InputClass "libinput keyboard catchall"
[ 28472.338] (II) Using input driver 'libinput' for 'System keyboard multiplexer'
[ 28472.338] (**) System keyboard multiplexer: always reports core events
[ 28472.338] (**) Option "Device" "/dev/input/event1"
[ 28472.338] (**) Option "_source" "server/udev"
[ 28472.339] (II) event1  - System keyboard multiplexer: is tagged by udev as: Keyboard
[ 28472.339] (II) event1  - System keyboard multiplexer: device is a keyboard
[ 28472.339] (II) event1  - System keyboard multiplexer: device removed
[ 28472.340] (**) Option "config_info" "udev:/dev/input/event1"
[ 28472.340] (II) XINPUT: Adding extended input device "System keyboard multiplexer" (type: KEYBOARD, id 7)
[ 28472.340] (**) Option "xkb_rules" "evdev"
[ 28472.379] (II) event1  - System keyboard multiplexer: is tagged by udev as: Keyboard
[ 28472.380] (II) event1  - System keyboard multiplexer: device is a keyboard
[ 28472.380] (II) config/udev: Adding input device vendor 0x0557 product 0x2419 (/dev/input/event2)
[ 28472.380] (**) vendor 0x0557 product 0x2419: Applying InputClass "Evdev keyboard"
[ 28472.380] (**) vendor 0x0557 product 0x2419: Applying InputClass "libinput keyboard catchall"
[ 28472.380] (II) Using input driver 'libinput' for 'vendor 0x0557 product 0x2419'
[ 28472.380] (**) vendor 0x0557 product 0x2419: always reports core events
[ 28472.380] (**) Option "Device" "/dev/input/event2"
[ 28472.380] (**) Option "_source" "server/udev"
[ 28472.381] (II) event2  - vendor 0x0557 product 0x2419, class 0/0, rev 1.10/1.00, addr 2: is tagged by udev as: Keyboard
[ 28472.382] (II) event2  - vendor 0x0557 product 0x2419, class 0/0, rev 1.10/1.00, addr 2: device is a keyboard
[ 28472.382] (II) event2  - vendor 0x0557 product 0x2419, class 0/0, rev 1.10/1.00, addr 2: device removed
[ 28472.382] (**) Option "config_info" "udev:/dev/input/event2"
[ 28472.382] (II) XINPUT: Adding extended input device "vendor 0x0557 product 0x2419" (type: KEYBOARD, id 8)
[ 28472.382] (**) Option "xkb_rules" "evdev"
[ 28472.383] (II) event2  - vendor 0x0557 product 0x2419, class 0/0, rev 1.10/1.00, addr 2: is tagged by udev as: Keyboard
[ 28472.384] (II) event2  - vendor 0x0557 product 0x2419, class 0/0, rev 1.10/1.00, addr 2: device is a keyboard
[ 28472.384] (II) config/udev: Adding input device vendor 0x0557 product 0x2419 (/dev/input/event3)
[ 28472.384] (**) vendor 0x0557 product 0x2419: Applying InputClass "libinput pointer catchall"
[ 28472.384] (II) Using input driver 'libinput' for 'vendor 0x0557 product 0x2419'
[ 28472.384] (**) vendor 0x0557 product 0x2419: always reports core events
[ 28472.384] (**) Option "Device" "/dev/input/event3"
[ 28472.384] (**) Option "_source" "server/udev"
[ 28472.385] (II) event3  - vendor 0x0557 product 0x2419, class 0/0, rev 1.10/1.00, addr 2: is tagged by udev as: Mouse
[ 28472.386] (II) event3  - vendor 0x0557 product 0x2419, class 0/0, rev 1.10/1.00, addr 2: device is a pointer
[ 28472.386] (II) event3  - vendor 0x0557 product 0x2419, class 0/0, rev 1.10/1.00, addr 2: device removed
[ 28472.386] (**) Option "config_info" "udev:/dev/input/event3"
[ 28472.386] (II) XINPUT: Adding extended input device "vendor 0x0557 product 0x2419" (type: MOUSE, id 9)
[ 28472.386] (**) Option "AccelerationScheme" "none"
[ 28472.386] (**) vendor 0x0557 product 0x2419: (accel) selected scheme none/0
[ 28472.386] (**) vendor 0x0557 product 0x2419: (accel) acceleration factor: 2.000
[ 28472.386] (**) vendor 0x0557 product 0x2419: (accel) acceleration threshold: 4
[ 28472.387] (II) event3  - vendor 0x0557 product 0x2419, class 0/0, rev 1.10/1.00, addr 2: is tagged by udev as: Mouse
[ 28472.388] (II) event3  - vendor 0x0557 product 0x2419, class 0/0, rev 1.10/1.00, addr 2: device is a pointer
[ 28472.388] (II) config/udev: Adding input device SIGMACHIP USB Keyboard (/dev/input/event4)
[ 28472.388] (**) SIGMACHIP USB Keyboard: Applying InputClass "Evdev keyboard"
[ 28472.388] (**) SIGMACHIP USB Keyboard: Applying InputClass "libinput keyboard catchall"
[ 28472.388] (II) Using input driver 'libinput' for 'SIGMACHIP USB Keyboard'
[ 28472.388] (**) SIGMACHIP USB Keyboard: always reports core events
[ 28472.388] (**) Option "Device" "/dev/input/event4"
[ 28472.388] (**) Option "_source" "server/udev"
[ 28472.389] (II) event4  - SIGMACHIP USB Keyboard, class 0/0, rev 1.10/1.11, addr 40: is tagged by udev as: Keyboard
[ 28472.389] (II) event4  - SIGMACHIP USB Keyboard, class 0/0, rev 1.10/1.11, addr 40: device is a keyboard
[ 28472.390] (II) event4  - SIGMACHIP USB Keyboard, class 0/0, rev 1.10/1.11, addr 40: device removed
[ 28472.390] (**) Option "config_info" "udev:/dev/input/event4"
[ 28472.390] (II) XINPUT: Adding extended input device "SIGMACHIP USB Keyboard" (type: KEYBOARD, id 10)
[ 28472.390] (**) Option "xkb_rules" "evdev"
[ 28472.391] (II) event4  - SIGMACHIP USB Keyboard, class 0/0, rev 1.10/1.11, addr 40: is tagged by udev as: Keyboard
[ 28472.391] (II) event4  - SIGMACHIP USB Keyboard, class 0/0, rev 1.10/1.11, addr 40: device is a keyboard
[ 28472.392] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event5)
[ 28472.392] (**) Logitech USB Optical Mouse: Applying InputClass "libinput pointer catchall"
[ 28472.392] (II) Using input driver 'libinput' for 'Logitech USB Optical Mouse'
[ 28472.392] (**) Logitech USB Optical Mouse: always reports core events
[ 28472.392] (**) Option "Device" "/dev/input/event5"
[ 28472.392] (**) Option "_source" "server/udev"
[ 28472.393] (II) event5  - Logitech USB Optical Mouse, class 0/0, rev 2.00/72.00, addr 41: is tagged by udev as: Mouse
[ 28472.393] (II) event5  - Logitech USB Optical Mouse, class 0/0, rev 2.00/72.00, addr 41: device is a pointer
[ 28472.393] (II) event5  - Logitech USB Optical Mouse, class 0/0, rev 2.00/72.00, addr 41: device removed
[ 28472.394] (**) Option "config_info" "udev:/dev/input/event5"
[ 28472.394] (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 11)
[ 28472.394] (**) Option "AccelerationScheme" "none"
[ 28472.394] (**) Logitech USB Optical Mouse: (accel) selected scheme none/0
[ 28472.394] (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
[ 28472.394] (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
[ 28472.395] (II) event5  - Logitech USB Optical Mouse, class 0/0, rev 2.00/72.00, addr 41: is tagged by udev as: Mouse
[ 28472.395] (II) event5  - Logitech USB Optical Mouse, class 0/0, rev 2.00/72.00, addr 41: device is a pointer
[ 28510.129] (II) event0  - System mouse: device removed
[ 28510.129] (II) event1  - System keyboard multiplexer: device removed
[ 28510.129] (II) event2  - vendor 0x0557 product 0x2419, class 0/0, rev 1.10/1.00, addr 2: device removed
[ 28510.129] (II) event3  - vendor 0x0557 product 0x2419, class 0/0, rev 1.10/1.00, addr 2: device removed
[ 28510.129] (II) event4  - SIGMACHIP USB Keyboard, class 0/0, rev 1.10/1.11, addr 40: device removed
[ 28510.129] (II) event5  - Logitech USB Optical Mouse, class 0/0, rev 2.00/72.00, addr 41: device removed
[ 28510.132] (II) UnloadModule: "libinput"
[ 28510.132] (II) UnloadModule: "libinput"
[ 28510.133] (II) UnloadModule: "libinput"
[ 28510.133] (II) UnloadModule: "libinput"
[ 28510.133] (II) UnloadModule: "libinput"
[ 28510.133] (II) UnloadModule: "libinput"
[ 28510.359] (II) NVIDIA(GPU-0): Deleting GPU-0
[ 28510.568] (II) Server terminated successfully (0). Closing log file.

But usb audio does not activate ;-( :

ugen0.8: <Harman Multimedia JBL Pebbles> at usbus0
uaudio0 numa-domain 0 on uhub3
uaudio0: <Harman Multimedia JBL Pebbles, class 0/0, rev 1.10/1.00, addr 57> on usbus0
uaudio0: Play[0]: 48000 Hz, 2 ch, 16-bit S-LE PCM format, 2x8ms buffer.
uaudio0: No recording.
uaudio0: No MIDI sequencer.
pcm3: <USB audio> numa-domain 0 on uaudio0
uaudio0: HID volume keys found.

> --- kiri@truefc.org wrote:
> > On Fri, 18 Sep 2020 21:55:26 +0900,
> > Niclas Zeising wrote:
> > > 
> > > On 2020-09-18 13:22, KIRIYAMA Kazuhiko wrote:
> > > > On Fri, 18 Sep 2020 15:15:19 +0900,
> > > > Niclas Zeising wrote:
> > > >>
> > > >> On 2020-09-18 04:35, KIRIYAMA Kazuhiko wrote:
> > > >>> Hi, all
> > > >>>
> > > >>> I'm trying to setup X11 on GEFORCE GTX 1050Ti in
> > > >>> 13.0-CURRENT (r363381). I've installed
> > > >>> nvidia-driver-390-390.138, and run `nvidia-xconfig', and run
> > > >>> `startx', but could not detected device:
> > > >>>
> > > >>
> > > >> What does dmesg say when you load the module?
> > > > 
> > > > I set `nvidia_load="YES"' in /boot/loader.conf:
> > > > 
> > > > admin@bk:~[29]% cat /boot/loader.conf
> > > > geom_mirror_load="YES"
> > > > vfs.root.mountfrom="zfs:zroot/ROOT/default"
> > > > kern.geom.label.disk_ident.enable="0"
> > > > kern.geom.label.gptid.enable="0"
> > > > opensolaris_load="YES"
> > > > zfs_load="YES"
> > > > nvidia_load="YES"
> > > > nvidia-modeset_load="YES"
> > > > nullfs_load="YES"
> > > > admin@bk:~[30]%
> > > > 
> > > > dmesg at boot time (/var/run/dmesg.boot) as follows:
> > > 
> > > Does it make a difference if you load nvidia.ko and nvidia_modeset.ko 
> > > from /etc/rc.conf instead (add it to kld_list).  Are you running any 
> > > xorg configuration?
> > > Which version ov the nvidia driver are you using, you said 390 before, 
> > > but dmesg seem to indicate 440.
> > 
> > I deinstalled nvidia-driver-390-390.138 and then installed
> > nvidia-driver-440.100. But still "No devices detected." ;-(
> > 
> > "GeForce GTX 1050 Ti" is awared by kernel which denote
> > `pciconf -lv':
> > 
> > admin@smtp:~[15]% pciconf -lv
> > hostb0@pci0:0:0:0:    class=0x060000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2020 subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E DMI3 Registers'
> >     class      = bridge
> >     subclass   = HOST-PCI
> > ioat0@pci0:0:4:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2021 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CBDMA Registers'
> >     class      = base peripheral
> > ioat1@pci0:0:4:1:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2021 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CBDMA Registers'
> >     class      = base peripheral
> > ioat2@pci0:0:4:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2021 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CBDMA Registers'
> >     class      = base peripheral
> > ioat3@pci0:0:4:3:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2021 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CBDMA Registers'
> >     class      = base peripheral
> > ioat4@pci0:0:4:4:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2021 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CBDMA Registers'
> >     class      = base peripheral
> > ioat5@pci0:0:4:5:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2021 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CBDMA Registers'
> >     class      = base peripheral
> > ioat6@pci0:0:4:6:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2021 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CBDMA Registers'
> >     class      = base peripheral
> > ioat7@pci0:0:4:7:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2021 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CBDMA Registers'
> >     class      = base peripheral
> > none0@pci0:0:5:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2024 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E MM/Vt-d Configuration Registers'
> >     class      = base peripheral
> > none1@pci0:0:5:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2025 subvendor=0x0000 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E RAS'
> >     class      = base peripheral
> > ioapic0@pci0:0:5:4:    class=0x080020 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2026 subvendor=0x8086 subdevice=0x2026
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E IOAPIC'
> >     class      = base peripheral
> >     subclass   = interrupt controller
> > none2@pci0:0:8:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2014 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Ubox Registers'
> >     class      = base peripheral
> > none3@pci0:0:8:1:    class=0x110100 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2015 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Ubox Registers'
> >     class      = dasp
> >     subclass   = performance counters
> > none4@pci0:0:8:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2016 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Ubox Registers'
> >     class      = base peripheral
> > none5@pci0:0:17:0:    class=0xff0000 rev=0x09 hdr=0x00 vendor=0x8086 device=0xa1ec subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C620 Series Chipset Family MROM 0'
> > none6@pci0:0:17:1:    class=0xff0000 rev=0x09 hdr=0x00 vendor=0x8086 device=0xa1ed subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C620 Series Chipset Family MROM 1'
> > ahci0@pci0:0:17:5:    class=0x010601 rev=0x09 hdr=0x00 vendor=0x8086 device=0xa1d2 subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C620 Series Chipset Family SSATA Controller [AHCI mode]'
> >     class      = mass storage
> >     subclass   = SATA
> > xhci0@pci0:0:20:0:    class=0x0c0330 rev=0x09 hdr=0x00 vendor=0x8086 device=0xa1af subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C620 Series Chipset Family USB 3.0 xHCI Controller'
> >     class      = serial bus
> >     subclass   = USB
> > none7@pci0:0:20:2:    class=0x118000 rev=0x09 hdr=0x00 vendor=0x8086 device=0xa1b1 subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C620 Series Chipset Family Thermal Subsystem'
> >     class      = dasp
> > none8@pci0:0:22:0:    class=0x078000 rev=0x09 hdr=0x00 vendor=0x8086 device=0xa1ba subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C620 Series Chipset Family MEI Controller'
> >     class      = simple comms
> > none9@pci0:0:22:1:    class=0x078000 rev=0x09 hdr=0x00 vendor=0x8086 device=0xa1bb subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C620 Series Chipset Family MEI Controller'
> >     class      = simple comms
> > none10@pci0:0:22:4:    class=0x078000 rev=0x09 hdr=0x00 vendor=0x8086 device=0xa1be subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C620 Series Chipset Family MEI Controller'
> >     class      = simple comms
> > ahci1@pci0:0:23:0:    class=0x010601 rev=0x09 hdr=0x00 vendor=0x8086 device=0xa182 subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C620 Series Chipset Family SATA Controller [AHCI mode]'
> >     class      = mass storage
> >     subclass   = SATA
> > pcib1@pci0:0:28:0:    class=0x060400 rev=0xf9 hdr=0x01 vendor=0x8086 device=0xa190 subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C620 Series Chipset Family PCI Express Root Port'
> >     class      = bridge
> >     subclass   = PCI-PCI
> > pcib2@pci0:0:28:5:    class=0x060400 rev=0xf9 hdr=0x01 vendor=0x8086 device=0xa195 subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C620 Series Chipset Family PCI Express Root Port'
> >     class      = bridge
> >     subclass   = PCI-PCI
> > isab0@pci0:0:31:0:    class=0x060100 rev=0x09 hdr=0x00 vendor=0x8086 device=0xa1c1 subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C621 Series Chipset LPC/eSPI Controller'
> >     class      = bridge
> >     subclass   = PCI-ISA
> > none11@pci0:0:31:2:    class=0x058000 rev=0x09 hdr=0x00 vendor=0x8086 device=0xa1a1 subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C620 Series Chipset Family Power Management Controller'
> >     class      = memory
> > none12@pci0:0:31:4:    class=0x0c0500 rev=0x09 hdr=0x00 vendor=0x8086 device=0xa1a3 subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C620 Series Chipset Family SMBus'
> >     class      = serial bus
> >     subclass   = SMBus
> > none13@pci0:0:31:5:    class=0x0c8000 rev=0x09 hdr=0x00 vendor=0x8086 device=0xa1a4 subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'C620 Series Chipset Family SPI Controller'
> >     class      = serial bus
> > pcib3@pci0:2:0:0:    class=0x060400 rev=0x04 hdr=0x01 vendor=0x1a03 device=0x1150 subvendor=0x1a03 subdevice=0x1150
> >     vendor     = 'ASPEED Technology, Inc.'
> >     device     = 'AST1150 PCI-to-PCI Bridge'
> >     class      = bridge
> >     subclass   = PCI-PCI
> > vgapci0@pci0:3:0:0:    class=0x030000 rev=0x41 hdr=0x00 vendor=0x1a03 device=0x2000 subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'ASPEED Technology, Inc.'
> >     device     = 'ASPEED Graphics Family'
> >     class      = display
> >     subclass   = VGA
> > none14@pci0:22:5:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2034 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E VT-d'
> >     class      = base peripheral
> > none15@pci0:22:5:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2035 subvendor=0x0000 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E RAS Configuration Registers'
> >     class      = base peripheral
> > ioapic1@pci0:22:5:4:    class=0x080020 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2036 subvendor=0x8086 subdevice=0x2036
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E IOxAPIC Configuration Registers'
> >     class      = base peripheral
> >     subclass   = interrupt controller
> > none16@pci0:22:8:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208d subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none17@pci0:22:8:1:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208d subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none18@pci0:22:8:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208d subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none19@pci0:22:8:3:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208d subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none20@pci0:22:8:4:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208d subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none21@pci0:22:8:5:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208d subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none22@pci0:22:8:6:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208d subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none23@pci0:22:8:7:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208d subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none24@pci0:22:9:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208d subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none25@pci0:22:9:1:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208d subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none26@pci0:22:14:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208e subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none27@pci0:22:14:1:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208e subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none28@pci0:22:14:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208e subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none29@pci0:22:14:3:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208e subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none30@pci0:22:14:4:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208e subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none31@pci0:22:14:5:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208e subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none32@pci0:22:14:6:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208e subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none33@pci0:22:14:7:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208e subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none34@pci0:22:15:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208e subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none35@pci0:22:15:1:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x208e subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none36@pci0:22:29:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2054 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none37@pci0:22:29:1:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2055 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none38@pci0:22:29:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2056 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none39@pci0:22:29:3:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2057 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E CHA Registers'
> >     class      = base peripheral
> > none40@pci0:22:30:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2080 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E PCU Registers'
> >     class      = base peripheral
> > none41@pci0:22:30:1:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2081 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E PCU Registers'
> >     class      = base peripheral
> > none42@pci0:22:30:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2082 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E PCU Registers'
> >     class      = base peripheral
> > none43@pci0:22:30:3:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2083 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E PCU Registers'
> >     class      = base peripheral
> > none44@pci0:22:30:4:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2084 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E PCU Registers'
> >     class      = base peripheral
> > none45@pci0:22:30:5:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2085 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E PCU Registers'
> >     class      = base peripheral
> > none46@pci0:22:30:6:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2086 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E PCU Registers'
> >     class      = base peripheral
> > pcib6@pci0:100:0:0:    class=0x060400 rev=0x07 hdr=0x01 vendor=0x8086 device=0x2030 subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E PCI Express Root Port A'
> >     class      = bridge
> >     subclass   = PCI-PCI
> > none47@pci0:100:5:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2034 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E VT-d'
> >     class      = base peripheral
> > none48@pci0:100:5:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2035 subvendor=0x0000 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E RAS Configuration Registers'
> >     class      = base peripheral
> > ioapic2@pci0:100:5:4:    class=0x080020 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2036 subvendor=0x8086 subdevice=0x2036
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E IOxAPIC Configuration Registers'
> >     class      = base peripheral
> >     subclass   = interrupt controller
> > none49@pci0:100:8:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2066 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Integrated Memory Controller'
> >     class      = base peripheral
> > none50@pci0:100:9:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2066 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Integrated Memory Controller'
> >     class      = base peripheral
> > none51@pci0:100:10:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2040 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Integrated Memory Controller'
> >     class      = base peripheral
> > none52@pci0:100:10:1:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2041 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Integrated Memory Controller'
> >     class      = base peripheral
> > none53@pci0:100:10:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2042 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Integrated Memory Controller'
> >     class      = base peripheral
> > none54@pci0:100:10:3:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2043 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Integrated Memory Controller'
> >     class      = base peripheral
> > none55@pci0:100:10:4:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2044 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Integrated Memory Controller'
> >     class      = base peripheral
> > none56@pci0:100:10:5:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2045 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E LM Channel 1'
> >     class      = base peripheral
> > none57@pci0:100:10:6:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2046 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E LMS Channel 1'
> >     class      = base peripheral
> > none58@pci0:100:10:7:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2047 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E LMDP Channel 1'
> >     class      = base peripheral
> > none59@pci0:100:11:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2048 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E DECS Channel 2'
> >     class      = base peripheral
> > none60@pci0:100:11:1:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2049 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E LM Channel 2'
> >     class      = base peripheral
> > none61@pci0:100:11:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x204a subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E LMS Channel 2'
> >     class      = base peripheral
> > none62@pci0:100:11:3:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x204b subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E LMDP Channel 2'
> >     class      = base peripheral
> > none63@pci0:100:12:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2040 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Integrated Memory Controller'
> >     class      = base peripheral
> > none64@pci0:100:12:1:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2041 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Integrated Memory Controller'
> >     class      = base peripheral
> > none65@pci0:100:12:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2042 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Integrated Memory Controller'
> >     class      = base peripheral
> > none66@pci0:100:12:3:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2043 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Integrated Memory Controller'
> >     class      = base peripheral
> > none67@pci0:100:12:4:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2044 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E Integrated Memory Controller'
> >     class      = base peripheral
> > none68@pci0:100:12:5:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2045 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E LM Channel 1'
> >     class      = base peripheral
> > none69@pci0:100:12:6:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2046 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E LMS Channel 1'
> >     class      = base peripheral
> > none70@pci0:100:12:7:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2047 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E LMDP Channel 1'
> >     class      = base peripheral
> > none71@pci0:100:13:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2048 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E DECS Channel 2'
> >     class      = base peripheral
> > none72@pci0:100:13:1:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2049 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E LM Channel 2'
> >     class      = base peripheral
> > none73@pci0:100:13:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x204a subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E LMS Channel 2'
> >     class      = base peripheral
> > none74@pci0:100:13:3:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x204b subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E LMDP Channel 2'
> >     class      = base peripheral
> > vgapci1@pci0:101:0:0:    class=0x030000 rev=0xa1 hdr=0x00 vendor=0x10de device=0x1c82 subvendor=0x1462 subdevice=0x8c96
> >     vendor     = 'NVIDIA Corporation'
> >     device     = 'GP107 [GeForce GTX 1050 Ti]'
> >     class      = display
> >     subclass   = VGA
> > hdac0@pci0:101:0:1:    class=0x040300 rev=0xa1 hdr=0x00 vendor=0x10de device=0x0fb9 subvendor=0x1462 subdevice=0x8c96
> >     vendor     = 'NVIDIA Corporation'
> >     device     = 'GP107GL High Definition Audio Controller'
> >     class      = multimedia
> >     subclass   = HDA
> > pcib8@pci0:178:0:0:    class=0x060400 rev=0x07 hdr=0x01 vendor=0x8086 device=0x2030 subvendor=0x15d9 subdevice=0x095d
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E PCI Express Root Port A'
> >     class      = bridge
> >     subclass   = PCI-PCI
> > none75@pci0:178:5:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2034 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E VT-d'
> >     class      = base peripheral
> > none76@pci0:178:5:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2035 subvendor=0x0000 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E RAS Configuration Registers'
> >     class      = base peripheral
> > ioapic3@pci0:178:5:4:    class=0x080020 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2036 subvendor=0x8086 subdevice=0x2036
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E IOxAPIC Configuration Registers'
> >     class      = base peripheral
> >     subclass   = interrupt controller
> > none77@pci0:178:14:0:    class=0x110100 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2058 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E KTI 0'
> >     class      = dasp
> >     subclass   = performance counters
> > none78@pci0:178:14:1:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2059 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E UPI Registers'
> >     class      = base peripheral
> > none79@pci0:178:15:0:    class=0x110100 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2058 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E KTI 0'
> >     class      = dasp
> >     subclass   = performance counters
> > none80@pci0:178:15:1:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2059 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E UPI Registers'
> >     class      = base peripheral
> > none81@pci0:178:18:0:    class=0x110100 rev=0x07 hdr=0x00 vendor=0x8086 device=0x204c subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E M3KTI Registers'
> >     class      = dasp
> >     subclass   = performance counters
> > none82@pci0:178:18:1:    class=0x110100 rev=0x07 hdr=0x00 vendor=0x8086 device=0x204d subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E M3KTI Registers'
> >     class      = dasp
> >     subclass   = performance counters
> > none83@pci0:178:18:2:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x204e subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E M3KTI Registers'
> >     class      = base peripheral
> > none84@pci0:178:21:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2018 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E M2PCI Registers'
> >     class      = base peripheral
> > none85@pci0:178:21:1:    class=0x110100 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2088 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E DDRIO Registers'
> >     class      = dasp
> >     subclass   = performance counters
> > none86@pci0:178:22:0:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2018 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E M2PCI Registers'
> >     class      = base peripheral
> > none87@pci0:178:22:1:    class=0x110100 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2088 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E DDRIO Registers'
> >     class      = dasp
> >     subclass   = performance counters
> > none88@pci0:178:22:4:    class=0x088000 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2018 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E M2PCI Registers'
> >     class      = base peripheral
> > none89@pci0:178:22:5:    class=0x110100 rev=0x07 hdr=0x00 vendor=0x8086 device=0x2088 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Sky Lake-E DDRIO Registers'
> >     class      = dasp
> >     subclass   = performance counters
> > pcib9@pci0:179:0:0:    class=0x060400 rev=0x09 hdr=0x01 vendor=0x8086 device=0x37c0 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     class      = bridge
> >     subclass   = PCI-PCI
> > pcib10@pci0:180:3:0:    class=0x060400 rev=0x09 hdr=0x01 vendor=0x8086 device=0x37c5 subvendor=0x8086 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     class      = bridge
> >     subclass   = PCI-PCI
> > none90@pci0:181:0:0:    class=0x020000 rev=0x09 hdr=0x00 vendor=0x8086 device=0x37cc subvendor=0x15d9 subdevice=0x0000
> >     vendor     = 'Intel Corporation'
> >     device     = 'Ethernet Connection X722'
> >     class      = network
> >     subclass   = ethernet
> > ixl0@pci0:181:0:2:    class=0x020000 rev=0x09 hdr=0x00 vendor=0x8086 device=0x37d1 subvendor=0x15d9 subdevice=0x37d1
> >     vendor     = 'Intel Corporation'
> >     device     = 'Ethernet Connection X722 for 1GbE'
> >     class      = network
> >     subclass   = ethernet
> > ixl1@pci0:181:0:3:    class=0x020000 rev=0x09 hdr=0x00 vendor=0x8086 device=0x37d1 subvendor=0x15d9 subdevice=0x37d1
> >     vendor     = 'Intel Corporation'
> >     device     = 'Ethernet Connection X722 for 1GbE'
> >     class      = network
> >     subclass   = ethernet
> > admin@smtp:~[17]% 
> > 
> > 
> > According to those above, xorg could not detected "GeForce
> > GTX 1050 Ti". Why ?
> > 
> > Regards
> > ---
> > Kazuhiko Kiriyama <kiri@truefc.org>
> > _______________________________________________
> > freebsd-x11@freebsd.org mailing list
> > https://lists.freebsd.org/mailman/listinfo/freebsd-x11 
> > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org"
> 
> _______________________________________________
> freebsd-x11@freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/freebsd-x11
> To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org"
> 
---
Kazuhiko Kiriyama <kiri@truefc.org>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009190754.08J7sc60073066>