Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 93ed1503 authored by Tobin Davis's avatar Tobin Davis Committed by Jaroslav Kysela
Browse files

[ALSA] hda-codec - Add 5 stack audio support for Intel 965 systems



This patch renames the 965_2112 function ids to 965_3ST, and
adds functional support for 965_5ST (5 stack 7.1 surround).

Signed-off-by: default avatarTobin Davis <tdavis@dsl-only.net>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarJaroslav Kysela <perex@suse.cz>
parent 35a49934
Loading
Loading
Loading
Loading
+10 −0
Original line number Original line Diff line number Diff line
@@ -859,6 +859,16 @@ Prior to version 0.9.0rc4 options had a 'snd_' prefix. This was removed.
	  laptop-dig	ditto with SPDIF
	  laptop-dig	ditto with SPDIF
	  auto		auto-config reading BIOS (default)
	  auto		auto-config reading BIOS (default)


	STAC9200/9205/9220/9221/9254
	  ref		Reference board
	  3stack	D945 3stack
	  5stack	D945 5stack + SPDIF

	STAC9227/9228/9229/927x
	  ref		Reference board
	  3stack	D965 3stack
	  5stack	D965 5stack + SPDIF

	STAC9872
	STAC9872
	  vaio		Setup for VAIO FE550G/SZ110
	  vaio		Setup for VAIO FE550G/SZ110
	  vaio-ar Setup for VAIO AR
	  vaio-ar Setup for VAIO AR
+81 −71
Original line number Original line Diff line number Diff line
@@ -42,9 +42,10 @@
#define STAC_D945GTP3		1
#define STAC_D945GTP3		1
#define STAC_D945GTP5		2
#define STAC_D945GTP5		2
#define STAC_MACMINI		3
#define STAC_MACMINI		3
#define STAC_D965_2112		4
#define STAC_922X_MODELS	4	/* number of 922x models */
#define STAC_D965_284B		5
#define STAC_D965_3ST		4
#define STAC_922X_MODELS	6	/* number of 922x models */
#define STAC_D965_5ST		5
#define STAC_927X_MODELS	6	/* number of 922x models */


struct sigmatel_spec {
struct sigmatel_spec {
	struct snd_kcontrol_new *mixers[4];
	struct snd_kcontrol_new *mixers[4];
@@ -111,24 +112,10 @@ static hda_nid_t stac922x_adc_nids[2] = {
        0x06, 0x07,
        0x06, 0x07,
};
};


static hda_nid_t stac9227_adc_nids[2] = {
        0x07, 0x08,
};

#if 0
static hda_nid_t d965_2112_dac_nids[3] = {
        0x02, 0x03, 0x05,
};
#endif

static hda_nid_t stac922x_mux_nids[2] = {
static hda_nid_t stac922x_mux_nids[2] = {
        0x12, 0x13,
        0x12, 0x13,
};
};


static hda_nid_t stac9227_mux_nids[2] = {
        0x15, 0x16,
};

static hda_nid_t stac927x_adc_nids[3] = {
static hda_nid_t stac927x_adc_nids[3] = {
        0x07, 0x08, 0x09
        0x07, 0x08, 0x09
};
};
@@ -146,7 +133,8 @@ static hda_nid_t stac9205_mux_nids[2] = {
};
};


static hda_nid_t stac9200_pin_nids[8] = {
static hda_nid_t stac9200_pin_nids[8] = {
	0x08, 0x09, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12,
	0x08, 0x09, 0x0d, 0x0e, 
	0x0f, 0x10, 0x11, 0x12,
};
};


