背景

自从原神 4.3版本在2023年12月20日左右升级之后,对于amd gpu并没有专门的支持,amd gpu 运行时会崩溃在libgallium库(mesa提出的全新的3D引擎框架)中。


解决过程

查看waydroid上的issue,可以看到有很多大神尝试了不同的原神版本,都会崩溃。

https://github.com/waydroid/waydroid/issues/1206


以上代码包含了pc值,这就可以通过addr2line命令查看进入到aosp源代码的out/target/product/fde_arm64/symbols/vendor/lib64/dri目录下,可以看到有一个libgallimu_dri.so。使用addrline命令查看pc指针000000000099e844对应的源代码。可以看到代码在src/mesa/main/texobj.c 的620行。

1openfde/out/target/product/fde_arm64/symbols/vendor/lib64/dri$ addr2line  000000000099e844 -e  libgallium_dri.so  2openfde/external/mesa/src/mesa/main/texobj.c:620 3#打开该文件看到: 4 609 /** 5 610 * Reference (or unreference) a texture object. 6 611 * If '*ptr', decrement *ptr's refcount (and delete if it becomes zero). 7 612 * If 'tex' is non-null, increment its refcount. 8 613 * This is normally only called from the _mesa_reference_texobj() macro 9 614 * when there's a real pointer change. 10 615 */ 11 616 void 12 617 _mesa_reference_texobj_(struct gl_texture_object **ptr, 13 618 struct gl_texture_object *tex) 14 619 { 15 620 assert(ptr); 16 621 17 622 if (*ptr) { 18 623 /* Unreference the old texture */ 19 624 struct gl_texture_object *oldTex = *ptr; 20 625 21 626 assert(valid_texture_object(oldTex)); 22 627 (void) valid_texture_object; /* silence warning in release builds */ 23 628 24 629 assert(oldTex->RefCount > 0); 25 630 26 631 if (p_atomic_dec_zero(&oldTex->RefCount)) { 27

看倒620行是assert(ptr)。这是一个断言,说明ptr是不合法的指针。针对这个crash找不到更多线索。想着打开mesa的调试开关试试能不能找到其他有用的信息,打开调试开关,重新编译mesa,运行发现崩溃的地方变了,崩溃在external/mesa/src/mesa/main/uniforms.c的断言上,assert(unit < ARRAY_SIZE(prog->TexturesUsed)),发现ARRAY_SIZE(prog->TexturesUsed)为192,该值超过了最大下标,导致下标越界。

打开调试开关的具体位置修改如下:

