mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 10:19:26 +00:00
30a3cd0d55
r201881 | imp | 2010-01-08 20:08:22 -0700 (Fri, 08 Jan 2010) | 3 lines Rename mips_pcpu_init to mips_pcpu0_init since it applies only to the BSP. Provide a missing prototype. r200343 | imp | 2009-12-09 18:44:11 -0700 (Wed, 09 Dec 2009) | 4 lines Get the sense of this right. We use uintpr_t for bus_addr_t when we're building everything except octeon && 32-bit. As note before, we need a clearner way, but at least now the hack is right. r199760 | imp | 2009-11-24 10:15:22 -0700 (Tue, 24 Nov 2009) | 2 lines Add in Cavium's CID. Report what the unknown CID is. r199754 | imp | 2009-11-24 09:32:31 -0700 (Tue, 24 Nov 2009) | 6 lines Include opt_cputype.h for all .c and .S files referencing TARGET_OCTEON. Spell ld script name right. r199599 | imp | 2009-11-20 09:32:26 -0700 (Fri, 20 Nov 2009) | 2 lines Another kludge for 64-bit bus_addr_t with 32-bit pointers... r199496 | gonzo | 2009-11-18 15:52:05 -0700 (Wed, 18 Nov 2009) | 5 lines - Add cpu_init_interrupts function that is supposed to prepeare stuff required for spinning out interrupts later - Add API for managing intrcnt/intrnames arrays - Some minor style(9) fixes r198958 | rrs | 2009-11-05 11:15:47 -0700 (Thu, 05 Nov 2009) | 2 lines For XLR adds extern for its bus space routines r198669 | rrs | 2009-10-30 02:53:11 -0600 (Fri, 30 Oct 2009) | 5 lines With this commit our friend RMI will now compile. I have not tested it and the chances of it running yet are about ZERO.. but it will now compile. The hard part now begins, making it run ;-) r198666 | imp | 2009-10-29 18:37:50 -0600 (Thu, 29 Oct 2009) | 2 lines Add some newer MIPS CO cores. r198665 | imp | 2009-10-29 18:37:04 -0600 (Thu, 29 Oct 2009) | 4 lines db_expr_t is really closer to a register_t. Submitted by: bde@ r198531 | gonzo | 2009-10-27 18:01:20 -0600 (Tue, 27 Oct 2009) | 3 lines - Remove bunch of declared but not defined cach-related variables - Add mips_picache_linesize and mips_pdcache_linesize variables r198354 | neel | 2009-10-21 20:51:31 -0600 (Wed, 21 Oct 2009) | 9 lines Get rid of the hardcoded constants to define cacheable memory: SDRAM_ADDR_START, SDRAM_ADDR_END and SDRAM_MEM_SIZE Instead we now keep a copy of the memory regions enumerated by platform-specific code and use that to determine whether an address is cacheable or not. r198310 | gonzo | 2009-10-20 17:13:08 -0600 (Tue, 20 Oct 2009) | 5 lines - Commit missing part of "bt" fix: store PC register in pcb_context struct in cpu_switch and use it in stack_trace function later. pcb_regs contains state of the process stored by exception handler and therefor is not valid for sleeping processes. r198207 | imp | 2009-10-18 08:57:04 -0600 (Sun, 18 Oct 2009) | 2 lines Undo spamage of last MFC. r198206 | imp | 2009-10-18 08:56:33 -0600 (Sun, 18 Oct 2009) | 3 lines _ALIGN has to return u_long, since pointers don't fit into u_int in 64-bit mips. r198182 | gonzo | 2009-10-16 18:22:07 -0600 (Fri, 16 Oct 2009) | 11 lines - Use PC/RA/SP values as arguments for stacktrace_subr instead of trapframe. Context info could be obtained from other sources (see below) no only from td_pcb field - Do not show a0..a3 values unless they're obtained from the stack. These are only confirmed values. - Fix bt command in DDB. Previous implementation used thread's trapframe structure as a source info for trace unwinding, but this structure is filled only when exception occurs. Valid register values for sleeping processes are in pcb_context array. For curthread use pc/sp/ra for current frame r198181 | gonzo | 2009-10-16 16:52:18 -0600 (Fri, 16 Oct 2009) | 2 lines - Get rid of label_t. It came from NetBSD and was used only in one place r198154 | rrs | 2009-10-15 15:03:32 -0600 (Thu, 15 Oct 2009) | 10 lines Does 4 things: 1) Adds future RMI directories 2) Places intr_machdep.c in specfic files.arch pointing to the generic intr_machdep.c. This allows us to have an architecture dependant intr_machdep.c (which we will need for RMI) in the machine specific directory 3) removes intr_machdep.c from files.mips 4) Adds some TARGET_XLR_XLS ifdef's for the machine specific intra_machdep.h. We may need to look at finding a better place to put this. But first I want to get this thing compiling. r198066 | gonzo | 2009-10-13 19:43:53 -0600 (Tue, 13 Oct 2009) | 5 lines - Move stack tracing function to db_trace.c - Axe unused extern MipsXXX declarations - Move all declarations for functions in exceptions.S/swtch.S from trap.c to respective headers r197685 | gonzo | 2009-10-01 14:05:36 -0600 (Thu, 01 Oct 2009) | 2 lines - Sync caches properly when dealing with sf_buf r196215 | imp | 2009-08-14 10:15:18 -0600 (Fri, 14 Aug 2009) | 6 lines (u_int) is the wrong type here. Use unsigned long instead, even though that's only less wrong... r196199 | imp | 2009-08-13 13:47:13 -0600 (Thu, 13 Aug 2009) | 7 lines Use unsigned long instead of unsigned for the integer casts here. The former works for both ILP32 and LP64 programming models, while the latter fails LP64. r196089 | gonzo | 2009-08-09 19:49:59 -0600 (Sun, 09 Aug 2009) | 4 lines - Make i/d cache size field 32-bit to prevent overflow Submited by: Neelkanth Natu r195582 | imp | 2009-07-10 13:07:07 -0600 (Fri, 10 Jul 2009) | 2 lines fix prototype for MipsEmulateBranch. r195581 | imp | 2009-07-10 13:06:43 -0600 (Fri, 10 Jul 2009) | 2 lines Better definitions for a few types for n32/n64. r195580 | imp | 2009-07-10 13:06:15 -0600 (Fri, 10 Jul 2009) | 5 lines Fixed aligned macros... r195478 | gonzo | 2009-07-08 16:28:36 -0600 (Wed, 08 Jul 2009) | 5 lines - Port busdma code from FreeBSD/arm. This is more mature version that takes into account all limitation to DMA memory (boundaries, alignment) and implements bounce pages. - Add BUS_DMASYNC_POSTREAD case to bus_dmamap_sync_buf r195440 | imp | 2009-07-08 00:01:37 -0600 (Wed, 08 Jul 2009) | 2 lines Fix atomic_store_64 prototype for 64-bit systems. r195392 | imp | 2009-07-05 20:27:03 -0600 (Sun, 05 Jul 2009) | 3 lines The MCOUNT macro isn't going to work in 64-bit mode. Add a note to this effect. r195391 | imp | 2009-07-05 20:22:51 -0600 (Sun, 05 Jul 2009) | 3 lines Provide a macro for PTR_ADDU as well. We may need to implement this differently for N32... Use PTR_ADDU in DO_AST macro. r195390 | imp | 2009-07-05 20:22:06 -0600 (Sun, 05 Jul 2009) | 4 lines Change the addu here to daddu. addu paranoina prodded by: jmallet@ r195382 | imp | 2009-07-05 15:16:26 -0600 (Sun, 05 Jul 2009) | 5 lines addu and subu are special. We need to use daddu and dsubu here to get proper behavior. Submitted by: jmallet@ r195370 | imp | 2009-07-05 09:20:16 -0600 (Sun, 05 Jul 2009) | 6 lines The SB1 has cohernet memory, so add it. Also, Maxmem is better as a long. Submitted by: Neelkanth Natu r195369 | imp | 2009-07-05 09:19:28 -0600 (Sun, 05 Jul 2009) | 4 lines The SB1 needs a special value for the cache field of the pte. Submitted by: Neelkanth Natu r195368 | imp | 2009-07-05 09:18:06 -0600 (Sun, 05 Jul 2009) | 2 lines compute the areas to save registers in for 64-bit access correctly. r195367 | imp | 2009-07-05 09:17:11 -0600 (Sun, 05 Jul 2009) | 3 lines First cut at 64-bit types. not 100% sure these are all correct for N32 ABI. r195366 | imp | 2009-07-05 09:16:27 -0600 (Sun, 05 Jul 2009) | 3 lines Trim unreferenced goo. SDRAM likely should be next, but it is still referenced. r195365 | imp | 2009-07-05 09:13:24 -0600 (Sun, 05 Jul 2009) | 9 lines First cut at atomics for 64-bit machines and SMP machines. # Note: Cavium provided a port that has atomics similar to these, but # that does a syncw; sync; atomic; sync; syncw where we just do the classic # mips 'atomic' operation (eg ll; frob; sc). It is unclear to me why # the extra is needed. Since my initial target is one core, I'll defer # investigation until I bring up multiple cores. syncw is an octeon specific # instruction. r195359 | imp | 2009-07-05 02:14:00 -0600 (Sun, 05 Jul 2009) | 4 lines Bring in cdefs.h from NetBSD to define ABI goo. Obtained from: NetBSD r195358 | imp | 2009-07-05 02:13:19 -0600 (Sun, 05 Jul 2009) | 4 lines Pull in machine/cdefs.h for the ABI definitions. Provide a PTR_LA, ala sgi, and use it in preference to a bare 'la' so that it gets translated to a 'dla' for the 64-bit pointer ABIs. r195357 | imp | 2009-07-05 01:01:34 -0600 (Sun, 05 Jul 2009) | 2 lines Use uintptr_t rather than unsigned here for 64-bit correctness. r195356 | imp | 2009-07-05 01:00:51 -0600 (Sun, 05 Jul 2009) | 6 lines Define __ELF_WORD_SIZE appropriately for n64. Note for N32 I believe this is correct. While registers are 64-bit, n32 is a 32-bit ABI and lives in a 32-bit world (with explicit 64-bit registers, however). Change an 8, which was 4 + 4 or sizeof(int) + SZREG to be a simple '4 + SZREG' to reflect the actual offset of the structure in question. r195355 | imp | 2009-07-05 00:56:51 -0600 (Sun, 05 Jul 2009) | 7 lines (1) Use uintptr_t in preference to unsigned. The latter isn't right for 64-bit case, while the former is. (2) include a SB1 specific coherency mapping Submitted by: Neelkanth Nath (2) r195352 | imp | 2009-07-05 00:44:37 -0600 (Sun, 05 Jul 2009) | 3 lines db_expr_t should be a intptr_t, not an int. These expressions can be addresses or numbers, and that's a intptr_t if I ever saw one. r195351 | imp | 2009-07-05 00:43:01 -0600 (Sun, 05 Jul 2009) | 4 lines Define COP0_SYNC for SB1 CPU. Submitted by: Neelkanth Natu r195350 | imp | 2009-07-05 00:39:37 -0600 (Sun, 05 Jul 2009) | 7 lines Switch to ABI agnostic ta0-ta3. Provide defs for this in the right places. Provide n32/n64 register name defintions. This should have no effect for the O32 builds that everybody else uses, but should help make N64 builds possible (lots of other changes are needed for that). Obtained from: NetBSD (for the regdef.h changes) r195128 | gonzo | 2009-06-27 17:27:41 -0600 (Sat, 27 Jun 2009) | 4 lines - Add support for handling TLS area address in kernel space. From the userland point of view get/set operations are performed using sysarch(2) call. r195076 | gonzo | 2009-06-26 13:54:06 -0600 (Fri, 26 Jun 2009) | 2 lines - Add guards to ensure that these files are included only once r194469 | gonzo | 2009-06-18 22:43:49 -0600 (Thu, 18 Jun 2009) | 16 lines - Mark temp variable as "earlyclobber" in assembler inline in atomic_fetchadd_32. Without it gcc would use it as input register for v and sometimes generate following code for function call like atomic_fetchadd_32(&(fp)->f_count, -1): 801238b4: 2402ffff li v0,-1 801238b8: c2230018 ll v1,24(s1) 801238bc: 00431021 addu v0,v0,v1 801238c0: e2220018 sc v0,24(s1) 801238c4: 1040fffc beqz v0,801238b8 <dupfdopen+0x2e8> 801238c8: 00000000 nop Which is definitly wrong because if sc fails v0 is set to 0 and previous value of -1 is overriden hence whole operation turns to bogus r194164 | imp | 2009-06-14 00:14:25 -0600 (Sun, 14 Jun 2009) | 3 lines bye bye. This is no longer referenced, but much code from it will resurface for a bus-space implementation. r194160 | imp | 2009-06-14 00:10:36 -0600 (Sun, 14 Jun 2009) | 3 lines Cavium-specific goo is no longer necessary here. Of course, I now have to write a bus space for cavium, but that shouldn't be too hard. r194157 | imp | 2009-06-14 00:01:46 -0600 (Sun, 14 Jun 2009) | 2 lines Move this to a more approrpiate plae. r194156 | imp | 2009-06-13 23:29:13 -0600 (Sat, 13 Jun 2009) | 2 lines Bring this in from the cavium port. r193487 | gonzo | 2009-06-05 02:37:11 -0600 (Fri, 05 Jun 2009) | 2 lines - Use restoreintr instead of enableint while accessing pcpu in DO_AST r192864 | gonzo | 2009-05-26 16:40:12 -0600 (Tue, 26 May 2009) | 4 lines - Replace CPU_NOFPU and SOFTFLOAT options with CPU_FPU. By default we assume that there is no FPU, because majority of SoC does not have it. r192817 | gonzo | 2009-05-26 10:35:05 -0600 (Tue, 26 May 2009) | 2 lines - Add type cast for atomic_cmpset_acq_ptr arguments r192792 | gonzo | 2009-05-26 00:01:17 -0600 (Tue, 26 May 2009) | 2 lines - Remove now unused NetBSDism intr.h r192177 | gonzo | 2009-05-15 20:39:13 -0600 (Fri, 15 May 2009) | 4 lines - Add MIPS_IS_KSEG0_ADDR, MIPS_IS_KSEG1_ADDR and MIPS_IS_VALID_PTR macroses thet check if address belongs to KSEG0, KSEG1 or both of them respectively. r191589 | gonzo | 2009-04-27 13:18:55 -0600 (Mon, 27 Apr 2009) | 3 lines - Cast argument to proper type in order to avoid warnings like "shift value is too large for given type" r191577 | gonzo | 2009-04-27 12:29:59 -0600 (Mon, 27 Apr 2009) | 4 lines - Use naming convention the same as MIPS spec does: eliminate _sel1 sufix and just use selector number. e.g. mips_rd_config_sel1 -> mips_rd_config1 - Add WatchHi/WatchLo accessors for selctors 1..3 (for debug purposes) r191451 | gonzo | 2009-04-23 22:17:21 -0600 (Thu, 23 Apr 2009) | 4 lines - Define accessor functions for CP0 Config(16) register selects 1, 2, 3. Content of these registers is defined in MIPS spec and can be used for obtaining info about CPU capabilities. r191282 | gonzo | 2009-04-19 16:02:14 -0600 (Sun, 19 Apr 2009) | 3 lines - Make mips_bus_space_generic be of type bus_space_tag_t instead of struct bus_space and update all relevant places. r191084 | gonzo | 2009-04-14 20:28:26 -0600 (Tue, 14 Apr 2009) | 6 lines Use FreeBSD/arm approach for handling bus space access: space tag is a pointer to bus_space structure that defines access methods and hence every bus can define own accessors. Default space is mips_bus_space_generic. It's a simple interface to physical memory, values are read with regard to host system byte order.
578 lines
18 KiB
C
578 lines
18 KiB
C
/* $OpenBSD: cpu.h,v 1.4 1998/09/15 10:50:12 pefo Exp $ */
|
|
|
|
/*-
|
|
* Copyright (c) 1992, 1993
|
|
* The Regents of the University of California. All rights reserved.
|
|
*
|
|
* This code is derived from software contributed to Berkeley by
|
|
* Ralph Campbell and Rick Macklem.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
* Copyright (C) 1989 Digital Equipment Corporation.
|
|
* Permission to use, copy, modify, and distribute this software and
|
|
* its documentation for any purpose and without fee is hereby granted,
|
|
* provided that the above copyright notice appears in all copies.
|
|
* Digital Equipment Corporation makes no representations about the
|
|
* suitability of this software for any purpose. It is provided "as is"
|
|
* without express or implied warranty.
|
|
*
|
|
* from: @(#)cpu.h 8.4 (Berkeley) 1/4/94
|
|
* JNPR: cpu.h,v 1.9.2.2 2007/09/10 08:23:46 girish
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#ifndef _MACHINE_CPU_H_
|
|
#define _MACHINE_CPU_H_
|
|
|
|
#include <machine/psl.h>
|
|
#include <machine/endian.h>
|
|
|
|
#define MIPS_CACHED_MEMORY_ADDR 0x80000000
|
|
#define MIPS_UNCACHED_MEMORY_ADDR 0xa0000000
|
|
#define MIPS_MAX_MEM_ADDR 0xbe000000
|
|
#define MIPS_RESERVED_ADDR 0xbfc80000
|
|
|
|
#define MIPS_KSEG0_LARGEST_PHYS 0x20000000
|
|
#define MIPS_CACHED_TO_PHYS(x) ((uintptr_t)(x) & 0x1fffffff)
|
|
#define MIPS_PHYS_TO_CACHED(x) ((uintptr_t)(x) | MIPS_CACHED_MEMORY_ADDR)
|
|
#define MIPS_UNCACHED_TO_PHYS(x) ((uintptr_t)(x) & 0x1fffffff)
|
|
#define MIPS_PHYS_TO_UNCACHED(x) ((uintptr_t)(x) | MIPS_UNCACHED_MEMORY_ADDR)
|
|
|
|
#define MIPS_PHYS_MASK (0x1fffffff)
|
|
#define MIPS_PA_2_K1VA(x) (MIPS_KSEG1_START | ((x) & MIPS_PHYS_MASK))
|
|
|
|
#define MIPS_VA_TO_CINDEX(x) ((uintptr_t)(x) & 0xffffff | MIPS_CACHED_MEMORY_ADDR)
|
|
#define MIPS_CACHED_TO_UNCACHED(x) (MIPS_PHYS_TO_UNCACHED(MIPS_CACHED_TO_PHYS(x)))
|
|
|
|
#define MIPS_PHYS_TO_KSEG0(x) ((uintptr_t)(x) | MIPS_KSEG0_START)
|
|
#define MIPS_PHYS_TO_KSEG1(x) ((uintptr_t)(x) | MIPS_KSEG1_START)
|
|
#define MIPS_KSEG0_TO_PHYS(x) ((uintptr_t)(x) & MIPS_PHYS_MASK)
|
|
#define MIPS_KSEG1_TO_PHYS(x) ((uintptr_t)(x) & MIPS_PHYS_MASK)
|
|
|
|
#define MIPS_IS_KSEG0_ADDR(x) \
|
|
(((vm_offset_t)(x) >= MIPS_KSEG0_START) && \
|
|
((vm_offset_t)(x) <= MIPS_KSEG0_END))
|
|
#define MIPS_IS_KSEG1_ADDR(x) \
|
|
(((vm_offset_t)(x) >= MIPS_KSEG1_START) && \
|
|
((vm_offset_t)(x) <= MIPS_KSEG1_END))
|
|
#define MIPS_IS_VALID_PTR(x) (MIPS_IS_KSEG0_ADDR(x) || \
|
|
MIPS_IS_KSEG1_ADDR(x))
|
|
|
|
/*
|
|
* Status register.
|
|
*/
|
|
#define SR_COP_USABILITY 0xf0000000
|
|
#define SR_COP_0_BIT 0x10000000
|
|
#define SR_COP_1_BIT 0x20000000
|
|
#define SR_COP_2_BIT 0x40000000
|
|
#define SR_RP 0x08000000
|
|
#define SR_FR_32 0x04000000
|
|
#define SR_RE 0x02000000
|
|
#define SR_PX 0x00800000
|
|
#define SR_BOOT_EXC_VEC 0x00400000
|
|
#define SR_TLB_SHUTDOWN 0x00200000
|
|
#define SR_SOFT_RESET 0x00100000
|
|
#define SR_DIAG_CH 0x00040000
|
|
#define SR_DIAG_CE 0x00020000
|
|
#define SR_DIAG_DE 0x00010000
|
|
#define SR_KX 0x00000080
|
|
#define SR_SX 0x00000040
|
|
#define SR_UX 0x00000020
|
|
#define SR_KSU_MASK 0x00000018
|
|
#define SR_KSU_USER 0x00000010
|
|
#define SR_KSU_SUPER 0x00000008
|
|
#define SR_KSU_KERNEL 0x00000000
|
|
#define SR_ERL 0x00000004
|
|
#define SR_EXL 0x00000002
|
|
#define SR_INT_ENAB 0x00000001
|
|
|
|
#define SR_INT_MASK 0x0000ff00
|
|
#define SOFT_INT_MASK_0 0x00000100
|
|
#define SOFT_INT_MASK_1 0x00000200
|
|
#define SR_INT_MASK_0 0x00000400
|
|
#define SR_INT_MASK_1 0x00000800
|
|
#define SR_INT_MASK_2 0x00001000
|
|
#define SR_INT_MASK_3 0x00002000
|
|
#define SR_INT_MASK_4 0x00004000
|
|
#define SR_INT_MASK_5 0x00008000
|
|
#define ALL_INT_MASK SR_INT_MASK
|
|
#define SOFT_INT_MASK (SOFT_INT_MASK_0 | SOFT_INT_MASK_1)
|
|
#define HW_INT_MASK (ALL_INT_MASK & ~SOFT_INT_MASK)
|
|
|
|
|
|
/*
|
|
* The bits in the cause register.
|
|
*
|
|
* CR_BR_DELAY Exception happened in branch delay slot.
|
|
* CR_COP_ERR Coprocessor error.
|
|
* CR_IP Interrupt pending bits defined below.
|
|
* CR_EXC_CODE The exception type (see exception codes below).
|
|
*/
|
|
#define CR_BR_DELAY 0x80000000
|
|
#define CR_COP_ERR 0x30000000
|
|
#define CR_EXC_CODE 0x0000007c
|
|
#define CR_EXC_CODE_SHIFT 2
|
|
#define CR_IPEND 0x0000ff00
|
|
|
|
/*
|
|
* Cause Register Format:
|
|
*
|
|
* 31 30 29 28 27 26 25 24 23 8 7 6 2 1 0
|
|
* ----------------------------------------------------------------------
|
|
* | BD | 0| CE | 0| W2| W1| IV| IP15 - IP0 | 0| Exc Code | 0|
|
|
* |______________________________________________________________________
|
|
*/
|
|
|
|
#define CR_INT_SOFT0 0x00000100
|
|
#define CR_INT_SOFT1 0x00000200
|
|
#define CR_INT_0 0x00000400
|
|
#define CR_INT_1 0x00000800
|
|
#define CR_INT_2 0x00001000
|
|
#define CR_INT_3 0x00002000
|
|
#define CR_INT_4 0x00004000
|
|
#define CR_INT_5 0x00008000
|
|
|
|
#define CR_INT_UART CR_INT_1
|
|
#define CR_INT_IPI CR_INT_2
|
|
#define CR_INT_CLOCK CR_INT_5
|
|
|
|
/*
|
|
* The bits in the CONFIG register
|
|
*/
|
|
#define CFG_K0_UNCACHED 2
|
|
#if defined(CPU_SB1)
|
|
#define CFG_K0_COHERENT 5 /* cacheable coherent */
|
|
#else
|
|
#define CFG_K0_CACHED 3
|
|
#endif
|
|
|
|
/*
|
|
* The bits in the context register.
|
|
*/
|
|
#define CNTXT_PTE_BASE 0xff800000
|
|
#define CNTXT_BAD_VPN2 0x007ffff0
|
|
|
|
/*
|
|
* Location of exception vectors.
|
|
*/
|
|
#define RESET_EXC_VEC 0xbfc00000
|
|
#define TLB_MISS_EXC_VEC 0x80000000
|
|
#define XTLB_MISS_EXC_VEC 0x80000080
|
|
#define CACHE_ERR_EXC_VEC 0x80000100
|
|
#define GEN_EXC_VEC 0x80000180
|
|
|
|
/*
|
|
* Coprocessor 0 registers:
|
|
*/
|
|
#define COP_0_TLB_INDEX $0
|
|
#define COP_0_TLB_RANDOM $1
|
|
#define COP_0_TLB_LO0 $2
|
|
#define COP_0_TLB_LO1 $3
|
|
#define COP_0_TLB_CONTEXT $4
|
|
#define COP_0_TLB_PG_MASK $5
|
|
#define COP_0_TLB_WIRED $6
|
|
#define COP_0_INFO $7
|
|
#define COP_0_BAD_VADDR $8
|
|
#define COP_0_COUNT $9
|
|
#define COP_0_TLB_HI $10
|
|
#define COP_0_COMPARE $11
|
|
#define COP_0_STATUS_REG $12
|
|
#define COP_0_CAUSE_REG $13
|
|
#define COP_0_EXC_PC $14
|
|
#define COP_0_PRID $15
|
|
#define COP_0_CONFIG $16
|
|
#define COP_0_LLADDR $17
|
|
#define COP_0_WATCH_LO $18
|
|
#define COP_0_WATCH_HI $19
|
|
#define COP_0_TLB_XCONTEXT $20
|
|
#define COP_0_ECC $26
|
|
#define COP_0_CACHE_ERR $27
|
|
#define COP_0_TAG_LO $28
|
|
#define COP_0_TAG_HI $29
|
|
#define COP_0_ERROR_PC $30
|
|
|
|
/*
|
|
* Coprocessor 0 Set 1
|
|
*/
|
|
#define C0P_1_IPLLO $18
|
|
#define C0P_1_IPLHI $19
|
|
#define C0P_1_INTCTL $20
|
|
#define C0P_1_DERRADDR0 $26
|
|
#define C0P_1_DERRADDR1 $27
|
|
|
|
/*
|
|
* Values for the code field in a break instruction.
|
|
*/
|
|
#define BREAK_INSTR 0x0000000d
|
|
#define BREAK_VAL_MASK 0x03ffffc0
|
|
#define BREAK_VAL_SHIFT 16
|
|
#define BREAK_KDB_VAL 512
|
|
#define BREAK_SSTEP_VAL 513
|
|
#define BREAK_BRKPT_VAL 514
|
|
#define BREAK_SOVER_VAL 515
|
|
#define BREAK_DDB_VAL 516
|
|
#define BREAK_KDB (BREAK_INSTR | (BREAK_KDB_VAL << BREAK_VAL_SHIFT))
|
|
#define BREAK_SSTEP (BREAK_INSTR | (BREAK_SSTEP_VAL << BREAK_VAL_SHIFT))
|
|
#define BREAK_BRKPT (BREAK_INSTR | (BREAK_BRKPT_VAL << BREAK_VAL_SHIFT))
|
|
#define BREAK_SOVER (BREAK_INSTR | (BREAK_SOVER_VAL << BREAK_VAL_SHIFT))
|
|
#define BREAK_DDB (BREAK_INSTR | (BREAK_DDB_VAL << BREAK_VAL_SHIFT))
|
|
|
|
/*
|
|
* Mininum and maximum cache sizes.
|
|
*/
|
|
#define MIN_CACHE_SIZE (16 * 1024)
|
|
#define MAX_CACHE_SIZE (256 * 1024)
|
|
|
|
/*
|
|
* The floating point version and status registers.
|
|
*/
|
|
#define FPC_ID $0
|
|
#define FPC_CSR $31
|
|
|
|
/*
|
|
* The floating point coprocessor status register bits.
|
|
*/
|
|
#define FPC_ROUNDING_BITS 0x00000003
|
|
#define FPC_ROUND_RN 0x00000000
|
|
#define FPC_ROUND_RZ 0x00000001
|
|
#define FPC_ROUND_RP 0x00000002
|
|
#define FPC_ROUND_RM 0x00000003
|
|
#define FPC_STICKY_BITS 0x0000007c
|
|
#define FPC_STICKY_INEXACT 0x00000004
|
|
#define FPC_STICKY_UNDERFLOW 0x00000008
|
|
#define FPC_STICKY_OVERFLOW 0x00000010
|
|
#define FPC_STICKY_DIV0 0x00000020
|
|
#define FPC_STICKY_INVALID 0x00000040
|
|
#define FPC_ENABLE_BITS 0x00000f80
|
|
#define FPC_ENABLE_INEXACT 0x00000080
|
|
#define FPC_ENABLE_UNDERFLOW 0x00000100
|
|
#define FPC_ENABLE_OVERFLOW 0x00000200
|
|
#define FPC_ENABLE_DIV0 0x00000400
|
|
#define FPC_ENABLE_INVALID 0x00000800
|
|
#define FPC_EXCEPTION_BITS 0x0003f000
|
|
#define FPC_EXCEPTION_INEXACT 0x00001000
|
|
#define FPC_EXCEPTION_UNDERFLOW 0x00002000
|
|
#define FPC_EXCEPTION_OVERFLOW 0x00004000
|
|
#define FPC_EXCEPTION_DIV0 0x00008000
|
|
#define FPC_EXCEPTION_INVALID 0x00010000
|
|
#define FPC_EXCEPTION_UNIMPL 0x00020000
|
|
#define FPC_COND_BIT 0x00800000
|
|
#define FPC_FLUSH_BIT 0x01000000
|
|
#define FPC_MBZ_BITS 0xfe7c0000
|
|
|
|
/*
|
|
* Constants to determine if have a floating point instruction.
|
|
*/
|
|
#define OPCODE_SHIFT 26
|
|
#define OPCODE_C1 0x11
|
|
|
|
/*
|
|
* The low part of the TLB entry.
|
|
*/
|
|
#define VMTLB_PF_NUM 0x3fffffc0
|
|
#define VMTLB_ATTR_MASK 0x00000038
|
|
#define VMTLB_MOD_BIT 0x00000004
|
|
#define VMTLB_VALID_BIT 0x00000002
|
|
#define VMTLB_GLOBAL_BIT 0x00000001
|
|
|
|
#define VMTLB_PHYS_PAGE_SHIFT 6
|
|
|
|
/*
|
|
* The high part of the TLB entry.
|
|
*/
|
|
#define VMTLB_VIRT_PAGE_NUM 0xffffe000
|
|
#define VMTLB_PID 0x000000ff
|
|
#define VMTLB_PID_R9K 0x00000fff
|
|
#define VMTLB_PID_SHIFT 0
|
|
#define VMTLB_VIRT_PAGE_SHIFT 12
|
|
#define VMTLB_VIRT_PAGE_SHIFT_R9K 13
|
|
|
|
/*
|
|
* The first TLB entry that write random hits.
|
|
*/
|
|
#define VMWIRED_ENTRIES 1
|
|
|
|
/*
|
|
* The number of process id entries.
|
|
*/
|
|
#define VMNUM_PIDS 256
|
|
|
|
/*
|
|
* TLB probe return codes.
|
|
*/
|
|
#define VMTLB_NOT_FOUND 0
|
|
#define VMTLB_FOUND 1
|
|
#define VMTLB_FOUND_WITH_PATCH 2
|
|
#define VMTLB_PROBE_ERROR 3
|
|
|
|
/*
|
|
* Exported definitions unique to mips cpu support.
|
|
*/
|
|
|
|
/*
|
|
* definitions of cpu-dependent requirements
|
|
* referenced in generic code
|
|
*/
|
|
#define COPY_SIGCODE /* copy sigcode above user stack in exec */
|
|
|
|
#define cpu_swapout(p) panic("cpu_swapout: can't get here");
|
|
|
|
#ifndef _LOCORE
|
|
#include <machine/frame.h>
|
|
/*
|
|
* Arguments to hardclock and gatherstats encapsulate the previous
|
|
* machine state in an opaque clockframe.
|
|
*/
|
|
#define clockframe trapframe /* Use normal trap frame */
|
|
|
|
#define CLKF_USERMODE(framep) ((framep)->sr & SR_KSU_USER)
|
|
#define CLKF_BASEPRI(framep) ((framep)->cpl == 0)
|
|
#define CLKF_PC(framep) ((framep)->pc)
|
|
#define CLKF_INTR(framep) (0)
|
|
#define MIPS_CLKF_INTR() (intr_nesting_level >= 1)
|
|
#define TRAPF_USERMODE(framep) (((framep)->sr & SR_KSU_USER) != 0)
|
|
#define TRAPF_PC(framep) ((framep)->pc)
|
|
#define cpu_getstack(td) ((td)->td_frame->sp)
|
|
|
|
/*
|
|
* CPU identification, from PRID register.
|
|
*/
|
|
union cpuprid {
|
|
int cpuprid;
|
|
struct {
|
|
#if BYTE_ORDER == BIG_ENDIAN
|
|
u_int pad1:8; /* reserved */
|
|
u_int cp_vendor:8; /* company identifier */
|
|
u_int cp_imp:8; /* implementation identifier */
|
|
u_int cp_majrev:4; /* major revision identifier */
|
|
u_int cp_minrev:4; /* minor revision identifier */
|
|
#else
|
|
u_int cp_minrev:4; /* minor revision identifier */
|
|
u_int cp_majrev:4; /* major revision identifier */
|
|
u_int cp_imp:8; /* implementation identifier */
|
|
u_int cp_vendor:8; /* company identifier */
|
|
u_int pad1:8; /* reserved */
|
|
#endif
|
|
} cpu;
|
|
};
|
|
|
|
#endif /* !_LOCORE */
|
|
|
|
/*
|
|
* CTL_MACHDEP definitions.
|
|
*/
|
|
#define CPU_CONSDEV 1 /* dev_t: console terminal device */
|
|
#define CPU_ADJKERNTZ 2 /* int: timezone offset (seconds) */
|
|
#define CPU_DISRTCSET 3 /* int: disable resettodr() call */
|
|
#define CPU_BOOTINFO 4 /* struct: bootinfo */
|
|
#define CPU_WALLCLOCK 5 /* int: indicates wall CMOS clock */
|
|
#define CPU_MAXID 6 /* number of valid machdep ids */
|
|
|
|
#define CTL_MACHDEP_NAMES { \
|
|
{ 0, 0 }, \
|
|
{ "console_device", CTLTYPE_STRUCT }, \
|
|
{ "adjkerntz", CTLTYPE_INT }, \
|
|
{ "disable_rtc_set", CTLTYPE_INT }, \
|
|
{ "bootinfo", CTLTYPE_STRUCT }, \
|
|
{ "wall_cmos_clock", CTLTYPE_INT }, \
|
|
}
|
|
|
|
/*
|
|
* MIPS CPU types (cp_imp).
|
|
*/
|
|
#define MIPS_R2000 0x01 /* MIPS R2000 CPU ISA I */
|
|
#define MIPS_R3000 0x02 /* MIPS R3000 CPU ISA I */
|
|
#define MIPS_R6000 0x03 /* MIPS R6000 CPU ISA II */
|
|
#define MIPS_R4000 0x04 /* MIPS R4000/4400 CPU ISA III */
|
|
#define MIPS_R3LSI 0x05 /* LSI Logic R3000 derivate ISA I */
|
|
#define MIPS_R6000A 0x06 /* MIPS R6000A CPU ISA II */
|
|
#define MIPS_R3IDT 0x07 /* IDT R3000 derivate ISA I */
|
|
#define MIPS_R10000 0x09 /* MIPS R10000/T5 CPU ISA IV */
|
|
#define MIPS_R4200 0x0a /* MIPS R4200 CPU (ICE) ISA III */
|
|
#define MIPS_R4300 0x0b /* NEC VR4300 CPU ISA III */
|
|
#define MIPS_R4100 0x0c /* NEC VR41xx CPU MIPS-16 ISA III */
|
|
#define MIPS_R8000 0x10 /* MIPS R8000 Blackbird/TFP ISA IV */
|
|
#define MIPS_R4600 0x20 /* QED R4600 Orion ISA III */
|
|
#define MIPS_R4700 0x21 /* QED R4700 Orion ISA III */
|
|
#define MIPS_R3TOSH 0x22 /* Toshiba R3000 based CPU ISA I */
|
|
#define MIPS_R5000 0x23 /* MIPS R5000 CPU ISA IV */
|
|
#define MIPS_RM7000 0x27 /* QED RM7000 CPU ISA IV */
|
|
#define MIPS_RM52X0 0x28 /* QED RM52X0 CPU ISA IV */
|
|
#define MIPS_VR5400 0x54 /* NEC Vr5400 CPU ISA IV+ */
|
|
#define MIPS_RM9000 0x34 /* E9000 CPU */
|
|
|
|
/*
|
|
* MIPS FPU types
|
|
*/
|
|
#define MIPS_SOFT 0x00 /* Software emulation ISA I */
|
|
#define MIPS_R2360 0x01 /* MIPS R2360 FPC ISA I */
|
|
#define MIPS_R2010 0x02 /* MIPS R2010 FPC ISA I */
|
|
#define MIPS_R3010 0x03 /* MIPS R3010 FPC ISA I */
|
|
#define MIPS_R6010 0x04 /* MIPS R6010 FPC ISA II */
|
|
#define MIPS_R4010 0x05 /* MIPS R4000/R4400 FPC ISA II */
|
|
#define MIPS_R31LSI 0x06 /* LSI Logic derivate ISA I */
|
|
#define MIPS_R10010 0x09 /* MIPS R10000/T5 FPU ISA IV */
|
|
#define MIPS_R4210 0x0a /* MIPS R4200 FPC (ICE) ISA III */
|
|
#define MIPS_UNKF1 0x0b /* unnanounced product cpu ISA III */
|
|
#define MIPS_R8000 0x10 /* MIPS R8000 Blackbird/TFP ISA IV */
|
|
#define MIPS_R4600 0x20 /* QED R4600 Orion ISA III */
|
|
#define MIPS_R3SONY 0x21 /* Sony R3000 based FPU ISA I */
|
|
#define MIPS_R3TOSH 0x22 /* Toshiba R3000 based FPU ISA I */
|
|
#define MIPS_R5010 0x23 /* MIPS R5000 based FPU ISA IV */
|
|
#define MIPS_RM7000 0x27 /* QED RM7000 FPU ISA IV */
|
|
#define MIPS_RM5230 0x28 /* QED RM52X0 based FPU ISA IV */
|
|
#define MIPS_RM52XX 0x28 /* QED RM52X0 based FPU ISA IV */
|
|
#define MIPS_VR5400 0x54 /* NEC Vr5400 FPU ISA IV+ */
|
|
|
|
#ifndef _LOCORE
|
|
extern union cpuprid cpu_id;
|
|
|
|
#define mips_proc_type() ((cpu_id.cpu.cp_vendor << 8) | cpu_id.cpu.cp_imp)
|
|
#define mips_set_proc_type(type) (cpu_id.cpu.cp_vendor = (type) >> 8, \
|
|
cpu_id.cpu.cp_imp = ((type) & 0x00ff))
|
|
#endif /* !_LOCORE */
|
|
|
|
#if defined(_KERNEL) && !defined(_LOCORE)
|
|
extern union cpuprid fpu_id;
|
|
|
|
struct tlb;
|
|
struct user;
|
|
|
|
u_int32_t mips_cp0_config1_read(void);
|
|
int Mips_ConfigCache(void);
|
|
void Mips_SetWIRED(int);
|
|
void Mips_SetPID(int);
|
|
u_int Mips_GetCOUNT(void);
|
|
void Mips_SetCOMPARE(u_int);
|
|
u_int Mips_GetCOMPARE(void);
|
|
|
|
void Mips_SyncCache(void);
|
|
void Mips_SyncDCache(vm_offset_t, int);
|
|
void Mips_HitSyncDCache(vm_offset_t, int);
|
|
void Mips_HitSyncSCache(vm_offset_t, int);
|
|
void Mips_IOSyncDCache(vm_offset_t, int, int);
|
|
void Mips_HitInvalidateDCache(vm_offset_t, int);
|
|
void Mips_SyncICache(vm_offset_t, int);
|
|
void Mips_InvalidateICache(vm_offset_t, int);
|
|
|
|
void Mips_TLBFlush(int);
|
|
void Mips_TLBFlushAddr(vm_offset_t);
|
|
void Mips_TLBWriteIndexed(int, struct tlb *);
|
|
void Mips_TLBUpdate(vm_offset_t, unsigned);
|
|
void Mips_TLBRead(int, struct tlb *);
|
|
void mips_TBIAP(int);
|
|
void wbflush(void);
|
|
|
|
extern u_int32_t cpu_counter_interval; /* Number of counter ticks/tick */
|
|
extern u_int32_t cpu_counter_last; /* Last compare value loaded */
|
|
extern int num_tlbentries;
|
|
extern char btext[];
|
|
extern char etext[];
|
|
extern int intr_nesting_level;
|
|
|
|
#define func_0args_asmmacro(func, in) \
|
|
__asm __volatile ( "jalr %0" \
|
|
: "=r" (in) /* outputs */ \
|
|
: "r" (func) /* inputs */ \
|
|
: "$31", "$4");
|
|
|
|
#define func_1args_asmmacro(func, arg0) \
|
|
__asm __volatile ("move $4, %1;" \
|
|
"jalr %0" \
|
|
: /* outputs */ \
|
|
: "r" (func), "r" (arg0) /* inputs */ \
|
|
: "$31", "$4");
|
|
|
|
#define func_2args_asmmacro(func, arg0, arg1) \
|
|
__asm __volatile ("move $4, %1;" \
|
|
"move $5, %2;" \
|
|
"jalr %0" \
|
|
: /* outputs */ \
|
|
: "r" (func), "r" (arg0), "r" (arg1) /* inputs */ \
|
|
: "$31", "$4", "$5");
|
|
|
|
#define func_3args_asmmacro(func, arg0, arg1, arg2) \
|
|
__asm __volatile ( "move $4, %1;" \
|
|
"move $5, %2;" \
|
|
"move $6, %3;" \
|
|
"jalr %0" \
|
|
: /* outputs */ \
|
|
: "r" (func), "r" (arg0), "r" (arg1), "r" (arg2) /* inputs */ \
|
|
: "$31", "$4", "$5", "$6");
|
|
|
|
#define MachSetPID Mips_SetPID
|
|
#define MachTLBUpdate Mips_TLBUpdate
|
|
#define mips_TBIS Mips_TLBFlushAddr
|
|
#define MIPS_TBIAP() mips_TBIAP(num_tlbentries)
|
|
#define MachSetWIRED(index) Mips_SetWIRED(index)
|
|
#define MachTLBFlush(count) Mips_TLBFlush(count)
|
|
#define MachTLBGetPID(pid) (pid = Mips_TLBGetPID())
|
|
#define MachTLBRead(tlbno, tlbp) Mips_TLBRead(tlbno, tlbp)
|
|
#define MachFPTrap(sr, cause, pc) MipsFPTrap(sr, cause, pc)
|
|
|
|
/*
|
|
* Enable realtime clock (always enabled).
|
|
*/
|
|
#define enablertclock()
|
|
|
|
/*
|
|
* Are we in an interrupt handler? required by JunOS
|
|
*/
|
|
#define IN_INT_HANDLER() \
|
|
(curthread->td_intr_nesting_level != 0 || \
|
|
(curthread->td_pflags & TDP_ITHREAD))
|
|
|
|
/*
|
|
* Low level access routines to CPU registers
|
|
*/
|
|
|
|
void setsoftintr0(void);
|
|
void clearsoftintr0(void);
|
|
void setsoftintr1(void);
|
|
void clearsoftintr1(void);
|
|
|
|
|
|
u_int32_t mips_cp0_status_read(void);
|
|
void mips_cp0_status_write(u_int32_t);
|
|
|
|
int disableintr(void);
|
|
void restoreintr(int);
|
|
int enableintr(void);
|
|
int Mips_TLBGetPID(void);
|
|
|
|
void swi_vm(void *);
|
|
void cpu_halt(void);
|
|
void cpu_reset(void);
|
|
|
|
u_int32_t set_intr_mask(u_int32_t);
|
|
u_int32_t get_intr_mask(void);
|
|
u_int32_t get_cyclecount(void);
|
|
|
|
#define cpu_spinwait() /* nothing */
|
|
|
|
#endif /* _KERNEL */
|
|
#endif /* !_MACHINE_CPU_H_ */
|