cpu-info.h 5.9 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
#include <linux/cache.h>
16 17
#include <linux/types.h>

18 19
#include <asm/mipsregs.h>

L
Linus Torvalds 已提交
20 21 22 23 24
/*
 * Descriptor for a cache
 */
struct cache_desc {
	unsigned int waysize;	/* Bytes per way */
25 26 27 28 29
	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 已提交
30 31
};

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

L
Linus Torvalds 已提交
42 43 44 45 46 47 48 49
/*
 * 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 */
50
#define MIPS_CACHE_PINDEX	0x00000020	/* Physically indexed cache */
L
Linus Torvalds 已提交
51 52

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

	/*
	 * Capability and feature descriptor structure for MIPS CPU
	 */
61
	unsigned long		ases;
62
	unsigned long long	options;
63
	unsigned int		udelay_val;
L
Linus Torvalds 已提交
64 65
	unsigned int		processor_id;
	unsigned int		fpu_id;
66 67
	unsigned int		fpu_csr31;
	unsigned int		fpu_msk31;
P
Paul Burton 已提交
68
	unsigned int		msa_id;
L
Linus Torvalds 已提交
69 70 71
	unsigned int		cputype;
	int			isa_level;
	int			tlbsize;
L
Leonid Yegoshin 已提交
72 73 74
	int			tlbsizevtlb;
	int			tlbsizeftlbsets;
	int			tlbsizeftlbways;
R
Ralf Baechle 已提交
75 76
	struct cache_desc	icache; /* Primary I-cache */
	struct cache_desc	dcache; /* Primary D or combined I/D cache */
77
	struct cache_desc	vcache; /* Victim cache, between pcache and scache */
R
Ralf Baechle 已提交
78 79 80
	struct cache_desc	scache; /* Secondary cache */
	struct cache_desc	tcache; /* Tertiary/split secondary cache */
	int			srsets; /* Shadow register sets */
81
	int			package;/* physical package number */
82
	unsigned int		globalnumber;
83
#ifdef CONFIG_64BIT
R
Ralf Baechle 已提交
84
	int			vmbits; /* Virtual memory size in bits */
85
#endif
R
Ralf Baechle 已提交
86
	void			*data;	/* Additional data */
87 88 89 90
	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];
91
	unsigned int		kscratch_mask; /* Usable KScratch mask. */
92 93 94 95 96
	/*
	 * Cache Coherency attribute for write-combine memory writes.
	 * (shifted by _CACHE_SHIFT)
	 */
	unsigned int		writecombine;
97 98 99 100 101
	/*
	 * Simple counter to prevent enabling HTW in nested
	 * htw_start/htw_stop calls
	 */
	unsigned int		htw_seq;
102 103 104 105 106

	/* VZ & Guest features */
	struct guest_info	guest;
	unsigned int		gtoffset_mask;
	unsigned int		guestid_mask;
J
James Hogan 已提交
107
	unsigned int		guestid_cache;
L
Linus Torvalds 已提交
108 109 110 111
} __attribute__((aligned(SMP_CACHE_BYTES)));

extern struct cpuinfo_mips cpu_data[];
#define current_cpu_data cpu_data[smp_processor_id()]
112
#define raw_current_cpu_data cpu_data[raw_smp_processor_id()]
113
#define boot_cpu_data cpu_data[0]
L
Linus Torvalds 已提交
114 115 116 117

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

118
extern const char *__cpu_name[];
119
#define cpu_name_string()	__cpu_name[raw_smp_processor_id()]
120

121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
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;
};

142 143 144 145 146 147 148 149 150 151
static inline unsigned int cpu_cluster(struct cpuinfo_mips *cpuinfo)
{
	/* Optimisation for systems where multiple clusters aren't used */
	if (!IS_ENABLED(CONFIG_CPU_MIPSR6))
		return 0;

	return (cpuinfo->globalnumber & MIPS_GLOBALNUMBER_CLUSTER) >>
		MIPS_GLOBALNUMBER_CLUSTER_SHF;
}

152 153
static inline unsigned int cpu_core(struct cpuinfo_mips *cpuinfo)
{
154 155
	return (cpuinfo->globalnumber & MIPS_GLOBALNUMBER_CORE) >>
		MIPS_GLOBALNUMBER_CORE_SHF;
156 157 158 159
}

static inline unsigned int cpu_vpe_id(struct cpuinfo_mips *cpuinfo)
{
160 161 162
	/* Optimisation for systems where VP(E)s aren't used */
	if (!IS_ENABLED(CONFIG_MIPS_MT_SMP) && !IS_ENABLED(CONFIG_CPU_MIPSR6))
		return 0;
163

164 165
	return (cpuinfo->globalnumber & MIPS_GLOBALNUMBER_VP) >>
		MIPS_GLOBALNUMBER_VP_SHF;
166
}
P
Paul Burton 已提交
167

168
extern void cpu_set_cluster(struct cpuinfo_mips *cpuinfo, unsigned int cluster);
169 170 171
extern void cpu_set_core(struct cpuinfo_mips *cpuinfo, unsigned int core);
extern void cpu_set_vpe_id(struct cpuinfo_mips *cpuinfo, unsigned int vpe);

172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
static inline bool cpus_are_siblings(int cpua, int cpub)
{
	struct cpuinfo_mips *infoa = &cpu_data[cpua];
	struct cpuinfo_mips *infob = &cpu_data[cpub];
	unsigned int gnuma, gnumb;

	if (infoa->package != infob->package)
		return false;

	gnuma = infoa->globalnumber & ~MIPS_GLOBALNUMBER_VP;
	gnumb = infob->globalnumber & ~MIPS_GLOBALNUMBER_VP;
	if (gnuma != gnumb)
		return false;

	return true;
}

189 190 191 192 193 194 195
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 已提交
196 197 198
#ifdef CONFIG_MIPS_ASID_BITS_VARIABLE
	return cpuinfo->asid_mask;
#endif
199 200 201
	return ((1 << CONFIG_MIPS_ASID_BITS) - 1) << CONFIG_MIPS_ASID_SHIFT;
}

P
Paul Burton 已提交
202 203 204 205 206 207 208 209
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 已提交
210
#endif /* __ASM_CPU_INFO_H */