1diff --git a/src/compiler/nir/meson.build b/src/compiler/nir/meson.build 2index 5ce85780cca..559ceb3aab4 100644 3--- a/src/compiler/nir/meson.build 4+++ b/src/compiler/nir/meson.build 5@@ -322,7 +322,7 @@ _libnir = static_library( 6 nir_opcodes_h, nir_constant_expressions_c, nir_builder_opcodes_h, 7 nir_intrinsics_c, nir_intrinsics_h, nir_intrinsics_indices_h], 8 include_directories : [inc_include, inc_src], 9- c_args : [c_msvc_compat_args, no_override_init_args, no_misleading_indentation], 10+ c_args : [c_msvc_compat_args, no_override_init_args, no_misleading_indentation, '-UNDEBUG'], 11 gnu_symbol_visibility : 'hidden', 12 dependencies : [idep_compiler, dep_valgrind], 13 build_by_default : false, 14 15diff --git a/src/gallium/auxiliary/meson.build b/src/gallium/auxiliary/meson.build 16index 96b0272c69b..1e6fabf3d70 100644 17--- a/src/gallium/auxiliary/meson.build 18+++ b/src/gallium/auxiliary/meson.build 19@@ -525,7 +525,7 @@ libgallium = static_library( 20 include_directories : [ 21 inc_loader, inc_gallium, inc_src, inc_include, include_directories('util') 22 ], 23- c_args : [c_msvc_compat_args, libgallium_extra_c_args], 24+ c_args : [c_msvc_compat_args, libgallium_extra_c_args, '-DDEBUG'], 25 cpp_args : [cpp_msvc_compat_args], 26 gnu_symbol_visibility : 'hidden', 27 dependencies : [ 28 29diff --git a/src/gallium/drivers/llvmpipe/meson.build b/src/gallium/drivers/llvmpipe/meson.build 30index 38ff88980f9..12d51733c1f 100644 31--- a/src/gallium/drivers/llvmpipe/meson.build 32+++ b/src/gallium/drivers/llvmpipe/meson.build 33@@ -115,7 +115,7 @@ files_llvmpipe = files( 34 libllvmpipe = static_library( 35 'llvmpipe', 36 [files_llvmpipe, sha1_h], 37- c_args : [c_msvc_compat_args], 38+ c_args : [c_msvc_compat_args, '-DDEBUG'], 39 cpp_args : [cpp_msvc_compat_args], 40 gnu_symbol_visibility : 'hidden', 41 include_directories : [inc_gallium, inc_gallium_aux, inc_include, inc_src], 42 43diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c 44index 43a68d130e1..b5cbc360863 100644 45--- a/src/mesa/main/debug.c 46+++ b/src/mesa/main/debug.c 47@@ -22,6 +22,7 @@ 48 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 49 * OTHER DEALINGS IN THE SOFTWARE. 50 */ 51+#define LOG_NDEBUG 0 52 53 #include <stdio.h> 54 #include "errors.h" 55@@ -41,6 +42,7 @@ 56 57 #include "state_tracker/st_cb_texture.h" 58 #include "state_tracker/st_cb_readpixels.h" 59+#undef NDEBUG 60 61 static const char * 62 tex_target_name(GLenum tgt) 63 64diff --git a/src/mesa/main/errors.c b/src/mesa/main/errors.c 65index 70813744cd2..540a1d946f2 100644 66--- a/src/mesa/main/errors.c 67+++ b/src/mesa/main/errors.c 68@@ -26,6 +26,7 @@ 69 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 70 * OTHER DEALINGS IN THE SOFTWARE. 71 */ 72+#define LOG_NDEBUG 0 73 74 75 #include <stdarg.h> 76@@ -38,6 +39,8 @@ 77 #include "util/detect_os.h" 78 #include "util/log.h" 79 #include "api_exec_decl.h" 80+#undef NDEBUG 81 82 static void 83 output_if_debug(enum mesa_log_level level, const char *outputString) 84 85diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h 86index 6eceae83a9c..b573d07995e 100644 87--- a/src/mesa/main/mtypes.h 88+++ b/src/mesa/main/mtypes.h 89@@ -61,6 +61,7 @@ 90 #include "pipe/p_state.h" 91 92 #include "frontend/api.h" 93+#undef NDEBUG 94 95 #ifdef __cplusplus 96 extern "C" { 97 98diff --git a/src/mesa/meson.build b/src/mesa/meson.build 99index d07b8fb33a7..639a744d10a 100644 100--- a/src/mesa/meson.build 101+++ b/src/mesa/meson.build 102@@ -470,7 +470,7 @@ endif 103 libmesa = static_library( 104 'mesa', 105 files_libmesa, 106- c_args : [c_msvc_compat_args, _mesa_windows_args], 107+ c_args : [c_msvc_compat_args, _mesa_windows_args, '-DDEBUG', '-UNDEBUG'], 108 cpp_args : [cpp_msvc_compat_args, _mesa_windows_args], 109 gnu_symbol_visibility : 'hidden', 110 include_directories : [ 111 112diff --git a/src/mesa/vbo/vbo.h b/src/mesa/vbo/vbo.h 113index f11824cdaa4..fbf5a5e9a15 100644 114--- a/src/mesa/vbo/vbo.h 115+++ b/src/mesa/vbo/vbo.h 116@@ -38,6 +38,7 @@ 117 #include "main/macros.h" 118 #include "vbo_attrib.h" 119 #include "gallium/include/pipe/p_state.h" 120+#undef NDEBUG 121 122diff --git a/src/util/log.h b/src/util/log.h 123index 17670cc97d9..2342970bf1f 100644 124--- a/src/util/log.h 125+++ b/src/util/log.h 126@@ -32,6 +32,7 @@ 127 #ifdef __cplusplus 128 extern "C" { 129 #endif 130+#define DEBUG 1

我们将这个问题反馈到mesa官方后(

),得到了一个修复(原神在amdgpu崩溃修复)。但是修复崩溃后,还存在丢失纹理的问题(就是游戏中变成一些方方正正的盒子)。如下图所示。

解决方法

针对这个问题YogSottot给了我们一个解决方案,就是启用mesa的xmlconfig,他的提议在此


这个功能的背景是一部分android游戏并不感知开源gpu驱动,当他们看到一款未知驱动时,通常会用最低性能去运行。所以,针对指定的游戏程序名,使用xmlconfig记录的特性值覆盖vendor或者renderer设置返回给游戏程序以获取更高的fps和更好的渲染。修复纹理丢失的问题是使用另外一款gpu的名称代替amd gpu来返回给原神。

1freedreno: Unleash the dragon! 2 3 4A number of android games are so far, sadly, unaware of open source 5drivers. And when they see an unknown driver they lump it in the lowest 6performance tier, artificially limiting framerate and/or gfx settings. 7So until the games catch up, use driconf to override vendor/renderer 8settings for moar fps and nicer gfx. 9 10Furthermore, some games seem to be limiting *too* conservatively when 11we otherwise have plenty of headroom even if we claim to be a bigger 12adreno. Possibly a concession to battery life or tighter thermal 13constraints in a phone, as compared to something like a chromebook. 14Or maybe the flagship gaming phone thing is a scam ;-) 15

在openfde下的mesa为android启动xmlconfig的提交如下:

在本提交中hardcode了dri配置文件夹的路径为/vendor/etc/drirc.d,并将00-mesa-default.conf添加了原神相关的兼容内容。

在关闭OpenFDE,登录linux系统的情况下可以手动挂载vendor镜像来查看:

1#将vendor镜像挂载到/mnt目录。 2sudo mount /usr/share/waydroid-extra/images/vendor.img /mnt 3#打开xml配置文件 4sudo vim /mnt/etc/drirc.d/00-mesa-defaults.conf  5910 <application name="Genshin Impact" executable="com.miHoYo.Yuanshen"> 6911            <option name="ignore_discard_framebuffer" value="true" /> 7912    <option name="force_gl_renderer" value="Adreno (TM) 630"/> 8913           <option name="force_gl_vendor" value="Qualcomm"/> 9914 </application> 10 11esc #按下esc vim 退出到命令模式 12:wq #输入:wq保存退出。 13sudo umount /mnt #卸载镜像

需要注意的是这个兼容方案,有时候会造成原神整个画面显示红色问题。此时需要先注释或删除以上910~914行的内容。先让原神正常启动,进入画面(带纹理丢失的画面)。然后退出fde,再按上述步骤,添加好910~914的内容。再次进入fde,才能正常进入画面。

有兴趣的可以查看