From 4f8bed7307e8e23d61115bd5a59c3a0cd897f7a0 Mon Sep 17 00:00:00 2001 From: Amit Kumar-Hermosillo Date: Mon, 23 Mar 2026 19:49:34 +0000 Subject: [PATCH] [ot] hw/opentitan: ot_sensor_eg: Set IO power OK bits Signed-off-by: Amit Kumar-Hermosillo --- hw/opentitan/ot_sensor_eg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/opentitan/ot_sensor_eg.c b/hw/opentitan/ot_sensor_eg.c index 29207eba402e..0cb36e97f0e2 100644 --- a/hw/opentitan/ot_sensor_eg.c +++ b/hw/opentitan/ot_sensor_eg.c @@ -245,6 +245,7 @@ static uint64_t ot_sensor_eg_regs_read(void *opaque, hwaddr addr, unsigned size) if (!s->regs[reg]) { /* fake init: reports initialized */ s->regs[reg] |= R_STATUS_AST_INIT_DONE_MASK; + s->regs[reg] |= R_STATUS_IO_POK_MASK; } val32 = s->regs[reg]; break;