[alsa-devel] [PATCH] hda-codec - Add missing #defines (and 1 rename) in hda_codec.h.

Takashi Iwai tiwai at suse.de
Thu Dec 13 12:07:00 CET 2007


At Tue, 4 Dec 2007 02:03:18 -0500,
Andrew Paprocki wrote:
> 
> hda-codec - Add missing #defines (and 1 rename) in hda_codec.h.
> 
> Added AC_VERB_GET_DIGI_CONVERT_2 and renamed AC_VERB_GET_DIGI_CONVERT to
> AC_VERB_GET_DIGI_CONVERT_1 to stay consistent with the SET variants. Added
> AC_VERB_GET_GPIO_UNSOLICITED_RSP_MASK, AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK,
> and AC_PINCAP_LR_SWAP. The missing fields were listed in the ALC883 datasheet
> rev 1.3.
> 
> Signed-off-by: Andrew Paprocki <andrew at ishiboo.com>

The embedded patch seems broken due to MUA.  Could you fix it?

Also, please add some comments to AC_PINCAP_LR_SWAP that it's defined
in ALC883 datasheet to avoid possible confusion.

Otherwise the patch looks OK.


thanks,

Takashi

> 
> diff -r eb09731e73d7928c70ba776c1719149d112ee96a -r
> da002fb740a42b4fd6dcbd45693f9bee3c828812 pci/hda/hda_codec.c
> --- a/pci/hda/hda_codec.c       Mon Dec 03 17:08:40 2007 +0100
> +++ b/pci/hda/hda_codec.c       Mon Dec 03 22:52:58 2007 -0500
> @@ -1434,8 +1434,9 @@ int snd_hda_create_spdif_out_ctls(struct
>                 if (err < 0)
>                         return err;
>         }
> -       codec->spdif_ctls =
> -               snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT, 0);
> +       codec->spdif_ctls =
> +               snd_hda_codec_read(codec, nid, 0,
> +                                  AC_VERB_GET_DIGI_CONVERT_1, 0);
>         codec->spdif_status = convert_to_spdif_status(codec->spdif_ctls);
>         return 0;
>  }
> @@ -1482,7 +1483,7 @@ static int snd_hda_spdif_in_status_get(s
>         unsigned short val;
>         unsigned int sbits;
> 
> -       val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT, 0);
> +       val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
>         sbits = convert_to_spdif_status(val);
>         ucontrol->value.iec958.status[0] = sbits;
>         ucontrol->value.iec958.status[1] = sbits >> 8;
> @@ -1533,7 +1534,8 @@ int snd_hda_create_spdif_in_ctls(struct
>                         return err;
>         }
>         codec->spdif_in_enable =
> -               snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT, 0) &
> +               snd_hda_codec_read(codec, nid, 0,
> +                                  AC_VERB_GET_DIGI_CONVERT_1, 0) &
>                 AC_DIG1_ENABLE;
>         return 0;
>  }
> diff -r eb09731e73d7928c70ba776c1719149d112ee96a -r
> da002fb740a42b4fd6dcbd45693f9bee3c828812 pci/hda/hda_codec.h
> --- a/pci/hda/hda_codec.h       Mon Dec 03 17:08:40 2007 +0100
> +++ b/pci/hda/hda_codec.h       Mon Dec 03 22:52:58 2007 -0500
> @@ -77,12 +77,14 @@ enum {
>  #define AC_VERB_GET_PIN_SENSE                  0x0f09
>  #define AC_VERB_GET_BEEP_CONTROL               0x0f0a
>  #define AC_VERB_GET_EAPD_BTLENABLE             0x0f0c
> -#define AC_VERB_GET_DIGI_CONVERT               0x0f0d
> +#define AC_VERB_GET_DIGI_CONVERT_1             0x0f0d
> +#define AC_VERB_GET_DIGI_CONVERT_2             0x0f0e
>  #define AC_VERB_GET_VOLUME_KNOB_CONTROL                0x0f0f
>  /* f10-f1a: GPIO */
>  #define AC_VERB_GET_GPIO_DATA                  0x0f15
>  #define AC_VERB_GET_GPIO_MASK                  0x0f16
>  #define AC_VERB_GET_GPIO_DIRECTION             0x0f17
> +#deifne AC_VERB_GET_GPIO_UNSOLICITED_RSP_MASK  0x0f19
>  #define AC_VERB_GET_CONFIG_DEFAULT             0x0f1c
>  /* f20: AFG/MFG */
>  #define AC_VERB_GET_SUBSYSTEM_ID               0x0f20
> @@ -110,6 +112,7 @@ enum {
>  #define AC_VERB_SET_GPIO_DATA                  0x715
>  #define AC_VERB_SET_GPIO_MASK                  0x716
>  #define AC_VERB_SET_GPIO_DIRECTION             0x717
> +#define AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK  0x719
>  #define AC_VERB_SET_CONFIG_DEFAULT_BYTES_0     0x71c
>  #define AC_VERB_SET_CONFIG_DEFAULT_BYTES_1     0x71d
>  #define AC_VERB_SET_CONFIG_DEFAULT_BYTES_2     0x71e
> @@ -190,6 +193,7 @@ enum {
>  #define AC_PINCAP_OUT                  (1<<4)  /* output capable */
>  #define AC_PINCAP_IN                   (1<<5)  /* input capable */
>  #define AC_PINCAP_BALANCE              (1<<6)  /* balanced I/O capable */
> +#define AC_PINCAP_LR_SWAP              (1<<7)  /* L/R swap */
>  #define AC_PINCAP_VREF                 (0x37<<8)
>  #define AC_PINCAP_VREF_SHIFT           8
>  #define AC_PINCAP_EAPD                 (1<<16) /* EAPD capable */
> diff -r eb09731e73d7928c70ba776c1719149d112ee96a -r
> da002fb740a42b4fd6dcbd45693f9bee3c828812 pci/hda/patch_realtek.c
> --- a/pci/hda/patch_realtek.c   Mon Dec 03 17:08:40 2007 +0100
> +++ b/pci/hda/patch_realtek.c   Mon Dec 03 22:52:58 2007 -0500
> @@ -564,7 +564,7 @@ static int alc_spdif_ctrl_get(struct snd
>         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
>         long *valp = ucontrol->value.integer.value;
>         unsigned int val = snd_hda_codec_read(codec, nid, 0,
> -                                             AC_VERB_GET_DIGI_CONVERT, 0x00);
> +                                             AC_VERB_GET_DIGI_CONVERT_1, 0x00);
> 
>         *valp = (val & mask) != 0;
>         return 0;
> @@ -578,7 +578,7 @@ static int alc_spdif_ctrl_put(struct snd
>         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
>         long val = *ucontrol->value.integer.value;
>         unsigned int ctrl_data = snd_hda_codec_read(codec, nid, 0,
> -                                                   AC_VERB_GET_DIGI_CONVERT,
> +                                                   AC_VERB_GET_DIGI_CONVERT_1,
>                                                     0x00);
> 
>         /* Set/unset the masked control bit(s) as needed */
> 


More information about the Alsa-devel mailing list