static hda_nid_t stac922x_pin_nids[10] = {
static hda_nid_t stac922x_pin_nids[10] = {
@@ -206,17 +194,9 @@ static struct hda_verb stac922x_core_init[] = {
	{}
	{}
};
};


static struct hda_verb stac9227_core_init[] = {
static struct hda_verb d965_core_init[] = {
	/* set master volume and direct control */	
	{ 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
	/* unmute node 0x1b */
	{ 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
	{}
};

static struct hda_verb d965_2112_core_init[] = {
	/* set master volume and direct control */	
	/* set master volume and direct control */	
	{ 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
	{ 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
	/* unmute node 0x1b */
	/* unmute node 0x1b */
	{ 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
	{ 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
	/* select node 0x03 as DAC */	
	/* select node 0x03 as DAC */	
@@ -386,6 +366,8 @@ static unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
};
};


static struct hda_board_config stac922x_cfg_tbl[] = {
static struct hda_board_config stac922x_cfg_tbl[] = {
	{ .modelname = "5stack", .config = STAC_D945GTP5 },
	{ .modelname = "3stack", .config = STAC_D945GTP3 },
	{ .modelname = "ref",
	{ .modelname = "ref",
	  .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2668,	/* DFI LanParty */
	  .pci_subdevice = 0x2668,	/* DFI LanParty */
@@ -471,99 +453,127 @@ static struct hda_board_config stac922x_cfg_tbl[] = {
	{ .pci_subvendor = 0x8384,
	{ .pci_subvendor = 0x8384,
	  .pci_subdevice = 0x7680,
	  .pci_subdevice = 0x7680,
	  .config = STAC_MACMINI },	/* Apple Mac Mini (early 2006) */
	  .config = STAC_MACMINI },	/* Apple Mac Mini (early 2006) */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2112,
	  .config = STAC_D965_2112 },
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x284b,
	  .config = STAC_D965_284B },
	{} /* terminator */
	{} /* terminator */
};
};


static unsigned int ref927x_pin_configs[14] = {
static unsigned int ref927x_pin_configs[14] = {
	0x01813122, 0x01a19021, 0x01014010, 0x01016011,
	0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
	0x01012012, 0x01011014, 0x40000100, 0x40000100, 
	0x01a19040, 0x01011012, 0x01016011, 0x0101201f, 
	0x40000100, 0x40000100, 0x40000100, 0x01441030,
	0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070,
	0x01c41030, 0x40000100,
	0x01c42190, 0x40000100,
};
};


static unsigned int d965_2112_pin_configs[14] = {
static unsigned int d965_3st_pin_configs[14] = {
	0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
	0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
	0x01a19021, 0x01813024, 0x40000100, 0x40000100,
	0x01a19021, 0x01813024, 0x40000100, 0x40000100,
	0x40000100, 0x40000100, 0x40000100, 0x40000100,
	0x40000100, 0x40000100, 0x40000100, 0x40000100,
	0x40000100, 0x40000100
	0x40000100, 0x40000100
};
};


static unsigned int *stac927x_brd_tbl[] = {
static unsigned int d965_5st_pin_configs[14] = {
	0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
	0x01a19040, 0x01011012, 0x01016011, 0x40000100,
	0x40000100, 0x40000100, 0x40000100, 0x01442070,
	0x40000100, 0x40000100
};

static unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = {
	[STAC_REF] =	ref927x_pin_configs,
	[STAC_REF] =	ref927x_pin_configs,
	[STAC_D965_2112] = d965_2112_pin_configs,
	[STAC_D965_3ST] = d965_3st_pin_configs,
	[STAC_D965_5ST] = d965_5st_pin_configs,
};
};


static struct hda_board_config stac927x_cfg_tbl[] = {
static struct hda_board_config stac927x_cfg_tbl[] = {
	{ .modelname = "5stack", .config = STAC_D965_5ST },
	{ .modelname = "3stack", .config = STAC_D965_3ST },
	{ .modelname = "ref",
	{ .modelname = "ref",
	  .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2668,	/* DFI LanParty */
	  .pci_subdevice = 0x2668,	/* DFI LanParty */
	  .config = STAC_REF },		/* SigmaTel reference board */
	  .config = STAC_REF },		/* SigmaTel reference board */
	/* SigmaTel 9227 reference board */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x284b,
	  .config = STAC_D965_284B },
	 /* Intel 946 based systems */
	 /* Intel 946 based systems */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x3d01,
	  .pci_subdevice = 0x3d01,
	  .config = STAC_D965_2112 }, /* D946  configuration */
	  .config = STAC_D965_3ST }, /* D946  configuration */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0xa301,
	  .pci_subdevice = 0xa301,
	  .config = STAC_D965_2112 }, /* Intel D946GZT - 3 stack  */
	  .config = STAC_D965_3ST }, /* Intel D946GZT - 3 stack  */
	/* 965 based systems */
	/* 965 based 3 stack systems */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2116,
	  .pci_subdevice = 0x2116,
	  .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
	  .config = STAC_D965_3ST }, /* Intel D965 3Stack config */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2115,
	  .pci_subdevice = 0x2115,
	  .config = STAC_D965_2112 }, /* Intel DQ965WC - 3 Stack  */
	  .config = STAC_D965_3ST }, /* Intel DQ965WC - 3 Stack  */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2114,
	  .pci_subdevice = 0x2114,
	  .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
	  .config = STAC_D965_3ST }, /* Intel D965 3Stack config */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2113,
	  .pci_subdevice = 0x2113,
	  .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
	  .config = STAC_D965_3ST }, /* Intel D965 3Stack config */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2112,
	  .pci_subdevice = 0x2112,
	  .config = STAC_D965_2112 }, /* Intel DG965MS - 3 Stack  */
	  .config = STAC_D965_3ST }, /* Intel DG965MS - 3 Stack  */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2111,
	  .pci_subdevice = 0x2111,
	  .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
	  .config = STAC_D965_3ST }, /* Intel D965 3Stack config */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2110,
	  .pci_subdevice = 0x2110,
	  .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
	  .config = STAC_D965_3ST }, /* Intel D965 3Stack config */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2009,
	  .pci_subdevice = 0x2009,
	  .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
	  .config = STAC_D965_3ST }, /* Intel D965 3Stack config */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2008,
	  .pci_subdevice = 0x2008,
	  .config = STAC_D965_2112 }, /* Intel DQ965GF - 3 Stack  */
	  .config = STAC_D965_3ST }, /* Intel DQ965GF - 3 Stack  */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2007,
	  .pci_subdevice = 0x2007,
	  .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
	  .config = STAC_D965_3ST }, /* Intel D965 3Stack config */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2006,
	  .pci_subdevice = 0x2006,
	  .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
	  .config = STAC_D965_3ST }, /* Intel D965 3Stack config */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2005,
	  .pci_subdevice = 0x2005,
	  .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
	  .config = STAC_D965_3ST }, /* Intel D965 3Stack config */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2004,
	  .pci_subdevice = 0x2004,
	  .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
	  .config = STAC_D965_3ST }, /* Intel D965 3Stack config */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2003,
	  .pci_subdevice = 0x2003,
	  .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
	  .config = STAC_D965_3ST }, /* Intel D965 3Stack config */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2002,
	  .pci_subdevice = 0x2002,
	  .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
	  .config = STAC_D965_3ST }, /* Intel D965 3Stack config */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2001,
	  .pci_subdevice = 0x2001,
	  .config = STAC_D965_2112 }, /* Intel DQ965GF - 3 Stackg */
	  .config = STAC_D965_3ST }, /* Intel DQ965GF - 3 Stack */
	/* 965 based 5 stack systems */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2301,
	  .config = STAC_D965_5ST }, /* Intel DG965 - 5 Stack */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2302,
	  .config = STAC_D965_5ST }, /* Intel DG965 - 5 Stack */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2303,
	  .config = STAC_D965_5ST }, /* Intel DG965 - 5 Stack */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2304,
	  .config = STAC_D965_5ST }, /* Intel DG965 - 5 Stack */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2305,
	  .config = STAC_D965_5ST }, /* Intel DG965 - 5 Stack */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2501,
	  .config = STAC_D965_5ST }, /* Intel DG965MQ - 5 Stack */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2502,
	  .config = STAC_D965_5ST }, /* Intel DG965 - 5 Stack */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2503,
	  .config = STAC_D965_5ST }, /* Intel DG965 - 5 Stack */
	{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
	  .pci_subdevice = 0x2504,
	  .config = STAC_D965_5ST }, /* Intel DQ965GF - 5 Stack */
	{} /* terminator */
	{} /* terminator */
};
};


