Ignore:
Timestamp:
2014-09-06T23:42:10Z (10 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a116f7f2
Parents:
f3831af
Message:

And there was sound.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/audio/hdaudio/spec/codec.h

    rf3831af rfff4f21  
    8787        /** SDI Select / Set */
    8888        hda_sdi_select_set = 0x704,
    89         /** Enable VRef / Get */
    90         hda_enable_vref_get = 0xf07,
    91         /** Enable VRef / Set */
    92         hda_enable_vref_set = 0x707,
     89        /** Pin Control / Get */
     90        hda_pin_ctl_get = 0xf07,
     91        /** Pin Control / Set */
     92        hda_pin_ctl_set = 0x707,
    9393        /** Unsolicited Response Control / Get */
    9494        hda_unsol_resp_get = 0xf08,
     
    324324} hda_awidget_caps_bits_t;
    325325
     326/** Pin Capabilities */
    326327typedef enum {
    327328        /** High Bit Rate */
     
    387388} hda_converter_ctl_bits_t;
    388389
     390/** Pin Widget Control bits */
     391typedef enum {
     392        /** Headphone Drive Enable */
     393        pctl_hpd_enable = 7,
     394        /** Out Enable */
     395        pctl_out_enable = 6,
     396        /** In Enable */
     397        pctl_in_enable = 5,
     398        /** Voltage Reference Enable (H) */
     399        pctl_vref_enable_h = 2,
     400        /** Voltage Reference Enable (L) */
     401        pctl_vref_enable_l = 0,
     402        /** Encoded Packet Type (H) */
     403        pctl_ept_h = 1,
     404        /** Encoded Packet Type (L) */
     405        pctl_ept_l = 0
     406} hda_pin_ctl_bits_t;
     407
    389408#endif
    390409
Note: See TracChangeset for help on using the changeset viewer.