18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci#ifndef _ASM_VERMAGIC_H 38c2ecf20Sopenharmony_ci#define _ASM_VERMAGIC_H 48c2ecf20Sopenharmony_ci 58c2ecf20Sopenharmony_ci#ifdef CONFIG_CPU_BMIPS 68c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "BMIPS " 78c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_MIPS32_R1 88c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "MIPS32_R1 " 98c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_MIPS32_R2 108c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "MIPS32_R2 " 118c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_MIPS32_R5 128c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "MIPS32_R5 " 138c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_MIPS32_R6 148c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "MIPS32_R6 " 158c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_MIPS64_R1 168c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "MIPS64_R1 " 178c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_MIPS64_R2 188c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "MIPS64_R2 " 198c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_MIPS64_R5 208c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "MIPS64_R5 " 218c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_MIPS64_R6 228c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "MIPS64_R6 " 238c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_R3000 248c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "R3000 " 258c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_TX39XX 268c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "TX39XX " 278c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_VR41XX 288c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "VR41XX " 298c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_R4X00 308c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "R4X00 " 318c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_TX49XX 328c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "TX49XX " 338c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_R5000 348c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "R5000 " 358c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_R5500 368c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "R5500 " 378c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_NEVADA 388c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "NEVADA " 398c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_R10000 408c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "R10000 " 418c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_RM7000 428c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "RM7000 " 438c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_SB1 448c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "SB1 " 458c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_LOONGSON32 468c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "LOONGSON32 " 478c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_LOONGSON2EF 488c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "LOONGSON2EF " 498c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_LOONGSON64 508c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "LOONGSON64 " 518c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_CAVIUM_OCTEON 528c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "OCTEON " 538c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_P5600 548c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "P5600 " 558c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_XLR 568c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "XLR " 578c2ecf20Sopenharmony_ci#elif defined CONFIG_CPU_XLP 588c2ecf20Sopenharmony_ci#define MODULE_PROC_FAMILY "XLP " 598c2ecf20Sopenharmony_ci#else 608c2ecf20Sopenharmony_ci#error MODULE_PROC_FAMILY undefined for your processor configuration 618c2ecf20Sopenharmony_ci#endif 628c2ecf20Sopenharmony_ci 638c2ecf20Sopenharmony_ci#ifdef CONFIG_32BIT 648c2ecf20Sopenharmony_ci#define MODULE_KERNEL_TYPE "32BIT " 658c2ecf20Sopenharmony_ci#elif defined CONFIG_64BIT 668c2ecf20Sopenharmony_ci#define MODULE_KERNEL_TYPE "64BIT " 678c2ecf20Sopenharmony_ci#endif 688c2ecf20Sopenharmony_ci 698c2ecf20Sopenharmony_ci#define MODULE_ARCH_VERMAGIC \ 708c2ecf20Sopenharmony_ci MODULE_PROC_FAMILY MODULE_KERNEL_TYPE 718c2ecf20Sopenharmony_ci 728c2ecf20Sopenharmony_ci#endif /* _ASM_VERMAGIC_H */ 73