diff options
author | 2025-04-10 10:55:07 +0100 | |
---|---|---|
committer | 2025-04-15 12:21:51 +0100 | |
commit | 2c08b72598cc15eafbf5c9c3870e5c29e21f4827 (patch) | |
tree | d5a9e2f0698506104dbc640e0be49f9321487f7f /drivers/gpu/drm/imagination/pvr_fw_mips.c | |
parent | drm/imagination: Handle Rogue safety event IRQs (diff) | |
download | wireguard-linux-2c08b72598cc15eafbf5c9c3870e5c29e21f4827.tar.xz wireguard-linux-2c08b72598cc15eafbf5c9c3870e5c29e21f4827.zip |
drm/imagination: Remove firmware enable_reg
After a previous commit ("drm/imagination: Mask GPU IRQs in threaded
handler"), this register is now only used to enable firmware interrupts at
start-of-day. This is, however, unnecessary since they are enabled by
default.
In addition, the soon-to-be-added RISC-V firmware processors do not have
an equivalent register.
Reviewed-by: Frank Binns <frank.binns@imgtec.com>
Link: https://lore.kernel.org/r/20250410-sets-bxs-4-64-patch-v1-v6-8-eda620c5865f@imgtec.com
Signed-off-by: Matt Coster <matt.coster@imgtec.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/gpu/drm/imagination/pvr_fw_mips.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/imagination/pvr_fw_mips.c b/drivers/gpu/drm/imagination/pvr_fw_mips.c index ee0735b745a9..c73902bcf8e4 100644 --- a/drivers/gpu/drm/imagination/pvr_fw_mips.c +++ b/drivers/gpu/drm/imagination/pvr_fw_mips.c @@ -241,7 +241,6 @@ const struct pvr_fw_defs pvr_fw_defs_mips = { .wrapper_init = pvr_mips_wrapper_init, .has_fixed_data_addr = pvr_mips_has_fixed_data_addr, .irq = { - .enable_reg = ROGUE_CR_MIPS_WRAPPER_IRQ_ENABLE, .status_reg = ROGUE_CR_MIPS_WRAPPER_IRQ_STATUS, .clear_reg = ROGUE_CR_MIPS_WRAPPER_IRQ_CLEAR, .event_mask = ROGUE_CR_MIPS_WRAPPER_IRQ_STATUS_EVENT_EN, |