summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2001-06-26 05:45:28 +0000
committerJason Wright <jason@cvs.openbsd.org>2001-06-26 05:45:28 +0000
commit2c7bb34b555dffc1ea43169f11e0a57b57c2c3fe (patch)
tree50a6edf0ee7a39b8041c3847832902bf910d852e
parent647f02d924168b0fe93c5c0557d8fb0d5b815ae6 (diff)
clock multiplier bits
-rw-r--r--sys/dev/pci/lofnreg.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/dev/pci/lofnreg.h b/sys/dev/pci/lofnreg.h
index f17d6d81b3e..036ce82efbb 100644
--- a/sys/dev/pci/lofnreg.h
+++ b/sys/dev/pci/lofnreg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: lofnreg.h,v 1.4 2001/06/26 05:16:45 jason Exp $ */
+/* $OpenBSD: lofnreg.h,v 1.5 2001/06/26 05:45:27 jason Exp $ */
/*
* Copyright (c) 2001 Jason L. Wright (jason@thought.net)
@@ -62,6 +62,13 @@
#define LOFN_CFG1_RESET 0x00000001 /* Reset */
#define LOFN_CFG1_MULTI 0x00000038 /* PLL multiple */
+#define LOFN_CFG1_MULTI_BYP 0x00000000 /* PLL bypass */
+#define LOFN_CFG1_MULTI_1X 0x00000008 /* 1x CLK */
+#define LOFN_CFG1_MULTI_15X 0x00000010 /* 1.5x CLK */
+#define LOFN_CFG1_MULTI_2X 0x00000018 /* 2x CLK */
+#define LOFN_CFG1_MULTI_25X 0x00000020 /* 2.5x CLK */
+#define LOFN_CFG1_MULTI_3X 0x00000028 /* 3x CLK */
+#define LOFN_CFG1_MULTI_4X 0x00000030 /* 4x CLK */
#define LOFN_CFG1_CLOCK 0x00000040 /* Clock select */
#define LOFN_CFG2_RNGENA 0x00000001 /* RNG enable */