Dead Hackers Society
Other BBSes »
 
 
Demoscene  Coding  CT60  Buy/sell

Atari coding BBS
 
Re: Zilog Falcon
Posted by: earx Sep,05.2006-09:01 

o be honest, i have never tried. but i found some linux zilog SCC driver here:

AFAIK the old apple macintosh also had this chip and they could get use the full bitrate even on a 7 MHz machine. this was done by entering a polling loop inside the interrupt handler.

check the header file for register and bit field definitions:

(i'll post other c files next)

------------------------

#ifndef ZILOG_AND_COM_H
#define ZILOG_AND_COM_H


#if defined CONFIG_SMP
spinlock_t rt_com_spinlock = SPIN_LOCK_UNLOCKED;
#define RTL_SPIN_LOCK rt_com_spinlock
#endif
#define rt_com_irq_off( state ) rtl_critical( state )
#define rt_com_irq_on(state) rtl_end_critical( state )
#define rt_com_request_irq( irq, isr ) rtl_request_global_irq( irq, isr ); rtl_hard_enable_irq( irq )
#define rt_com_free_irq( irq ) rtl_free_global_irq( irq )

/* size of internal queues (power of 2) */
#define RT_COM_BUF_SIZ 0x1000

/* data buffer - organized as a FIFO */
struct rt_buf_struct{
int head;
int tail;
char buf[ RT_COM_BUF_SIZ ];
};



#define NUM_ZSREGS (16+1) // R0-R15 + R7'

/* information about handled ports */
struct rt_com_zilog_struct{
int control; // port with D/C low
int data; // port with D/C high
/* Current values of Zilog write registers. */
unsigned char curregs[NUM_ZSREGS];
unsigned char parity_mask;
struct rt_buf_struct ibuf;
struct rt_buf_struct obuf;
int is_allocated; // port allocated for that channel.
int used; // channel parametred for use.
/* called when chars rx'd */
ZILOG_IRQ_CALLBACK_FN callback;
/* called on each car rx'd */
ZILOG_IRQ_CALLBACK_FN callbackeachcar;
};



/* The Zilog register set */

#define FLAG 0x7e

/* Write Register 0 */
#define R0 0 /* Register selects */
#define R1 1
#define R2 2
#define R3 3
#define R4 4
#define R5 5
#define R6 6
#define R7 7
#define R8 8
#define R9 9
#define R10 10
#define R11 11
#define R12 12
#define R13 13
#define R14 14
#define R15 15
#define R7P 16 /* access on R7 with bit PRIME with R15. */

#define NULLCODE 0 /* Null Code */
#define POINT_HIGH 0x8 /* Select upper half of registers */
#define RES_EXT_INT 0x10 /* Reset Ext. Status Interrupts */
#define SEND_ABORT 0x18 /* HDLC Abort */
#define RES_RxINT_FC 0x20 /* Reset RxINT on First Character */
#define RES_Tx_P 0x28 /* Reset TxINT Pending */
#define ERR_RES 0x30 /* Error Reset */
#define RES_H_IUS 0x38 /* Reset highest IUS */

#define RES_Rx_CRC 0x40 /* Reset Rx CRC Checker */
#define RES_Tx_CRC 0x80 /* Reset Tx CRC Checker */
#define RES_EOM_L 0xC0 /* Reset EOM latch */

/* Write Register 1 */

#define EXT_INT_ENAB 0x1 /* Ext Int Enable */
#define TxINT_ENAB 0x2 /* Tx Int Enable */
#define PAR_SPEC 0x4 /* Parity is special condition */

#define RxINT_DISAB 0 /* Rx Int Disable */
#define RxINT_FCERR 0x8 /* Rx Int on First Character Only or Error */
#define INT_ALL_Rx 0x10 /* Int on all Rx Characters or error */
#define INT_ERR_Rx 0x18 /* Int on error only */
#define RxINT_MASK 0x18

#define WT_RDY_RT 0x20 /* Wait/Ready on R/T */
#define WT_FN_RDYFN 0x40 /* Wait/FN/Ready FN */
#define WT_RDY_ENAB 0x80 /* Wait/Ready Enable */

/* Write Register #2 (Interrupt Vector) */

/* Write Register 3 */

#define RxENAB 0x1 /* Rx Enable */
#define SYNC_L_INH 0x2 /* Sync Character Load Inhibit */
#define ADD_SM 0x4 /* Address Search Mode (SDLC) */
#define RxCRC_ENAB 0x8 /* Rx CRC Enable */
#define ENT_HM 0x10 /* Enter Hunt Mode */
#define AUTO_ENAB 0x20 /* Auto Enables */
#define Rx5 0x0 /* Rx 5 Bits/Character */
#define Rx7 0x40 /* Rx 7 Bits/Character */
#define Rx6 0x80 /* Rx 6 Bits/Character */
#define Rx8 0xc0 /* Rx 8 Bits/Character */
#define RxN_MASK 0xc0

/* Write Register 4 */

#define PAR_ENAB 0x1 /* Parity Enable */
#define PAR_EVEN 0x2 /* Parity Even/Odd* */

#define SYNC_ENAB 0 /* Sync Modes Enable */
#define SB1 0x4 /* 1 stop bit/char */
#define SB15 0x8 /* 1.5 stop bits/char */
#define SB2 0xc /* 2 stop bits/char */
#define SB_MASK 0xc

#define MONSYNC 0 /* 8 Bit Sync character */
#define BISYNC 0x10 /* 16 bit sync character */
#define SDLC 0x20 /* SDLC Mode (01111110 Sync Flag) */
#define EXTSYNC 0x30 /* External Sync Mode */

#define X1CLK 0x0 /* x1 clock mode */
#define X16CLK 0x40 /* x16 clock mode */
#define X32CLK 0x80 /* x32 clock mode */
#define X64CLK 0xC0 /* x64 clock mode */
#define XCLK_MASK 0xC0

/* Write Register 5 */

#define TxCRC_ENAB 0x1 /* Tx CRC Enable */
#define RTS 0x2 /* RTS */
#define SDLC_CRC 0x4 /* SDLC/CRC-16 */
#define TxENAB 0x8 /* Tx Enable */
#define SND_BRK 0x10 /* Send Break */
#define Tx5 0x0 /* Tx 5 bits (or less)/character */
#define Tx7 0x20 /* Tx 7 bits/character */
#define Tx6 0x40 /* Tx 6 bits/character */
#define Tx8 0x60 /* Tx 8 bits/character */
#define TxN_MASK 0x60
#define DTR 0x80 /* DTR */

/* Write Register 6 (Sync bits 0-7/SDLC Address Field) */

/* Write Register 7 (Sync bits 8-15/SDLC 01111110) */

/* Write Register 7' (Prime) (ESCC only) */
#define P_AUTOPX 0x1 /* Auto Tx Flag */
#define P_AUTOEOMR 0x2 /* Auto EOM Reset */
#define P_AUTORTSDES 0x4 /* Auto /RTS Desactivation */
#define P_RXFIFOINTLEV 0x8 /* Rx FIFO Int Level */
#define P_DTRREQTIM 0x10 /* /DTR /REQ Timing mode */
#define P_TXFIFOINTLEV 0x20 /* Tx FIFO Int Level */
#define P_EXTREADENAB 0x40 /* Extended Read Enable */

/* Write Register 8 (transmit buffer) */

/* Write Register 9 (Master interrupt control) */
#define VIS 1 /* Vector Includes Status */
#define NV 2 /* No Vector */
#define DLC 4 /* Disable Lower Chain */
#define MIE 8 /* Master Interrupt Enable */
#define STATHI 0x10 /* Status high */
#define NORESET 0 /* No reset on write to R9 */
#define CHRB 0x40 /* Reset channel B */
#define CHRA 0x80 /* Reset channel A */
#define FHWRES 0xc0 /* Force hardware reset */

/* Write Register 10 (misc control bits) */
#define BIT6 1 /* 6 bit/8bit sync */
#define LOOPMODE 2 /* SDLC Loop mode */
#define ABUNDER 4 /* Abort/flag on SDLC xmit underrun */
#define MARKIDLE 8 /* Mark/flag on idle */
#define GAOP 0x10 /* Go active on poll */
#define NRZ 0 /* NRZ mode */
#define NRZI 0x20 /* NRZI mode */
#define FM1 0x40 /* FM1 (transition = 1) */
#define FM0 0x60 /* FM0 (transition = 0) */
#define CRCPS 0x80 /* CRC Preset I/O */

/* Write Register 11 (Clock Mode control) */
#define TRxCXT 0 /* TRxC = Xtal output */
#define TRxCTC 1 /* TRxC = Transmit clock */
#define TRxCBR 2 /* TRxC = BR Generator Output */
#define TRxCDP 3 /* TRxC = DPLL output */
#define TRxCOI 4 /* TRxC O/I */
#define TCRTxCP 0 /* Transmit clock = RTxC pin */
#define TCTRxCP 8 /* Transmit clock = TRxC pin */
#define TCBR 0x10 /* Transmit clock = BR Generator output */
#define TCDPLL 0x18 /* Transmit clock = DPLL output */
#define RCRTxCP 0 /* Receive clock = RTxC pin */
#define RCTRxCP 0x20 /* Receive clock = TRxC pin */
#define RCBR 0x40 /* Receive clock = BR Generator output */
#define RCDPLL 0x60 /* Receive clock = DPLL output */
#define RTxCX 0x80 /* RTxC Xtal/No Xtal */

/* Write Register 12 (lower byte of baud rate generator time constant) */

/* Write Register 13 (upper byte of baud rate generator time constant) */

/* Write Register 14 (Misc control bits) */
#define BRENAB 1 /* Baud rate generator enable */
#define BRSRC 2 /* Baud rate generator source */
#define DTRREQ 4 /* DTR/Request function */
#define AUTOECHO 8 /* Auto Echo */
#define LOOPBAK 0x10 /* Local loopback */
#define SEARCH 0x20 /* Enter search mode */
#define RMC 0x40 /* Reset missing clock */
#define DISDPLL 0x60 /* Disable DPLL */
#define SSBR 0x80 /* Set DPLL source = BR generator */
#define SSRTxC 0xa0 /* Set DPLL source = RTxC */
#define SFMM 0xc0 /* Set FM mode */
#define SNRZI 0xe0 /* Set NRZI mode */

/* Write Register 15 (external/status interrupt control) */
#define PRIME 1[...]







[All messages in this thread]    [Start new thread]

Topic Posted by  Date 
Zilog Falcon GT Turbo Sep,04.2006-21:42
  Re: Zilog Falcon earx Sep,05.2006-09:01
    Zilog Falcon earx Sep,05.2006-09:02
      Re: Zilog Falcon earx Sep,05.2006-09:03
        Re: Zilog Falcon sqward Sep,05.2006-20:35
          Re: Zilog Falcon GT Turbo Sep,05.2006-22:41
            Re: Zilog Falcon Adam Klobukowski Sep,06.2006-08:35
              Re: Zilog Falcon GT Turbo Sep,06.2006-20:45
                Re: Zilog Falcon Peter Sep,08.2006-16:14


Reply to this message
Name:
Topic:
Anti-troll code:

Message:

What's the anti-troll code?
That's your personal code to be able to add comments and messages on the dhs.nu site.
Don't have a code or forgot it? Fix it here.
© 1994-2024 Dead Hackers Society Contact: Anders Eriksson