@@ -1546,18 +1556,18 @@ static int patch_stac927x(struct hda_codec *codec)
	}
	}


	switch (spec->board_config) {
	switch (spec->board_config) {
	case STAC_D965_2112:
	case STAC_D965_3ST:
		spec->adc_nids = stac927x_adc_nids;
		spec->adc_nids = stac927x_adc_nids;
		spec->mux_nids = stac927x_mux_nids;
		spec->mux_nids = stac927x_mux_nids;
		spec->num_muxes = 3;
		spec->num_muxes = 3;
		spec->init = d965_2112_core_init;
		spec->init = d965_core_init;
		spec->mixer = stac9227_mixer;
		spec->mixer = stac9227_mixer;
		break;
		break;
	case STAC_D965_284B:
	case STAC_D965_5ST:
		spec->adc_nids = stac9227_adc_nids;
		spec->adc_nids = stac927x_adc_nids;
		spec->mux_nids = stac9227_mux_nids;
		spec->mux_nids = stac927x_mux_nids;
		spec->num_muxes = 2;
		spec->num_muxes = 3;
		spec->init = stac9227_core_init;
		spec->init = d965_core_init;
		spec->mixer = stac9227_mixer;
		spec->mixer = stac9227_mixer;
		break;
		break;
	default:
	default: