From 95bbf58b8c1620a6a6171453a76b3b0ab5de68e4 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 5 Aug 2003 13:43:18 +0000 Subject: [PATCH] missing file chip.h git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1071 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/cpu/k8/chip.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/cpu/k8/chip.h diff --git a/src/cpu/k8/chip.h b/src/cpu/k8/chip.h new file mode 100644 index 0000000000..edebee1f14 --- /dev/null +++ b/src/cpu/k8/chip.h @@ -0,0 +1,9 @@ +extern struct chip_control cpu_k8_control; + +struct ht_link { + struct chip *chip; + unsigned int ht_width, ht_speed; +}; +struct cpu_k8_config { + struct ht_link up, down, across; +};