18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci 38c2ecf20Sopenharmony_ci#ifndef _ASM_VERMAGIC_H 48c2ecf20Sopenharmony_ci#define _ASM_VERMAGIC_H 58c2ecf20Sopenharmony_ci 68c2ecf20Sopenharmony_ci#ifdef CONFIG_X86_64 78c2ecf20Sopenharmony_ci/* X86_64 does not define MODULE_PROC_FAMILY */ 88c2ecf20Sopenharmony_ci#elif defined CONFIG_M486SX 98c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "486SX " 108c2ecf20Sopenharmony_ci#elif defined CONFIG_M486 118c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "486 " 128c2ecf20Sopenharmony_ci#elif defined CONFIG_M586 138c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "586 " 148c2ecf20Sopenharmony_ci#elif defined CONFIG_M586TSC 158c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "586TSC " 168c2ecf20Sopenharmony_ci#elif defined CONFIG_M586MMX 178c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "586MMX " 188c2ecf20Sopenharmony_ci#elif defined CONFIG_MCORE2 198c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "CORE2 " 208c2ecf20Sopenharmony_ci#elif defined CONFIG_MATOM 218c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "ATOM " 228c2ecf20Sopenharmony_ci#elif defined CONFIG_M686 238c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "686 " 248c2ecf20Sopenharmony_ci#elif defined CONFIG_MPENTIUMII 258c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "PENTIUMII " 268c2ecf20Sopenharmony_ci#elif defined CONFIG_MPENTIUMIII 278c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "PENTIUMIII " 288c2ecf20Sopenharmony_ci#elif defined CONFIG_MPENTIUMM 298c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "PENTIUMM " 308c2ecf20Sopenharmony_ci#elif defined CONFIG_MPENTIUM4 318c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "PENTIUM4 " 328c2ecf20Sopenharmony_ci#elif defined CONFIG_MK6 338c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "K6 " 348c2ecf20Sopenharmony_ci#elif defined CONFIG_MK7 358c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "K7 " 368c2ecf20Sopenharmony_ci#elif defined CONFIG_MK8 378c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "K8 " 388c2ecf20Sopenharmony_ci#elif defined CONFIG_MELAN 398c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "ELAN " 408c2ecf20Sopenharmony_ci#elif defined CONFIG_MCRUSOE 418c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "CRUSOE " 428c2ecf20Sopenharmony_ci#elif defined CONFIG_MEFFICEON 438c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "EFFICEON " 448c2ecf20Sopenharmony_ci#elif defined CONFIG_MWINCHIPC6 458c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "WINCHIPC6 " 468c2ecf20Sopenharmony_ci#elif defined CONFIG_MWINCHIP3D 478c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "WINCHIP3D " 488c2ecf20Sopenharmony_ci#elif defined CONFIG_MCYRIXIII 498c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "CYRIXIII " 508c2ecf20Sopenharmony_ci#elif defined CONFIG_MVIAC3_2 518c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "VIAC3-2 " 528c2ecf20Sopenharmony_ci#elif defined CONFIG_MVIAC7 538c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "VIAC7 " 548c2ecf20Sopenharmony_ci#elif defined CONFIG_MGEODEGX1 558c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "GEODEGX1 " 568c2ecf20Sopenharmony_ci#elif defined CONFIG_MGEODE_LX 578c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "GEODE " 588c2ecf20Sopenharmony_ci#else 598c2ecf20Sopenharmony_ci#error unknown processor family 608c2ecf20Sopenharmony_ci#endif 618c2ecf20Sopenharmony_ci 628c2ecf20Sopenharmony_ci#ifdef CONFIG_X86_32 638c2ecf20Sopenharmony_ci# define MODULE_ARCH_VERMAGIC MODULE_PROC_FAMILY 648c2ecf20Sopenharmony_ci#else 658c2ecf20Sopenharmony_ci# define MODULE_ARCH_VERMAGIC "" 668c2ecf20Sopenharmony_ci#endif 678c2ecf20Sopenharmony_ci 688c2ecf20Sopenharmony_ci#endif /* _ASM_VERMAGIC_H */ 69