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
|
|
|
|
|
2015-06-11 13:58:40 +00:00
|
|
|
#include <machine/acle-compat.h>
|
2012-08-15 03:03:03 +00:00
|
|
|
#include <machine/cpuconf.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
|
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; \
|
2015-06-07 10:50:15 +00:00
|
|
|
char __pad[141]
|
2012-08-15 03:03:03 +00:00
|
|
|
#else
|
2013-04-08 19:19:10 +00:00
|
|
|
#define PCPU_MD_FIELDS \
|
|
|
|
char __pad[157]
|
2012-08-15 03:03:03 +00:00
|
|
|
#endif
|
|
|
|
|
2008-08-19 19:53:52 +00:00
|
|
|
#ifdef _KERNEL
|
|
|
|
|
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
|
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;
|
|
|
|
|
|
|
|
__asm __volatile("mrc p15, 0, %0, c13, c0, 3" : "=r" (tls));
|
|
|
|
return (tls);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
set_tls(void *tls)
|
|
|
|
{
|
|
|
|
|
|
|
|
__asm __volatile("mcr p15, 0, %0, c13, c0, 3" : : "r" (tls));
|
|
|
|
}
|
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_ */
|