Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 #include <linux/kernel.h>
0003 #include <asm/processor.h>
0004 #include "cpu.h"
0005 
0006 /*
0007  * UMC chips appear to be only either 386 or 486,
0008  * so no special init takes place.
0009  */
0010 
0011 static const struct cpu_dev umc_cpu_dev = {
0012     .c_vendor   = "UMC",
0013     .c_ident    = { "UMC UMC UMC" },
0014     .legacy_models  = {
0015         { .family = 4, .model_names =
0016           {
0017               [1] = "U5D",
0018               [2] = "U5S",
0019           }
0020         },
0021     },
0022     .c_x86_vendor   = X86_VENDOR_UMC,
0023 };
0024 
0025 cpu_dev_register(umc_cpu_dev);
0026