Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 110875
b: refs/heads/master
c: 8c65008
h: refs/heads/master
i:
  110873: 0713966
  110871: 3466643
v: v3
  • Loading branch information
Mauro Carvalho Chehab authored and Jaroslav Kysela committed Aug 6, 2008
1 parent dbf4a97 commit a8ca10c
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e8f9ae2a4a0654e7798b8c0ae956e3f0fdc23c8d
refs/heads/master: 8c650087992f1d7a3a7be2e632f4e85a52d20619
35 changes: 35 additions & 0 deletions trunk/sound/pci/hda/patch_sigmatel.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ enum {
STAC_MACBOOK_PRO_V2,
STAC_IMAC_INTEL,
STAC_IMAC_INTEL_20,
STAC_ECS_202,
STAC_922X_DELL_D81,
STAC_922X_DELL_D82,
STAC_922X_DELL_M81,
Expand Down Expand Up @@ -1586,6 +1587,11 @@ static unsigned int intel_mac_v5_pin_configs[10] = {
0x400000fc, 0x400000fb,
};

static unsigned int ecs202_pin_configs[10] = {
0x0221401f, 0x02a19020, 0x01a19020, 0x01114010,
0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1,
0x9037012e, 0x40e000f2,
};

static unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
[STAC_D945_REF] = ref922x_pin_configs,
Expand All @@ -1604,6 +1610,7 @@ static unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
[STAC_MACBOOK_PRO_V2] = intel_mac_v3_pin_configs,
[STAC_IMAC_INTEL] = intel_mac_v2_pin_configs,
[STAC_IMAC_INTEL_20] = intel_mac_v3_pin_configs,
[STAC_ECS_202] = ecs202_pin_configs,
[STAC_922X_DELL_D81] = dell_922x_d81_pin_configs,
[STAC_922X_DELL_D82] = dell_922x_d82_pin_configs,
[STAC_922X_DELL_M81] = dell_922x_m81_pin_configs,
Expand All @@ -1627,6 +1634,7 @@ static const char *stac922x_models[STAC_922X_MODELS] = {
[STAC_MACBOOK_PRO_V2] = "macbook-pro",
[STAC_IMAC_INTEL] = "imac-intel",
[STAC_IMAC_INTEL_20] = "imac-intel-20",
[STAC_ECS_202] = "ecs202",
[STAC_922X_DELL_D81] = "dell-d81",
[STAC_922X_DELL_D82] = "dell-d82",
[STAC_922X_DELL_M81] = "dell-m81",
Expand Down Expand Up @@ -1713,6 +1721,33 @@ static struct snd_pci_quirk stac922x_cfg_tbl[] = {
"unknown Dell", STAC_922X_DELL_D81),
SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
"Dell XPS M1210", STAC_922X_DELL_M82),
/* ECS/PC Chips boards */
SND_PCI_QUIRK(0x1019, 0x2144,
"ECS/PC chips", STAC_ECS_202),
SND_PCI_QUIRK(0x1019, 0x2608,
"ECS/PC chips", STAC_ECS_202),
SND_PCI_QUIRK(0x1019, 0x2633,
"ECS/PC chips P17G/1333", STAC_ECS_202),
SND_PCI_QUIRK(0x1019, 0x2811,
"ECS/PC chips", STAC_ECS_202),
SND_PCI_QUIRK(0x1019, 0x2812,
"ECS/PC chips", STAC_ECS_202),
SND_PCI_QUIRK(0x1019, 0x2813,
"ECS/PC chips", STAC_ECS_202),
SND_PCI_QUIRK(0x1019, 0x2814,
"ECS/PC chips", STAC_ECS_202),
SND_PCI_QUIRK(0x1019, 0x2815,
"ECS/PC chips", STAC_ECS_202),
SND_PCI_QUIRK(0x1019, 0x2816,
"ECS/PC chips", STAC_ECS_202),
SND_PCI_QUIRK(0x1019, 0x2817,
"ECS/PC chips", STAC_ECS_202),
SND_PCI_QUIRK(0x1019, 0x2818,
"ECS/PC chips", STAC_ECS_202),
SND_PCI_QUIRK(0x1019, 0x2819,
"ECS/PC chips", STAC_ECS_202),
SND_PCI_QUIRK(0x1019, 0x2820,
"ECS/PC chips", STAC_ECS_202),
{} /* terminator */
};

Expand Down

0 comments on commit a8ca10c

Please sign in to comment.