blob: b1fc90989d75ac132324e8f8301ff9bb553beea4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/kernel.h>
2#include <linux/init.h>
3#include <asm/processor.h>
4#include "cpu.h"
5
Paolo Ciarrocchi48e6b7a2008-02-21 00:18:34 +01006/*
7 * UMC chips appear to be only either 386 or 486,
8 * so no special init takes place.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Magnus Damm95414932006-09-26 10:52:36 +020011static struct cpu_dev umc_cpu_dev __cpuinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 .c_vendor = "UMC",
Paolo Ciarrocchi48e6b7a2008-02-21 00:18:34 +010013 .c_ident = { "UMC UMC UMC" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 .c_models = {
15 { .vendor = X86_VENDOR_UMC, .family = 4, .model_names =
Paolo Ciarrocchi48e6b7a2008-02-21 00:18:34 +010016 {
17 [1] = "U5D",
18 [2] = "U5S",
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 }
20 },
21 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070022};
23
Thomas Petazzoni03ae5762008-02-15 12:00:23 +010024cpu_vendor_dev_register(X86_VENDOR_UMC, &umc_cpu_dev);
25