From: Richard B. <rb...@us...> - 2002-05-29 03:02:54
|
Update of /cvsroot/linux-vax/kernel-2.4/include/asm-vax In directory usw-pr-cvs1:/tmp/cvs-serv22990/include/asm Added Files: ka55.h Log Message: Fixed vsbus autodetect for KA55 cpu. It uses a different CPU register arrangement. Now correctly detects Dz console device. --- NEW FILE --- /* * $Id: ka55.h,v 1.1 2002/05/29 03:02:50 rbbanks Exp $ * * Definitions for KA55 CPU (VAXstation 3100m85). * */ #ifndef __VAX_KA55_H #define __VAX_KA55_H #ifndef __ASSEMBLY__ struct ka55_cpu_regs { unsigned long hltcod; /* byte 0-3 Halt Code Register */ unsigned long pad1; unsigned char intmsk; /* byte 8 Interrupt Mask */ unsigned char pad2; unsigned char pad3; unsigned char pad4; unsigned char intreq; /* byte 12 Interrupt request register */ #define intclr intreq unsigned short pad5; unsigned char pad6; unsigned short diagdsp; unsigned short pad7; unsigned long parctl; /* byte 20-23 Parity Control Register */ unsigned short pad8; unsigned short pad9; unsigned short diagtimu; unsigned short diagtme; /* byte 30-31 Diagnostic time register */ }; #endif /* __ASSEMBLY */ #endif /* __VAX_KA55_H */ |