2005-04-17 05:20:36 +07:00
|
|
|
#ifndef _ASM_MODULE_H
|
|
|
|
#define _ASM_MODULE_H
|
|
|
|
|
|
|
|
#include <linux/list.h>
|
2012-02-29 07:24:47 +07:00
|
|
|
#include <linux/elf.h>
|
2005-04-17 05:20:36 +07:00
|
|
|
#include <asm/uaccess.h>
|
|
|
|
|
|
|
|
struct mod_arch_specific {
|
|
|
|
/* Data Bus Error exception tables */
|
|
|
|
struct list_head dbe_list;
|
|
|
|
const struct exception_table_entry *dbe_start;
|
|
|
|
const struct exception_table_entry *dbe_end;
|
2012-08-08 21:59:43 +07:00
|
|
|
struct mips_hi16 *r_mips_hi16_list;
|
2005-04-17 05:20:36 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef uint8_t Elf64_Byte; /* Type for a 8-bit quantity. */
|
|
|
|
|
2005-02-21 17:45:09 +07:00
|
|
|
typedef struct {
|
|
|
|
Elf64_Addr r_offset; /* Address of relocation. */
|
|
|
|
Elf64_Word r_sym; /* Symbol index. */
|
|
|
|
Elf64_Byte r_ssym; /* Special symbol. */
|
|
|
|
Elf64_Byte r_type3; /* Third relocation. */
|
|
|
|
Elf64_Byte r_type2; /* Second relocation. */
|
|
|
|
Elf64_Byte r_type; /* First relocation. */
|
|
|
|
} Elf64_Mips_Rel;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
Elf64_Addr r_offset; /* Address of relocation. */
|
|
|
|
Elf64_Word r_sym; /* Symbol index. */
|
|
|
|
Elf64_Byte r_ssym; /* Special symbol. */
|
|
|
|
Elf64_Byte r_type3; /* Third relocation. */
|
|
|
|
Elf64_Byte r_type2; /* Second relocation. */
|
|
|
|
Elf64_Byte r_type; /* First relocation. */
|
|
|
|
Elf64_Sxword r_addend; /* Addend. */
|
2005-04-17 05:20:36 +07:00
|
|
|
} Elf64_Mips_Rela;
|
|
|
|
|
2005-09-04 05:56:16 +07:00
|
|
|
#ifdef CONFIG_32BIT
|
2005-04-17 05:20:36 +07:00
|
|
|
#define Elf_Shdr Elf32_Shdr
|
|
|
|
#define Elf_Sym Elf32_Sym
|
|
|
|
#define Elf_Ehdr Elf32_Ehdr
|
2005-02-21 17:45:09 +07:00
|
|
|
#define Elf_Addr Elf32_Addr
|
2012-09-28 12:01:03 +07:00
|
|
|
#define Elf_Rel Elf32_Rel
|
|
|
|
#define Elf_Rela Elf32_Rela
|
|
|
|
#define ELF_R_TYPE(X) ELF32_R_TYPE(X)
|
|
|
|
#define ELF_R_SYM(X) ELF32_R_SYM(X)
|
2005-02-21 17:45:09 +07:00
|
|
|
|
|
|
|
#define Elf_Mips_Rel Elf32_Rel
|
|
|
|
#define Elf_Mips_Rela Elf32_Rela
|
|
|
|
|
|
|
|
#define ELF_MIPS_R_SYM(rel) ELF32_R_SYM(rel.r_info)
|
|
|
|
#define ELF_MIPS_R_TYPE(rel) ELF32_R_TYPE(rel.r_info)
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2005-09-04 05:56:16 +07:00
|
|
|
#ifdef CONFIG_64BIT
|
2005-04-17 05:20:36 +07:00
|
|
|
#define Elf_Shdr Elf64_Shdr
|
|
|
|
#define Elf_Sym Elf64_Sym
|
|
|
|
#define Elf_Ehdr Elf64_Ehdr
|
2005-02-21 17:45:09 +07:00
|
|
|
#define Elf_Addr Elf64_Addr
|
2012-09-28 12:01:03 +07:00
|
|
|
#define Elf_Rel Elf64_Rel
|
|
|
|
#define Elf_Rela Elf64_Rela
|
|
|
|
#define ELF_R_TYPE(X) ELF64_R_TYPE(X)
|
|
|
|
#define ELF_R_SYM(X) ELF64_R_SYM(X)
|
2005-02-21 17:45:09 +07:00
|
|
|
|
|
|
|
#define Elf_Mips_Rel Elf64_Mips_Rel
|
|
|
|
#define Elf_Mips_Rela Elf64_Mips_Rela
|
|
|
|
|
|
|
|
#define ELF_MIPS_R_SYM(rel) (rel.r_sym)
|
|
|
|
#define ELF_MIPS_R_TYPE(rel) (rel.r_type)
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_MODULES
|
|
|
|
/* Given an address, look for it in the exception tables. */
|
|
|
|
const struct exception_table_entry*search_module_dbetables(unsigned long addr);
|
|
|
|
#else
|
|
|
|
/* Given an address, look for it in the exception tables. */
|
|
|
|
static inline const struct exception_table_entry *
|
|
|
|
search_module_dbetables(unsigned long addr)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-11-16 08:25:40 +07:00
|
|
|
#ifdef CONFIG_CPU_BMIPS
|
|
|
|
#define MODULE_PROC_FAMILY "BMIPS "
|
|
|
|
#elif defined CONFIG_CPU_MIPS32_R1
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "MIPS32_R1 "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_MIPS32_R2
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "MIPS32_R2 "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_MIPS64_R1
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "MIPS64_R1 "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_MIPS64_R2
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "MIPS64_R2 "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_R3000
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "R3000 "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_TX39XX
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "TX39XX "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_VR41XX
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "VR41XX "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_R4300
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "R4300 "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_R4X00
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "R4X00 "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_TX49XX
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "TX49XX "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_R5000
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "R5000 "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_R5432
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "R5432 "
|
2008-10-23 23:27:57 +07:00
|
|
|
#elif defined CONFIG_CPU_R5500
|
|
|
|
#define MODULE_PROC_FAMILY "R5500 "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_R6000
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "R6000 "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_NEVADA
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "NEVADA "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_R8000
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "R8000 "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_R10000
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "R10000 "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_RM7000
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "RM7000 "
|
2005-09-13 03:22:07 +07:00
|
|
|
#elif defined CONFIG_CPU_SB1
|
2005-10-31 07:33:01 +07:00
|
|
|
#define MODULE_PROC_FAMILY "SB1 "
|
2012-06-21 02:05:32 +07:00
|
|
|
#elif defined CONFIG_CPU_LOONGSON1
|
|
|
|
#define MODULE_PROC_FAMILY "LOONGSON1 "
|
2007-06-06 13:52:43 +07:00
|
|
|
#elif defined CONFIG_CPU_LOONGSON2
|
|
|
|
#define MODULE_PROC_FAMILY "LOONGSON2 "
|
MIPS: Loongson: Add basic Loongson-3 definition
Loongson-3 is a multi-core MIPS family CPU, it support MIPS64R2 fully.
Loongson-3 has the same IMP field (0x6300) as Loongson-2.
Loongson-3 has a hardware-maintained cache, system software doesn't
need to maintain coherency.
Loongson-3A is the first revision of Loongson-3, and it is the quad-
core version of Loongson-2G. Loongson-3A has a simplified version named
Loongson-2Gq, the main difference between Loongson-3A/2Gq is 3A has two
HyperTransport controller but 2Gq has only one. HT0 is used for cross-
chip interconnection and HT1 is used to link PCI bus. Therefore, 2Gq
cannot support NUMA but 3A can. For software, Loongson-2Gq is simply
identified as Loongson-3A.
Exsisting Loongson family CPUs:
Loongson-1: Loongson-1A, Loongson-1B, they are 32-bit MIPS CPUs.
Loongson-2: Loongson-2E, Loongson-2F, Loongson-2G, they are 64-bit
single-core MIPS CPUs.
Loongson-3: Loongson-3A(including so-called Loongson-2Gq), they are
64-bit multi-core MIPS CPUs.
Signed-off-by: Huacai Chen <chenhc@lemote.com>
Signed-off-by: Hongliang Tao <taohl@lemote.com>
Signed-off-by: Hua Yan <yanh@lemote.com>
Tested-by: Alex Smith <alex.smith@imgtec.com>
Reviewed-by: Alex Smith <alex.smith@imgtec.com>
Cc: John Crispin <john@phrozen.org>
Cc: Steven J. Hill <Steven.Hill@imgtec.com>
Cc: Aurelien Jarno <aurelien@aurel32.net>
Cc: linux-mips@linux-mips.org
Cc: Fuxin Zhang <zhangfx@lemote.com>
Cc: Zhangjin Wu <wuzhangjin@gmail.com>
Patchwork: https://patchwork.linux-mips.org/patch/6629/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
2014-03-21 17:43:59 +07:00
|
|
|
#elif defined CONFIG_CPU_LOONGSON3
|
|
|
|
#define MODULE_PROC_FAMILY "LOONGSON3 "
|
2008-12-12 06:33:26 +07:00
|
|
|
#elif defined CONFIG_CPU_CAVIUM_OCTEON
|
|
|
|
#define MODULE_PROC_FAMILY "OCTEON "
|
2011-05-07 03:06:21 +07:00
|
|
|
#elif defined CONFIG_CPU_XLR
|
|
|
|
#define MODULE_PROC_FAMILY "XLR "
|
2011-11-16 07:21:20 +07:00
|
|
|
#elif defined CONFIG_CPU_XLP
|
|
|
|
#define MODULE_PROC_FAMILY "XLP "
|
2005-09-13 03:22:07 +07:00
|
|
|
#else
|
|
|
|
#error MODULE_PROC_FAMILY undefined for your processor configuration
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_32BIT
|
|
|
|
#define MODULE_KERNEL_TYPE "32BIT "
|
|
|
|
#elif defined CONFIG_64BIT
|
|
|
|
#define MODULE_KERNEL_TYPE "64BIT "
|
|
|
|
#endif
|
|
|
|
|
2007-06-20 20:25:27 +07:00
|
|
|
#define MODULE_ARCH_VERMAGIC \
|
2014-05-23 21:29:44 +07:00
|
|
|
MODULE_PROC_FAMILY MODULE_KERNEL_TYPE
|
2005-09-13 03:22:07 +07:00
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
#endif /* _ASM_MODULE_H */
|