svn commit: r330780 - in head/sys: amd64/include isa x86/isa

Bruce Evans brde at optusnet.com.au
Mon Mar 12 19:03:02 UTC 2018


On Mon, 12 Mar 2018, Konstantin Belousov wrote:

> On Mon, Mar 12, 2018 at 09:34:51AM -0600, Ian Lepore wrote:
>> On Sun, 2018-03-11 at 23:25 +0200, Konstantin Belousov wrote:
>>> On Sun, Mar 11, 2018 at 02:20:39PM -0600, Ian Lepore wrote:
>>>>
>>>> On Sun, 2018-03-11 at 21:58 +0200, Konstantin Belousov wrote:
>>>>>
>>>>> On Sun, Mar 11, 2018 at 07:22:58PM +0000, Ian Lepore wrote:
>>>>>>
>>>>>>
>>>>>> [...]
>>>>
>>>> Unfortunately, this reverts one type of wrong locking back to another.
>>>> šThe need is to prevent access to the atrtc hardware if efi is
>>>> accessing it, and the locking I just reverted to that uses a sleepable
>>>> mutex only protects against inittodr()/resettodr() access, but not
>>>> against nvram(4) or if the atrtc is being used as an eventtimer (of
>>>> course nobody uses it for that, but the driver supports it).
>>>>
>>>> I have some pending changes that cause the atrtc driver to just not
>>>> attach at all if the efirtc driver attached, but they're stacked up
>>>> behind some other changes in phab. šAnd that still doesn't fix the
>>>> nvram(4) part of it.
>>> Not attaching atrtc if efirtc is attached sounds reasonable. But then
>>> you should also disable efirt attach if atrtc is on. One possible issue
>>> is that efirt is typicall loadable, while atrtc is compiled into the
>>> kernel, which means that efirt would become virtually unusable.
>>
>> Even if efirt is loaded (in loader(8)) the efirtc driver will still
>> attach instead of atrtc, because it's a direct child of nexus and gets
>> the first opportunity to probe and attach. šBut you raise a good point,
>> I should make it handle the case where it gets kldload'd when atrtc is
>> already attached.
>>
>>> For nvram(4), you can take the atrtc_time_lock around accesses in addition
>>> to the atrtc_lock, instead of providing exclusivity on the level of drivers
>>> attach.
>>
>> It occurs to me that an even better fix for all of this would be to
>> remove support for atrtc being an eventtimer. šThat allows removing the
>> interrupt filter handler, and then there's no need for a spinlock at
>> all, a sleepable mutex works fine for all accesses.

Sleep mutexes never work fine for real time clocks.  They give unbounded
time for clock accesses.

>> Does anybody really need an eventtimer that runs only at a fixed
>> periodic rate of 32khz in 2018?
>
> Problem is that atrtc is what old machines use. If we have HPET or
> better LAPIC timers, then we do not need atrtc at all, of course.
> But e.g. 486 do not have them. I am not even sure about early amd64
> machines.

The early AMD development board "Solo 2" has LAPIC.  It even has HPET
for a timecounter but not for an event timer.  My 2006 laptop doesn't
have HPET.

My version of FreeBSD-5 uses the 1 Hz RTC update interrupt for fixing
up the timecounter after stopping in ddb.  This should also be used
for fixing up the timecounter after suspension.  This doesn't need
full event timer support, but it needs full interrupt support including
spin mutexes.

> Definitely any machine that needs EFIRT has both HPET and LAPIC, I like
> the idea of not providing eventtimer backed by atrtc if feasible. Might
> be, make this a compile or runtime option, unless this over-complicates
> the code.

It's just more complicated to make it optional.  The top-level event timer
code supports using "any" timer in the system with very little driver
support, at least for drivers/hardware that only support periodic interrupts.

Everyone with a 486 needs an atrtc that runs at 128 Hz like it used to.
32 kHz wastes a lot of CPU even on newer systems.  Just reading 1 status
register in rtc_intr() takes at least 1 usec.  That is about 3% of the
CPU at 32 kHz.  rtcin() used to read 4 ISA registers (2 intentional
delays which are FUD mainly for 20-30 year old systems).  That is about
12% for the CPU at 32 kHz.  Probably more like 20%.  I optimized rtcin()
especially for this case (where the index register is almost constant).

SCHED_4BSD only needs 16 Hz, and only profiling needs more than 128 Hz.
I used hz = stathz = lapic_timer_hz = 100 (all periodic) for some time
before event timers existed.  This doesn't support fine-grained timeouts,
but I don't want them.  It gives much too synchronization between
hardclock and statclock interrupts. but not much more than with the
the old default lapic_timer_hz of 2000.

Bruce


More information about the svn-src-all mailing list