2004-05-14 11:46:45 +00:00
|
|
|
/*-
|
2017-11-27 15:04:10 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
2004-05-14 11:46:45 +00:00
|
|
|
* Copyright (c) 1999 Luoqi Chen <luoqi@freebsd.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
|
|
|
*
|
|
|
|
* from: FreeBSD: src/sys/i386/include/globaldata.h,v 1.27 2001/04/27
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MACHINE_PCPU_H_
|
|
|
|
#define _MACHINE_PCPU_H_
|
|
|
|
|
|
|
|
#ifdef _KERNEL
|
|
|
|
|
2017-01-22 00:46:04 +00:00
|
|
|
#include <sys/_lock.h>
|
|
|
|
#include <sys/_mutex.h>
|
|
|
|
|
2004-05-14 11:46:45 +00:00
|
|
|
#define ALT_STACK_SIZE 128
|
|
|
|
|
|
|
|
struct vmspace;
|
|
|
|
|
2008-08-19 19:53:52 +00:00
|
|
|
#endif /* _KERNEL */
|
|
|
|
|
2015-06-11 13:58:40 +00:00
|
|
|
#if __ARM_ARCH >= 6
|
2018-01-27 11:19:41 +00:00
|
|
|
/* Branch predictor hardening method */
|
|
|
|
#define PCPU_BP_HARDEN_KIND_NONE 0
|
|
|
|
#define PCPU_BP_HARDEN_KIND_BPIALL 1
|
|
|
|
#define PCPU_BP_HARDEN_KIND_ICIALLU 2
|
2017-01-22 00:46:04 +00:00
|
|
|
|
2012-08-15 03:03:03 +00:00
|
|
|
#define PCPU_MD_FIELDS \
|
|
|
|
unsigned int pc_vfpsid; \
|
|
|
|
unsigned int pc_vfpmvfr0; \
|
|
|
|
unsigned int pc_vfpmvfr1; \
|
2013-04-08 19:19:10 +00:00
|
|
|
struct pmap *pc_curpmap; \
|
2017-01-22 00:46:04 +00:00
|
|
|
struct mtx pc_cmap_lock; \
|
|
|
|
void *pc_cmap1_pte2p; \
|
|
|
|
void *pc_cmap2_pte2p; \
|
|
|
|
caddr_t pc_cmap1_addr; \
|
|
|
|
caddr_t pc_cmap2_addr; \
|
2015-08-04 19:46:13 +00:00
|
|
|
vm_offset_t pc_qmap_addr; \
|
2017-01-26 05:23:33 +00:00
|
|
|
void *pc_qmap_pte2p; \
|
2016-01-28 12:43:58 +00:00
|
|
|
unsigned int pc_dbreg[32]; \
|
|
|
|
int pc_dbreg_cmd; \
|
2018-01-27 11:19:41 +00:00
|
|
|
int pc_bp_harden_kind; \
|
|
|
|
uint32_t pc_original_actlr; \
|
2018-07-19 11:27:11 +00:00
|
|
|
uint64_t pc_clock; \
|
|
|
|
char __pad[139]
|
2012-08-15 03:03:03 +00:00
|
|
|
#else
|
2013-04-08 19:19:10 +00:00
|
|
|
#define PCPU_MD_FIELDS \
|
- Remove 'struct vmmeter' from 'struct pcpu', leaving only global vmmeter
in place. To do per-cpu stats, convert all fields that previously were
maintained in the vmmeters that sit in pcpus to counter(9).
- Since some vmmeter stats may be touched at very early stages of boot,
before we have set up UMA and we can do counter_u64_alloc(), provide an
early counter mechanism:
o Leave one spare uint64_t in struct pcpu, named pc_early_dummy_counter.
o Point counter(9) fields of vmmeter to pcpu[0].pc_early_dummy_counter,
so that at early stages of boot, before counters are allocated we already
point to a counter that can be safely written to.
o For sparc64 that required a whole dummy pcpu[MAXCPU] array.
Further related changes:
- Don't include vmmeter.h into pcpu.h.
- vm.stats.vm.v_swappgsout and vm.stats.vm.v_swappgsin changed to 64-bit,
to match kernel representation.
- struct vmmeter hidden under _KERNEL, and only vmstat(1) is an exclusion.
This is based on benno@'s 4-year old patch:
https://lists.freebsd.org/pipermail/freebsd-arch/2013-July/014471.html
Reviewed by: kib, gallatin, marius, lidl
Differential Revision: https://reviews.freebsd.org/D10156
2017-04-17 17:34:47 +00:00
|
|
|
char __pad[93]
|
2012-08-15 03:03:03 +00:00
|
|
|
#endif
|
|
|
|
|
2008-08-19 19:53:52 +00:00
|
|
|
#ifdef _KERNEL
|
|
|
|
|
2016-01-28 12:43:58 +00:00
|
|
|
#define PC_DBREG_CMD_NONE 0
|
|
|
|
#define PC_DBREG_CMD_LOAD 1
|
|
|
|
|
2004-05-14 11:46:45 +00:00
|
|
|
struct pcb;
|
|
|
|
struct pcpu;
|
|
|
|
|
|
|
|
extern struct pcpu *pcpup;
|
2014-02-02 20:58:23 +00:00
|
|
|
|
2015-06-11 13:58:40 +00:00
|
|
|
#if __ARM_ARCH >= 6
|
2014-02-02 20:58:23 +00:00
|
|
|
#define CPU_MASK (0xf)
|
|
|
|
|
2014-02-02 23:29:51 +00:00
|
|
|
#ifndef SMP
|
|
|
|
#define get_pcpu() (pcpup)
|
|
|
|
#else
|
2014-02-02 20:58:23 +00:00
|
|
|
#define get_pcpu() __extension__ ({ \
|
|
|
|
int id; \
|
|
|
|
__asm __volatile("mrc p15, 0, %0, c0, c0, 5" : "=r" (id)); \
|
|
|
|
(pcpup + (id & CPU_MASK)); \
|
|
|
|
})
|
2014-02-02 23:29:51 +00:00
|
|
|
#endif
|
2015-11-10 12:02:41 +00:00
|
|
|
|
2014-02-02 20:58:23 +00:00
|
|
|
static inline struct thread *
|
|
|
|
get_curthread(void)
|
2012-08-15 03:03:03 +00:00
|
|
|
{
|
2014-02-02 20:58:23 +00:00
|
|
|
void *ret;
|
2004-05-14 11:46:45 +00:00
|
|
|
|
2014-02-02 20:58:23 +00:00
|
|
|
__asm __volatile("mrc p15, 0, %0, c13, c0, 4" : "=r" (ret));
|
|
|
|
return (ret);
|
2012-08-15 03:03:03 +00:00
|
|
|
}
|
2007-03-11 05:54:29 +00:00
|
|
|
|
2012-08-15 03:03:03 +00:00
|
|
|
static inline void
|
2014-02-02 20:58:23 +00:00
|
|
|
set_curthread(struct thread *td)
|
2012-08-15 03:03:03 +00:00
|
|
|
{
|
|
|
|
|
2014-02-02 20:58:23 +00:00
|
|
|
__asm __volatile("mcr p15, 0, %0, c13, c0, 4" : : "r" (td));
|
2012-08-15 03:03:03 +00:00
|
|
|
}
|
|
|
|
|
2014-02-02 20:58:23 +00:00
|
|
|
|
2012-08-15 03:03:03 +00:00
|
|
|
static inline void *
|
|
|
|
get_tls(void)
|
|
|
|
{
|
|
|
|
void *tls;
|
|
|
|
|
2016-09-22 08:14:59 +00:00
|
|
|
/* TPIDRURW contains the authoritative value. */
|
|
|
|
__asm __volatile("mrc p15, 0, %0, c13, c0, 2" : "=r" (tls));
|
2012-08-15 03:03:03 +00:00
|
|
|
return (tls);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
set_tls(void *tls)
|
|
|
|
{
|
|
|
|
|
2016-09-22 08:14:59 +00:00
|
|
|
/*
|
|
|
|
* Update both TPIDRURW and TPIDRURO. TPIDRURW needs to be written
|
|
|
|
* first to ensure that a context switch between the two writes will
|
|
|
|
* still give the desired result of updating both.
|
|
|
|
*/
|
|
|
|
__asm __volatile(
|
|
|
|
"mcr p15, 0, %0, c13, c0, 2\n"
|
|
|
|
"mcr p15, 0, %0, c13, c0, 3\n"
|
|
|
|
: : "r" (tls));
|
2012-08-15 03:03:03 +00:00
|
|
|
}
|
2014-02-02 20:58:23 +00:00
|
|
|
|
|
|
|
#define curthread get_curthread()
|
|
|
|
|
2012-08-15 03:03:03 +00:00
|
|
|
#else
|
|
|
|
#define get_pcpu() pcpup
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define PCPU_GET(member) (get_pcpu()->pc_ ## member)
|
|
|
|
#define PCPU_ADD(member, value) (get_pcpu()->pc_ ## member += (value))
|
2007-06-06 23:23:47 +00:00
|
|
|
#define PCPU_INC(member) PCPU_ADD(member, 1)
|
2013-01-09 01:52:28 +00:00
|
|
|
#define PCPU_PTR(member) (&get_pcpu()->pc_ ## member)
|
|
|
|
#define PCPU_SET(member,value) (get_pcpu()->pc_ ## member = (value))
|
2004-05-14 11:46:45 +00:00
|
|
|
|
2012-08-15 03:03:03 +00:00
|
|
|
void pcpu0_init(void);
|
2004-05-14 11:46:45 +00:00
|
|
|
#endif /* _KERNEL */
|
|
|
|
|
|
|
|
#endif /* !_MACHINE_PCPU_H_ */
|