soc/mediatek/mt8189: Correct AUX LDO mask bit definition

Fix the bit definition for RGS_AUX_LDO_EN_READY_MASK in the MT8189
dptx_reg.h file, changing it from BIT(2) to BIT(0). The MT8189 is only
polling BIT(0) status instead of BIT(2). This correction ensures proper
functionality of the AUX LDO readiness check.

BUG=b:461384417
TEST=Boot up can see develop mode.
BRANCH=skywalker

Signed-off-by: Payne Lin <payne.lin@mediatek.corp-partner.google.com>
Change-Id: Id4a85c619311fecde5bc84ad29c521b7d20ffdd8
Reviewed-on: https://review.coreboot.org/c/coreboot/+/90362
Reviewed-by: Yidi Lin <yidilin@google.com>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Payne Lin 2025-12-04 10:43:35 +08:00 committed by Matt DeVillier
commit 4a5d0dee4a

View file

@ -6,7 +6,7 @@
#include <soc/dptx_reg_v2.h>
#define DP_PHY_DIG_TX_CTL_0 0x1444
#define RGS_AUX_LDO_EN_READY_MASK BIT(2)
#define RGS_AUX_LDO_EN_READY_MASK BIT(0)
#define DRIVING_FORCE 0x18
#define EDP_TX_LN_PRE_EMPH_VAL_MASK GENMASK(6, 5)
#define EDP_TX_LN_PRE_EMPH_VAL_SHIFT 5