diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-03-16 14:03:38 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-03-18 08:15:01 +0000 |
commit | a12e16233b83d9612e539fa85e9b91cc0974ede9 (patch) | |
tree | d05fab43311ce5e68ecfec8a633c06b084ee28d9 /src/mainboard/prodrive | |
parent | 791097834b4803c8b64f9ad2196212e527f0fd88 (diff) | |
download | coreboot-a12e16233b83d9612e539fa85e9b91cc0974ede9.tar.xz |
mb/prodrive/hermes: Disable HDA codec Port E by default on R04+
If the board settings aren't valid, Port E uses the settings for earlier
board revisions, which is undesired. Disable Port E by default on R04+.
Change-Id: I03bd50b915a2120283b77179debaa735bb7ef027
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51529
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Reviewed-by: Christian Walter <christian.walter@9elements.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/prodrive')
-rw-r--r-- | src/mainboard/prodrive/hermes/variants/r04/hda_verb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainboard/prodrive/hermes/variants/r04/hda_verb.c b/src/mainboard/prodrive/hermes/variants/r04/hda_verb.c index ec008e9993..ddb8661187 100644 --- a/src/mainboard/prodrive/hermes/variants/r04/hda_verb.c +++ b/src/mainboard/prodrive/hermes/variants/r04/hda_verb.c @@ -9,6 +9,7 @@ static const u32 r04_verb_data[] = { AZALIA_PIN_CFG(0, 0x19, 0x02a19c20), /* PORT F - front mic in */ AZALIA_PIN_CFG(0, 0x1a, 0x01813c51), /* PORT C - rear line in (mic support) */ + AZALIA_PIN_CFG(0, 0x1b, 0x411111f0), /* PORT E - disabled */ AZALIA_PIN_CFG(0, 0x15, 0x411111f0), /* PORT A - disabled */ }; |