Re: [PATCH] gpu: host1x: Request syncpoint IRQs only during probe

2024-09-25 Thread Jon Hunter
On 25/09/2024 13:58, Thierry Reding wrote: On Tue, Sep 24, 2024 at 07:33:05PM GMT, Jon Hunter wrote: On 06/09/2024 09:38, Jon Hunter wrote: Hi Mikko, On 31/05/2024 08:07, Mikko Perttunen wrote: From: Mikko Perttunen Syncpoint IRQs are currently requested in a code path that runs during r

Re: [PATCH] gpu: host1x: Request syncpoint IRQs only during probe

2024-09-25 Thread Thierry Reding
On Tue, Sep 24, 2024 at 07:33:05PM GMT, Jon Hunter wrote: > > On 06/09/2024 09:38, Jon Hunter wrote: > > Hi Mikko, > > > > On 31/05/2024 08:07, Mikko Perttunen wrote: > > > From: Mikko Perttunen > > > > > > Syncpoint IRQs are currently requested in a code path that runs > > > during resume. Due

Re: [PATCH] gpu: host1x: Request syncpoint IRQs only during probe

2024-09-24 Thread Jon Hunter
On 24/09/2024 19:33, Jon Hunter wrote: On 06/09/2024 09:38, Jon Hunter wrote: Hi Mikko, On 31/05/2024 08:07, Mikko Perttunen wrote: From: Mikko Perttunen Syncpoint IRQs are currently requested in a code path that runs during resume. Due to this, we get multiple overlapping registered inte

Re: [PATCH] gpu: host1x: Request syncpoint IRQs only during probe

2024-09-24 Thread Jon Hunter
On 06/09/2024 09:38, Jon Hunter wrote: Hi Mikko, On 31/05/2024 08:07, Mikko Perttunen wrote: From: Mikko Perttunen Syncpoint IRQs are currently requested in a code path that runs during resume. Due to this, we get multiple overlapping registered interrupt handlers as host1x is suspended and

Re: [PATCH] gpu: host1x: Request syncpoint IRQs only during probe

2024-09-06 Thread Jon Hunter
Hi Mikko, On 31/05/2024 08:07, Mikko Perttunen wrote: From: Mikko Perttunen Syncpoint IRQs are currently requested in a code path that runs during resume. Due to this, we get multiple overlapping registered interrupt handlers as host1x is suspended and resumed. Rearrange interrupt code to onl

Re: [PATCH] gpu: host1x: Request syncpoint IRQs only during probe

2024-08-28 Thread Thierry Reding
On Fri, May 31, 2024 at 10:07:18AM GMT, Mikko Perttunen wrote: > From: Mikko Perttunen > > Syncpoint IRQs are currently requested in a code path that runs > during resume. Due to this, we get multiple overlapping registered > interrupt handlers as host1x is suspended and resumed. > > Rearrange i

[PATCH] gpu: host1x: Request syncpoint IRQs only during probe

2024-05-31 Thread Mikko Perttunen
From: Mikko Perttunen Syncpoint IRQs are currently requested in a code path that runs during resume. Due to this, we get multiple overlapping registered interrupt handlers as host1x is suspended and resumed. Rearrange interrupt code to only request IRQs during initialization. Signed-off-by: Mik