snd_hda: add 32-bit memory quirk for Creative Sound Blaster Audigy FX

Despite still being in production the device appeared not able to use
memory above BUS_SPACE_MAXADDR_32BIT, and if your desktop has a lot of
memory there is a high chance driver would allocate inaccessible memory.

Submitted by:	wulf
Reviewed by:	mav

(cherry picked from commit 89189224ad)
This commit is contained in:
Gleb Smirnoff 2024-02-23 11:30:13 -08:00
parent f45ecf5fe4
commit a15b8e3294
2 changed files with 2 additions and 0 deletions

View file

@ -201,6 +201,7 @@ static const struct {
{ HDA_VMWARE, "VMware", 0, 0 },
{ HDA_SIS_966, "SiS 966/968", 0, 0 },
{ HDA_ULI_M5461, "ULI M5461", 0, 0 },
{ HDA_CREATIVE_SB1570, "Creative SB Audigy FX", 0, HDAC_QUIRK_64BIT },
/* Unknown */
{ HDA_INTEL_ALL, "Intel", 0, 0 },
{ HDA_NVIDIA_ALL, "NVIDIA", 0, 0 },

View file

@ -192,6 +192,7 @@
/* Creative */
#define CREATIVE_VENDORID 0x1102
#define HDA_CREATIVE_SB1570 HDA_MODEL_CONSTRUCT(CREATIVE, 0x0012)
#define HDA_CREATIVE_ALL HDA_MODEL_CONSTRUCT(CREATIVE, 0xffff)
/* VIA */