16fc729afSOlivier Houchard /* $NetBSD: pcb.h,v 1.10 2003/10/13 21:46:39 scw Exp $ */ 26fc729afSOlivier Houchard 3d8315c79SWarner Losh /*- 4*af3dc4a7SPedro F. Giffuni * SPDX-License-Identifier: BSD-4-Clause 5*af3dc4a7SPedro F. Giffuni * 66fc729afSOlivier Houchard * Copyright (c) 2001 Matt Thomas <matt@3am-software.com>. 76fc729afSOlivier Houchard * Copyright (c) 1994 Mark Brinicombe. 86fc729afSOlivier Houchard * All rights reserved. 96fc729afSOlivier Houchard * 106fc729afSOlivier Houchard * Redistribution and use in source and binary forms, with or without 116fc729afSOlivier Houchard * modification, are permitted provided that the following conditions 126fc729afSOlivier Houchard * are met: 136fc729afSOlivier Houchard * 1. Redistributions of source code must retain the above copyright 146fc729afSOlivier Houchard * notice, this list of conditions and the following disclaimer. 156fc729afSOlivier Houchard * 2. Redistributions in binary form must reproduce the above copyright 166fc729afSOlivier Houchard * notice, this list of conditions and the following disclaimer in the 176fc729afSOlivier Houchard * documentation and/or other materials provided with the distribution. 186fc729afSOlivier Houchard * 3. All advertising materials mentioning features or use of this software 196fc729afSOlivier Houchard * must display the following acknowledgement: 206fc729afSOlivier Houchard * This product includes software developed by the RiscBSD team. 216fc729afSOlivier Houchard * 4. The name "RiscBSD" nor the name of the author may be used to 226fc729afSOlivier Houchard * endorse or promote products derived from this software without specific 236fc729afSOlivier Houchard * prior written permission. 246fc729afSOlivier Houchard * 256fc729afSOlivier Houchard * THIS SOFTWARE IS PROVIDED BY RISCBSD ``AS IS'' AND ANY EXPRESS OR IMPLIED 266fc729afSOlivier Houchard * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 276fc729afSOlivier Houchard * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 286fc729afSOlivier Houchard * IN NO EVENT SHALL RISCBSD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 296fc729afSOlivier Houchard * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 306fc729afSOlivier Houchard * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 316fc729afSOlivier Houchard * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 326fc729afSOlivier Houchard * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 336fc729afSOlivier Houchard * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 346fc729afSOlivier Houchard * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 356fc729afSOlivier Houchard * SUCH DAMAGE. 366fc729afSOlivier Houchard * 376fc729afSOlivier Houchard * $FreeBSD$ 386fc729afSOlivier Houchard */ 396fc729afSOlivier Houchard 406fc729afSOlivier Houchard #ifndef _MACHINE_PCB_H_ 416fc729afSOlivier Houchard #define _MACHINE_PCB_H_ 426fc729afSOlivier Houchard 43c4c27bc9SIan Lepore #include <machine/frame.h> 44dfe5f22fSMichal Meloun #include <machine/vfp.h> 456fc729afSOlivier Houchard 466fc729afSOlivier Houchard 476fc729afSOlivier Houchard /* 486fc729afSOlivier Houchard * WARNING! 49c4c27bc9SIan Lepore * Keep pcb_regs first for faster access in switch.S 506fc729afSOlivier Houchard */ 516fc729afSOlivier Houchard struct pcb { 52c4c27bc9SIan Lepore struct switchframe pcb_regs; /* CPU state */ 536fc729afSOlivier Houchard u_int pcb_flags; 546fc729afSOlivier Houchard #define PCB_OWNFPU 0x00000001 556fc729afSOlivier Houchard #define PCB_NOALIGNFLT 0x00000002 566fc729afSOlivier Houchard caddr_t pcb_onfault; /* On fault handler */ 57676420e8SZbigniew Bodek vm_offset_t pcb_pagedir; /* TTB0 value */ 58676420e8SZbigniew Bodek /* 59676420e8SZbigniew Bodek * XXX: 60676420e8SZbigniew Bodek * Variables pcb_pl1vec, pcb_l1vec, pcb_dacr are used solely 61676420e8SZbigniew Bodek * by old PMAP. Keep them here for PCB binary compatibility 62676420e8SZbigniew Bodek * between old and new PMAP. 63676420e8SZbigniew Bodek */ 64c4c27bc9SIan Lepore uint32_t *pcb_pl1vec; /* PTR to vector_base L1 entry*/ 65c4c27bc9SIan Lepore uint32_t pcb_l1vec; /* Value to stuff on ctx sw */ 66c4c27bc9SIan Lepore u_int pcb_dacr; /* Domain Access Control Reg */ 67676420e8SZbigniew Bodek 68cf1a573fSOleksandr Tymoshenko struct vfp_state pcb_vfpstate; /* VP/NEON state */ 69cf1a573fSOleksandr Tymoshenko u_int pcb_vfpcpu; /* VP/NEON last cpu */ 703acd1dbcSOlivier Houchard } __aligned(8); /* 713acd1dbcSOlivier Houchard * We need the PCB to be aligned on 8 bytes, as we may 72c4c27bc9SIan Lepore * access it using ldrd/strd, and ARM ABI require it 733acd1dbcSOlivier Houchard * to by aligned on 8 bytes. 743acd1dbcSOlivier Houchard */ 756fc729afSOlivier Houchard 766fc729afSOlivier Houchard /* 776fc729afSOlivier Houchard * No additional data for core dumps. 786fc729afSOlivier Houchard */ 796fc729afSOlivier Houchard struct md_coredump { 806fc729afSOlivier Houchard int md_empty; 816fc729afSOlivier Houchard }; 826fc729afSOlivier Houchard 8333f588f1SOlivier Houchard void makectx(struct trapframe *tf, struct pcb *pcb); 8433f588f1SOlivier Houchard 856fc729afSOlivier Houchard #ifdef _KERNEL 86c5f7772fSOlivier Houchard 87460378bfSDimitry Andric void savectx(struct pcb *) __returns_twice; 886fc729afSOlivier Houchard #endif /* _KERNEL */ 896fc729afSOlivier Houchard 906fc729afSOlivier Houchard #endif /* !_MACHINE_PCB_H_ */ 91