diff options
author | poornima tom <poornima.tom@intel.com> | 2024-02-09 20:11:09 +0530 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-03-04 14:51:44 +0000 |
commit | d45f6ea35fc5b5e0d0d5768f5efdbb5f22c37993 (patch) | |
tree | d45ee81d821e6cb24f297e9ef94bf607ffd0b15d | |
parent | 92a9d9314421369bdff572b4d34fd1258585ffe3 (diff) |
mb/google/brox: Update Verbtable for beep functionality
For boot beep functionality, relevant register values are
required to be updated.
BUG=b:324528901
BRANCH=None
TEST=Build & verified Boot Beep functionality on Brox
Change-Id: If236c8ac173a279db676af412377fa4e4122c1cd
Signed-off-by: poornima tom <poornima.tom@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80416
Reviewed-by: Krishna P Bhat D <krishna.p.bhat.d@intel.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/mainboard/google/brox/hda_verb.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/mainboard/google/brox/hda_verb.c b/src/mainboard/google/brox/hda_verb.c index 39d2d86ccc..bf998e1f0c 100644 --- a/src/mainboard/google/brox/hda_verb.c +++ b/src/mainboard/google/brox/hda_verb.c @@ -6,7 +6,7 @@ const u32 cim_verb_data[] = { /* coreboot specific header */ 0x10ec0256, // Codec Vendor / Device ID: Realtek ALC256 0x10ec12ac, // Subsystem ID - 0x0000001D, // Number of jacks (NID entries) + 0x00000013, // Number of jacks (NID entries) AZALIA_RESET(0x1), /* NID 0x01, HDA Codec Subsystem ID Verb table */ @@ -113,6 +113,16 @@ const u32 cim_verb_data[] = { }; const u32 pc_beep_verbs[] = { + /* Dos beep path - 1 */ + 0x01470C00, + 0x02050036, + 0x02047151, + 0x01470740, + /* Dos beep path - 2 */ + 0x0143b000, + 0x01470C02, + 0x01470C02, + 0x01470C02, }; AZALIA_ARRAY_SIZES; |