mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 11:50:09 +01:00
freedreno/devices: Inline a690 quirk
Similarly as on FD621, we only have one GPU-specific quirk, no need to use a separate dictionary for it. Signed-off-by: Valentine Burley <valentine.burley@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31821>
This commit is contained in:
parent
7f63fa34da
commit
45bb8002df
1 changed files with 1 additions and 5 deletions
|
|
@ -432,10 +432,6 @@ a6xx_gen4 = A6XXProps(
|
|||
#has_early_preamble = True,
|
||||
)
|
||||
|
||||
a6xx_a690_quirk = A6XXProps(
|
||||
broken_ds_ubwc_quirk = True,
|
||||
)
|
||||
|
||||
add_gpus([
|
||||
GPUId(605), # TODO: Test it, based only on libwrapfake dumps
|
||||
GPUId(608), # TODO: Test it, based only on libwrapfake dumps
|
||||
|
|
@ -788,7 +784,7 @@ add_gpus([
|
|||
GPUId(chip_id=0xffff06090000, name="FD690"), # Default no-speedbin fallback
|
||||
], A6xxGPUInfo(
|
||||
CHIP.A6XX,
|
||||
[a6xx_base, a6xx_gen4, a6xx_a690_quirk],
|
||||
[a6xx_base, a6xx_gen4, A6XXProps(broken_ds_ubwc_quirk = True)],
|
||||
num_ccu = 8,
|
||||
tile_align_w = 64,
|
||||
tile_align_h = 32,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue