HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
SS80 disk emulator for HP85 disk emulator project for AVR. More...
#include "user_config.h"
#include "defines.h"
#include "gpib_hal.h"
#include "gpib.h"
#include "gpib_task.h"
#include "amigo.h"
#include "ss80.h"
#include "vector.h"
#include "debug.h"
Go to the source code of this file.
Enumerations | |
enum | ss80exec { EXEC_IDLE, EXEC_LOCATE_AND_READ, EXEC_LOCATE_AND_WRITE, EXEC_SEND_STATUS, EXEC_DESCRIBE } |
Functions | |
void | SS80_Test (void) |
SS80 GPIB function. More... | |
void | V2B_MSB_Index1 (uint8_t *B, int index, int size, uint32_t val) |
Initialize SS80 state and bus. More... | |
uint8_t * | SS80ControllerPack (int *size) |
Pack Controller data into bytes. More... | |
uint8_t * | SS80UnitPack (int *size) |
Pack Unit data into bytes. More... | |
uint8_t * | SS80VolumePack (int *size) |
Pack Voulme data into bytes. More... | |
void | SS80_init (void) |
SS80 nitialize all devices Initialize ALL SS80 devives. More... | |
int | SS80_Execute_State (void) |
SS80 Execute state process. More... | |
uint32_t | SS80_Blocks_to_Bytes (uint32_t block) |
SS80 Return current address in bytes. More... | |
uint32_t | SS80_Bytes_to_Blocks (uint32_t bytes) |
SS80 Return current block addresss from bytes. More... | |
int | SS80_locate_and_read (void) |
SS80 Locate and Read COmmend. More... | |
int | SS80_locate_and_write (void) |
SS80 Locate and Write Commend. More... | |
int | SS80_test_extended_status (uint8_t *p, int bit) |
SS80 test extendend status bits and display them. More... | |
void | SS80_set_extended_status (uint8_t *p, int bit) |
SS80 set extendend status bits. More... | |
void | SS80_display_extended_status (uint8_t *p, char *message) |
SS80 Display extended 8 byte status messages for debuging. More... | |
int | SS80_send_status (void) |
SS80 send detailed status. More... | |
int | SS80_describe (void) |
Send Controler,Unit and Volume description. More... | |
void | SS80_Check_Unit (uint8_t unit) |
Check unit number and assign. More... | |
void | SS80_Check_Volume (uint8_t volume) |
Check volume number and assign. More... | |
int | SS80_Command_State (void) |
Process OP Codes following 0x65 Command State. More... | |
int | SS80_Transparent_State (void) |
(0x70 or 0x72) OP Code processing. More... | |
int | SS80_cmd_seek (void) |
Limit tests for disk seek. More... | |
int | SS80_Report (void) |
send QSTAT More... | |
void | Clear_Common (int u) |
Universal and Decvice clear code. More... | |
int | SS80_Channel_Independent_Clear (int u) |
Channel Independent Clear. More... | |
int | SS80_Universal_Device_Clear (void) |
Universal Device CLear. More... | |
int | SS80_Selected_Device_Clear (int u) |
Selected Device Clear. More... | |
int | SS80_Amigo_Clear (void) |
Amigo Clear. More... | |
int | SS80_Cancel () |
Cancel transaction. More... | |
int | SS80_increment (void) |
Increment position Addressy by one block. More... | |
int | SS80_error_return (void) |
Common SS80 Error Return function. Send qstat = 1. More... | |
int | SS80_COMMANDS (uint8_t ch) |
SS80 COMMANDS States. More... | |
Variables | |
uint8_t | talking |
GPIB BUS states. More... | |
uint8_t | listening |
gpib listen address More... | |
uint8_t | spoll |
gpib serial poll status More... | |
int | TD [] |
SS80 GPIB test string. More... | |
fault_t | faults [] |
fault messages TODO move these to __memx More... | |
SS80 disk emulator for HP85 disk emulator project for AVR.
Definition in file ss80.c.
enum ss80exec |
void Clear_Common | ( | int | u | ) |
Universal and Decvice clear code.
/// Power ON Values /// CS80 Page B-12 /// Table B-5. Complementary Command Power-on Values /// COMPLEMENTARY POWER-ON COMPLEMENTARY POWER-ON /// COMMAND VALUE COMMAND COMMAND VALUE /// Set Unit 0 Set Retry Time device specific /// Set Volume 0 Set Status Mask disabled /// Set Address 0,0,0 No Op Not Applicable /// Set Length -1 (full volume) Set Release T = O Z = O /// Set Burst disable Set Options device specific /// Set RPS disabled Set Return Addressing Mode single vector /// /// CS80 3-2 /// Clears the following: /// - clearable hardware functions /// - internal buffers /// - channel interface buffers /// - Complementary values /// - status report, unless the Diagnostic Result status bit is set /// - other programmable functions (device dependent) /// /// CS80 3-3 has more detail /// 1. Abort the current operation at the earliest opportunity such /// that no data corruption can take place. /// 2. Clear all clearable device or interface conditions currently asserted. /// 3. Reset all Complementary parameters to their power-on values. /// 4. Reset status report, unless the Diagnostic Result status bit is /// set. This includes resetting power-on status. /// Note- After the device has reported a diagnostic failure on one unit, /// the Clear command will clear the status of other units attempting to /// report the same failure. It is unnecessary for the same failure to /// be reported more than once. /// 5. Set QSTAT value to indicate whether or not status should be /// requested. Note: QSTAT will indicate any diagnostic results /// in addition to the occurrence of an internal release request. /// 6. Enter the reporting state. ///
We do not have RPS or Burst settings yet so we do not clear them/
We do not have a diagnostic mode so bits ALWAYS get cleared.
[in] | u | unit |
Definition at line 1734 of file ss80.c.
Referenced by SS80_Amigo_Clear(), SS80_Channel_Independent_Clear(), SS80_init(), SS80_Selected_Device_Clear(), and SS80_Universal_Device_Clear().
int SS80_Amigo_Clear | ( | void | ) |
Amigo Clear.
Definition at line 1831 of file ss80.c.
Referenced by SS80_COMMANDS().
uint32_t SS80_Blocks_to_Bytes | ( | uint32_t | block | ) |
SS80 Return current address in bytes.
Definition at line 344 of file ss80.c.
Referenced by SS80_cmd_seek(), SS80_Command_State(), SS80_increment(), SS80_locate_and_read(), and SS80_locate_and_write().
uint32_t SS80_Bytes_to_Blocks | ( | uint32_t | bytes | ) |
SS80 Return current block addresss from bytes.
Definition at line 353 of file ss80.c.
Referenced by SS80_cmd_seek(), SS80_locate_and_read(), and SS80_locate_and_write().
int SS80_Cancel | ( | ) |
Cancel transaction.
Definition at line 1865 of file ss80.c.
Referenced by SS80_Transparent_State().
int SS80_Channel_Independent_Clear | ( | int | u | ) |
Channel Independent Clear.
[in] | u | Unit |
Definition at line 1775 of file ss80.c.
Referenced by SS80_Transparent_State().
void SS80_Check_Unit | ( | uint8_t | unit | ) |
Check unit number and assign.
[in] | unit | unit number to assign |
Definition at line 977 of file ss80.c.
Referenced by SS80_Command_State(), and SS80_Transparent_State().
void SS80_Check_Volume | ( | uint8_t | volume | ) |
Check volume number and assign.
[in] | volume | volume number to assign |
Definition at line 995 of file ss80.c.
Referenced by SS80_Command_State().
int SS80_cmd_seek | ( | void | ) |
Limit tests for disk seek.
Definition at line 1593 of file ss80.c.
Referenced by SS80_locate_and_read(), and SS80_locate_and_write().
int SS80_Command_State | ( | void | ) |
Process OP Codes following 0x65 Command State.
/// Notes: /// We set DPPR on entry and EPPR on exit /// DPPR = gpib_disable_PPR(SS80p->HEADER.PPR); /// EPPR = gpib_enable_PPR(SS80p->HEADER.PPR); /// /// Valid OP Codes for Command State (0x65): /// Real Time, General Purpose, Complementary, DIagnostic /// Diagnostic /// In this Order: /// (1 to N) Complementary /// and/or /// (1) of Real Time, General Purpose, Diagnostic /// (This later group is always LAST) /// OP Code Sequence errors: TODO /// /// We Read all of the Data/Opcodes/Parameters at once /// (while ATN is false). /// Last byte read should be EOI or an error /// Why read all at once ? /// SS80 "Command Messages" are buffered one at a time. /// A "Command Message" contains all ALL opcodes & their parameters /// (See SS80 Section 4-12, Page 4-6) /// /// Unknown OP Code processing rules /// Skip the remaining codes, Wait for Report Phase ///
set unit number TODO We do not support multiple units yet - we DO track it
set volume number TODO We do not support multiple Volumes yet - we DO track it
SS80 pg 4-73
Set Return Addressing Type: COMPLEMENTARY Phases: Command, Report SS80 pg 4-81 CS80 4-18,2-24
Validate Key, Set Format Options, Download Type: GENERAL PURPOSE Phases: Command, Report Must be last command in sequence SS80 pg 4-91 CS80 N/A
Initialize Media Type: GENERAL PURPOSE Phases: Command, Report This command must be last and only one SS80 pg 4-33 CS80 4-19,2-26
Set Status Mask Type: GENERAL PURPOSE Phases: Command, Report Must be last command in sequence SS80 pg 4-81 CS80 4-15,2-20
Initiate Diagnostic Type: DIAGNOSTIC Phases: Command, Report Must be last command in sequence SS80 pg 4-35 CS80 N/A
Definition at line 1047 of file ss80.c.
Referenced by SS80_COMMANDS().
int SS80_COMMANDS | ( | uint8_t | ch | ) |
SS80 COMMANDS States.
-Reference: SS80 3-2..9
[in] | ch | command. |
Definition at line 1929 of file ss80.c.
Referenced by GPIB_COMMANDS().
int SS80_describe | ( | void | ) |
Send Controler,Unit and Volume description.
Definition at line 929 of file ss80.c.
Referenced by SS80_Execute_State().
void SS80_display_extended_status | ( | uint8_t * | p, |
char * | message | ||
) |
SS80 Display extended 8 byte status messages for debuging.
*p | extended status vector |
*message | message header for display |
Definition at line 714 of file ss80.c.
Referenced by SS80_Command_State().
int SS80_error_return | ( | void | ) |
Common SS80 Error Return function. Send qstat = 1.
Definition at line 1898 of file ss80.c.
Referenced by SS80_locate_and_read().
int SS80_Execute_State | ( | void | ) |
SS80 Execute state process.
Definition at line 306 of file ss80.c.
Referenced by SS80_COMMANDS().
int SS80_increment | ( | void | ) |
void SS80_init | ( | void | ) |
SS80 nitialize all devices Initialize ALL SS80 devives.
Definition at line 275 of file ss80.c.
Referenced by gpib_init_devices().
int SS80_locate_and_read | ( | void | ) |
SS80 Locate and Read COmmend.
Note: this should not happen unless we exit on errors above
Definition at line 374 of file ss80.c.
Referenced by SS80_Execute_State().
int SS80_locate_and_write | ( | void | ) |
SS80 Locate and Write Commend.
Definition at line 506 of file ss80.c.
Referenced by SS80_Execute_State().
int SS80_Report | ( | void | ) |
send QSTAT
/// QSTAT, return status byte /// NORMAL COMPLETION = 0 /// Indicates normal completion of the requested operation. /// HARD ERROR = 1 /// Indicates that error information is available. /// The host must issue the Request Status command in order /// to determine what went wrong. /// POWER ON = 2 /// Indicates that the device has just returned from a power failure /// or some form of operator intervention (such as removal of the /// storage media). Any incomplete transactions were aborted and /// should be repeated. The host must reconfigure any programmable /// operating parameters because they have returned to their /// power-on values. ///
@return 0 on sucess @see: gpib.h ERROR_MASK defines for a full list.
Definition at line 1641 of file ss80.c.
Referenced by GPIB(), GPIB_TALK(), and SS80_COMMANDS().
int SS80_Selected_Device_Clear | ( | int | u | ) |
Selected Device Clear.
Definition at line 1811 of file ss80.c.
Referenced by GPIB().
int SS80_send_status | ( | void | ) |
SS80 send detailed status.
/// SS80 pg 4-59 /// Bits are numbered /// 0 .. 7 (MSB..LSB "backwards") /// Bytes are numbered /// 1 .. 20 (0..19 in message) /// Example: /// Bit 0 represents the MSB of Byte 1 /// /// We define ONLY those bits we are using, or might use /// See: SS80 pg 4-59 for more details /// /// Indentification Field /// Byte 1(0) <VVVVUUUU> /// VVVV=Volume NUmber /// Byte 2(1) <11111111> /// /// SS80 pg 4-59 /// Reject Errors Field /// byte 3(2) byte 4(3) /// < 0 0 2 0 0 5 6 7 > <8 9 10 0 12 0 0 O> /// 2 = Channel Parity Error /// 5 = Illegal Opcode /// 6 = Module Addressing /// 7 = Address Bounds /// 8 = Parameter Bounds /// 9 = Illegal Parameter /// 10 = Message Sequence /// 12 = Message Length /// /// SS80 pg 4-60 /// Fault Errors Field /// byte 5(4) byte 6(5) /// < 0 17 0 19 0 0 22 0 > < 24 0 0 0 0 0 30 31 > /// /// 19 = Controller Fault /// 22 = Unit Fault /// 24 = Diagnostic Result /// 30 = Power Fail /// 31 = Re-transmit /// /// /// SS80 pg 4-60 /// Access Errors Field /// byte 7(6) byte 8(7) /// < 0 33 34 35 36 37 0 0 > < 40 41 0 43 44 0 0 0 > /// 33 = Uninitialized media /// 34 = No Spares Available /// 35 = Not Ready /// 36 = Write Protect /// 37 = No Data Found /// 40 = Unrecoverable Data Overflow /// 41 = Unrecoverable Data /// 43 = End of File /// 44 = End of Volume /// /// SS80 pg 4-62 /// Information Errors Field /// byte 9(8) byte 10(9) /// < 0 0 0 51 52 0 0 55 > < 0 57 0 59 0 0 0 0 > /// 51 = Media Wear /// 52 = Latency induced /// 55 = Auto Sparing Invoked /// 57 = Recoverable Data Overflow /// 59 = Recoverable Data /// /// SS80 4:58 /// The following fault error bits will NEVER be set by an SS/80 device: /// 26 = Operator request /// 27 = Diagnostic request /// 28 = Internal maintenance /// 32 = Illegal parallel operation /// 48 = Operator Request /// 49 = Diagnostic Request /// 50 = Internal Maintenance /// 58 = Marginal Data /// 61 = Maintenance Track Overflow /// /// SS80 pg 4-64 /// P6 (10 .. 15) is SS80 Specific /// /// SS80 4:65 /// P1O (16 .. 19) /// /// @todo add some of these /// 5 = Illegal Opcode /// 6 = Module Addressing /// 8 = Parameter Bounds /// 9 = Illegal Parameter /// 10 = Message Sequence /// 12 = Message Length /// 19 = Controller Fault /// 24 = Diagnostic Result /// 30 = Power Fail /// 33 = Uninitialized media /// 35 = Not Ready /// 37 = No Data Found /// 41 = Unrecoverable Data /// 43 = End of File /// 44 = End of Volume ///
@return 0. @return GPIB error flags on fail> @see gpib.h ERROR_MASK defines for a full list.
4:63,64
Note: Diagnostic Result bit is NOT set
Definition at line 854 of file ss80.c.
Referenced by SS80_Execute_State().
void SS80_set_extended_status | ( | uint8_t * | p, |
int | bit | ||
) |
SS80 set extendend status bits.
*p | extended status vector |
bit | bit number starting at MSB of first byte as 0 |
Definition at line 700 of file ss80.c.
Referenced by SS80_send_status().
void SS80_Test | ( | void | ) |
int SS80_test_extended_status | ( | uint8_t * | p, |
int | bit | ||
) |
SS80 test extendend status bits and display them.
*p | extended status vector |
bit | bit number starting at MSB of first byte as 0 |
Definition at line 683 of file ss80.c.
Referenced by SS80_display_extended_status().
int SS80_Transparent_State | ( | void | ) |
(0x70 or 0x72) OP Code processing.
/// Notes: /// DPPR gpib_disable_PPR(SS80p->HEADER.PPR) should already be set at the secondary /// We do NOT reenable EPPR at any state /// /// Valid OP Codes for Transparent State (0x70 or 0x72): /// [Unit Complementary] Transparent /// /// UNIVERSAL DEVICE CLEAR /// AMIGO CLEAR /// CANCEL /// CHANNEL INDEPENDENT CLEAR /// IDENTIFY /// READ LOOPBACK /// WRITE LOOPBACK /// HP-IB PARITY CHECKING /// /// Transparent Commands done at HP-IB state, NOT here: /// Universal Device Clear /// Selected Device Clear /// Identify /// /// Read all of the Data/Opcodes/Parameters at once /// (while ATN is false). /// Last byte read should be EOI or an error /// Why read all at once ? /// SS80 "Command Messages" are buffered one at a time. /// A "Command Message" contains all ALL opcodes & their parameters /// (See SS80 Section 4-12, Page 4-6) /// /// Unknown OP Code processing rules /// Skip the remaining codes, Wait for Report Phase ///
work in progress, unit support
Note: Enabling Parallel Poll is up to each function Many transparent Commands require Parallel Poll disabled when done
TODO We do not support multiple units yet - we DO track it
HP-IB PARITY CHECKING
@breif READ LOOPBACK
@breif WRITE LOOPBACK
CHANNEL INDEPENDENT CLEAR TODO We do not support multiple UNITS yet - we DO track it TODO The UNIT is optional and has already been set if specified
CANCEL TODO We do not support multiple units yet
Definition at line 1442 of file ss80.c.
Referenced by SS80_COMMANDS().
int SS80_Universal_Device_Clear | ( | void | ) |
Universal Device CLear.
Definition at line 1793 of file ss80.c.
Referenced by GPIB().
uint8_t* SS80ControllerPack | ( | int * | size | ) |
Pack Controller data into bytes.
[out] | *size | number of bytes in result |
Definition at line 169 of file ss80.c.
Referenced by SS80_describe().
uint8_t* SS80UnitPack | ( | int * | size | ) |
Pack Unit data into bytes.
[out] | *size | number of bytes in result |
Definition at line 198 of file ss80.c.
Referenced by SS80_describe().
uint8_t* SS80VolumePack | ( | int * | size | ) |
Pack Voulme data into bytes.
[out] | *size | number of bytes in result |
Definition at line 245 of file ss80.c.
Referenced by SS80_describe().
void V2B_MSB_Index1 | ( | uint8_t * | B, |
int | index, | ||
int | size, | ||
uint32_t | val | ||
) |
Initialize SS80 state and bus.
/// Reference: /// CS80 Page B-12 /// Table B-5. Complementary Command Power-on Values /// COMPLEMENTARY POWER-ON COMPLEMENTARY POWER-ON /// COMMAND VALUE COMMAND COMMAND VALUE /// Set Unit 0 Set Retry Time device specific /// Set Volume 0 Set Status Mask disabled /// Set Address 0,0,0 No Op Not Applicable /// Set Length -1 (full volume) Set Release T = O Z = O /// Set Burst disable Set Options device specific /// Set RPS disabled Set Return Addressing Mode single vector ///
SS80 Describe helper functions The SS80 docs number bytes offset as 1 to N for Controller,Unit and Volume MSB ... LSB
remove 1 bias
Definition at line 159 of file ss80.c.
Referenced by SS80ControllerPack(), SS80UnitPack(), and SS80VolumePack().
fault_t faults[] |
fault messages TODO move these to __memx
Definition at line 642 of file ss80.c.
Referenced by SS80_display_extended_status().
uint8_t listening |
gpib listen address
Definition at line 90 of file gpib.c.
Referenced by GPIB(), GPIB_COMMANDS(), GPIB_LISTEN(), GPIB_SECONDARY_ADDRESS(), gpib_state_init(), GPIB_TALK(), gpib_task(), PRINTER_COMMANDS(), and SS80_COMMANDS().
uint8_t spoll |
gpib serial poll status
Definition at line 95 of file gpib.c.
Referenced by GPIB(), gpib_state_init(), and GPIB_TALK().
uint8_t talking |
GPIB BUS states.
/// See LIF filesystem Reference /// Reference from "Subset 80 for Fixed and Flexible Disk Drives" /// Page: 3-17, Figure 3-8. Secondaries and Opcodes /// /// Address Secondary Opcode # of other Comment /// State (without Parameter /// parity) bytes /// ------- --------- ------ ---------- ------- /// L major 65H 2XH None Set Unit /// L major 65H 40-47H None Set Volume /// L major 65H 10H 6 bytes Set Address /// L major 65H 18H 4 bytes Set Length /// L major 65H 34H None No Op /// L major 65H 39H 2 bytes Set RFS (No Op) /// L major 65H 3BH 1 byte Set Release (No Op) /// L major 65H 3EH 8 bytes Set Status Mask /// L major 65H 48H 1 byte Set Return Addressing Mode /// (Only single vector allowed) /// L major 65H 00H None Locate and Read /// L major 65H 02H None Locate and Write /// L major 65H 04H None Locate and Verif y /// L major 65H 06H 1 byte Spare Block /// L major 65H 00H None Request Status /// L major 65H 0EH None Release (No Op /// L major 65H 0FH None Release Denied (No Op) /// L major 65H 31H 2 bytes Validate Key /// L major 65H 31H 2 bytes Set Format Options /// L major 65H 31H 6 bytes Download /// L major 65H 33H 3 bytes Initiate Diagnostic /// L major 65H 35H None Describe /// L major 65H 37H 2 bytes Initialize Media /// L major 65H 4CH None Door Unlock /// L major 65H 4DH None Door Lock /// L major 72H 01H 1 byte HP-IB Parity Checking /// L major 72H 02H 4 bytes Read Loopback /// L major 72H 03H 4 bytes Write Loopback /// L major 72H 08H None Channel Independent Clear /// L major 72H 09H None Cancel /// L major 72H -- -- Transparent execution (listen) /// Write Loopback execution /// L major 6EH -- -- Normal execution (listen) /// Write execution phase /// Download execution phase /// L major 70H -- 1 byte Amigo Clear (1 parameter byte + SOC) /// T major 70H -- 1 byte Reporting phase (Stand alone QSTAT) /// T major 6EH -- -- Normal execution (talk) /// Read execution phase /// Describe execution phase /// Request Status execution /// T major 72H -- -- Transparen texecution (talk) /// Read Loopback execution /// T minor ADDRS -- -- Identify /// DEC -- -- -- Universal Device Clear /// /// Figure 3- 8. Secondaries and Opcodes ///
GPIB BUS states.
Definition at line 85 of file gpib.c.
Referenced by GPIB(), GPIB_COMMANDS(), GPIB_LISTEN(), GPIB_SECONDARY_ADDRESS(), gpib_state_init(), GPIB_TALK(), PRINTER_COMMANDS(), and SS80_COMMANDS().