--******************************************************************************************************************** -- Created: 30-Mar-2010 17:01:54 by OpenVMS SDL EV3-3 -- Source: 06-JUL-2007 15:11:48 $1$DGA7274:[STARLET_ADA.LIS]MT3DEF.SDL;1 --******************************************************************************************************************** with SYSTEM; use SYSTEM; with STARLET; use STARLET; with CONDITION_HANDLING; use CONDITION_HANDLING; package MT3DEF is -- module $MT3DEF --+ -- MAGNETIC TAPE DENSITY/COMPRESSION DEFINITIONS -- -- These values are used only for MTD enhanced tape drivers -- and are not found in MTDEF. -- MT3_K_DEFAULT : constant := 0; -- DEFAULT DENSITY/COMPRESSION MT3_K_NRZI_800 : constant := 257; -- NRZI 800 BPI MT3_K_PE_1600 : constant := 258; -- PE 1600 BPI MT3_K_GCR_6250 : constant := 260; -- GCR 6250 BPI MT3_K_TK50 : constant := 513; -- DLT TK50: 833 BPI MT3_K_TK70 : constant := 514; -- DLT TK70: 1250 BPI MT3_K_3480 : constant := 769; -- IBM 3480 HPC 39872 BPI MT3_K_3490E : constant := 770; -- IBM 3480: compressed MT3_K_3480_COMP : constant := 772; -- IBM 3490 density MT3_K_3490E_COMP : constant := 776; -- IBM 3490: compressed MT3_K_WOD_6250 : constant := 1025; -- RV80 6250 BPI EQUIVALENT MT3_K_DAT : constant := 1281; -- DAT - 61000 bpi MT3_K_DAT_COMP : constant := 1282; -- DAT Compressed -- Only the Symbols to here are understood by pre-Raven TMSCP / TUDRIVER code. MT3_K_DENSITY_INVALID : constant := 31; -- Indicates,, DEVDEPEND density is invalid. MT3_K_8200 : constant := 1537; -- Exa-Byte 8200 MT3_K_8500 : constant := 1538; -- Exa-Byte 8500 MT3_K_8500_COMP : constant := 1540; -- Exa-Byte 8500 Compressed MT3_K_8200_COMP : constant := 1544; -- Exa-Byte 8200 Compressed MT3_K_8900 : constant := 1552; -- Exa-Byte 8900 MT3_K_8900_COMP : constant := 1568; -- Exa-Byte 8900 Compressed MT3_K_QIC : constant := 1793; -- All QIC drives are drive settable only. MT3_K_TK85 : constant := 2052; -- DLT Tx85: 10625 BPI -- Cmpt III MT3_K_TK86 : constant := 2056; -- DLT Tx86: 10626 BPI -- Cmpt III MT3_K_TK87 : constant := 2064; -- DLT Tx87: 62500 BPI -- Cmpt III MT3_K_TK87_COMP : constant := 2080; -- DLT Tx87: Compressed 62501 BPI MT3_K_TK89 : constant := 2305; -- DLT Tx89: (Quantum 7000) -- Cmpt IV MT3_K_TK89_COMP : constant := 2306; -- DLT Tx89: Compressed -- Cmpt IV MT3_K_TK88 : constant := 2368; -- DLT Tx88: (Quantum 4000) -- Cmpt IV MT3_K_TK88_COMP : constant := 2432; -- DLT Tx88: Compressed -- Cmpt IV MT3_K_DLT8000 : constant := 3588; -- DLT8000 MT3_K_DLT8000_COMP : constant := 3592; -- DLT8000 Compressed MT3_K_SDLT : constant := 3600; -- Super DLT MT3_K_SDLT_COMP : constant := 3616; -- Super DLT Compressed MT3_K_SDLT320 : constant := 3648; -- Super DLT320 MT3_K_SDLT320_COMP : constant := 3712; -- Super DLT320 Compressed MT3_K_AIT1 : constant := 2561; -- Sony Advanced Intelligent Tapes MT3_K_AIT1_COMP : constant := 2562; -- Sony Advanced Intelligent Tapes Compressed MT3_K_AIT2 : constant := 2564; -- AIT2 MT3_K_AIT2_COMP : constant := 2568; -- AIT2 Compressed MT3_K_AIT3 : constant := 2576; -- AIT3 MT3_K_AIT3_COMP : constant := 2592; -- AIT3 Compressed MT3_K_AIT4 : constant := 2624; -- AIT4 MT3_K_AIT4_COMP : constant := 2688; -- AIT4 Compressed MT3_K_DDS2 : constant := 2817; -- Digital Data Storage 2 MT3_K_DDS2_COMP : constant := 2818; -- Digital Data Storage 2 Compressed MT3_K_DDS3 : constant := 3073; -- Digital Data Storage 3 MT3_K_DDS3_COMP : constant := 3074; -- Digital Data Storage 3 Compressed MT3_K_DDS4 : constant := 3329; -- Digital Data Storage 4 MT3_K_DDS4_COMP : constant := 3330; -- Digital Data Storage 4 Compressed MT3_K_DAT72 : constant := 3332; -- DAT72 MT3_K_DAT72_COMP : constant := 3336; -- DAT72 Compressed MT3_K_DAT160 : constant := 3344; -- DAT160 MT3_K_DAT160_COMP : constant := 3360; -- DAT160 Compressed MT3_K_SDLT600 : constant := 3585; -- Super DLT600 MT3_K_SDLT600_COMP : constant := 3586; -- Super DLT600 Compressed MT3_K_LTO2 : constant := 3841; -- Ultrium460 MT3_K_LTO2_COMP : constant := 3842; -- Ultrium460 Compressed MT3_K_LTO3 : constant := 3844; -- Ultrium960 MT3_K_LTO3_COMP : constant := 3848; -- Ultrium960 Compressed MT3_K_LTO4 : constant := 3856; -- Ultrium 1840 MT3_K_LTO4_COMP : constant := 3872; -- Ultrium 1840 Compressed -- Compression Only codes. -- The X%FFxx codes below are layed out so that future compression enhancments -- may take advantage of multiple compression types. MT3_K_NO_COMP : constant := 65280; -- All Compression OFF MT3_K_COMP : constant := 65281; -- Compression ON end MT3DEF;