1 /*  START OF:       opc_reconfig_options.incl.pl1             *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *   */
 2 
 3 
 4 /****^  HISTORY COMMENTS:
 5   1) change(85-09-09,Farley), approve(85-12-03,MCR7312),
 6      audit(85-11-14,Fawcett), install(86-03-21,MR12.0-1033):
 7      Add Lock and unlock
 8      MCA.
 9   2) change(85-12-03,Farley), approve(85-12-03,MCR7306),
10      audit(85-12-03,Fawcett), install(86-03-21,MR12.0-1033):
11      Fix bugs found while doing Dipper changes.
12   3) change(85-12-03,Farley), approve(85-12-03,MCR7312),
13      audit(85-12-03,Fawcett), install(86-03-21,MR12.0-1033):
14      Add BCE MCA lock and unlock.
15                                                    END HISTORY COMMENTS */
16 
17 /*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */
18           /*                                                                                                  */
19           /* Purpose:                                                                                         */
20           /*                                                                                                  */
21           /* This include file contains the possible operator console reconfiguration options. These are      */
22           /* passed to hphcs_$ocdcm_reconfigure to effect explicit console reconfiguration.                   */
23           /*                                                                                                  */
24           /* Initial Coding:            06/18/83                                                              */
25           /*                                                                                                  */
26           /* Author:                    E. A. Ranzenbach    (Ranzenbach.Multics@M)                            */
27           /* Location:                  System-M.                                                             */
28           /* Release:                   MR10.2                                                                */
29           /*                                                                                                  */
30           /*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */
31           /*                                                                                                  */
32           /* Modifications:                                                                                   */
33           /*                                                                                                  */
34           /* Date    Author                       Reason                                                      */
35           /*                                                                                                  */
36           /* 840420  E. A. Ranzenbach             Added MAKE_UNAVAILABLE option.                              */
37           /* 850205  E. A. Ranzenbach             Added SEND_MC_IO option.                                    */
38           /* 850520  Paul K Farley                Added LOCK_MCA_INPUT option.                                */
39           /*                                      Added UNLOCK_MCA_INPUT option.                              */
40           /*                                                                                                  */
41           /*  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  */
42 
43 /* format: off */
44 ^L
45      dcl  (
46           NOP                           init      (0),                          /* just to make sure...                 */
47           ENABLE_CONSOLE_SERVICE        init      (1),                          /* allow syserr and normal I/O...       */
48           SUSPEND_CONSOLE_SERVICE       init      (2),                          /* the opposite of ENABLE...            */
49           MAKE_BOOTLOAD_CONSOLE         init      (3),                          /* make the bootload console...         */
50           MAKE_ALTERNATE_CONSOLE        init      (4),                          /* add console to alternate list...     */
51           MAKE_IO_DEVICE                init      (5),                          /* release the console to IOI...        */
52           MAKE_INOP_DEVICE              init      (6),                          /* release the console to IOI...        */
53           RESET_CONSOLE                 init      (7),                          /* reset the bootload console...        */
54           CRASH_ON_CRF                  init      (8),                          /* CRASH on console recovery failure... */
55           RUN_ON_CRF                    init      (9),                          /* RUN on console recovery failure...   */
56           MAKE_UNAVAILABLE              init      (10),                         /* put console into the OFF state...    */
57           SEND_MC_IO                    init      (11),                         /* forward all I/O to the MC console... */
58           LOCK_MCA_INPUT                init      (12),                         /* Disable input path from console to MCA(in IMU)... */
59           UNLOCK_MCA_INPUT              init      (13)                          /* Enable input path from console to MCA(in IMU)... */
60           )
61                                         fixed bin (17)
62                                         internal static     options (constant);
63 
64 /*  END OF:         opc_reconfig_options.incl.pl1             *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *  *   */