Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Feb 2020 18:22:07 -0500
From:      Aryeh Friedman <aryeh.friedman@gmail.com>
To:        Michael Gmelin <freebsd@grem.de>
Cc:        Vladimir Kondratyev <vladimir@kondratyev.su>, freebsd-x11@freebsd.org
Subject:   Re: xfce4 does not see up arrow after reinstall/xorg update
Message-ID:  <CAGBxaXnKMB1X4krZGMa=zqeLrRmVAvTjByVvUdBXFGv1DjB8ZA@mail.gmail.com>
In-Reply-To: <20200222235619.34fbf6f4@bsd64.grem.de>
References:  <CAGBxaXk0dWwa0kGVLViMRTMSUpdJwMBYgPF4gTBryjHoBzGjPw@mail.gmail.com> <ccbeafb7-1f62-41b8-b000-870896527a86@kondratyev.su> <CAGBxaX=qvyTfo0qfehZBH6TLWXSPA562ys-_Sjaqen-fQD01rA@mail.gmail.com> <20200222224756.05f6fad9@bsd64.grem.de> <CAGBxaXmDLweeM0So2YEJh0C7Rw6%2B1=DxuaVtULvUVHrJhEvy8w@mail.gmail.com> <20200222235619.34fbf6f4@bsd64.grem.de>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, Feb 22, 2020 at 5:56 PM Michael Gmelin <freebsd@grem.de> wrote:

>
>
> >
> > I would like to make a side comment on the latest xorg update in
> > general: WHAT A CLUSTERF*CK this is no where near ready for
> > production based on the number of people complaining about basic I/O
> > problems.
>
> You already made that comment yesterday :)
>
> The point is, cursing won't motivate anyone to help you.
>

You try losing 3 days of paid work due to something that claimed to be
production ready and not pull your hair out.  Due to lack of money my
desktop and test machine are one in the same so any serious hiccups in
ports and/or the base system seriously harm my freelancing (sole source of
income).

Logs attached below:


> A productive thing you could do is to share your setup (this means the
> hardware you use, all relevant log and configuration files [rc.conf,
> loader.conf, xorg.conf if any, content
> of /usr/local/etc/X11/xorg.conf.d etc.]), so that someone with a similar
> setup can test/debug.
>
>
user account .xinitrc:

xset -dpms
xset s off
nvidia-settings --load-config-only
xhost +
. /usr/local/etc/xdg/xfce4/xinitrc

10-edev.conf:

#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.

Section "InputClass"
        Identifier "evdev pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

10-quirks.conf:

# Collection of quirks and blacklist/whitelists for specific devices.


# Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
# http://bugs.freedesktop.org/show_bug.cgi?id=22442
Section "InputClass"
        Identifier "ThinkPad HDAPS accelerometer blacklist"
        MatchProduct "ThinkPad HDAPS accelerometer data"
        Option "Ignore" "on"
EndSection

# https://bugzilla.redhat.com/show_bug.cgi?id=523914
# Mouse does not move in PV Xen guest
# Explicitly tell evdev to not ignore the absolute axes.
Section "InputClass"
        Identifier "Xen Virtual Pointer axis blacklist"
        MatchProduct "Xen Virtual Pointer"
        Option "IgnoreAbsoluteAxes" "off"
        Option "IgnoreRelativeAxes" "off"
EndSection

# https://bugs.freedesktop.org/show_bug.cgi?id=55867
# Bug 55867 - Doesn't know how to tag XI_TRACKBALL
Section "InputClass"
        Identifier "Tag trackballs as XI_TRACKBALL"
        MatchProduct "trackball"
        MatchDriver "evdev"
        Option "TypeName" "TRACKBALL"
EndSection

# https://bugs.freedesktop.org/show_bug.cgi?id=62831
# Bug 62831 - Mionix Naos 5000 mouse detected incorrectly
Section "InputClass"
        Identifier "Tag Mionix Naos 5000 mouse XI_MOUSE"
        MatchProduct "La-VIEW Technology Naos 5000 Mouse"
        MatchDriver "evdev"
        Option "TypeName" "MOUSE"
EndSection

20-edev-kbd.conf:

# reverted back to after attempring suggested fixes
Section "InputClass"
Identifier "Evdev keyboard"
MatchDevicePath "/dev/input/event*"
MatchIsKeyboard "on"
Option "XkbRules" "evdev"
EndSection

40-libinput.conf:
# Match on all types of devices but joysticks
#
# If you want to configure your devices, do not copy this file.
# Instead, use a config snippet that contains something like this:
#
# Section "InputClass"
#   Identifier "something or other"
#   MatchDriver "libinput"
#
#   MatchIsTouchpad "on"
#   ... other Match directives ...
#   Option "someoption" "value"
# EndSection
#
# This applies the option any libinput device also matched by the other
# directives. See the xorg.conf(5) man page for more info on
# matching devices.

Section "InputClass"
        Identifier "libinput pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

Section "InputClass"
        Identifier "libinput keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

