This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From c174f3201f58f57571f5676f07041eb50060d181 Mon Sep 17 00:00:00 2001 | |
From: Jon Nettleton <[email protected]> | |
Date: Tue, 14 Jul 2020 15:01:42 +0200 | |
Subject: [PATCH] radeonsi: Temporary patch to fix corruption with persitent | |
buffers | |
Until further debugging is done set kernel_flushes_hdp_before_ib to | |
false so persistent buffers are allocated from GTT memory. I have | |
an open issue for this in mesa that perhaps this should become a | |
runtime DRI option that can be enabled. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_drivers+=" amdgpu " | |
install_items+=" /lib/firmware/amdgpu/polaris10_ce_2.bin " | |
install_items+=" /lib/firmware/amdgpu/polaris10_ce.bin " | |
install_items+=" /lib/firmware/amdgpu/polaris10_k2_smc.bin " | |
install_items+=" /lib/firmware/amdgpu/polaris10_k_mc.bin " | |
install_items+=" /lib/firmware/amdgpu/polaris10_k_smc.bin " | |
install_items+=" /lib/firmware/amdgpu/polaris10_mc.bin " | |
install_items+=" /lib/firmware/amdgpu/polaris10_me_2.bin " | |
install_items+=" /lib/firmware/amdgpu/polaris10_me.bin " | |
install_items+=" /lib/firmware/amdgpu/polaris10_mec2_2.bin " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From d72aa8ae74ffb7329003f9f23ffa05833af951ab Mon Sep 17 00:00:00 2001 | |
From: Jon Nettleton <[email protected]> | |
Date: Fri, 14 Aug 2020 13:36:08 +0200 | |
Subject: [PATCH] radeonsi: On Aarch64 force persistent buffers to GTT | |
This fixes a glamore corruption issue on the HoneyComb and by | |
internet reports should also fix problems seen on Huaweii | |
Kunpeng hardware. | |
The root cause of the corruption needs to be worked out, but |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/CMakeLists.txt b/CMakeLists.txt | |
index 08d3ceb8..27678144 100644 | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -428,10 +428,6 @@ if (NACL) | |
add_library(srclibs-nacl-module EXCLUDE_FROM_ALL ${NACLLIST_MODULE}) | |
set_target_properties(srclibs-nacl-module PROPERTIES POSITION_INDEPENDENT_CODE 1 FOLDER "libs") | |
set(LIBS_BASE ${LIBS_BASE} srclibs-nacl-module) | |
-else() | |
- add_library(srclibs-nacl-native EXCLUDE_FROM_ALL ${NACLLIST_NATIVE}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <signal.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <time.h> | |
#include <unistd.h> | |
#include <stdio.h> | |
#include <fcntl.h> | |
#include <linux/fb.h> | |
#include <sys/mman.h> | |
#include <sys/ioctl.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 6cf513dc8c5ab758072d894f10a58fbb4a146bd6 Mon Sep 17 00:00:00 2001 | |
From: Jon Nettleton <[email protected]> | |
Date: Wed, 6 Oct 2021 09:16:35 -0400 | |
Subject: [PATCH] Aarch64: Make memcpy more compatible with device memory | |
For normal non-cacheable memory ACE supports 4x128 bit r/w WRAP | |
transfers or 1x128 bit r/w INCR transfers. By re-ordering the | |
stp's in memcpy / memmove we can accomodate this better without | |
impacting the existing code. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
evdev:input:b*v0B05p193Ee0111* | |
KEYBOARD_KEY_10081=reserved | |
KEYBOARD_KEY_10082=reserved | |
KEYBOARD_KEY_70070=reserved | |
KEYBOARD_KEY_70071=reserved | |
KEYBOARD_KEY_70072=reserved | |
KEYBOARD_KEY_70073=reserved | |
KEYBOARD_KEY_70074=reserved | |
KEYBOARD_KEY_70075=reserved | |
KEYBOARD_KEY_70076=reserved |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
installation | |
modprobe.blacklist=amdgpu | |
kernel commandline: | |
grubby --args="amdgpu.pcie_gen_cap=0x4 usbcore.autosuspend=-1 arm-smmu.disable_bypass=0 iommu.passthrough=1" --update-kernel=ALL | |
Early Boot dracut | |
/etc/dracut.conf.d/amdgpu.conf | |
add_drivers+=" amdgpu " | |
install_items+=" /lib/firmware/amdgpu/polaris*.bin.xz " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import argparse | |
import cv2 | |
import numpy as np | |
import signal | |
import sys | |
import time | |
from threading import Thread | |
import importlib.util |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<driconf> | |
<!-- Please always enable app-specific workarounds for all drivers and | |
screens. --> | |
<device> | |
<application name="XWayland" executable="Xwayland"> | |
<option name="mesa_extension_override" value="-GL_ARB_buffer_storage" /> | |
</application> | |
<application name="Xorg" executable="Xorg"> | |
<option name="mesa_extension_override" value="-GL_ARB_buffer_storage" /> | |
</application> |
OlderNewer