diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2004-07-14 05:34:15 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2004-07-14 05:34:15 +0000 |
commit | 228f858cd931a333f7231e84d9de3d6a6a525421 (patch) | |
tree | 2986c9a7e6fb2b91f2876efe1214680fe7cf5390 /sys/arch/i386/include | |
parent | 1b846e86fa3a06aa5111f79f2d6ac63df04c78a7 (diff) |
setperf driver for powernow in amd k7 cpus. derived from a diff to
tech-i386@netbsd by martin vegiard, and adapted to fit in here.
as yet untested. ok deraadt@
Diffstat (limited to 'sys/arch/i386/include')
-rw-r--r-- | sys/arch/i386/include/cpu.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/include/cpu.h b/sys/arch/i386/include/cpu.h index f30153e7487..1c1b6d7c523 100644 --- a/sys/arch/i386/include/cpu.h +++ b/sys/arch/i386/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.65 2004/06/25 08:41:19 art Exp $ */ +/* $OpenBSD: cpu.h,v 1.66 2004/07/14 05:34:14 tedu Exp $ */ /* $NetBSD: cpu.h,v 1.35 1996/05/05 19:29:26 christos Exp $ */ /*- @@ -371,6 +371,8 @@ int p4tcc_setperf(int); void k6_powernow_init(void); int k6_powernow_setperf(int); +void k7_powernow_init(uint32_t); +int k7_powernow_setperf(int); /* npx.c */ |