Ignore:
Timestamp:
2014-08-27T15:11:48Z (10 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
149dd52d
Parents:
cc91ab4
Message:

Set EAPD when possible. Dump power states.

File:
1 edited

Legend:

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

    rcc91ab4 ra9be4d2  
    324324} hda_awidget_caps_bits_t;
    325325
     326typedef enum {
     327        /** High Bit Rate */
     328        pwc_hbr = 27,
     329        /** Display Port */
     330        pwc_dp = 24,
     331        /** EAPD Capable */
     332        pwc_eapd = 16,
     333        /** VRef Control (H) */
     334        pwc_vrefctl_h = 15,
     335        /** VRef Control (L) */
     336        pwc_vrefctl_l = 8,
     337        /** HDMI */
     338        pwc_hdmi = 7,
     339        /** Balanced I/O Pins */
     340        pwc_bal_io = 6,
     341        /** Input Capable */
     342        pwc_input = 5,
     343        /** Output Capable */
     344        pwc_output = 4,
     345        /** Headphone Drive Capable */
     346        pwc_hpd = 3,
     347        /** Presence Detect Capable */
     348        pwc_presence = 2,
     349        /** Trigger Required */
     350        pwc_trigger_reqd = 1,
     351        /** Impedance Sense Capable */
     352        pwc_imp_sense = 0
     353} hda_pin_caps_bits_t;
     354
    326355/** Audio Widget Type */
    327356typedef enum {
Note: See TracChangeset for help on using the changeset viewer.