diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-06-10 13:58:24 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-06-22 06:28:51 -0400 |
commit | 16ded525389c31256bcc9fd44352ab799b60b7fc (patch) | |
tree | 481fc40097ccef94f0ec595a25891e91bee9e4fb /sound/pci/hda/hda_codec.h | |
parent | 5ecd7022f52872db32eddf85a527064ed7b522a3 (diff) |
[ALSA] hda-codec - Add support of more models with ALC codecs
HDA Codec driver,HDA Intel driver
Merged the work of pshou <pshou@realtek.com.tw> for the support of
more models with ALC codecs: ALC880 ASUS, Uniwill, FSC1734, generic 6-stack,
and ALC260 HP. Tests with the real hardwares are appreciated.
The codec patch is cleaned up: The preset configuration of codecs are
stored in the table and copied to the spec instance.
Added/fixed comments.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_codec.h')
-rw-r--r-- | sound/pci/hda/hda_codec.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_codec.h b/sound/pci/hda/hda_codec.h index 1b1203539ea6..59991560d492 100644 --- a/sound/pci/hda/hda_codec.h +++ b/sound/pci/hda/hda_codec.h | |||
@@ -75,6 +75,9 @@ enum { | |||
75 | #define AC_VERB_GET_DIGI_CONVERT 0x0f0d | 75 | #define AC_VERB_GET_DIGI_CONVERT 0x0f0d |
76 | #define AC_VERB_GET_VOLUME_KNOB_CONTROL 0x0f0f | 76 | #define AC_VERB_GET_VOLUME_KNOB_CONTROL 0x0f0f |
77 | /* f10-f1a: GPIO */ | 77 | /* f10-f1a: GPIO */ |
78 | #define AC_VERB_GET_GPIO_DATA 0x0f15 | ||
79 | #define AC_VERB_GET_GPIO_MASK 0x0f16 | ||
80 | #define AC_VERB_GET_GPIO_DIRECTION 0x0f17 | ||
78 | #define AC_VERB_GET_CONFIG_DEFAULT 0x0f1c | 81 | #define AC_VERB_GET_CONFIG_DEFAULT 0x0f1c |
79 | 82 | ||
80 | /* | 83 | /* |
@@ -97,6 +100,9 @@ enum { | |||
97 | #define AC_VERB_SET_DIGI_CONVERT_1 0x70d | 100 | #define AC_VERB_SET_DIGI_CONVERT_1 0x70d |
98 | #define AC_VERB_SET_DIGI_CONVERT_2 0x70e | 101 | #define AC_VERB_SET_DIGI_CONVERT_2 0x70e |
99 | #define AC_VERB_SET_VOLUME_KNOB_CONTROL 0x70f | 102 | #define AC_VERB_SET_VOLUME_KNOB_CONTROL 0x70f |
103 | #define AC_VERB_SET_GPIO_DATA 0x715 | ||
104 | #define AC_VERB_SET_GPIO_MASK 0x716 | ||
105 | #define AC_VERB_SET_GPIO_DIRECTION 0x717 | ||
100 | #define AC_VERB_SET_CONFIG_DEFAULT_BYTES_0 0x71c | 106 | #define AC_VERB_SET_CONFIG_DEFAULT_BYTES_0 0x71c |
101 | #define AC_VERB_SET_CONFIG_DEFAULT_BYTES_1 0x71d | 107 | #define AC_VERB_SET_CONFIG_DEFAULT_BYTES_1 0x71d |
102 | #define AC_VERB_SET_CONFIG_DEFAULT_BYTES_2 0x71e | 108 | #define AC_VERB_SET_CONFIG_DEFAULT_BYTES_2 0x71e |