blob: fd2c37bf7acb6c6cc9a322600dc2c9dade028dbb [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
Jan Beulich02dde8b2009-03-12 12:08:49 +000011static const struct cpu_dev __cpuinitconst umc_cpu_dev = {
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 },
Yinghai Lu10a434f2008-09-04 21:09:45 +020022 .c_x86_vendor = X86_VENDOR_UMC,
Linus Torvalds1da177e2005-04-16 15:20:36 -070023};
24
Yinghai Lu10a434f2008-09-04 21:09:45 +020025cpu_dev_register(umc_cpu_dev);
Thomas Petazzoni03ae5762008-02-15 12:00:23 +010026