cpu-info.h 4.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 1994 Waldorf GMBH
 * Copyright (C) 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003 Ralf Baechle
 * Copyright (C) 1996 Paul M. Antoine
 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
10
 * Copyright (C) 2004  Maciej W. Rozycki
L
Linus Torvalds 已提交
11 12 13 14
 */
#ifndef __ASM_CPU_INFO_H
#define __ASM_CPU_INFO_H

15 16
#include <linux/types.h>

L
Linus Torvalds 已提交
17 18 19 20 21 22 23
#include <asm/cache.h>

/*
 * Descriptor for a cache
 */
struct cache_desc {
	unsigned int waysize;	/* Bytes per way */
24 25 26 27 28
	unsigned short sets;	/* Number of lines per set */
	unsigned char ways;	/* Number of ways */
	unsigned char linesz;	/* Size of line in bytes */
	unsigned char waybit;	/* Bits to select in a cache set */
	unsigned char flags;	/* Flags describing cache properties */
L
Linus Torvalds 已提交
29 30
};

31 32 33 34 35 36 37 38 39
struct guest_info {
	unsigned long		ases;
	unsigned long		ases_dyn;
	unsigned long long	options;
	unsigned long long	options_dyn;
	u8			conf;
	u8			kscratch_mask;
};

L
Linus Torvalds 已提交
40 41 42 43 44 45 46 47
/*
 * Flag definitions
 */
#define MIPS_CACHE_NOT_PRESENT	0x00000001
#define MIPS_CACHE_VTAG		0x00000002	/* Virtually tagged cache */
#define MIPS_CACHE_ALIASES	0x00000004	/* Cache could have aliases */
#define MIPS_CACHE_IC_F_DC	0x00000008	/* Ic can refill from D-cache */
#define MIPS_IC_SNOOPS_REMOTE	0x00000010	/* Ic snoops remote stores */
48
#define MIPS_CACHE_PINDEX	0x00000020	/* Physically indexed cache */
L
Linus Torvalds 已提交
49 50

struct cpuinfo_mips {
51
	unsigned long		asid_cache;
P
Paul Burton 已提交
52 53 54
#ifdef CONFIG_MIPS_ASID_BITS_VARIABLE
	unsigned long		asid_mask;
#endif
L
Linus Torvalds 已提交
55 56 57 58

	/*
	 * Capability and feature descriptor structure for MIPS CPU
	 */
59
	unsigned long		ases;
60
	unsigned long long	options;
61
	unsigned int		udelay_val;
L
Linus Torvalds 已提交
62 63
	unsigned int		processor_id;
	unsigned int		fpu_id;
64 65
	unsigned int		fpu_csr31;
	unsigned int		fpu_msk31;
P
Paul Burton 已提交
66
	unsigned int		msa_id;
L
Linus Torvalds 已提交
67 68 69
	unsigned int		cputype;
	int			isa_level;
	int			tlbsize;
L
Leonid Yegoshin 已提交
70 71 72
	int			tlbsizevtlb;
	int			tlbsizeftlbsets;
	int			tlbsizeftlbways;
R
Ralf Baechle 已提交
73 74
	struct cache_desc	icache; /* Primary I-cache */
	struct cache_desc	dcache; /* Primary D or combined I/D cache */
75
	struct cache_desc	vcache; /* Victim cache, between pcache and scache */
R
Ralf Baechle 已提交
76 77 78
	struct cache_desc	scache; /* Secondary cache */
	struct cache_desc	tcache; /* Tertiary/split secondary cache */
	int			srsets; /* Shadow register sets */
79
	int			package;/* physical package number */
80
	int			core;	/* physical core number */
81
#ifdef CONFIG_64BIT
R
Ralf Baechle 已提交
82
	int			vmbits; /* Virtual memory size in bits */
83
#endif
84
#if defined(CONFIG_MIPS_MT_SMP) || defined(CONFIG_CPU_MIPSR6)
85
	/*
R
Ralf Baechle 已提交
86 87
	 * There is not necessarily a 1:1 mapping of VPE num to CPU number
	 * in particular on multi-core systems.
88
	 */
R
Ralf Baechle 已提交
89
	int			vpe_id;	 /* Virtual Processor number */
90
#endif
R
Ralf Baechle 已提交
91
	void			*data;	/* Additional data */
92 93 94 95
	unsigned int		watch_reg_count;   /* Number that exist */
	unsigned int		watch_reg_use_cnt; /* Usable by ptrace */
#define NUM_WATCH_REGS 4
	u16			watch_reg_masks[NUM_WATCH_REGS];
96
	unsigned int		kscratch_mask; /* Usable KScratch mask. */
97 98 99 100 101
	/*
	 * Cache Coherency attribute for write-combine memory writes.
	 * (shifted by _CACHE_SHIFT)
	 */
	unsigned int		writecombine;
102 103 104 105 106
	/*
	 * Simple counter to prevent enabling HTW in nested
	 * htw_start/htw_stop calls
	 */
	unsigned int		htw_seq;
107 108 109 110 111

