The VME Processor

-----

The VME processor is a MVME 162-13, sitting in the leftmost slot in the VME crate

When you press the red reset button, it reboots using the currently loaded boot parameters. In Order to see what these are set to, interrupt the boot sequence by hitting RETURN quickly on the console terminal.
If the processor is already up and running, type reboot on the console and hit RETURN quickly.

 boot script is on hponl:
 /usr1/mvdonl/boot/boottest 
 In this file, we used to have lines like:
 hostAdd "mvdonl.lanl.gov", "128.165.205.20" 
 These are not necessary, since the boot host
 name is automatically added to the known nodes. 

 help -> netHelp ->
 -> printErrno(0x....)  .... is the errno, shows
    an explanation of the error code.




-----

VME Processor boot parameters

These appear on the console terminal when you reboot the VME processor.

boot device              : ei
processor number         : 0
host name                : mvdonl.lanl.gov
file name                : /usr1/kozl/vxworks/bnl_config/config/mv162/vxWorks
inet on the ethernet (e) : 128.165.205.21
host inet (h)            : 128.165.205.20
user (u)                 : mvdonl
flags (f)                : 0x20
target name (tn)         : mvdonl2
startup script (s)       : /usr1/mvdonl/boot/boottest
other (o)                : s

-----

The Boot Script(s)


File /usr1/mvdonl/boot/boottest; This is the script that the VME processor executes at boot time:

< ~/boot/mybootsc
< $CODA/VXWORKS68K51/etc/boot040
cd "$CODA/CES"
ld < camacTest.o
ld < /usr1/mvdonl/camac/xilOpen.o


File /usr1/mvdonl/boot/mybootsc; this script is invoked by
boottest

< $CODA/VXWORKS68K51/etc/boot040
cd "$CODA/CES"
ld < camacTest.o
ld < /usr1/mvdonl/camac/xilOpen.o
ld < /usr1/mvdonl/camac/xil.o
mvdonl %  more mybootsc
#cd "$CODA/VXWORKS68K51/lib"
#ld < libcamac.o
cd "$CODA/CES"
ld < camacLib_8210.o
ccinit(0)
cd "$CODA/VXWORKS68K51/bin"
ld < caSrvr
taskSpawn "caServ",102,spTaskOptions,10000,caSrvr_main
ld < scRpc_vx
taskSpawn "scServ",104,spTaskOptions,10000,scServ


File $CODA/VXWORKS68K51/etc/boot040; this script is invoked by
boottest

taskSpawn "scServ",104,spTaskOptions,10000,scServ
mvdonl %  more $CODA/VXWORKS68K51/etc/boot040
cd "$CODA/VXWORKS68K51/bin"

ld < vxserv
taskSpawn "vxserv",175,spTaskOptions,6000,vxserv

ld < coda_roc
taskSpawn "ROC",110,spTaskOptions,8000,roc_coda

-----

The Console Terminal

The console terminal is a VT100-type terminal (actually a digital VT320), which plugs into the RS232 port on the front panel labeled PORT 1/CONSOLE. It should be set up as follows:

  • transmit = 9600
  • receive = transmit
  • xoff at 64
  • 8 bits no parity
  • 1 stop bit
  • no local echo
  • DEC-423
  • data leads only
  • limited transmit
  • no auto answerback
  • not concealed

    If you want the terminal to plug into the back of the HP, you need:

  • 7 bits
  • even parity
  • no check

    -----