![simonb](/assets/img/avatar_default.png)
by Eduardo Horvath and Simon Burge of Wasabi Systems. IBM 4xx series CPU features: - New pmap and revised trap handler. - Support on-chip timers, PCI controller, UARTs - Framework for on-chip ethernet and watchdog timer. General PowerPC features: - Add in-kernel PPC floating point emulation - New in{,4}_cksum that is between 1.5 and 5 times faster than the old version depending on CPU type. General changes: - Kernel support for generic dbsym-style symbols.
18 lines
512 B
C
18 lines
512 B
C
/* $NetBSD: psl.h,v 1.1 2001/06/13 06:01:58 simonb Exp $ */
|
|
|
|
#include <powerpc/psl.h>
|
|
|
|
/* Apparently we get unexplained machine checks, so disable them. */
|
|
#undef PSL_USERSET
|
|
#define PSL_USERSET (PSL_EE | PSL_PR | PSL_IR | PSL_DR | PSL_RI)
|
|
|
|
/*
|
|
* We also need to override the PSL_SE bit. 4xx have completely
|
|
* different debug register support.
|
|
*
|
|
* The SE bit is actually the DWE bit. We want to set the DE bit
|
|
* to enable the debug regs instead of the DWE bit.
|
|
*/
|
|
#undef PSL_SE
|
|
#define PSL_SE 0x00000200
|