IRC channel logs
2025-03-24.log
back to list of logs
<damo22> what about #ifdef APIC to read hpet for fine tuning? <damo22>i think we can decide if we expect a HPET at compile time <damo22>thats what i was getting at in my mail <damo22>if APIC is defined and there is no HPET, none of the clock interrupts will even work for APs <damo22>and it will break on an assert anyway <damo22>hmm we use PIT to calibrate LAPIC timer, and then the LAPIC timers are enabled on all APs, but i think we are still using PIT to make clock interrupts on BSP <damo22>and the HPET is enabled just for high resolution timer scheduling <damo22>so HPET is only being used in kernel for hpet_udelay etc <damo22>hpet is still critical to smp timing <damo22>so yes, we assume its present on smp systems <sneek>Welcome back ZhaoM, you have 2 messages! <sneek>ZhaoM, youpi says: it's not really useful to look at tsc. Nowadays most machines to have an hpet, so we will be fine with just that <ZhaoM>sneek later tell azert thanks for the documentation <ZhaoM>I may give TSC a try if I'm motivated in the future <ZhaoM>damo22: if the detection of HPET can be done automatically without any overhead with the help of the branch predictor, that will be very nice <ZhaoM>I will do a simple benchmark just like the url shared by azert to see if that `if` affects the performance <damo22>ZhaoM: my point was we may not need to do a runtime check at all, if we assume every APIC machine has HPET <damo22>and just short circuit the code in the non-APIC case <ZhaoM>and yes we indeed init_hpet when APIC is available <ZhaoM>but I think if runtime check is more flexible and does not cause significant overhead we can give it a go :) <damo22>ZhaoM: osdev has some useful info, but in practice every machine with acpi tables since 2005 has a HPET <damo22>and i wrote init_hpet with that in mind <damo22>why add unnecessary run time check every time you fine tune the clock? <damo22>btw, i looked into using TSC but its a pain to calibrate that because it depends on cpu frequency <damo22>there is a method to the madness <ZhaoM>well I think you convinced me