On Tue, May 12, 2026 at 4:54 AM Boris Brezillon
<[email protected]> wrote:
>
> Now that panthor_irq contains the iomem region, there's no real need
> for the macro-based panthor_irq helper generation logic. We can just
> provide inline helpers that do the same and let the compiler optimize
> indirect function calls. The only extra annoyance is the fact we have
> to open-code the panthor_xxx_irq_threaded_handler() implementation, but
> those are single-line functions, so it's acceptable.
We might want to __always_inline panthor_irq_default_threaded_handler.
For the rest, do we want to un-inline them?

>
> While at it, we changed the prototype of the IRQ handlers to take
> a panthor_irq instead of panthor_device, since that's the thing
> that's passed around when it comes to panthor_irq, and the
> panthor_device can be directly extracted from there.
>
> Reviewed-by: Steven Price <[email protected]>
> Signed-off-by: Boris Brezillon <[email protected]>
> ---
>  drivers/gpu/drm/panthor/panthor_device.h | 245 
> +++++++++++++++----------------
>  drivers/gpu/drm/panthor/panthor_fw.c     |  22 ++-
>  drivers/gpu/drm/panthor/panthor_gpu.c    |  26 ++--
>  drivers/gpu/drm/panthor/panthor_mmu.c    |  37 ++---
>  drivers/gpu/drm/panthor/panthor_pwr.c    |  20 ++-
>  5 files changed, 183 insertions(+), 167 deletions(-)
>
> diff --git a/drivers/gpu/drm/panthor/panthor_device.h 
> b/drivers/gpu/drm/panthor/panthor_device.h
> index 768fc1992368..393fcda73d88 100644
> --- a/drivers/gpu/drm/panthor/panthor_device.h
> +++ b/drivers/gpu/drm/panthor/panthor_device.h
> @@ -571,131 +571,126 @@ static inline u64 gpu_read64_counter(void __iomem 
> *iomem, u32 reg)
>  #define INT_MASK    0x8
>  #define INT_STAT    0xc
>
> -/**
> - * PANTHOR_IRQ_HANDLER() - Define interrupt handlers and the interrupt
> - * registration function.
> - *
> - * The boiler-plate to gracefully deal with shared interrupts is
> - * auto-generated. All you have to do is call PANTHOR_IRQ_HANDLER()
> - * just after the actual handler. The handler prototype is:
> - *
> - * void (*handler)(struct panthor_device *, u32 status);
> - */
> -#define PANTHOR_IRQ_HANDLER(__name, __handler)                               
>                   \
> -static irqreturn_t panthor_ ## __name ## _irq_raw_handler(int irq, void 
> *data)                 \
> -{                                                                            
>                   \
> -       struct panthor_irq *pirq = data;                                      
>                   \
> -                                                                             
>                   \
> -       if (!gpu_read(pirq->iomem, INT_STAT))                                 
>                   \
> -               return IRQ_NONE;                                              
>                   \
> -                                                                             
>                   \
> -       guard(spinlock_irqsave)(&pirq->mask_lock);                            
>                   \
> -       if (pirq->state != PANTHOR_IRQ_STATE_ACTIVE)                          
>                   \
> -               return IRQ_NONE;                                              
>                   \
> -                                                                             
>                   \
> -       pirq->state = PANTHOR_IRQ_STATE_PROCESSING;                           
>                   \
> -       gpu_write(pirq->iomem, INT_MASK, 0);                                  
>                   \
> -       return IRQ_WAKE_THREAD;                                               
>                   \
> -}                                                                            
>                   \
> -                                                                             
>                   \
> -static irqreturn_t panthor_ ## __name ## _irq_threaded_handler(int irq, void 
> *data)            \
> -{                                                                            
>                   \
> -       struct panthor_irq *pirq = data;                                      
>                   \
> -       struct panthor_device *ptdev = pirq->ptdev;                           
>                   \
> -       irqreturn_t ret = IRQ_NONE;                                           
>                   \
> -                                                                             
>                   \
> -       while (true) {                                                        
>                   \
> -               /* It's safe to access pirq->mask without the lock held here. 
> If a new          \
> -                * event gets added to the mask and the corresponding IRQ is 
> pending,           \
> -                * we'll process it right away instead of adding an extra raw 
> -> threaded       \
> -                * round trip. If an event is removed and the status bit is 
> set, it will        \
> -                * be ignored, just like it would have been if the mask had 
> been adjusted       \
> -                * right before the HW event kicks in. TLDR; it's all 
> expected races we're      \
> -                * covered for.                                               
>                   \
> -                */                                                           
>                   \
> -               u32 status = gpu_read(pirq->iomem, INT_RAWSTAT) & pirq->mask; 
>                   \
> -                                                                             
>                   \
> -               if (!status)                                                  
>                   \
> -                       break;                                                
>                   \
> -                                                                             
>                   \
> -               __handler(ptdev, status);                                     
>                   \
> -               ret = IRQ_HANDLED;                                            
>                   \
> -       }                                                                     
>                   \
> -                                                                             
>                   \
> -       scoped_guard(spinlock_irqsave, &pirq->mask_lock) {                    
>                   \
> -               if (pirq->state == PANTHOR_IRQ_STATE_PROCESSING) {            
>                   \
> -                       pirq->state = PANTHOR_IRQ_STATE_ACTIVE;               
>                   \
> -                       gpu_write(pirq->iomem, INT_MASK, pirq->mask);         
>                   \
> -               }                                                             
>                   \
> -       }                                                                     
>                   \
> -                                                                             
>                   \
> -       return ret;                                                           
>                   \
> -}                                                                            
>                   \
> -                                                                             
>                   \
> -static inline void panthor_ ## __name ## _irq_suspend(struct panthor_irq 
> *pirq)                        \
> -{                                                                            
>                   \
> -       scoped_guard(spinlock_irqsave, &pirq->mask_lock) {                    
>                   \
> -               pirq->state = PANTHOR_IRQ_STATE_SUSPENDING;                   
>                   \
> -               gpu_write(pirq->iomem, INT_MASK, 0);                          
>                   \
> -       }                                                                     
>                   \
> -       synchronize_irq(pirq->irq);                                           
>                   \
> -       scoped_guard(spinlock_irqsave, &pirq->mask_lock)                      
>                   \
> -               pirq->state = PANTHOR_IRQ_STATE_SUSPENDED;                    
>                   \
> -}                                                                            
>                   \
> -                                                                             
>                   \
> -static inline void panthor_ ## __name ## _irq_resume(struct panthor_irq 
> *pirq)                 \
> -{                                                                            
>                   \
> -       guard(spinlock_irqsave)(&pirq->mask_lock);                            
>                   \
> -                                                                             
>                   \
> -       pirq->state = PANTHOR_IRQ_STATE_ACTIVE;                               
>                   \
> -       gpu_write(pirq->iomem, INT_CLEAR, pirq->mask);                        
>                   \
> -       gpu_write(pirq->iomem, INT_MASK, pirq->mask);                         
>                   \
> -}                                                                            
>                   \
> -                                                                             
>                   \
> -static int panthor_request_ ## __name ## _irq(struct panthor_device *ptdev,  
>                   \
> -                                             struct panthor_irq *pirq,       
>                   \
> -                                             int irq, u32 mask, void __iomem 
> *iomem)           \
> -{                                                                            
>                   \
> -       pirq->ptdev = ptdev;                                                  
>                   \
> -       pirq->irq = irq;                                                      
>                   \
> -       pirq->mask = mask;                                                    
>                   \
> -       pirq->iomem = iomem;                                                  
>                   \
> -       spin_lock_init(&pirq->mask_lock);                                     
>                   \
> -       panthor_ ## __name ## _irq_resume(pirq);                              
>                   \
> -                                                                             
>                   \
> -       return devm_request_threaded_irq(ptdev->base.dev, irq,                
>                   \
> -                                        panthor_ ## __name ## 
> _irq_raw_handler,                \
> -                                        panthor_ ## __name ## 
> _irq_threaded_handler,           \
> -                                        IRQF_SHARED, KBUILD_MODNAME "-" # 
> __name,              \
> -                                        pirq);                               
>                   \
> -}                                                                            
>                   \
> -                                                                             
>                   \
> -static inline void panthor_ ## __name ## _irq_enable_events(struct 
> panthor_irq *pirq, u32 mask)        \
> -{                                                                            
>                   \
> -       guard(spinlock_irqsave)(&pirq->mask_lock);                            
>                   \
> -       pirq->mask |= mask;                                                   
>                   \
> -                                                                             
>                   \
> -       /* The only situation where we need to write the new mask is if the 
> IRQ is active.      \
> -        * If it's being processed, the mask will be restored for us in 
> _irq_threaded_handler() \
> -        * on the PROCESSING -> ACTIVE transition.                            
>                   \
> -        * If the IRQ is suspended/suspending, the mask is restored at resume 
> time.             \
> -        */                                                                   
>                   \
> -       if (pirq->state == PANTHOR_IRQ_STATE_ACTIVE)                          
>                   \
> -               gpu_write(pirq->iomem, INT_MASK, pirq->mask);                 
>                   \
> -}                                                                            
>                   \
> -                                                                             
>                   \
> -static inline void panthor_ ## __name ## _irq_disable_events(struct 
> panthor_irq *pirq, u32 mask)\
> -{                                                                            
>                   \
> -       guard(spinlock_irqsave)(&pirq->mask_lock);                            
>                   \
> -       pirq->mask &= ~mask;                                                  
>                   \
> -                                                                             
>                   \
> -       /* The only situation where we need to write the new mask is if the 
> IRQ is active.      \
> -        * If it's being processed, the mask will be restored for us in 
> _irq_threaded_handler() \
> -        * on the PROCESSING -> ACTIVE transition.                            
>                   \
> -        * If the IRQ is suspended/suspending, the mask is restored at resume 
> time.             \
> -        */                                                                   
>                   \
> -       if (pirq->state == PANTHOR_IRQ_STATE_ACTIVE)                          
>                   \
> -               gpu_write(pirq->iomem, INT_MASK, pirq->mask);                 
>                   \
> +static inline irqreturn_t panthor_irq_default_raw_handler(int irq, void 
> *data)
> +{
> +       struct panthor_irq *pirq = data;
> +
> +       if (!gpu_read(pirq->iomem, INT_STAT))
> +               return IRQ_NONE;
> +
> +       guard(spinlock_irqsave)(&pirq->mask_lock);
> +       if (pirq->state != PANTHOR_IRQ_STATE_ACTIVE)
> +               return IRQ_NONE;
> +
> +       pirq->state = PANTHOR_IRQ_STATE_PROCESSING;
> +       gpu_write(pirq->iomem, INT_MASK, 0);
> +       return IRQ_WAKE_THREAD;
> +}
> +
> +static inline irqreturn_t
> +panthor_irq_default_threaded_handler(void *data,
> +                                    void (*slow_handler)(struct panthor_irq 
> *, u32))
> +{
> +       struct panthor_irq *pirq = data;
> +       irqreturn_t ret = IRQ_NONE;
> +
> +       while (true) {
> +               /* It's safe to access pirq->mask without the lock held here. 
> If a new
> +                * event gets added to the mask and the corresponding IRQ is 
> pending,
> +                * we'll process it right away instead of adding an extra raw 
> -> threaded
> +                * round trip. If an event is removed and the status bit is 
> set, it will
> +                * be ignored, just like it would have been if the mask had 
> been adjusted
> +                * right before the HW event kicks in. TLDR; it's all 
> expected races we're
> +                * covered for.
> +                */
> +               u32 status = gpu_read(pirq->iomem, INT_RAWSTAT) & pirq->mask;
> +
> +               if (!status)
> +                       break;
> +
> +               slow_handler(pirq, status);
> +               ret = IRQ_HANDLED;
> +       }
> +
> +       scoped_guard(spinlock_irqsave, &pirq->mask_lock) {
> +               if (pirq->state == PANTHOR_IRQ_STATE_PROCESSING) {
> +                       pirq->state = PANTHOR_IRQ_STATE_ACTIVE;
> +                       gpu_write(pirq->iomem, INT_MASK, pirq->mask);
> +               }
> +       }
> +
> +       return ret;
> +}
> +
> +static inline void panthor_irq_suspend(struct panthor_irq *pirq)
> +{
> +       scoped_guard(spinlock_irqsave, &pirq->mask_lock) {
> +               pirq->state = PANTHOR_IRQ_STATE_SUSPENDING;
> +               gpu_write(pirq->iomem, INT_MASK, 0);
> +       }
> +       synchronize_irq(pirq->irq);
> +       scoped_guard(spinlock_irqsave, &pirq->mask_lock)
> +               pirq->state = PANTHOR_IRQ_STATE_SUSPENDED;
> +}
> +
> +static inline void panthor_irq_resume(struct panthor_irq *pirq)
> +{
> +       guard(spinlock_irqsave)(&pirq->mask_lock);
> +       pirq->state = PANTHOR_IRQ_STATE_ACTIVE;
> +       gpu_write(pirq->iomem, INT_CLEAR, pirq->mask);
> +       gpu_write(pirq->iomem, INT_MASK, pirq->mask);
> +}
> +
> +static inline void panthor_irq_enable_events(struct panthor_irq *pirq, u32 
> mask)
> +{
> +       guard(spinlock_irqsave)(&pirq->mask_lock);
> +       pirq->mask |= mask;
> +
> +       /* The only situation where we need to write the new mask is if the 
> IRQ is active.
> +        * If it's being processed, the mask will be restored for us in 
> _irq_threaded_handler()
> +        * on the PROCESSING -> ACTIVE transition.
> +        * If the IRQ is suspended/suspending, the mask is restored at resume 
> time.
> +        */
> +       if (pirq->state == PANTHOR_IRQ_STATE_ACTIVE)
> +               gpu_write(pirq->iomem, INT_MASK, pirq->mask);
> +}
> +
> +static inline void panthor_irq_disable_events(struct panthor_irq *pirq, u32 
> mask)
> +{
> +       guard(spinlock_irqsave)(&pirq->mask_lock);
> +       pirq->mask &= ~mask;
> +
> +       /* The only situation where we need to write the new mask is if the 
> IRQ is active.
> +        * If it's being processed, the mask will be restored for us in 
> _irq_threaded_handler()
> +        * on the PROCESSING -> ACTIVE transition.
> +        * If the IRQ is suspended/suspending, the mask is restored at resume 
> time.
> +        */
> +       if (pirq->state == PANTHOR_IRQ_STATE_ACTIVE)
> +               gpu_write(pirq->iomem, INT_MASK, pirq->mask);
> +}
> +
> +static inline int
> +panthor_irq_request(struct panthor_device *ptdev, struct panthor_irq *pirq,
> +                   int irq, u32 mask, void __iomem *iomem, const char *name,
> +                   irqreturn_t (*threaded_handler)(int, void *data))
> +{
> +       const char *full_name;
> +
> +       pirq->ptdev = ptdev;
> +       pirq->irq = irq;
> +       pirq->mask = mask;
> +       pirq->iomem = iomem;
> +       spin_lock_init(&pirq->mask_lock);
> +
> +       full_name = devm_kasprintf(ptdev->base.dev, GFP_KERNEL, 
> KBUILD_MODNAME "-%s", name);
> +       if (!full_name)
> +               return -ENOMEM;
> +
> +       panthor_irq_resume(pirq);
> +       return devm_request_threaded_irq(ptdev->base.dev, irq,
> +                                        panthor_irq_default_raw_handler,
> +                                        threaded_handler,
> +                                        IRQF_SHARED, full_name, pirq);
>  }
>
>  extern struct workqueue_struct *panthor_cleanup_wq;
> diff --git a/drivers/gpu/drm/panthor/panthor_fw.c 
> b/drivers/gpu/drm/panthor/panthor_fw.c
> index 986151681b24..eaf599b0a887 100644
> --- a/drivers/gpu/drm/panthor/panthor_fw.c
> +++ b/drivers/gpu/drm/panthor/panthor_fw.c
> @@ -1064,8 +1064,9 @@ static void panthor_fw_init_global_iface(struct 
> panthor_device *ptdev)
>                          msecs_to_jiffies(PING_INTERVAL_MS));
>  }
>
> -static void panthor_job_irq_handler(struct panthor_device *ptdev, u32 status)
> +static void panthor_job_irq_handler(struct panthor_irq *pirq, u32 status)
>  {
> +       struct panthor_device *ptdev = pirq->ptdev;
>         u32 duration;
>         u64 start = 0;
>
> @@ -1091,7 +1092,11 @@ static void panthor_job_irq_handler(struct 
> panthor_device *ptdev, u32 status)
>                 trace_gpu_job_irq(ptdev->base.dev, status, duration);
>         }
>  }
> -PANTHOR_IRQ_HANDLER(job, panthor_job_irq_handler);
> +
> +static irqreturn_t panthor_job_irq_threaded_handler(int irq, void *data)
> +{
> +       return panthor_irq_default_threaded_handler(data, 
> panthor_job_irq_handler);
> +}
>
>  static int panthor_fw_start(struct panthor_device *ptdev)
>  {
> @@ -1099,8 +1104,8 @@ static int panthor_fw_start(struct panthor_device 
> *ptdev)
>         bool timedout = false;
>
>         ptdev->fw->booted = false;
> -       panthor_job_irq_enable_events(&ptdev->fw->irq, ~0);
> -       panthor_job_irq_resume(&ptdev->fw->irq);
> +       panthor_irq_enable_events(&ptdev->fw->irq, ~0);
> +       panthor_irq_resume(&ptdev->fw->irq);
>         gpu_write(fw->iomem, MCU_CONTROL, MCU_CONTROL_AUTO);
>
>         if (!wait_event_timeout(ptdev->fw->req_waitqueue,
> @@ -1210,7 +1215,7 @@ void panthor_fw_pre_reset(struct panthor_device *ptdev, 
> bool on_hang)
>                         ptdev->reset.fast = true;
>         }
>
> -       panthor_job_irq_suspend(&ptdev->fw->irq);
> +       panthor_irq_suspend(&ptdev->fw->irq);
>         panthor_fw_stop(ptdev);
>  }
>
> @@ -1280,7 +1285,7 @@ void panthor_fw_unplug(struct panthor_device *ptdev)
>         if (!IS_ENABLED(CONFIG_PM) || pm_runtime_active(ptdev->base.dev)) {
>                 /* Make sure the IRQ handler cannot be called after that 
> point. */
>                 if (ptdev->fw->irq.irq)
> -                       panthor_job_irq_suspend(&ptdev->fw->irq);
> +                       panthor_irq_suspend(&ptdev->fw->irq);
>
>                 panthor_fw_stop(ptdev);
>         }
> @@ -1476,8 +1481,9 @@ int panthor_fw_init(struct panthor_device *ptdev)
>         if (irq <= 0)
>                 return -ENODEV;
>
> -       ret = panthor_request_job_irq(ptdev, &fw->irq, irq, 0,
> -                                     ptdev->iomem + JOB_INT_BASE);
> +       ret = panthor_irq_request(ptdev, &fw->irq, irq, 0,
> +                                 ptdev->iomem + JOB_INT_BASE, "job",
> +                                 panthor_job_irq_threaded_handler);
>         if (ret) {
>                 drm_err(&ptdev->base, "failed to request job irq");
>                 return ret;
> diff --git a/drivers/gpu/drm/panthor/panthor_gpu.c 
> b/drivers/gpu/drm/panthor/panthor_gpu.c
> index e52c5675981f..ce208e384762 100644
> --- a/drivers/gpu/drm/panthor/panthor_gpu.c
> +++ b/drivers/gpu/drm/panthor/panthor_gpu.c
> @@ -86,8 +86,9 @@ static void panthor_gpu_l2_config_set(struct panthor_device 
> *ptdev)
>         gpu_write(gpu->iomem, GPU_L2_CONFIG, l2_config);
>  }
>
> -static void panthor_gpu_irq_handler(struct panthor_device *ptdev, u32 status)
> +static void panthor_gpu_irq_handler(struct panthor_irq *pirq, u32 status)
>  {
> +       struct panthor_device *ptdev = pirq->ptdev;
>         struct panthor_gpu *gpu = ptdev->gpu;
>
>         gpu_write(gpu->irq.iomem, INT_CLEAR, status);
> @@ -116,7 +117,11 @@ static void panthor_gpu_irq_handler(struct 
> panthor_device *ptdev, u32 status)
>         }
>         spin_unlock(&ptdev->gpu->reqs_lock);
>  }
> -PANTHOR_IRQ_HANDLER(gpu, panthor_gpu_irq_handler);
> +
> +static irqreturn_t panthor_gpu_irq_threaded_handler(int irq, void *data)
> +{
> +       return panthor_irq_default_threaded_handler(data, 
> panthor_gpu_irq_handler);
> +}
>
>  /**
>   * panthor_gpu_unplug() - Called when the GPU is unplugged.
> @@ -128,7 +133,7 @@ void panthor_gpu_unplug(struct panthor_device *ptdev)
>
>         /* Make sure the IRQ handler is not running after that point. */
>         if (!IS_ENABLED(CONFIG_PM) || pm_runtime_active(ptdev->base.dev))
> -               panthor_gpu_irq_suspend(&ptdev->gpu->irq);
> +               panthor_irq_suspend(&ptdev->gpu->irq);
>
>         /* Wake-up all waiters. */
>         spin_lock_irqsave(&ptdev->gpu->reqs_lock, flags);
> @@ -169,9 +174,10 @@ int panthor_gpu_init(struct panthor_device *ptdev)
>         if (irq < 0)
>                 return irq;
>
> -       ret = panthor_request_gpu_irq(ptdev, &ptdev->gpu->irq, irq,
> -                                     GPU_INTERRUPTS_MASK,
> -                                     ptdev->iomem + GPU_INT_BASE);
> +       ret = panthor_irq_request(ptdev, &ptdev->gpu->irq, irq,
> +                                 GPU_INTERRUPTS_MASK,
> +                                 ptdev->iomem + GPU_INT_BASE, "gpu",
> +                                 panthor_gpu_irq_threaded_handler);
>         if (ret)
>                 return ret;
>
> @@ -182,7 +188,7 @@ int panthor_gpu_power_changed_on(struct panthor_device 
> *ptdev)
>  {
>         guard(pm_runtime_active)(ptdev->base.dev);
>
> -       panthor_gpu_irq_enable_events(&ptdev->gpu->irq, 
> GPU_POWER_INTERRUPTS_MASK);
> +       panthor_irq_enable_events(&ptdev->gpu->irq, 
> GPU_POWER_INTERRUPTS_MASK);
>
>         return 0;
>  }
> @@ -191,7 +197,7 @@ void panthor_gpu_power_changed_off(struct panthor_device 
> *ptdev)
>  {
>         guard(pm_runtime_active)(ptdev->base.dev);
>
> -       panthor_gpu_irq_disable_events(&ptdev->gpu->irq, 
> GPU_POWER_INTERRUPTS_MASK);
> +       panthor_irq_disable_events(&ptdev->gpu->irq, 
> GPU_POWER_INTERRUPTS_MASK);
>  }
>
>  /**
> @@ -424,7 +430,7 @@ void panthor_gpu_suspend(struct panthor_device *ptdev)
>         else
>                 panthor_hw_l2_power_off(ptdev);
>
> -       panthor_gpu_irq_suspend(&ptdev->gpu->irq);
> +       panthor_irq_suspend(&ptdev->gpu->irq);
>  }
>
>  /**
> @@ -436,7 +442,7 @@ void panthor_gpu_suspend(struct panthor_device *ptdev)
>   */
>  void panthor_gpu_resume(struct panthor_device *ptdev)
>  {
> -       panthor_gpu_irq_resume(&ptdev->gpu->irq);
> +       panthor_irq_resume(&ptdev->gpu->irq);
>         panthor_hw_l2_power_on(ptdev);
>  }
>
> diff --git a/drivers/gpu/drm/panthor/panthor_mmu.c 
> b/drivers/gpu/drm/panthor/panthor_mmu.c
> index 452d0b6d4668..375022fb3fd8 100644
> --- a/drivers/gpu/drm/panthor/panthor_mmu.c
> +++ b/drivers/gpu/drm/panthor/panthor_mmu.c
> @@ -586,17 +586,13 @@ static u32 panthor_mmu_as_fault_mask(struct 
> panthor_device *ptdev, u32 as)
>         return BIT(as);
>  }
>
> -/* Forward declaration to call helpers within as_enable/disable */
> -static void panthor_mmu_irq_handler(struct panthor_device *ptdev, u32 
> status);
> -PANTHOR_IRQ_HANDLER(mmu, panthor_mmu_irq_handler);
> -
>  static int panthor_mmu_as_enable(struct panthor_device *ptdev, u32 as_nr,
>                                  u64 transtab, u64 transcfg, u64 memattr)
>  {
>         struct panthor_mmu *mmu = ptdev->mmu;
>
> -       panthor_mmu_irq_enable_events(&ptdev->mmu->irq,
> -                                     panthor_mmu_as_fault_mask(ptdev, 
> as_nr));
> +       panthor_irq_enable_events(&ptdev->mmu->irq,
> +                                 panthor_mmu_as_fault_mask(ptdev, as_nr));
>
>         gpu_write64(mmu->iomem, AS_TRANSTAB(as_nr), transtab);
>         gpu_write64(mmu->iomem, AS_MEMATTR(as_nr), memattr);
> @@ -614,8 +610,8 @@ static int panthor_mmu_as_disable(struct panthor_device 
> *ptdev, u32 as_nr,
>
>         lockdep_assert_held(&ptdev->mmu->as.slots_lock);
>
> -       panthor_mmu_irq_disable_events(&ptdev->mmu->irq,
> -                                      panthor_mmu_as_fault_mask(ptdev, 
> as_nr));
> +       panthor_irq_disable_events(&ptdev->mmu->irq,
> +                                  panthor_mmu_as_fault_mask(ptdev, as_nr));
>
>         /* Flush+invalidate RW caches, invalidate RO ones. */
>         ret = panthor_gpu_flush_caches(ptdev, CACHE_CLEAN | CACHE_INV,
> @@ -1785,8 +1781,9 @@ static void panthor_vm_unlock_region(struct panthor_vm 
> *vm)
>         mutex_unlock(&ptdev->mmu->as.slots_lock);
>  }
>
> -static void panthor_mmu_irq_handler(struct panthor_device *ptdev, u32 status)
> +static void panthor_mmu_irq_handler(struct panthor_irq *pirq, u32 status)
>  {
> +       struct panthor_device *ptdev = pirq->ptdev;
>         struct panthor_mmu *mmu = ptdev->mmu;
>         bool has_unhandled_faults = false;
>
> @@ -1849,6 +1846,11 @@ static void panthor_mmu_irq_handler(struct 
> panthor_device *ptdev, u32 status)
>                 panthor_sched_report_mmu_fault(ptdev);
>  }
>
> +static irqreturn_t panthor_mmu_irq_threaded_handler(int irq, void *data)
> +{
> +       return panthor_irq_default_threaded_handler(data, 
> panthor_mmu_irq_handler);
> +}
> +
>  /**
>   * panthor_mmu_suspend() - Suspend the MMU logic
>   * @ptdev: Device.
> @@ -1873,7 +1875,7 @@ void panthor_mmu_suspend(struct panthor_device *ptdev)
>         }
>         mutex_unlock(&ptdev->mmu->as.slots_lock);
>
> -       panthor_mmu_irq_suspend(&ptdev->mmu->irq);
> +       panthor_irq_suspend(&ptdev->mmu->irq);
>  }
>
>  /**
> @@ -1892,7 +1894,7 @@ void panthor_mmu_resume(struct panthor_device *ptdev)
>         ptdev->mmu->as.faulty_mask = 0;
>         mutex_unlock(&ptdev->mmu->as.slots_lock);
>
> -       panthor_mmu_irq_resume(&ptdev->mmu->irq);
> +       panthor_irq_resume(&ptdev->mmu->irq);
>  }
>
>  /**
> @@ -1909,7 +1911,7 @@ void panthor_mmu_pre_reset(struct panthor_device *ptdev)
>  {
>         struct panthor_vm *vm;
>
> -       panthor_mmu_irq_suspend(&ptdev->mmu->irq);
> +       panthor_irq_suspend(&ptdev->mmu->irq);
>
>         mutex_lock(&ptdev->mmu->vm.lock);
>         ptdev->mmu->vm.reset_in_progress = true;
> @@ -1946,7 +1948,7 @@ void panthor_mmu_post_reset(struct panthor_device 
> *ptdev)
>
>         mutex_unlock(&ptdev->mmu->as.slots_lock);
>
> -       panthor_mmu_irq_resume(&ptdev->mmu->irq);
> +       panthor_irq_resume(&ptdev->mmu->irq);
>
>         /* Restart the VM_BIND queues. */
>         mutex_lock(&ptdev->mmu->vm.lock);
> @@ -3207,7 +3209,7 @@ panthor_mmu_reclaim_priv_bos(struct panthor_device 
> *ptdev,
>  void panthor_mmu_unplug(struct panthor_device *ptdev)
>  {
>         if (!IS_ENABLED(CONFIG_PM) || pm_runtime_active(ptdev->base.dev))
> -               panthor_mmu_irq_suspend(&ptdev->mmu->irq);
> +               panthor_irq_suspend(&ptdev->mmu->irq);
>
>         mutex_lock(&ptdev->mmu->as.slots_lock);
>         for (u32 i = 0; i < ARRAY_SIZE(ptdev->mmu->as.slots); i++) {
> @@ -3261,9 +3263,10 @@ int panthor_mmu_init(struct panthor_device *ptdev)
>         if (irq <= 0)
>                 return -ENODEV;
>
> -       ret = panthor_request_mmu_irq(ptdev, &mmu->irq, irq,
> -                                     panthor_mmu_fault_mask(ptdev, ~0),
> -                                     ptdev->iomem + MMU_INT_BASE);
> +       ret = panthor_irq_request(ptdev, &mmu->irq, irq,
> +                                 panthor_mmu_fault_mask(ptdev, ~0),
> +                                 ptdev->iomem + MMU_INT_BASE, "mmu",
> +                                 panthor_mmu_irq_threaded_handler);
>         if (ret)
>                 return ret;
>
> diff --git a/drivers/gpu/drm/panthor/panthor_pwr.c 
> b/drivers/gpu/drm/panthor/panthor_pwr.c
> index 7c7f424a1436..80cf78007896 100644
> --- a/drivers/gpu/drm/panthor/panthor_pwr.c
> +++ b/drivers/gpu/drm/panthor/panthor_pwr.c
> @@ -56,8 +56,9 @@ struct panthor_pwr {
>         wait_queue_head_t reqs_acked;
>  };
>
> -static void panthor_pwr_irq_handler(struct panthor_device *ptdev, u32 status)
> +static void panthor_pwr_irq_handler(struct panthor_irq *pirq, u32 status)
>  {
> +       struct panthor_device *ptdev = pirq->ptdev;
>         struct panthor_pwr *pwr = ptdev->pwr;
>
>         spin_lock(&ptdev->pwr->reqs_lock);
> @@ -75,7 +76,11 @@ static void panthor_pwr_irq_handler(struct panthor_device 
> *ptdev, u32 status)
>         }
>         spin_unlock(&ptdev->pwr->reqs_lock);
>  }
> -PANTHOR_IRQ_HANDLER(pwr, panthor_pwr_irq_handler);
> +
> +static irqreturn_t panthor_pwr_irq_threaded_handler(int irq, void *data)
> +{
> +       return panthor_irq_default_threaded_handler(data, 
> panthor_pwr_irq_handler);
> +}
>
>  static void panthor_pwr_write_command(struct panthor_device *ptdev, u32 
> command, u64 args)
>  {
> @@ -453,7 +458,7 @@ void panthor_pwr_unplug(struct panthor_device *ptdev)
>                 return;
>
>         /* Make sure the IRQ handler is not running after that point. */
> -       panthor_pwr_irq_suspend(&ptdev->pwr->irq);
> +       panthor_irq_suspend(&ptdev->pwr->irq);
>
>         /* Wake-up all waiters. */
>         spin_lock_irqsave(&ptdev->pwr->reqs_lock, flags);
> @@ -483,9 +488,10 @@ int panthor_pwr_init(struct panthor_device *ptdev)
>         if (irq < 0)
>                 return irq;
>
> -       err = panthor_request_pwr_irq(
> +       err = panthor_irq_request(
>                 ptdev, &pwr->irq, irq, PWR_INTERRUPTS_MASK,
> -               pwr->iomem + PWR_INT_BASE);
> +               pwr->iomem + PWR_INT_BASE, "pwr",
> +               panthor_pwr_irq_threaded_handler);
>         if (err)
>                 return err;
>
> @@ -564,7 +570,7 @@ void panthor_pwr_suspend(struct panthor_device *ptdev)
>         if (!ptdev->pwr)
>                 return;
>
> -       panthor_pwr_irq_suspend(&ptdev->pwr->irq);
> +       panthor_irq_suspend(&ptdev->pwr->irq);
>  }
>
>  void panthor_pwr_resume(struct panthor_device *ptdev)
> @@ -572,5 +578,5 @@ void panthor_pwr_resume(struct panthor_device *ptdev)
>         if (!ptdev->pwr)
>                 return;
>
> -       panthor_pwr_irq_resume(&ptdev->pwr->irq);
> +       panthor_irq_resume(&ptdev->pwr->irq);
>  }
>
> --
> 2.54.0
>

Reply via email to