Deleted Added
full compact
locore.h (211862) locore.h (232615)
1/* $NetBSD: locore.h,v 1.78 2007/10/17 19:55:36 garbled Exp $ */
2
3/*
4 * Copyright 1996 The Board of Trustees of The Leland Stanford
5 * Junior University. All Rights Reserved.
6 *
7 * Permission to use, copy, modify, and distribute this
8 * software and its documentation for any purpose and without
9 * fee is hereby granted, provided that the above copyright
10 * notice appear in all copies. Stanford University
11 * makes no representations about the suitability of this
12 * software for any purpose. It is provided "as is" without
13 * express or implied warranty.
14 *
1/* $NetBSD: locore.h,v 1.78 2007/10/17 19:55:36 garbled Exp $ */
2
3/*
4 * Copyright 1996 The Board of Trustees of The Leland Stanford
5 * Junior University. All Rights Reserved.
6 *
7 * Permission to use, copy, modify, and distribute this
8 * software and its documentation for any purpose and without
9 * fee is hereby granted, provided that the above copyright
10 * notice appear in all copies. Stanford University
11 * makes no representations about the suitability of this
12 * software for any purpose. It is provided "as is" without
13 * express or implied warranty.
14 *
15 * $FreeBSD: head/sys/mips/include/locore.h 211862 2010-08-27 07:45:50Z jchandra $
15 * $FreeBSD: head/sys/mips/include/locore.h 232615 2012-03-06 19:01:32Z jmallett $
16 */
17
18/*
19 * Jump table for MIPS cpu locore functions that are implemented
20 * differently on different generations, or instruction-level
21 * archtecture (ISA) level, the Mips family.
22 *
23 * We currently provide support for MIPS I and MIPS III.

--- 5 unchanged lines hidden (view full) ---

29#include <machine/cpufunc.h>
30#include <machine/cpuregs.h>
31#include <machine/frame.h>
32#include <machine/md_var.h>
33
34/*
35 * CPU identification, from PRID register.
36 */
16 */
17
18/*
19 * Jump table for MIPS cpu locore functions that are implemented
20 * differently on different generations, or instruction-level
21 * archtecture (ISA) level, the Mips family.
22 *
23 * We currently provide support for MIPS I and MIPS III.

--- 5 unchanged lines hidden (view full) ---

29#include <machine/cpufunc.h>
30#include <machine/cpuregs.h>
31#include <machine/frame.h>
32#include <machine/md_var.h>
33
34/*
35 * CPU identification, from PRID register.
36 */
37typedef int mips_prid_t;
38
39#define MIPS_PRID_REV(x) (((x) >> 0) & 0x00ff)
40#define MIPS_PRID_IMPL(x) (((x) >> 8) & 0x00ff)
41
42/* pre-MIPS32/64 */
43#define MIPS_PRID_RSVD(x) (((x) >> 16) & 0xffff)
44#define MIPS_PRID_REV_MIN(x) ((MIPS_PRID_REV(x) >> 0) & 0x0f)
45#define MIPS_PRID_REV_MAJ(x) ((MIPS_PRID_REV(x) >> 4) & 0x0f)

--- 11 unchanged lines hidden (view full) ---

57#define MIPS_PRID_CID_LSI 0x08 /* LSI */
58 /* 0x09 unannounced */
59 /* 0x0a unannounced */
60#define MIPS_PRID_CID_LEXRA 0x0b /* Lexra */
61#define MIPS_PRID_CID_RMI 0x0c /* RMI */
62#define MIPS_PRID_CID_CAVIUM 0x0d /* Cavium */
63#define MIPS_PRID_COPTS(x) (((x) >> 24) & 0x00ff) /* Company Options */
64
37
38#define MIPS_PRID_REV(x) (((x) >> 0) & 0x00ff)
39#define MIPS_PRID_IMPL(x) (((x) >> 8) & 0x00ff)
40
41/* pre-MIPS32/64 */
42#define MIPS_PRID_RSVD(x) (((x) >> 16) & 0xffff)
43#define MIPS_PRID_REV_MIN(x) ((MIPS_PRID_REV(x) >> 0) & 0x0f)
44#define MIPS_PRID_REV_MAJ(x) ((MIPS_PRID_REV(x) >> 4) & 0x0f)

--- 11 unchanged lines hidden (view full) ---

56#define MIPS_PRID_CID_LSI 0x08 /* LSI */
57 /* 0x09 unannounced */
58 /* 0x0a unannounced */
59#define MIPS_PRID_CID_LEXRA 0x0b /* Lexra */
60#define MIPS_PRID_CID_RMI 0x0c /* RMI */
61#define MIPS_PRID_CID_CAVIUM 0x0d /* Cavium */
62#define MIPS_PRID_COPTS(x) (((x) >> 24) & 0x00ff) /* Company Options */
63
65#ifdef _KERNEL
66#ifdef __HAVE_MIPS_MACHDEP_CACHE_CONFIG
67void mips_machdep_cache_config(void);
68#endif
69#endif /* _KERNEL */
70#endif /* _MIPS_LOCORE_H */
64#endif /* _MIPS_LOCORE_H */