Update of /cvsroot/linux-vax/kernel-2.4/arch/vax/boot
In directory usw-pr-cvs1:/tmp/cvs-serv21274
Modified Files:
cpu_sel.S
Log Message:
Added support for VXT cpu from VXT2000
Index: cpu_sel.S
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/arch/vax/boot/cpu_sel.S,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- cpu_sel.S 2001/02/06 00:15:42 1.3
+++ cpu_sel.S 2001/11/15 00:27:48 1.4
@@ -164,6 +164,10 @@
/* SOC support */
vax_soc:
+#specific check for value of sid for VXT2000
+ cmpl $VAX_CPU_VXT, cpu_sid
+ beql soc_vxt
+
# Extract subtype from SID
extv $SOC_Q22_SUBTYPE_SHIFT, $SOC_Q22_SUBTYPE_SIZE, cpu_sid, r0
@@ -179,6 +183,10 @@
soc_ka660:
moval mv_ka660, mv
+ rsb
+
+soc_vxt:
+ moval mv_vxt, mv
rsb
/***************************************************************************/
|