lkml.org 
[lkml]   [2021]   [Feb]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [PATCH 18/18] arm64: apple: Add initial Mac Mini 2020 (M1) devicetree
Date
On 08/02/2021 21.27, Marc Zyngier wrote:
>> + timer {
>> + compatible = "arm,armv8-timer";
>> + interrupt-parent = <&aic>;
>> + interrupts = <AIC_FIQ 0 IRQ_TYPE_LEVEL_HIGH>,
>> + <AIC_FIQ 0 IRQ_TYPE_LEVEL_HIGH>,
>> + <AIC_FIQ 1 IRQ_TYPE_LEVEL_HIGH>,
>> + <AIC_FIQ 0 IRQ_TYPE_LEVEL_HIGH>;
>
> This unfortunately doesn't match the binding, which doesn't cater
> for systems without a secure physical timer, nor allows the description
> of the EL2 virtual timer.
>
> You should also have *different* interrupts for EL1 and EL2 timers,
> although this is all a lie...

Well, we do - now that I confirmed all 4 timers work properly, the AIC
driver should provide all 4. And ideally I find those EL1 timer mask
bits and implement them in the aic driver too (for only the virt timers
that have them and of course need them).

I just found the code in arm_arch_timer that forwards all this stuff to
the kvm code, so it all makes sense now; if I can wire that up properly,
heck, KVM might even just work here.

>
> Looking at the only similar case, XGene lies about the secure timer
> (it doesn't have any), and of course doesn't have an EL2 virtual
> timer (ARMv8.0 only).
>
> A sensible course of action could be to update the binding to at least:
>
> - tell the kernel that there is no secure physical timer (and that
> the interrupt should be ignored)
> - introduce a 5th possible interrupt for the EL2 virtual timer.

Sounds like I should be introducing interrupt-names support into this
driver and using that, so we can just not specify IRQs that don't exist,
instead of the hack with dummies. Falling back to indexes of course, to
keep DT compat. i.e.

const char *names = {"phys-secure", "phys", "virt", "hyp-phys", "hyp-virt"};

bool has_names = of_property_read_bool(..., "interrupt-names");

for (each irq)
if (has_names) foo = of_irq_get_byname(..., names[i])
else foo = of_irq_get(..., i)

That said, is there a use case for the EL2 virtual timer? The driver
always uses the EL2 physical timer with VHE right now. I guess it's
worth describing it in the binding and dts, even if the driver never
selects it...?

--
Hector Martin (marcan@marcan.st)
Public Key: https://mrcn.st/pub

\
 
 \ /
  Last update: 2021-02-08 15:59    [W:0.597 / U:0.028 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site