	/* VZ & Guest features */
	struct guest_info	guest;
	unsigned int		gtoffset_mask;
	unsigned int		guestid_mask;
L
Linus Torvalds 已提交
112 113 114 115
} __attribute__((aligned(SMP_CACHE_BYTES)));

extern struct cpuinfo_mips cpu_data[];
#define current_cpu_data cpu_data[smp_processor_id()]
116
#define raw_current_cpu_data cpu_data[raw_smp_processor_id()]
117
#define boot_cpu_data cpu_data[0]
L
Linus Torvalds 已提交
118 119 120 121

extern void cpu_probe(void);
extern void cpu_report(void);

122
extern const char *__cpu_name[];
123
#define cpu_name_string()	__cpu_name[raw_smp_processor_id()]
124

125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
struct seq_file;
struct notifier_block;

extern int register_proc_cpuinfo_notifier(struct notifier_block *nb);
extern int proc_cpuinfo_notifier_call_chain(unsigned long val, void *v);

#define proc_cpuinfo_notifier(fn, pri)					\
({									\
	static struct notifier_block fn##_nb = {			\
		.notifier_call = fn,					\
		.priority = pri						\
	};								\
									\
	register_proc_cpuinfo_notifier(&fn##_nb);			\
})

struct proc_cpuinfo_notifier_args {
	struct seq_file *m;
	unsigned long n;
};

146
#if defined(CONFIG_MIPS_MT_SMP) || defined(CONFIG_CPU_MIPSR6)
P
Paul Burton 已提交
147 148
# define cpu_vpe_id(cpuinfo)	((cpuinfo)->vpe_id)
#else
149
# define cpu_vpe_id(cpuinfo)	({ (void)cpuinfo; 0; })
P
Paul Burton 已提交
150 151
#endif

152 153 154 155 156 157 158
static inline unsigned long cpu_asid_inc(void)
{
	return 1 << CONFIG_MIPS_ASID_SHIFT;
}

static inline unsigned long cpu_asid_mask(struct cpuinfo_mips *cpuinfo)
{
P
Paul Burton 已提交
159 160 161
#ifdef CONFIG_MIPS_ASID_BITS_VARIABLE
	return cpuinfo->asid_mask;
#endif
162 163 164
	return ((1 << CONFIG_MIPS_ASID_BITS) - 1) << CONFIG_MIPS_ASID_SHIFT;
}

P
Paul Burton 已提交
165 166 167 168 169 170 171 172
static inline void set_cpu_asid_mask(struct cpuinfo_mips *cpuinfo,
				     unsigned long asid_mask)
{
#ifdef CONFIG_MIPS_ASID_BITS_VARIABLE
	cpuinfo->asid_mask = asid_mask;
#endif
}

L
Linus Torvalds 已提交
173
#endif /* __ASM_CPU_INFO_H */