blob: 65a58a390fc31161ec7f4139157c2ebb2c5c54f9 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#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
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040011static const struct cpu_dev 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" },
Jan Beulich09dc68d2013-10-21 09:35:20 +010014 .legacy_models = {
15 { .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