2000-03-19 17:56:52 +03:00
|
|
|
/* $NetBSD: cpu.h,v 1.42 2000/03/19 14:56:53 ragge Exp $ */
|
1994-10-26 11:01:33 +03:00
|
|
|
|
1994-08-03 00:18:46 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1994 Ludd, University of Lule}, Sweden
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed at Ludd, University of Lule}
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 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.
|
|
|
|
*/
|
1994-10-26 11:01:33 +03:00
|
|
|
|
1999-10-22 00:01:36 +04:00
|
|
|
#ifndef _VAX_CPU_H_
|
|
|
|
#define _VAX_CPU_H_
|
2000-03-19 17:56:52 +03:00
|
|
|
|
|
|
|
#if defined(_KERNEL) && !defined(_LKM)
|
|
|
|
#include "opt_multiprocessor.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1998-06-09 18:03:24 +04:00
|
|
|
#ifdef _KERNEL
|
|
|
|
|
1996-02-02 21:05:36 +03:00
|
|
|
#include <sys/cdefs.h>
|
1996-05-19 20:43:02 +04:00
|
|
|
#include <sys/device.h>
|
2000-03-19 17:56:52 +03:00
|
|
|
#include <sys/lock.h>
|
1996-05-19 20:43:02 +04:00
|
|
|
|
1996-02-02 21:05:36 +03:00
|
|
|
#include <machine/mtpr.h>
|
|
|
|
#include <machine/pcb.h>
|
1997-02-19 13:04:09 +03:00
|
|
|
#include <machine/uvax.h>
|
1998-08-10 18:31:07 +04:00
|
|
|
#include <machine/psl.h>
|
1994-08-03 00:18:46 +04:00
|
|
|
|
|
|
|
#define enablertclock()
|
1995-02-13 03:43:20 +03:00
|
|
|
#define cpu_wait(p)
|
1995-05-05 18:13:01 +04:00
|
|
|
#define cpu_swapout(p)
|
1994-08-03 00:18:46 +04:00
|
|
|
|
1997-02-19 13:04:09 +03:00
|
|
|
/*
|
|
|
|
* All cpu-dependent info is kept in this struct. Pointer to the
|
|
|
|
* struct for the current cpu is set up in locore.c.
|
|
|
|
*/
|
1994-10-08 18:43:53 +03:00
|
|
|
struct cpu_dep {
|
1996-04-08 22:32:26 +04:00
|
|
|
void (*cpu_steal_pages) __P((void)); /* pmap init before mm is on */
|
|
|
|
int (*cpu_mchk) __P((caddr_t)); /* Machine check handling */
|
|
|
|
void (*cpu_memerr) __P((void)); /* Memory subsystem errors */
|
1996-05-19 20:43:02 +04:00
|
|
|
/* Autoconfiguration */
|
1999-08-07 14:36:43 +04:00
|
|
|
void (*cpu_conf) __P((void));
|
1996-07-20 21:58:12 +04:00
|
|
|
int (*cpu_clkread) __P((time_t)); /* Read cpu clock time */
|
|
|
|
void (*cpu_clkwrite) __P((void)); /* Write system time to cpu */
|
1999-01-20 00:04:47 +03:00
|
|
|
short cpu_vups; /* speed of cpu */
|
|
|
|
short cpu_scbsz; /* (estimated) size of system control block */
|
1997-07-26 14:12:40 +04:00
|
|
|
void (*cpu_halt) __P((void)); /* Cpu dependent halt call */
|
|
|
|
void (*cpu_reboot) __P((int)); /* Cpu dependent reboot call */
|
1997-11-02 17:07:07 +03:00
|
|
|
void (*cpu_clrf) __P((void)); /* Clear cold/warm start flags */
|
1998-10-28 00:18:52 +03:00
|
|
|
void (*cpu_subconf) __P((struct device *));/*config cpu dep. devs */
|
1994-10-08 18:43:53 +03:00
|
|
|
};
|
|
|
|
|
1997-02-19 13:04:09 +03:00
|
|
|
extern struct cpu_dep *dep_call; /* Holds pointer to current CPU struct. */
|
|
|
|
|
1994-08-03 00:18:46 +04:00
|
|
|
struct clockframe {
|
|
|
|
int pc;
|
|
|
|
int ps;
|
|
|
|
};
|
|
|
|
|
2000-03-19 17:56:52 +03:00
|
|
|
#if defined(MULTIPROCESSOR)
|
|
|
|
|
|
|
|
struct cpu_info {
|
|
|
|
/*
|
|
|
|
* Public members.
|
|
|
|
*/
|
|
|
|
struct proc *ci_curproc; /* current owner of the processor */
|
|
|
|
struct simplelock ci_slock; /* lock on this data structure */
|
|
|
|
cpuid_t ci_cpuid; /* our CPU ID */
|
|
|
|
#if defined(DIAGNOSTIC) || defined(LOCKDEBUG)
|
|
|
|
u_long ci_spin_locks; /* # of spin locks held */
|
|
|
|
u_long ci_simple_locks; /* # of simple locks held */
|
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* Private members.
|
|
|
|
*/
|
|
|
|
int ci_want_resched; /* Should change process */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* VAX internal CPU numbering is not sequential; therefore have a separate
|
|
|
|
* function call that returns the cpu_info struct for this CPU.
|
|
|
|
*
|
|
|
|
* For the master CPU (or only) this struct is allocated early in startup;
|
|
|
|
* for other CPUs it is allocated when the CPU is found.
|
|
|
|
*/
|
|
|
|
extern int (*vax_cpu_number)(void);
|
|
|
|
extern struct cpu_info *(*vax_curcpu)(void);
|
|
|
|
|
|
|
|
#define cpu_number() (*vax_cpu_number)()
|
|
|
|
#define curcpu() (*vax_curcpu)()
|
|
|
|
#define need_resched() {curcpu()->ci_want_resched++; mtpr(AST_OK,PR_ASTLVL); }
|
|
|
|
#define cpu_boot_secondary_processors()
|
|
|
|
|
|
|
|
#else /* MULTIPROCESSOR */
|
|
|
|
|
|
|
|
extern int want_resched; /* resched() was called */
|
|
|
|
|
|
|
|
#define cpu_number() 0
|
|
|
|
#define need_resched() { want_resched++; mtpr(AST_OK,PR_ASTLVL); }
|
|
|
|
|
|
|
|
#endif /* MULTIPROCESSOR */
|
|
|
|
|
1997-03-15 18:09:40 +03:00
|
|
|
extern struct device *booted_from;
|
1996-07-20 21:58:12 +04:00
|
|
|
extern int mastercpu;
|
1997-03-15 18:09:40 +03:00
|
|
|
extern int bootdev;
|
1996-07-20 21:58:12 +04:00
|
|
|
|
1994-11-25 22:08:50 +03:00
|
|
|
#define setsoftnet() mtpr(12,PR_SIRR)
|
|
|
|
#define setsoftclock() mtpr(8,PR_SIRR)
|
1996-07-20 21:58:12 +04:00
|
|
|
#define todr() mfpr(PR_TODR)
|
1994-08-03 00:18:46 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Notify the current process (p) that it has a signal pending,
|
|
|
|
* process as soon as possible.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define signotify(p) mtpr(AST_OK,PR_ASTLVL);
|
|
|
|
|
|
|
|
|
1995-02-13 03:43:20 +03:00
|
|
|
/*
|
|
|
|
* Give a profiling tick to the current process when the user profiling
|
|
|
|
* buffer pages are invalid. On the hp300, request an ast to send us
|
|
|
|
* through trap, marking the proc as needing a profiling tick.
|
|
|
|
*/
|
|
|
|
#define need_proftick(p) {(p)->p_flag |= P_OWEUPC; mtpr(AST_OK,PR_ASTLVL); }
|
|
|
|
|
1999-02-02 21:37:20 +03:00
|
|
|
/*
|
|
|
|
* This defines the I/O device register space size in pages.
|
|
|
|
*/
|
1999-04-17 04:01:18 +04:00
|
|
|
#define IOSPSZ ((64*1024) / VAX_NBPG) /* 64k == 128 pages */
|
1999-02-02 21:37:20 +03:00
|
|
|
|
1997-01-31 05:11:51 +03:00
|
|
|
struct device;
|
|
|
|
|
1996-04-08 22:32:26 +04:00
|
|
|
/* Some low-level prototypes */
|
|
|
|
int badaddr __P((caddr_t, int));
|
|
|
|
void cpu_swapin __P((struct proc *));
|
1997-01-31 05:11:51 +03:00
|
|
|
int hp_getdev __P((int, int, struct device **));
|
|
|
|
int ra_getdev __P((int, int, int, struct device **));
|
1996-04-08 22:32:26 +04:00
|
|
|
void dumpconf __P((void));
|
|
|
|
void dumpsys __P((void));
|
|
|
|
void swapconf __P((void));
|
1998-04-13 16:10:26 +04:00
|
|
|
void disk_printtype __P((int, int));
|
|
|
|
void disk_reallymapin __P((struct buf *, struct pte *, int, int));
|
1999-02-02 21:37:20 +03:00
|
|
|
vaddr_t vax_map_physmem __P((paddr_t, int));
|
|
|
|
void vax_unmap_physmem __P((vaddr_t, int));
|
|
|
|
void ioaccess __P((vaddr_t, paddr_t, int));
|
|
|
|
void iounaccess __P((vaddr_t, int));
|
1999-05-24 02:56:53 +04:00
|
|
|
void findcpu(void);
|
1996-04-08 22:32:26 +04:00
|
|
|
#ifdef DDB
|
|
|
|
int kdbrint __P((int));
|
|
|
|
#endif
|
1998-06-09 18:03:24 +04:00
|
|
|
#endif /* _KERNEL */
|
1999-10-22 00:01:36 +04:00
|
|
|
#endif /* _VAX_CPU_H_ */
|