Section "InputClass"
        Identifier "libinput touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

Section "InputClass"
        Identifier "libinput tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
EndSection

/boot/loader.conf:

kern.geom.label.disk_ident.enable="0"
kern.geom.label.gptid.enable="0"
zfs_load="YES"
linux_load="YES"
linux64_load="YES"
nvidia_load="YES"
nvidia-modeset_load="YES"
#vboxdrv_load="YES"
vmm_load="YES"
if_tap_load="YES"

/etc/sysctl.conf:

# $FreeBSD: releng/12.1/sbin/sysctl/sysctl.conf 337624 2018-08-11 13:28:03Z
brd $
#
#  This file is read when going to multi-user and its contents piped thru
#  ``sysctl'' to adjust kernel values.  ``man 5 sysctl.conf'' for details.
#

# Uncomment this to prevent users from seeing information about processes
that
# are being run under another UID.
security.bsd.see_other_uids=0

# zfs stuff
vfs.zfs.min_auto_ashift=12

# vbox stuff
vfs.aio.max_buf_aio=8192
vfs.aio.max_aio_queue_per_proc=65536
vfs.aio.max_aio_per_proc=8192
vfs.aio.max_aio_queue=65536

# local customizations
hw.snd.default_unit=1

# needed for win on bhyve
net.link.tap.up_on_open=1
#hw.vmm.topology.cores_per_package=4
kern.evdev.rcpt_mask=12

/etc/rc.conf:

hostname="neomarx"
ifconfig_re0="inet 192.168.11.40 netmask 255.255.255.0"
defaultrouter="192.168.11.1"
static_routes="specmed"
route_specmed="-net 10.31.10.0/24 192.168.11.30"
sshd_enable="YES"
ntpdate_enable="YES"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="AUTO"
zfs_enable="YES"
netwait_enable="YES"
netwait_if="re0"
nisdomainname="office"

nis_client_enable="YES"
rpc_lockd_enable="YES"

rpc_statd_enable="YES"
#dbus_enable="YES"
tomcat9_enable="YES"
#apache24_enable="YES"
mysql_enable="YES"
#vboxnet_enable="YES"
devfs_system_ruleset="system"
devd_enable="YES"
cupsd_enable="YES"

# for quick and dirt win on bhyve
cloned_interfaces="bridge0 tap10"
ifconfig_bridge0="addm re0 addm tap10"
kld_list="/boot/modules/i915kms.ko"

Xorg.log:

