Changeset fff4f21 in mainline for uspace/drv/audio/hdaudio/spec/codec.h
- Timestamp:
- 2014-09-06T23:42:10Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a116f7f2
- Parents:
- f3831af
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/audio/hdaudio/spec/codec.h
rf3831af rfff4f21 87 87 /** SDI Select / Set */ 88 88 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, 93 93 /** Unsolicited Response Control / Get */ 94 94 hda_unsol_resp_get = 0xf08, … … 324 324 } hda_awidget_caps_bits_t; 325 325 326 /** Pin Capabilities */ 326 327 typedef enum { 327 328 /** High Bit Rate */ … … 387 388 } hda_converter_ctl_bits_t; 388 389 390 /** Pin Widget Control bits */ 391 typedef 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 389 408 #endif 390 409
Note:
See TracChangeset
for help on using the changeset viewer.