diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-09-04 22:04:11 +0200 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2014-09-05 00:12:11 +0200 |
commit | 02d674ac2f9b238ea83ba31e3e4f32d25f9fedf6 (patch) | |
tree | 7f9bf5a7b2080be10aa115621432652c2d1f485c /src/mainboard/kontron/ktqm77 | |
parent | f91ecce609ed8f90de5840e265cb3da3520ab591 (diff) | |
download | coreboot-02d674ac2f9b238ea83ba31e3e4f32d25f9fedf6.tar.xz |
azalia: Use convenience macros throughout
Change-Id: Ic044bf155bfcf93fa7cf3afd7287b7d0b615ef6d
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/6839
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/kontron/ktqm77')
-rw-r--r-- | src/mainboard/kontron/ktqm77/hda_verb.h | 25 |
1 files changed, 5 insertions, 20 deletions
diff --git a/src/mainboard/kontron/ktqm77/hda_verb.h b/src/mainboard/kontron/ktqm77/hda_verb.h index 34c2b7a5b0..ccec18c752 100644 --- a/src/mainboard/kontron/ktqm77/hda_verb.h +++ b/src/mainboard/kontron/ktqm77/hda_verb.h @@ -25,10 +25,7 @@ static const u32 mainboard_cim_verb_data[] = { 0x0000000c, // Number of jacks /* NID 0x01, HDA Codec Subsystem ID Verb Table: 0x11060000 */ - 0x00172000, - 0x00172100, - 0x00172206, - 0x00172311, + AZALIA_SUBVENDOR(0x0, 0x11060000), /* Pin Widget Verb Table */ @@ -105,26 +102,14 @@ static const u32 mainboard_cim_verb_data[] = { 0x00000004, // Number of jacks /* NID 0x01, HDA Codec Subsystem ID Verb Table: 0x80860101 */ - 0x00172001, - 0x00172101, - 0x00172286, - 0x00172380, + AZALIA_SUBVENDOR(0x0, 0x80860101), /* Pin Complex (NID 0x05) Digital Out at Int HDMI */ - 0x30571c10, - 0x30571d00, - 0x30571e56, - 0x30571f58, + AZALIA_PIN_CFG(0x3, 0x05, 0x58560010), /* Pin Complex (NID 0x06) Digital Out at Int HDMI */ - 0x30671c20, - 0x30671d00, - 0x30671e56, - 0x30671f18, + AZALIA_PIN_CFG(0x3, 0x06, 0x18560020), /* Pin Complex (NID 0x07) Digital Out at Int HDMI */ - 0x30771c30, - 0x30771d00, - 0x30771e56, - 0x30771f18 + AZALIA_PIN_CFG(0x3, 0x07, 0x18560030) }; |