home *** CD-ROM | disk | FTP | other *** search
-
- (*
- * Copyright 1987, 1989 Samuel H. Smith; All rights reserved
- *
- * This is a component of the ProDoor System.
- * Do not distribute modified versions without my permission.
- * Do not remove or alter this notice or any other copyright notice.
- * If you use this in your own program you must distribute source code.
- * Do not use any of this in a commercial product.
- *
- *)
-
- (*
- * intrcomm.inc - interrupt-based communication library for PCB ProDOOR
- *
- *)
-
- {$R-,S-}
-
-
- (* ------------------------------------------------------------ *)
- (*
- * Interrupt handler, install and uninstall
- *
- *)
-
- procedure INTR_service_transmit;
- (* low-level interrupt service for transmit, call only when transmit
- holding register is empty *)
- var
- c: char;
- const
- recur: boolean = false;
-
- begin
-
- (* prevent recursion fb/bg *)
- if recur then exit;
- recur := true;
-
- (* drop out if transmitter is busy *)
- if (port[ port_base+LSR ] and LSR_THRE) = 0 then
- begin
- recur := false;
- exit;
- end;
-
- (* stop transmitting when queue is empty, or XOFF is active
- or it is not CLEAR-to-send to modem *)
-
- xmit_active := (txque.count <> 0) and (not xoff_active) and
- (disable_CTS_check or ((port[port_base+MSR] and MSR_CTS)>0));
-
- (*********
- xmit_active :=
- not ( (txque.count = 0)
- or
- XOFF_active
- or
- (
- not disable_CTS_check)
- and
- ((port[ port_base+MSR ] and MSR_CTS) = 0)
- )
- );
- *********)
-
- (* start next byte transmitting *)
- if xmit_active then
- begin
- c := txque.data[txque.next_out];
- if txque.next_out < sizeof(txque.data) then
- inc(txque.next_out)
- else
- txque.next_out := 1;
- dec(txque.count);
-
- port[ port_base+THR ] := ord(c);
- end;
-
- recur := false;
- end;
-
-
- (* ------------------------------------------------------------ *)
- procedure control_k;
- (* process cancel-output command *)
- begin
- txque.next_in := 1;
- txque.next_out := 1; (* throw away pending output *)
- txque.count := 0;
-
- linenum := 2000; (* cancel current function *)
- pending_keys[0] := chr(1);
- pending_keys[1] := ^M; (* fake <return> to break loose from prompts *)
- end;
-
-
- (* ------------------------------------------------------------ *)
- procedure INTR_service_receive;
- (* low-level interrupt service for receive data,
- call only when receive data is ready *)
- var
- c: char;
-
- begin
- if (port[ port_base+LSR ] and LSR_DAV) = 0 then
- exit;
-
- c := chr( port[ port_base+RBR ] );
-
- if XOFF_active then (* XOFF cancelled by any character *)
- cancel_xoff
- else
-
- if c = XOFF_char then (* process XOFF/XON flow control *)
- XOFF_active := true
- else
-
- if (c = ^K) then (* process cancel-output command *)
- control_k
- else
-
- if c = carrier_lost then (* ignore this special character! *)
- begin
- {do nothing}
- end
- else
-
- if rxque.count < sizeof(rxque.data) then
- begin
- inc(rxque.count);
- rxque.data[rxque.next_in] := c;
- if rxque.next_in < sizeof(rxque.data) then
- inc(rxque.next_in)
- else
- rxque.next_in := 1;
- end;
- end;
-
-
- (* ------------------------------------------------------------ *)
- procedure INTR_poll_transmit;
- (* recover from CTS or XOF handshake when needed *)
- begin
- {no action if nothing to transmit}
- if (txque.count = 0) or local then
- exit;
-
- {check for XON if output suspended by XOFF}
- INTR_service_receive;
- INTR_service_transmit;
- (***************
- if XOFF_active then
- INTR_service_receive
- else
-
- {restart the transmitter if it has lost an interrupt}
- if ((port[ port_base+LSR ] and LSR_THRE) <> 0) or (not xmit_active) then
- INTR_service_transmit;
- ************)
- end;
-
-
- (* ------------------------------------------------------------ *)
- procedure cancel_xoff;
- begin
- XOFF_active := false;
- INTR_poll_transmit;
- end;
-
-
- (* ------------------------------------------------------------ *)
- procedure INTR_check_interrupts;
- (* check for and process any pending 8250 interrupts.
- can be called from TPAS *)
- var
- status: integer;
-
- begin
-
- (* get the interrupt identification register *)
- status := port[ port_base+IIR ];
-
- (* repeatedly service interrupts until no more services possible *)
- while (status and IIR_PENDING) = 0 do
- begin
-
- case (status and IIR_MASK) of
- IIR_THRE: (* transmit holding register empty interrupt *)
- INTR_service_transmit;
-
- IIR_DAV: (* data available interrupt *)
- INTR_service_receive;
- end;
-
- (* get the interrupt identification register again *)
- status := port[ port_base+IIR ];
- end;
-
- end;
-
-
- (* ------------------------------------------------------------ *)
- procedure INTR_interrupt_handler(Flags,CS,IP,AX,BX,CX,DX,SI,DI,DS,ES,BP: word);
- interrupt;
- (* low-level interrupt service routine. this procedure processes
- all receive-ready and transmit-ready interrupts from the 8250 chip.
- DO NOT call this proc from TPAS *)
-
- begin
-
- (* service interrupts until no more services possible *)
- INTR_check_interrupts;
-
- (* acknowledge the interrupt and return to foreground operation *)
- port[ $20 ] := $20; {non-specific EOI}
-
- end;
-
-
- (* ------------------------------------------------------------ *)
- function INTR_receive_ready: boolean;
- (* see if any receive data is ready on the active com port *)
- begin
- INTR_poll_transmit;
- INTR_receive_ready := rxque.count > 0;
- end;
-
-
- (* ------------------------------------------------------------ *)
- procedure INTR_flush_com;
- (* wait for all pending transmit data to be sent *)
- begin
- enable_int;
- while txque.count > 0 do
- begin
- INTR_poll_transmit;
- give_up_time; (* give up extra time *)
- end;
- end;
-
-
- (* ------------------------------------------------------------ *)
- procedure verify_txque_space;
- (* wait until there is enough space in the queue for this message *)
- (* or until flow control is released *)
- begin
- while txque.count > queue_low_water do
- begin
- INTR_poll_transmit;
- give_up_time; (* give up extra time *)
- end;
- end;
-
-
- (* ------------------------------------------------------------ *)
- procedure INTR_lower_dtr;
- (* lower DTR to inhibit modem answering *)
- begin
- if local then exit;
- port[ port_base+MCR ] := port [ port_base+MCR ] and not MCR_DTR;
- end;
-
-
- (* ------------------------------------------------------------ *)
- procedure INTR_raise_dtr;
- (* raise DTR to allow modem answering - not supported by BIOS *)
- begin
- if local then exit;
- port[ port_base+MCR ] := port [ port_base+MCR ] or (MCR_DTR+MCR_RTS);
- end;
-
-
- (* ------------------------------------------------------------ *)
- procedure INTR_select_port(chan: integer);
- (* lookup the port address for the specified com channel *)
- begin
- com_current_chan := chan;
- xmit_active := false;
- XOFF_active := false;
-
- case chan of
- -1,
- 0: begin
- port_base := $3F8;
- port_intr := $0C;
- intr_mask := $10;
- end;
-
- 1: begin
- port_base := $2F8;
- port_intr := $0B;
- intr_mask := $08;
- end;
-
- { (* add cases here for more COM ports *)
- else
- begin
- writeln('Invalid COM channel: ',chan);
- halt;
- end; }
- end;
-
- (**
- writeln('[chan=',chan,' port base=',port_base,' intr=',port_intr,' mask=',intr_mask,']');
- **)
-
- (* initialize the receive and transmit queues *)
- rxque.next_in := 1;
- rxque.next_out := 1;
- rxque.count := 0;
-
- txque.next_in := 1;
- txque.next_out := 1;
- txque.count := 0;
-
- INTR_raise_dtr;
- end;
-
-
- (* ------------------------------------------------------------ *)
- procedure INTR_init_com(chan: integer);
- (* initialize communication handlers for operation with the specified
- com port number. must be called before any other services here *)
- begin
-
- (* initialize port numbers, receive and transmit queues *)
- INTR_select_port(chan);
-
- (* save the old interrupt handler's vector *)
- GetIntVec(port_intr, old_vector);
- {writeln('got old');}
-
- (* install a vector to the new handler *)
- SetIntVec(port_intr,@INTR_interrupt_handler);
- {writeln('new set');}
-
- (* save original 8250 registers *)
- disable_int;
- prev_LCR := port[ port_base+LCR ];
- prev_MCR := port[ port_base+MCR ];
- prev_IER := port[ port_base+IER ];
- prev_ICTL := port[ ICTL ];
-
- (* initialize the 8250 for interrupts *)
- port[ port_base+LCR ] := port[ port_base+LCR ] and not LCR_NORMAL;
- port[ port_base+MCR ] := port[ port_base+MCR ] or MCR_OUT2;
- port[ port_base+IER ] := IER_DAV+IER_THRE;
-
- (* enable the interrupt through the interrupt controller *)
- port[ ICTL ] := port[ ICTL ] and not intr_mask;
- enable_int;
-
- (* initialize the receive queues in case of an initial garbage byte *)
- disable_int;
- rxque.next_in := 1;
- rxque.next_out := 1;
- rxque.count := 0;
- enable_int;
-
- {writeln('init done');}
-
- end;
-
-
- (* ------------------------------------------------------------ *)
- procedure INTR_uninit_com;
- (* remove interrupt handlers for the com port
- must be called before exit to system *)
- begin
- if (port_base = -1) or (old_vector = nil) then
- exit;
-
- (* wait for the pending data to flush from the queue *)
- INTR_flush_com;
-
- (* attach the old handler to the interrupt vector *)
- disable_int;
-
- SetIntVec(port_intr, old_vector);
-
- port[ port_base+LCR ] := prev_LCR;
- port[ port_base+MCR ] := prev_MCR;
- port[ port_base+IER ] := prev_IER;
- port[ ICTL ] := (port[ ICTL ] and not intr_mask) or (prev_ICTL and intr_mask);
-
- enable_int;
-
- (***
- writeln('prev: LCR=',itoh(prev_LCR),
- ' MCR=',itoh(prev_MCR),
- ' IER=',itoh(prev_IER),
- ' ICTL=',itoh(prev_ICTL));
- writeln(' now: LCR=',itoh(port[ port_base+LCR ]),
- ' MCR=',itoh(port[ port_base+MCR ]),
- ' IER=',itoh(port[ port_base+IER ]),
- ' ICTL=',itoh(port[ ICTL ]));
- writeln('intr_mask=',itoh(intr_mask),
- ' vector=',itoh(seg(old_vector)),':',itoh(ofs(old_vector)));
- ***)
-
- old_vector := nil;
- end;
-
-
-
- (* ------------------------------------------------------------ *)
- function INTR_receive_data: char;
- (* wait for and return 1 character from the active com port *)
- (* returns carrier_lost if carrier is not present *)
- var
- c: char;
-
- begin
-
- repeat
- if INTR_receive_ready then
- begin
- disable_int;
-
- {deque from rxque}
- c := rxque.data[rxque.next_out];
- if rxque.next_out < sizeof(rxque.data) then
- inc(rxque.next_out)
- else
- rxque.next_out := 1;
- dec(rxque.count);
-
- enable_int;
-
- {strip parity in 7,E mode}
- if even_parity then
- c := chr( ord(c) and $7f );
-
- INTR_receive_data := c;
- exit;
- end;
-
- {give up time while waiting}
- give_up_time;
-
- until not ((port[port_base+MSR] and MSR_RLSD)<>0);
-
- {carrier not present}
- cancel_xoff;
- INTR_receive_data := carrier_lost;
- end;
-
-
- (* ------------------------------------------------------------ *)
- procedure INTR_transmit_data(s: longstring);
- (* transmits a string of characters to the specified com port;
- does not transmit when carrier is not present *)
- var
- i: integer;
-
- begin
-
- (* wait until there is enough space in the queue for this message *)
- (* or until flow control is released *)
-
- if txque.count > queue_high_water then
- verify_txque_space;
-
-
- (* enque the string to be transmitted *)
- for i := 1 to length(s) do
- begin
- disable_int;
-
- inc(txque.count);
- txque.data[txque.next_in] := s[i];
- if txque.next_in < sizeof(txque.data) then
- inc(txque.next_in)
- else
- txque.next_in := 1;
-
- enable_int;
- end;
-
-
- (* force an initial interrupt to get things rolling (in case there are
- no more pending transmit-ready interrupts *)
-
- INTR_poll_transmit;
- end;
-
- { $R+,S+}
-
-