[   441.708]
X.Org X Server 1.20.7
X Protocol Version 11, Revision 0
[   441.708] Build Operating System: FreeBSD 12.1-RELEASE-p2 amd64
[   441.708] Current Operating System: FreeBSD neomarx 12.1-RELEASE-p2
FreeBSD 12.1-RELEASE-p2 r358209 GENERIC amd64
[   441.708] Build Date: 21 February 2020  01:20:23AM
[   441.708]
[   441.708] Current version of pixman: 0.38.4
[   441.708] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[   441.708] Markers: (--) probed, (**) from config file, (==) default
setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   441.708] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Feb 22
17:51:20 2020
[   441.710] (==) Using config directory: "/usr/local/etc/X11/xorg.conf.d"
[   441.710] (==) Using system config directory
"/usr/local/share/X11/xorg.conf.d"
[   441.711] (==) No Layout section.  Using the first Screen section.
[   441.711] (==) No screen section available. Using defaults.
[   441.711] (**) |-->Screen "Default Screen Section" (0)
[   441.711] (**) |   |-->Monitor "<default monitor>"
[   441.711] (==) No device specified for screen "Default Screen Section".
Using the first device section listed.
[   441.711] (**) |   |-->Device "NVIDIA Card"
[   441.711] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[   441.711] (==) Automatically adding devices
[   441.711] (==) Automatically enabling devices
[   441.711] (==) Not automatically adding GPU devices
[   441.712] (==) Max clients allowed: 256, resource mask: 0x1fffff
[   441.716] (==) 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
[   441.716] (==) ModulePath set to "/usr/local/lib/xorg/modules"
[   441.716] (II) The server relies on udev to provide the list of input
devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[   441.716] (II) Loader magic: 0x42e020
[   441.716] (II) Module ABI versions:
[   441.716] X.Org ANSI C Emulation: 0.4
[   441.716] X.Org Video Driver: 24.1
[   441.716] X.Org XInput driver : 24.1
[   441.716] X.Org Server Extension : 10.0
[   441.716] (--) PCI:*(37@0:0:0) 10de:128b:19da:7326 rev 161, Mem @
0xf6000000/16777216, 0xe8000000/134217728, 0xf0000000/33554432, I/O @
0x0000e000/128, BIOS @ 0x????????/65536
[   441.716] (II) LoadModule: "glx"
[   441.717] (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so
[   441.724] (II) Module glx: vendor="X.Org Foundation"
[   441.724] compiled for 1.20.7, module version = 1.0.0
[   441.724] ABI class: X.Org Server Extension, version 10.0
[   441.724] (II) LoadModule: "nvidia"
[   441.724] (II) Loading /usr/local/lib/xorg/modules/drivers/nvidia_drv.so
[   441.730] (II) Module nvidia: vendor="NVIDIA Corporation"
[   441.730] compiled for 1.6.99.901, module version = 1.0.0
[   441.730] Module class: X.Org Video Driver
[   441.731] (II) NVIDIA dlloader X Driver  440.59  Thu Jan 30 00:58:52 UTC
2020
[   441.731] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[   441.731] (--) Using syscons driver with X support (version 2.0)
[   441.731] (--) using VT number 9

[   441.749] (II) Loading sub module "fb"
[   441.749] (II) LoadModule: "fb"
[   441.750] (II) Loading /usr/local/lib/xorg/modules/libfb.so
[   441.750] (II) Module fb: vendor="X.Org Foundation"
[   441.750] compiled for 1.20.7, module version = 1.0.0
[   441.750] ABI class: X.Org ANSI C Emulation, version 0.4
[   441.750] (II) Loading sub module "wfb"
[   441.750] (II) LoadModule: "wfb"
[   441.750] (II) Loading /usr/local/lib/xorg/modules/libwfb.so
[   441.751] (II) Module wfb: vendor="X.Org Foundation"
[   441.751] compiled for 1.20.7, module version = 1.0.0
[   441.751] ABI class: X.Org ANSI C Emulation, version 0.4
[   441.751] (II) Loading sub module "ramdac"
[   441.751] (II) LoadModule: "ramdac"
[   441.751] (II) Module "ramdac" already built-in
[   441.752] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card
support
[   441.752] (II) NVIDIA(0): Creating default Display subsection in Screen
section
"Default Screen Section" for depth/fbbpp 24/32
[   441.752] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[   441.752] (==) NVIDIA(0): RGB weight 888
[   441.752] (==) NVIDIA(0): Default visual is TrueColor
[   441.752] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[   441.752] (**) NVIDIA(0): Enabling 2D acceleration
[   441.752] (II) Loading sub module "glxserver_nvidia"
[   441.752] (II) LoadModule: "glxserver_nvidia"
[   441.753] (II) Loading
/usr/local/lib/xorg/modules/extensions/libglxserver_nvidia.so
[   441.796] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[   441.796] compiled for 1.6.99.901, module version = 1.0.0
[   441.796] Module class: X.Org Server Extension
[   441.796] (II) NVIDIA GLX Module  440.59  Thu Jan 30 00:56:58 UTC 2020
[   441.798] (II) NVIDIA: The X server supports PRIME Render Offload.
[   442.625] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:37:0:0
[   442.625] (--) NVIDIA(0):     CRT-0
[   442.625] (--) NVIDIA(0):     DFP-0
[   442.625] (--) NVIDIA(0):     DFP-1 (boot)
[   442.626] (II) NVIDIA(0): NVIDIA GPU GeForce GT 710 (GK208) at
PCI:37:0:0 (GPU-0)
[   442.626] (--) NVIDIA(0): Memory: 2097152 kBytes
[   442.626] (--) NVIDIA(0): VideoBIOS: 80.28.a6.00.11
[   442.626] (II) NVIDIA(0): Detected PCI Express Link width: 8X
[   442.627] (--) NVIDIA(GPU-0): CRT-0: disconnected
[   442.627] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[   442.627] (--) NVIDIA(GPU-0):
[   442.628] (--) NVIDIA(GPU-0): DFP-0: disconnected
[   442.628] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[   442.628] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[   442.628] (--) NVIDIA(GPU-0):
[   442.659] (--) NVIDIA(GPU-0): Acer ET241Y (DFP-1): connected
[   442.659] (--) NVIDIA(GPU-0): Acer ET241Y (DFP-1): Internal TMDS
[   442.659] (--) NVIDIA(GPU-0): Acer ET241Y (DFP-1): 340.0 MHz maximum
pixel clock
[   442.659] (--) NVIDIA(GPU-0):
[   442.662] (==) NVIDIA(0):
[   442.662] (==) NVIDIA(0): No modes were requested; the default mode
"nvidia-auto-select"
[   442.662] (==) NVIDIA(0):     will be used as the requested mode.
[   442.662] (==) NVIDIA(0):
[   442.663] (II) NVIDIA(0): Validated MetaModes:
[   442.663] (II) NVIDIA(0):     "DFP-1:nvidia-auto-select"
[   442.663] (II) NVIDIA(0): Virtual screen size determined to be 1920 x
1080
[   442.666] (--) NVIDIA(0): DPI set to (92, 91); computed from
"UseEdidDpi" X config
[   442.666] (--) NVIDIA(0):     option
[   442.666] (II) NVIDIA: Reserving 6144.00 MB of virtual memory for
indirect memory
[   442.666] (II) NVIDIA:     access.
[   442.699] (II) NVIDIA(0): Setting mode "DFP-1:nvidia-auto-select"
[   442.754] (==) NVIDIA(0): Disabling shared memory pixmaps
[   442.754] (==) NVIDIA(0): Backing store enabled
[   442.754] (==) NVIDIA(0): Silken mouse enabled
[   442.755] (==) NVIDIA(0): DPMS enabled
[   442.756] (WW) NVIDIA(0): Option "RandRRotation" is not used
[   442.756] (II) Loading sub module "dri2"
[   442.756] (II) LoadModule: "dri2"
[   442.756] (II) Module "dri2" already built-in
[   442.756] (II) NVIDIA(0): [DRI2] Setup complete
[   442.756] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[   442.756] (II) Initializing extension Generic Event Extension
[   442.756] (II) Initializing extension SHAPE
[   442.756] (II) Initializing extension MIT-SHM
[   442.756] (II) Initializing extension XInputExtension
[   442.757] (II) Initializing extension XTEST
[   442.757] (II) Initializing extension BIG-REQUESTS
[   442.758] (II) Initializing extension SYNC
[   442.758] (II) Initializing extension XKEYBOARD
[   442.758] (II) Initializing extension XC-MISC
[   442.758] (II) Initializing extension SECURITY
[   442.758] (II) Initializing extension XFIXES
[   442.758] (II) Initializing extension RENDER
[   442.759] (II) Initializing extension RANDR
[   442.759] (II) Initializing extension COMPOSITE
[   442.759] (II) Initializing extension DAMAGE
[   442.759] (II) Initializing extension MIT-SCREEN-SAVER
[   442.759] (II) Initializing extension DOUBLE-BUFFER
[   442.760] (II) Initializing extension RECORD
[   442.760] (II) Initializing extension DPMS
[   442.760] (II) Initializing extension Present
[   442.760] (II) Initializing extension DRI3
[   442.760] (II) Initializing extension X-Resource
[   442.760] (II) Initializing extension XVideo
[   442.760] (II) Initializing extension XVideo-MotionCompensation
[   442.760] (II) Initializing extension GLX
[   442.761] (II) Initializing extension GLX
[   442.761] (II) Indirect GLX disabled.
[   442.761] (II) GLX: Another vendor is already registered for screen 0
[   442.761] (II) Initializing extension XFree86-VidModeExtension
[   442.761] (II) Initializing extension XFree86-DGA
[   442.761] (II) Initializing extension XFree86-DRI
[   442.761] (II) Initializing extension DRI2
[   442.762] (II) Initializing extension NV-GLX
[   442.762] (II) Initializing extension NV-CONTROL
[   442.762] (II) Initializing extension XINERAMA
[   442.841] (II) config/udev: Adding input device System mouse
(/dev/input/event0)
[   442.841] (**) System mouse: Applying InputClass "evdev pointer catchall"
[   442.841] (**) System mouse: Applying InputClass "libinput pointer
catchall"
[   442.841] (II) LoadModule: "libinput"
[   442.841] (II) Loading /usr/local/lib/xorg/modules/input/libinput_drv.so
[   442.857] (II) Module libinput: vendor="X.Org Foundation"
[   442.857] compiled for 1.20.7, module version = 0.28.2
[   442.857] Module class: X.Org XInput Driver
[   442.857] ABI class: X.Org XInput driver, version 24.1
[   442.857] (II) Using input driver 'libinput' for 'System mouse'
[   442.857] (**) System mouse: always reports core events
[   442.857] (**) Option "Device" "/dev/input/event0"
[   442.857] (**) Option "_source" "server/udev"
[   442.865] (II) event0  - System mouse: is tagged by udev as: Mouse
[   442.865] (II) event0  - System mouse: device is a pointer
[   442.865] (II) event0  - System mouse: device removed
[   442.866] (**) Option "config_info" "udev:/dev/input/event0"
[   442.866] (II) XINPUT: Adding extended input device "System mouse"
(type: MOUSE, id 6)
[   442.866] (**) Option "AccelerationScheme" "none"
[   442.866] (**) System mouse: (accel) selected scheme none/0
[   442.866] (**) System mouse: (accel) acceleration factor: 2.000
[   442.866] (**) System mouse: (accel) acceleration threshold: 4
[   442.866] (II) event0  - System mouse: is tagged by udev as: Mouse
[   442.866] (II) event0  - System mouse: device is a pointer
[   442.867] (II) config/udev: Adding input device System keyboard
multiplexer (/dev/input/event1)
[   442.867] (**) System keyboard multiplexer: Applying InputClass "evdev
keyboard catchall"
[   442.867] (**) System keyboard multiplexer: Applying InputClass "Evdev
keyboard"
[   442.867] (**) System keyboard multiplexer: Applying InputClass
"libinput keyboard catchall"
[   442.867] (II) Using input driver 'libinput' for 'System keyboard
multiplexer'
[   442.867] (**) System keyboard multiplexer: always reports core events
[   442.867] (**) Option "Device" "/dev/input/event1"
[   442.867] (**) Option "_source" "server/udev"
[   442.867] (II) event1  - System keyboard multiplexer: is tagged by udev
as: Keyboard
[   442.867] (II) event1  - System keyboard multiplexer: device is a
keyboard
[   442.867] (II) event1  - System keyboard multiplexer: device removed
[   442.867] (**) Option "config_info" "udev:/dev/input/event1"
[   442.867] (II) XINPUT: Adding extended input device "System keyboard
multiplexer" (type: KEYBOARD, id 7)
[   442.868] (**) Option "xkb_rules" "evdev"
[   442.886] (II) event1  - System keyboard multiplexer: is tagged by udev
as: Keyboard
[   442.886] (II) event1  - System keyboard multiplexer: device is a
keyboard
[   442.886] (II) config/udev: Adding input device AT keyboard
(/dev/input/event2)
[   442.886] (**) AT keyboard: Applying InputClass "evdev keyboard catchall"
[   442.886] (**) AT keyboard: Applying InputClass "Evdev keyboard"
[   442.886] (**) AT keyboard: Applying InputClass "libinput keyboard
catchall"
[   442.886] (II) Using input driver 'libinput' for 'AT keyboard'
[   442.886] (**) AT keyboard: always reports core events
[   442.886] (**) Option "Device" "/dev/input/event2"
[   442.886] (**) Option "_source" "server/udev"
[   442.887] (II) event2  - AT keyboard: is tagged by udev as: Keyboard
[   442.887] (II) event2  - AT keyboard: device is a keyboard
[   442.887] (II) event2  - AT keyboard: device removed
[   442.887] (**) Option "config_info" "udev:/dev/input/event2"
[   442.887] (II) XINPUT: Adding extended input device "AT keyboard" (type:
KEYBOARD, id 8)
[   442.887] (**) Option "xkb_rules" "evdev"
[   442.887] (II) event2  - AT keyboard: is tagged by udev as: Keyboard
[   442.887] (II) event2  - AT keyboard: device is a keyboard
[   442.887] (II) config/udev: Adding input device USB Keyboard
(/dev/input/event3)
[   442.888] (**) USB Keyboard: Applying InputClass "evdev keyboard
catchall"
[   442.888] (**) USB Keyboard: Applying InputClass "Evdev keyboard"
[   442.888] (**) USB Keyboard: Applying InputClass "libinput keyboard
catchall"
[   442.888] (II) Using input driver 'libinput' for 'USB Keyboard'
[   442.888] (**) USB Keyboard: always reports core events
[   442.888] (**) Option "Device" "/dev/input/event3"
[   442.888] (**) Option "_source" "server/udev"
[   442.888] (II) event3  - USB Keyboard: is tagged by udev as: Keyboard
[   442.888] (II) event3  - USB Keyboard: device is a keyboard
[   442.888] (II) event3  - USB Keyboard: device removed
[   442.888] (**) Option "config_info" "udev:/dev/input/event3"
[   442.888] (II) XINPUT: Adding extended input device "USB Keyboard"
(type: KEYBOARD, id 9)
[   442.888] (**) Option "xkb_rules" "evdev"
[   442.889] (II) event3  - USB Keyboard: is tagged by udev as: Keyboard
[   442.889] (II) event3  - USB Keyboard: device is a keyboard
[   442.889] (II) config/udev: Adding input device PixArt USB Optical Mouse
(/dev/input/event4)
[   442.889] (**) PixArt USB Optical Mouse: Applying InputClass "evdev
pointer catchall"
[   442.889] (**) PixArt USB Optical Mouse: Applying InputClass "libinput
pointer catchall"
[   442.889] (II) Using input driver 'libinput' for 'PixArt USB Optical
Mouse'
[   442.889] (**) PixArt USB Optical Mouse: always reports core events
[   442.889] (**) Option "Device" "/dev/input/event4"
[   442.889] (**) Option "_source" "server/udev"
[   442.889] (II) event4  - PixArt USB Optical Mouse, class 0/0, rev
1.10/1.00, addr 3: is tagged by udev as: Mouse
[   442.889] (II) event4  - PixArt USB Optical Mouse, class 0/0, rev
1.10/1.00, addr 3: device is a pointer
[   442.890] (II) event4  - PixArt USB Optical Mouse, class 0/0, rev
1.10/1.00, addr 3: device removed
[   442.890] (**) Option "config_info" "udev:/dev/input/event4"
[   442.890] (II) XINPUT: Adding extended input device "PixArt USB Optical
Mouse" (type: MOUSE, id 10)
[   442.890] (**) Option "AccelerationScheme" "none"
[   442.890] (**) PixArt USB Optical Mouse: (accel) selected scheme none/0
[   442.890] (**) PixArt USB Optical Mouse: (accel) acceleration factor:
2.000
[   442.890] (**) PixArt USB Optical Mouse: (accel) acceleration threshold:
4
[   442.890] (II) event4  - PixArt USB Optical Mouse, class 0/0, rev
1.10/1.00, addr 3: is tagged by udev as: Mouse
[   442.890] (II) event4  - PixArt USB Optical Mouse, class 0/0, rev
1.10/1.00, addr 3: device is a pointer
[   443.975] (--) NVIDIA(GPU-0): CRT-0: disconnected
[   443.975] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[   443.975] (--) NVIDIA(GPU-0):
[   443.976] (--) NVIDIA(GPU-0): DFP-0: disconnected
[   443.976] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[   443.976] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[   443.976] (--) NVIDIA(GPU-0):
[   444.007] (--) NVIDIA(GPU-0): Acer ET241Y (DFP-1): connected
[   444.007] (--) NVIDIA(GPU-0): Acer ET241Y (DFP-1): Internal TMDS
[   444.007] (--) NVIDIA(GPU-0): Acer ET241Y (DFP-1): 340.0 MHz maximum
pixel clock
[   444.007] (--) NVIDIA(GPU-0):

dmesg:

Copyright (c) 1992-2019 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 12.1-RELEASE-p2 r358209 GENERIC amd64
FreeBSD clang version 8.0.1 (tags/RELEASE_801/final 366581) (based on LLVM
8.0.1)
VT(vga): resolution 640x480
CPU: AMD Ryzen 5 2600 Six-Core Processor             (3400.10-MHz K8-class
CPU)
  Origin="AuthenticAMD"  Id=0x800f82  Family=0x17  Model=0x8  Stepping=2

Features=0x178bfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,MMX,FXSR,SSE,SSE2,HTT>

Features2=0x7ed8320b<SSE3,PCLMULQDQ,MON,SSSE3,FMA,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AESNI,XSAVE,OSXSAVE,AVX,F16C,RDRAND>
  AMD Features=0x2e500800<SYSCALL,NX,MMX+,FFXSR,Page1GB,RDTSCP,LM>
  AMD
Features2=0x35c233ff<LAHF,CMP,SVM,ExtAPIC,CR8,ABM,SSE4A,MAS,Prefetch,OSVW,SKINIT,WDT,TCE,Topology,PCXC,PNXC,DBE,PL2I,MWAITX>
  Structured Extended
Features=0x209c01a9<FSGSBASE,BMI1,AVX2,SMEP,BMI2,RDSEED,ADX,SMAP,CLFLUSHOPT,SHA>
  XSAVE Features=0xf<XSAVEOPT,XSAVEC,XINUSE,XSAVES>
  AMD Extended Feature Extensions ID EBX=0x1007<CLZERO,IRPerf,XSaveErPtr>
  SVM: NP,NRIP,VClean,AFlush,DAssist,NAsids=32768
  TSC: P-state invariant, performance statistics
real memory  = 25769803776 (24576 MB)
avail memory = 24917250048 (23762 MB)
Event timer "LAPIC" quality 600
ACPI APIC Table: <ALASKA A M I >
FreeBSD/SMP: Multiprocessor System Detected: 12 CPUs
FreeBSD/SMP: 1 package(s) x 2 cache groups x 3 core(s) x 2 hardware threads
random: unblocking device.
ioapic0 <Version 2.1> irqs 0-23 on motherboard
ioapic1 <Version 2.1> irqs 24-55 on motherboard
Launching APs: 11 6 7 10 2 3 1 9 8 5 4
Timecounter "TSC-low" frequency 1700048790 Hz quality 1000
random: entropy device external interface
000.000017 [4335] netmap_init               netmap: loaded module
[ath_hal] loaded
module_register_init: MOD_LOAD (vesa, 0xffffffff8112e0f0, 0) error 19
random: registering fast source Intel Secure Key RNG
random: fast provider: "Intel Secure Key RNG"
kbd1 at kbdmux0
nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX
platforms  440.59  Thu Jan 30 00:54:28 UTC 2020
nexus0
vtvga0: <VT VGA driver> on motherboard
cryptosoft0: <software crypto> on motherboard
acpi0: <ALASKA A M I > on motherboard
acpi0: Power Button (fixed)
AMD-Vi: IVRS Info VAsize = 64 PAsize = 48 GVAsize = 2 flags:0
cpu0: <ACPI CPU> on acpi0
attimer0: <AT timer> port 0x40-0x43 irq 0 on acpi0
Timecounter "i8254" frequency 1193182 Hz quality 0
Event timer "i8254" frequency 1193182 Hz quality 100
atrtc0: <AT realtime clock> port 0x70-0x71 on acpi0
atrtc0: registered as a time-of-day clock, resolution 1.000000s
Event timer "RTC" frequency 32768 Hz quality 0
hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff irq 0,8 on
acpi0
Timecounter "HPET" frequency 14318180 Hz quality 950
Event timer "HPET" frequency 14318180 Hz quality 350
Event timer "HPET1" frequency 14318180 Hz quality 350
Event timer "HPET2" frequency 14318180 Hz quality 350
Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
acpi_timer0: <32-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
pci0: <ACPI PCI bus> on pcib0
pci0: <base peripheral, IOMMU> at device 0.2 (no driver attached)
pcib1: <ACPI PCI-PCI bridge> at device 1.3 on pci0
pci1: <ACPI PCI bus> on pcib1
xhci0: <XHCI (generic) USB 3.0 controller> mem 0xf73a0000-0xf73a7fff irq 32
at device 0.0 on pci1
xhci0: 32 bytes context size, 64-bit DMA
xhci0: Unable to map MSI-X table
usbus0 on xhci0
usbus0: 5.0Gbps Super Speed USB v3.0
ahci0: <AHCI SATA controller> mem 0xf7380000-0xf739ffff irq 33 at device
0.1 on pci1
ahci0: AHCI v1.31 with 8 6Gbps ports, Port Multiplier supported
ahcich0: <AHCI channel> at channel 0 on ahci0
ahcich1: <AHCI channel> at channel 1 on ahci0
ahcich4: <AHCI channel> at channel 4 on ahci0
ahcich5: <AHCI channel> at channel 5 on ahci0
pcib2: <ACPI PCI-PCI bridge> irq 34 at device 0.2 on pci1
pci2: <ACPI PCI bus> on pcib2
pcib3: <ACPI PCI-PCI bridge> irq 32 at device 0.0 on pci2
pci3: <ACPI PCI bus> on pcib3
pcib4: <ACPI PCI-PCI bridge> irq 33 at device 1.0 on pci2
pci4: <ACPI PCI bus> on pcib4
re0: <RealTek 8168/8111 B/C/CP/D/DP/E/F/G PCIe Gigabit Ethernet> port
0xf000-0xf0ff mem 0xf7204000-0xf7204fff,0xf7200000-0xf7203fff irq 33 at
device 0.0 on pci4
re0: Using 1 MSI-X message
re0: Chip rev. 0x54000000
re0: MAC rev. 0x00100000
miibus0: <MII bus> on re0
rgephy0: <RTL8251/8153 1000BASE-T media interface> PHY 1 on miibus0
rgephy0:  none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX,
100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT-FDX, 1000baseT-FDX-master,
1000baseT-FDX-flow, 1000baseT-FDX-flow-master, auto, auto-flow
re0: Using defaults for TSO: 65518/35/2048
re0: Ethernet address: 00:d8:61:78:d4:9c
re0: netmap queues/slots: TX 1/256, RX 1/256
pcib5: <ACPI PCI-PCI bridge> irq 32 at device 4.0 on pci2
pci5: <ACPI PCI bus> on pcib5
vgapci0: <VGA-compatible display> port 0xe000-0xe07f mem
0xf6000000-0xf6ffffff,0xe8000000-0xefffffff,0xf0000000-0xf1ffffff irq 32 at
device 0.0 on pci5
nvidia0: <Unknown> on vgapci0
vgapci0: child nvidia0 requested pci_enable_io
vgapci0: child nvidia0 requested pci_enable_io
vgapci0: Boot video device
hdac0: <NVIDIA (0x0e0f) HDA Controller> mem 0xf7080000-0xf7083fff irq 33 at
device 0.1 on pci5
pcib6: <ACPI PCI-PCI bridge> at device 7.1 on pci0
pci6: <ACPI PCI bus> on pcib6
pci6: <unknown> at device 0.0 (no driver attached)
pci6: <encrypt/decrypt> at device 0.2 (no driver attached)
xhci1: <XHCI (generic) USB 3.0 controller> mem 0xf7500000-0xf75fffff irq 37
at device 0.3 on pci6
xhci1: 64 bytes context size, 64-bit DMA
xhci1: Unable to map MSI-X table
usbus1 on xhci1
usbus1: 5.0Gbps Super Speed USB v3.0
pcib7: <ACPI PCI-PCI bridge> at device 8.1 on pci0
pci7: <ACPI PCI bus> on pcib7
pci7: <unknown> at device 0.0 (no driver attached)
ahci1: <AMD KERNCZ AHCI SATA controller> mem 0xf7808000-0xf7808fff irq 42
at device 0.2 on pci7
ahci1: AHCI v1.31 with 1 6Gbps ports, Port Multiplier supported with FBS
ahcich8: <AHCI channel> at channel 0 on ahci1
hdac1: <AMD (0x1457) HDA Controller> mem 0xf7800000-0xf7807fff irq 43 at
device 0.3 on pci7
isab0: <PCI-ISA bridge> at device 20.3 on pci0
isa0: <ISA bus> on isab0
acpi_button0: <Power Button> on acpi0
uart2: <16x50 with 256 byte FIFO> iomem
0xfedc9000-0xfedc9fff,0xfedc7000-0xfedc7fff irq 3 on acpi0
uart3: <16x50 with 256 byte FIFO> iomem
0xfedca000-0xfedcafff,0xfedc8000-0xfedc8fff irq 4 on acpi0
uart4: <16x50 with 256 byte FIFO> iomem
0xfedce000-0xfedcefff,0xfedcc000-0xfedccfff irq 3 on acpi0
uart5: <16x50 with 256 byte FIFO> iomem
0xfedcf000-0xfedcffff,0xfedcd000-0xfedcdfff irq 4 on acpi0
uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
ivhd0: <AMD-Vi/IOMMU ivhd with EFR> on acpi0
ivhd0: Flag:b0<IotlbSup,Coherent>
ivhd0: Features(type:0x11) MsiNumPPR = 0 PNBanks= 2 PNCounters= 0
ivhd0: Extended features[31:0]:22294ada<PPRSup,NXSup,GTSup,IASup> HATS =
0x2 GATS = 0x0 GLXSup = 0x1 SmiFSup = 0x1 SmiFRC = 0x2 GAMSup = 0x1
DualPortLogSup = 0x2 DualEventLogSup = 0x2
ivhd0: Extended features[62:32]:f77ef<USSup> Max PASID: 0x2f DevTblSegSup =
0x3 MarcSup = 0x1
ivhd0: supported paging level:7, will use only: 4
ivhd0: device range: 0x0 - 0xffff
ivhd0: PCI cap 0x190b640f@0x40 feature:19<IOTLB,EFR,CapExt>
orm0: <ISA Option ROM> at iomem 0xcf000-0xcffff pnpid ORM0000 on isa0
atkbdc0: <Keyboard controller (i8042)> at port 0x60,0x64 on isa0
atkbd0: <AT Keyboard> irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
atkbdc0: non-PNP ISA device will be removed from GENERIC in FreeBSD 12.
hwpstate0: <Cool`n'Quiet 2.0> on cpu0
ZFS filesystem version: 5
ZFS storage pool version: features support (5000)
Timecounters tick every 1.000 msec
hdacc0: <NVIDIA (0x0051) HDA CODEC> at cad 0 on hdac0
hdaa0: <NVIDIA (0x0051) Audio Function Group> at nid 1 on hdacc0
pcm0: <NVIDIA (0x0051) (HDMI/DP 8ch)> at nid 4 on hdaa0
pcm1: <NVIDIA (0x0051) (HDMI/DP 8ch)> at nid 5 on hdaa0
hdacc1: <Realtek ALC892 HDA CODEC> at cad 0 on hdac1
hdaa1: <Realtek ALC892 Audio Function Group> at nid 1 on hdacc1
pcm2: <Realtek ALC892 (Rear Analog 7.1/2.0)> at nid 20,22,21,23 and 24,26
on hdaa1
pcm3: <Realtek ALC892 (Front Analog)> at nid 27 and 25 on hdaa1
ugen0.1: <0x1022 XHCI root HUB> at usbus0
ugen1.1: <0x1022 XHCI root HUB> at usbus1
ada0 at ahcich0 bus 0 scbus0 target 0 lun 0
ada0: <SATA SSD SBFM61.3> ACS-4 ATA SATA 3.x device
ada0: Serial Number 19061924002944
ada0: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 8192bytes)
ada0: Command Queueing enabled
ada0: 228936MB (468862128 512 byte sectors)
uhub0: <0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0
ada1 at ahcich1 bus 0 scbus1 target 0 lun 0
ada1: <SATA SSD SBFM61.3> ACS-4 ATA SATA 3.x device
ada1: Serial Number 19070910240135
ada1: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 8192bytes)
ada1: Command Queueing enabled
ada1: 976762MB (2000409264 512 byte sectors)
uhub1: <0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus1
Trying to mount root from zfs:zroot/ROOT/default []...
Root mount waiting for: usbus1 usbus0
uhub1: 8 ports with 8 removable, self powered
uhub0: 22 ports with 22 removable, self powered
Root mount waiting for: usbus0
ugen0.2: <vendor 0x0409 product 0x005a> at usbus0
uhub2 on uhub0
uhub2: <vendor 0x0409 product 0x005a, class 9/0, rev 2.00/1.00, addr 1> on
usbus0
uhub2: 4 ports with 4 removable, self powered
Root mount waiting for: usbus0
ugen0.3: <Logitech USB Keyboard> at usbus0
ukbd0 on uhub2
ukbd0: <USB Keyboard> on usbus0
kbd2 at ukbd0
Root mount waiting for: usbus0
ugen0.4: <PixArt USB Optical Mouse> at usbus0
bridge0: Ethernet address: 02:06:fa:65:3d:00
tap10: Ethernet address: 00:bd:5d:ed:f6:0a
lo0: link state changed to UP
re0: link state changed to DOWN
re0: promiscuous mode enabled
bridge0: link state changed to DOWN
tap10: promiscuous mode enabled
intsmb0: <AMD FCH SMBus Controller> at device 20.0 on pci0
smbus0: <System Management Bus> on intsmb0
uhid0 on uhub2
uhid0: <USB Keyboard> on usbus0
ums0 on uhub2
ums0: <PixArt USB Optical Mouse, class 0/0, rev 1.10/1.00, addr 3> on usbus0
ums0: 3 buttons and [XYZ] coordinates ID=0
re0: link state changed to UP
bridge0: link state changed to UP

-- 
Aryeh M. Friedman, Lead Developer, http://www.PetiteCloud.org



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