From 07cf947238be47e5563b0999981ba3c9fdd8bdd1 Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Wed, 6 Oct 2004 02:43:28 +0000 Subject: [PATCH] Add the Madison II, which is the second generation Madison. The Madison II is model 2 in the Itanium 2 family and has up to 9MB of L3 cache and clocks higher than 1.5Ghz. There's no LV variant AFAICT. --- sys/ia64/ia64/machdep.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/ia64/ia64/machdep.c b/sys/ia64/ia64/machdep.c index 9627fb223412..9b11553cda0c 100644 --- a/sys/ia64/ia64/machdep.c +++ b/sys/ia64/ia64/machdep.c @@ -198,6 +198,9 @@ identifycpu(void) else model_name = "Madison"; break; + case 0x02: + model_name = "Madison II"; + break; } break; }