Display Driver

  • In this section, you are going to learn

  • Display driver

  • Terminology

#

Version

Freebsd

14.1.0

  • Architecture

  • The following command can be used to identify which graphics card is installed in the system

  • Vendor name is Intel which means, system’s display hardware is an Intel graphics adapter

test:~$ pciconf -lv | grep -B4 VGA
vgapci0@pci0:0:2:0:     class=0x030000 rev=0x02 hdr=0x00 vendor=0x8086 device=0x9b41 subvendor=0x17aa subdevice=0x382f
    vendor     = Intel Corporation
    device     = CometLake-U GT2 [UHD Graphics]
    class      = display
    subclass   = VGA

Size

69K

Source path :

/usr/ports/x11/xrandr/work/xrandr-1.5.2

List of .c files :

xrandr.c

nm output :

$ xrandr
libXrandr.so.2 => /usr/local/lib/libXrandr.so.2 (0x29af3e471000)
libXrender.so.1 => /usr/local/lib/libXrender.so.1 (0x29af3f82e000)
libX11.so.6 => /usr/local/lib/libX11.so.6 (0x29af3ec9d000)
libm.so.5 => /lib/libm.so.5 (0x29af3ffd2000)
libc.so.7 => /lib/libc.so.7 (0x29af40e48000)
libXext.so.6 => /usr/local/lib/libXext.so.6 (0x29af414d3000)
libxcb.so.1 => /usr/local/lib/libxcb.so.1 (0x29af42300000)
libthr.so.3 => /lib/libthr.so.3 (0x29af43032000)
libXau.so.6 => /usr/local/lib/libXau.so.6 (0x29af4350f000)
libXdmcp.so.6 => /usr/local/lib/libXdmcp.so.6 (0x29af43d89000)
[vdso] (0x29af3d535000)
  • Connect a monitor to your system via HDMI or VGA cable

  • Xrandr is used to set the size, orientation and/or reflection of the outputs for a screen. It can also set the screen size.

  • Check the status by running below command

test:~$ xrandr -q
  • set resolution by running below command

test:~$ xrandr --output HDMI-2 --mode 1920x1080
  • set resolution with refresh rate by running below command

test:~$ xrandr --output HDMI-2 --mode 1920x1080 --rate 60.00
  • Flips the display horizontally

test:~$ xrandr -x
  • Flips the display vertically

test:~$ xrandr -y
  • Rotates the display to the default orientation

test:~$ xrandr -o normal
  • Rotates the display to the left

test:~$ xrandr -o left
  • Rotates the display to the right

test:~$ xrandr -o right
  • Lists currently active monitors

test:~$ xrandr --listmonitors
  • Shows information about display configuration

test:~$ xrandr --verbose
  • Displays the current screen configuration

test:~$ xrandr --current
  • Lists available display output providers

test:~$ xrandr --listproviders
  • Lists all currently active monitors

Size :

2.9M

Source path :

/usr/ports/graphics/drm-510-kmod/work/drm-kmod-drm_v5.10.163_7/drivers/gpu/drm/i915

Bin path :

/boot/modules

List of C files :

NM output :

Size :

31K

Source path :

/usr/src/sys/compat/linuxkpi/common/src

Bin path :

/boot/modules

List of C files :

linux_hdmi.c

NM output :

Size :

2.9M

Source path :

/usr/ports/graphics/drm-510-kmod/work/drm-kmod-drm_v5.10.163_7/drivers/gpu/drm/i915

Bin path :

/boot/modules

List of .c files :

NM output :

Size :

50K

Source path :

/usr/ports/graphics/drm-510-kmod/work/drm-kmod-drm_v5.10.163_7/drivers/dma-buf

Bin path :

/boot/modules

List of C files :

  • dma-buf-kmod.c

  • dma-buf.c

  • dma-fence-array.c

  • dma-fence-chain.c

  • dma-fence.c

  • dma-resv.c

  • sync_file.c

NM output :

  • Use case

test:~$
test:~$
test:~$
test:~$
test:~$
test:~$
test:~$
test:~$
test:~$
test:~$
test:~$