Radeon Video

From Alpine Linux
Revision as of 20:30, 8 October 2017 by Head on a Stick (talk | contribs) (Created page with "The following instructions are for modern AMD GPU chipsets covered by the radeon driver. == Setup Xorg/udev == # Run the Alpine setup scripts#setup-xorg-base|setup-xorg-ba...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The following instructions are for modern AMD GPU chipsets covered by the radeon driver.

Setup Xorg/udev

  1. Run the setup-xorg-base script.
  2. Install the Xorg AMD video drivers:

    # apk add xf86-video-ati

  3. For newer devices, use:

    # apk add xf86-video-amdgpu

  4. Enable #Kernel Modesetting (KMS). Specifically, the fbcon module is necessary, or leaving Xorg (via Ctrl+Alt+F1 or quitting) will result in a black screen until the machine is power cycled. If you have already launch Xorg and don't want to experience this effect, you can modprobe fbcon while Xorg is running.

Kernel Modesetting (KMS)

To enable KMS at boot:

  1. Add the radeon and fbcon modules to /etc/modules:

    $ echo radeon >> /etc/modules
    $ echo fbcon >> /etc/modules

  2. Install mkinitfs:

    apk add mkinitfs

  3. Enable the kms feature in the mkinitfs configuration by adding it to the features variable, e.g.,

    Contents of /etc/mkinitfs/mkinitfs.conf

    features="keymap cryptsetup kms ata base ide scsi usb virtio ext4"
  4. Run mkinitfs.
  5. Reboot to test the configuration.

Fixing MESA-LOADER errors

The linux-hardened kernel package places restrictions on sysfs and will prevent the MESA-LOADER from working as a normal user even if added to the video group.

See https://bugs.alpinelinux.org/issues/7265

Either switch to the linux-vanilla package or apply the grsec_sysfs_restrict=0 kernel parameter to allow normal users to access hardware acceleration on the desktop.