umc.c 473 B

1234567891011121314151617181920212223242526
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/kernel.h>
  3. #include <asm/processor.h>
  4. #include "cpu.h"
  5. /*
  6. * UMC chips appear to be only either 386 or 486,
  7. * so no special init takes place.
  8. */
  9. static const struct cpu_dev umc_cpu_dev = {
  10. .c_vendor = "UMC",
  11. .c_ident = { "UMC UMC UMC" },
  12. .legacy_models = {
  13. { .family = 4, .model_names =
  14. {
  15. [1] = "U5D",
  16. [2] = "U5S",
  17. }
  18. },
  19. },
  20. .c_x86_vendor = X86_VENDOR_UMC,
  21. };
  22. cpu_dev_register(umc_cpu_dev);