diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2017-05-19 16:47:08 -0500 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-06-16 16:19:13 +0200 |
commit | 1e1bbb17a05410bd5fd95459a9bdbc0c5ac6804d (patch) | |
tree | e9c09d453b2f682c13e1690a198e5c8bacca23c5 | |
parent | eacac20bd52b1502b754e172ecd97e064189bbbd (diff) | |
download | coreboot-1e1bbb17a05410bd5fd95459a9bdbc0c5ac6804d.tar.xz |
purism/librem13v2: Fix HDA verb values, use azalia macros
Use verb table values from AMI firmware, consolidate NID
definitions using azalia macros. Fixes headphone jack detection
and microphone.
Change-Id: Ia31be6efc7afe921ad91b400f66694d951f0a260
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/19944
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
-rw-r--r-- | src/mainboard/purism/librem13v2/hda_verb.h | 59 |
1 files changed, 13 insertions, 46 deletions
diff --git a/src/mainboard/purism/librem13v2/hda_verb.h b/src/mainboard/purism/librem13v2/hda_verb.h index a2984f068a..660ad0c10c 100644 --- a/src/mainboard/purism/librem13v2/hda_verb.h +++ b/src/mainboard/purism/librem13v2/hda_verb.h @@ -35,72 +35,39 @@ const u32 cim_verb_data[] = { /* Bits 7:0 - Payload */ /* NID 0x01, HDA Codec Subsystem ID Verb Table: 0x19910269 */ - 0x00172069, - 0x00172102, - 0x00172291, - 0x00172319, + AZALIA_SUBVENDOR(0x0, 0x19910269), /* Pin Widget Verb Table */ /* Pin Complex (NID 0x12) */ - 0x01271c00, - 0x01271d00, - 0x01271e00, - 0x01271f40, + AZALIA_PIN_CFG(0x0, 0x12, 0x40000000), /* Pin Complex (NID 0x14) */ - 0x01471c10, - 0x01471d01, - 0x01471e17, - 0x01471f90, + AZALIA_PIN_CFG(0x0, 0x14, 0x90170110), + + /* Pin Complex (NID 0x15) */ + AZALIA_PIN_CFG(0x0, 0x15, 0x04214020), /* Pin Complex (NID 0x17) */ - 0x01771cf0, - 0x01771d11, - 0x01771e11, - 0x01771f41, + AZALIA_PIN_CFG(0x0, 0x17, 0x411111f0), /* Pin Complex (NID 0x18) */ - 0x01871c20, - 0x01871d10, - 0x01871ea1, - 0x01871f04, + AZALIA_PIN_CFG(0x0, 0x18, 0x04a19040), /* Pin Complex (NID 0x19) */ - 0x01971c30, - 0x01971d01, - 0x01971ea7, - 0x01971f90, + AZALIA_PIN_CFG(0x0, 0x19, 0x90a70130), /* Pin Complex (NID 0x1A) */ - 0x01a71cf0, - 0x01a71d11, - 0x01a71e11, - 0x01a71f41, + AZALIA_PIN_CFG(0x0, 0x1A, 0x411111f0), /* Pin Complex (NID 0x1B) */ - 0x01b71cf0, - 0x01b71d11, - 0x01b71e11, - 0x01b71f41, + AZALIA_PIN_CFG(0x0, 0x1B, 0x411111f0), /* Pin Complex (NID 0x1D) */ - 0x01d71c05, - 0x01d71d9d, - 0x01d71e56, - 0x01d71f40, + AZALIA_PIN_CFG(0x0, 0x1D, 0x40548505), /* Pin Complex (NID 0x1E) */ - 0x01e71cf0, - 0x01e71d11, - 0x01e71e11, - 0x01e71f41, - - /* Pin Complex (NID 0x21) */ - 0x02171c1f, - 0x02171d10, - 0x02171e21, - 0x02171f04, + AZALIA_PIN_CFG(0x0, 0x1E, 0x411111f0), }; const u32 pc_beep_verbs[] = { |