]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/xe/i2c: Wire up reset/postinstall for I2C IRQ
authorRaag Jadav <raag.jadav@intel.com>
Sat, 11 Oct 2025 12:35:09 +0000 (18:05 +0530)
committerLucas De Marchi <lucas.demarchi@intel.com>
Mon, 13 Oct 2025 14:24:25 +0000 (07:24 -0700)
I2C IRQ needs to be routed to SGUnit or PUnit for the devices that support
it. Wire up reset/postinstall handles for I2C IRQ to take care of this.

Signed-off-by: Raag Jadav <raag.jadav@intel.com>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Link: https://lore.kernel.org/r/20251011123509.3233213-3-raag.jadav@intel.com
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
drivers/gpu/drm/xe/regs/xe_i2c_regs.h
drivers/gpu/drm/xe/xe_i2c.c
drivers/gpu/drm/xe/xe_i2c.h
drivers/gpu/drm/xe/xe_irq.c

index af781c8e4a804131d9387605e3c8a757babc1aee..f2e455e2bfe45cb61f012ac797a65c125cbb84a2 100644 (file)
@@ -14,6 +14,9 @@
 #define REG_SG_REMAP_ADDR_PREFIX       XE_REG(SOC_BASE + 0x0164)
 #define REG_SG_REMAP_ADDR_POSTFIX      XE_REG(SOC_BASE + 0x0168)
 
+#define I2C_BRIDGE_PCICFGCTL           XE_REG(I2C_BRIDGE_OFFSET + 0x200)
+#define   ACPI_INTR_EN                 REG_BIT(1)
+
 #define I2C_CONFIG_CMD                 XE_REG(I2C_CONFIG_SPACE_OFFSET + PCI_COMMAND)
 #define I2C_CONFIG_PMCSR               XE_REG(I2C_CONFIG_SPACE_OFFSET + 0x84)
 
index 25c6b8f3c0bbc491dfb40dbee6378d802693033e..0b5452be0c8736b5a6a1258b33e3fa93a0d12cc1 100644 (file)
@@ -182,6 +182,26 @@ void xe_i2c_irq_handler(struct xe_device *xe, u32 master_ctl)
                generic_handle_irq_safe(xe->i2c->adapter_irq);
 }
 
+void xe_i2c_irq_reset(struct xe_device *xe)
+{
+       struct xe_mmio *mmio = xe_root_tile_mmio(xe);
+
+       if (!xe_i2c_irq_present(xe))
+               return;
+
+       xe_mmio_rmw32(mmio, I2C_BRIDGE_PCICFGCTL, ACPI_INTR_EN, 0);
+}
+
+void xe_i2c_irq_postinstall(struct xe_device *xe)
+{
+       struct xe_mmio *mmio = xe_root_tile_mmio(xe);
+
+       if (!xe_i2c_irq_present(xe))
+               return;
+
+       xe_mmio_rmw32(mmio, I2C_BRIDGE_PCICFGCTL, 0, ACPI_INTR_EN);
+}
+
 static int xe_i2c_irq_map(struct irq_domain *h, unsigned int virq,
                          irq_hw_number_t hw_irq_num)
 {
@@ -339,6 +359,7 @@ int xe_i2c_probe(struct xe_device *xe)
        if (ret)
                goto err_remove_irq;
 
+       xe_i2c_irq_postinstall(xe);
        return devm_add_action_or_reset(drm_dev, xe_i2c_remove, i2c);
 
 err_remove_irq:
index ecd5f10358e292bc6ada2ee4c4559f4e4fb0ffc9..425d8160835f4648891ff75f2a9c06284241710e 100644 (file)
@@ -51,12 +51,16 @@ struct xe_i2c {
 int xe_i2c_probe(struct xe_device *xe);
 bool xe_i2c_present(struct xe_device *xe);
 void xe_i2c_irq_handler(struct xe_device *xe, u32 master_ctl);
+void xe_i2c_irq_postinstall(struct xe_device *xe);
+void xe_i2c_irq_reset(struct xe_device *xe);
 void xe_i2c_pm_suspend(struct xe_device *xe);
 void xe_i2c_pm_resume(struct xe_device *xe, bool d3cold);
 #else
 static inline int xe_i2c_probe(struct xe_device *xe) { return 0; }
 static inline bool xe_i2c_present(struct xe_device *xe) { return false; }
 static inline void xe_i2c_irq_handler(struct xe_device *xe, u32 master_ctl) { }
+static inline void xe_i2c_irq_postinstall(struct xe_device *xe) { }
+static inline void xe_i2c_irq_reset(struct xe_device *xe) { }
 static inline void xe_i2c_pm_suspend(struct xe_device *xe) { }
 static inline void xe_i2c_pm_resume(struct xe_device *xe, bool d3cold) { }
 #endif
index 870edaf693887b514258e80616e942a320aceddb..af519414a42974958b4723650a44c5ce9fd15a8b 100644 (file)
@@ -616,6 +616,7 @@ static void xe_irq_reset(struct xe_device *xe)
        tile = xe_device_get_root_tile(xe);
        mask_and_disable(tile, GU_MISC_IRQ_OFFSET);
        xe_display_irq_reset(xe);
+       xe_i2c_irq_reset(xe);
 
        /*
         * The tile's top-level status register should be the last one
@@ -657,6 +658,7 @@ static void xe_irq_postinstall(struct xe_device *xe)
        }
 
        xe_display_irq_postinstall(xe, xe_root_mmio_gt(xe));
+       xe_i2c_irq_postinstall(xe);
 
        /*
         * ASLE backlight operations are reported via GUnit GSE interrupts