Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 May 2007 14:00:12 GMT
From:      Marius Nuennerich <marius.nuennerich@gmx.net>
To:        freebsd-acpi@FreeBSD.org
Subject:   Re: kern/112544: [acpi] [patch] Add High Precision Event Timer Driver for userland timer facility
Message-ID:  <200705211400.l4LE0CE0057099@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/112544; it has been noted by GNATS.

From: Marius Nuennerich <marius.nuennerich@gmx.net>
To: bug-followup@FreeBSD.org, takeharu1219@ybb.ne.jp
Cc:  
Subject: Re: kern/112544: [acpi] [patch] Add High Precision Event Timer
 Driver for userland timer facility
Date: Mon, 21 May 2007 15:25:32 +0200

 Hi,
 
 I haven't read the whole patch yet.
 To me line 164 (of the first patch file) seems bogus. It tries to do
 the right thing (read-modify-write) but actually does not.
 HPET_OFFSET_ENABLE is the offset in the hpet datastructure. 
 
 Should be like this:
 val = bus_read_4(sc->mem_res, HPET_OFFSET_ENABLE);
 bus_write_4(sc->mem_res, HPET_OFFSET_ENABLE, val | 1);
 
 And 1 should better HPET_ENABLE_ENABLE.
 
 Line 133 of the same patch does not even try to do a read-modify-write.
 However the documentation is clear that it should.
 
 This all applies to the driver in -current (1.8) as well.
 
 regards
 Marius



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200705211400.l4LE0CE0057099>