123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323 |
- #ifndef _SUNSAB_H
- #define _SUNSAB_H
- struct sab82532_async_rd_regs {
- u8 rfifo[0x20];
- u8 star;
- u8 __pad1;
- u8 mode;
- u8 timr;
- u8 xon;
- u8 xoff;
- u8 tcr;
- u8 dafo;
- u8 rfc;
- u8 __pad2;
- u8 rbcl;
- u8 rbch;
- u8 ccr0;
- u8 ccr1;
- u8 ccr2;
- u8 ccr3;
- u8 __pad3[4];
- u8 vstr;
- u8 __pad4[3];
- u8 gis;
- u8 ipc;
- u8 isr0;
- u8 isr1;
- u8 pvr;
- u8 pis;
- u8 pcr;
- u8 ccr4;
- };
- struct sab82532_async_wr_regs {
- u8 xfifo[0x20];
- u8 cmdr;
- u8 __pad1;
- u8 mode;
- u8 timr;
- u8 xon;
- u8 xoff;
- u8 tcr;
- u8 dafo;
- u8 rfc;
- u8 __pad2;
- u8 xbcl;
- u8 xbch;
- u8 ccr0;
- u8 ccr1;
- u8 ccr2;
- u8 ccr3;
- u8 tsax;
- u8 tsar;
- u8 xccr;
- u8 rccr;
- u8 bgr;
- u8 tic;
- u8 mxn;
- u8 mxf;
- u8 iva;
- u8 ipc;
- u8 imr0;
- u8 imr1;
- u8 pvr;
- u8 pim;
- u8 pcr;
- u8 ccr4;
- };
- struct sab82532_async_rw_regs {
- u8 __pad1[0x20];
- u8 __pad2;
- u8 __pad3;
- u8 mode;
- u8 timr;
- u8 xon;
- u8 xoff;
- u8 tcr;
- u8 dafo;
- u8 rfc;
- u8 __pad4;
- u8 __pad5;
- u8 __pad6;
- u8 ccr0;
- u8 ccr1;
- u8 ccr2;
- u8 ccr3;
- u8 __pad7;
- u8 __pad8;
- u8 __pad9;
- u8 __pad10;
- u8 __pad11;
- u8 __pad12;
- u8 __pad13;
- u8 __pad14;
- u8 __pad15;
- u8 ipc;
- u8 __pad16;
- u8 __pad17;
- u8 pvr;
- u8 __pad18;
- u8 pcr;
- u8 ccr4;
- };
- union sab82532_async_regs {
- __volatile__ struct sab82532_async_rd_regs r;
- __volatile__ struct sab82532_async_wr_regs w;
- __volatile__ struct sab82532_async_rw_regs rw;
- };
- union sab82532_irq_status {
- unsigned short stat;
- struct {
- unsigned char isr0;
- unsigned char isr1;
- } sreg;
- };
- #define SAB82532_ALLS 0x00000001
- #define SAB82532_XPR 0x00000002
- #define SAB82532_REGS_PENDING 0x00000004
- #define SAB82532_RSTAT_PE 0x80
- #define SAB82532_RSTAT_FE 0x40
- #define SAB82532_RSTAT_PARITY 0x01
- #define SAB82532_STAR_XDOV 0x80
- #define SAB82532_STAR_XFW 0x40
- #define SAB82532_STAR_RFNE 0x20
- #define SAB82532_STAR_FCS 0x10
- #define SAB82532_STAR_TEC 0x08
- #define SAB82532_STAR_CEC 0x04
- #define SAB82532_STAR_CTS 0x02
- #define SAB82532_CMDR_RMC 0x80
- #define SAB82532_CMDR_RRES 0x40
- #define SAB82532_CMDR_RFRD 0x20
- #define SAB82532_CMDR_STI 0x10
- #define SAB82532_CMDR_XF 0x08
- #define SAB82532_CMDR_XRES 0x01
- #define SAB82532_MODE_FRTS 0x40
- #define SAB82532_MODE_FCTS 0x20
- #define SAB82532_MODE_FLON 0x10
- #define SAB82532_MODE_RAC 0x08
- #define SAB82532_MODE_RTS 0x04
- #define SAB82532_MODE_TRS 0x02
- #define SAB82532_MODE_TLP 0x01
- #define SAB82532_TIMR_CNT_MASK 0xe0
- #define SAB82532_TIMR_VALUE_MASK 0x1f
- #define SAB82532_DAFO_XBRK 0x40
- #define SAB82532_DAFO_STOP 0x20
- #define SAB82532_DAFO_PAR_SPACE 0x00
- #define SAB82532_DAFO_PAR_ODD 0x08
- #define SAB82532_DAFO_PAR_EVEN 0x10
- #define SAB82532_DAFO_PAR_MARK 0x18
- #define SAB82532_DAFO_PARE 0x04
- #define SAB82532_DAFO_CHL8 0x00
- #define SAB82532_DAFO_CHL7 0x01
- #define SAB82532_DAFO_CHL6 0x02
- #define SAB82532_DAFO_CHL5 0x03
- #define SAB82532_RFC_DPS 0x40
- #define SAB82532_RFC_DXS 0x20
- #define SAB82532_RFC_RFDF 0x10
- #define SAB82532_RFC_RFTH_1 0x00
- #define SAB82532_RFC_RFTH_4 0x04
- #define SAB82532_RFC_RFTH_16 0x08
- #define SAB82532_RFC_RFTH_32 0x0c
- #define SAB82532_RFC_TCDE 0x01
- #define SAB82532_RBCH_DMA 0x80
- #define SAB82532_RBCH_CAS 0x20
- #define SAB82532_XBCH_DMA 0x80
- #define SAB82532_XBCH_CAS 0x20
- #define SAB82532_XBCH_XC 0x10
- #define SAB82532_CCR0_PU 0x80
- #define SAB82532_CCR0_MCE 0x40
- #define SAB82532_CCR0_SC_NRZ 0x00
- #define SAB82532_CCR0_SC_NRZI 0x08
- #define SAB82532_CCR0_SC_FM0 0x10
- #define SAB82532_CCR0_SC_FM1 0x14
- #define SAB82532_CCR0_SC_MANCH 0x18
- #define SAB82532_CCR0_SM_HDLC 0x00
- #define SAB82532_CCR0_SM_SDLC_LOOP 0x01
- #define SAB82532_CCR0_SM_BISYNC 0x02
- #define SAB82532_CCR0_SM_ASYNC 0x03
- #define SAB82532_CCR1_ODS 0x10
- #define SAB82532_CCR1_BCR 0x08
- #define SAB82532_CCR1_CM_MASK 0x07
- #define SAB82532_CCR2_SOC1 0x80
- #define SAB82532_CCR2_SOC0 0x40
- #define SAB82532_CCR2_BR9 0x80
- #define SAB82532_CCR2_BR8 0x40
- #define SAB82532_CCR2_BDF 0x20
- #define SAB82532_CCR2_SSEL 0x10
- #define SAB82532_CCR2_XCS0 0x20
- #define SAB82532_CCR2_RCS0 0x10
- #define SAB82532_CCR2_TOE 0x08
- #define SAB82532_CCR2_RWX 0x04
- #define SAB82532_CCR2_DIV 0x01
- #define SAB82532_CCR3_PSD 0x01
- #define SAB82532_TSAX_TSNX_MASK 0xfc
- #define SAB82532_TSAX_XCS2 0x02
- #define SAB82532_TSAX_XCS1 0x01
- #define SAB82532_TSAR_TSNR_MASK 0xfc
- #define SAB82532_TSAR_RCS2 0x02
- #define SAB82532_TSAR_RCS1 0x01
- #define SAB82532_VSTR_CD 0x80
- #define SAB82532_VSTR_DPLA 0x40
- #define SAB82532_VSTR_VN_MASK 0x0f
- #define SAB82532_VSTR_VN_1 0x00
- #define SAB82532_VSTR_VN_2 0x01
- #define SAB82532_VSTR_VN_3_2 0x02
- #define SAB82532_GIS_PI 0x80
- #define SAB82532_GIS_ISA1 0x08
- #define SAB82532_GIS_ISA0 0x04
- #define SAB82532_GIS_ISB1 0x02
- #define SAB82532_GIS_ISB0 0x01
- #define SAB82532_IVA_MASK 0xf1
- #define SAB82532_IPC_VIS 0x80
- #define SAB82532_IPC_SLA1 0x10
- #define SAB82532_IPC_SLA0 0x08
- #define SAB82532_IPC_CASM 0x04
- #define SAB82532_IPC_IC_OPEN_DRAIN 0x00
- #define SAB82532_IPC_IC_ACT_LOW 0x01
- #define SAB82532_IPC_IC_ACT_HIGH 0x03
- #define SAB82532_ISR0_TCD 0x80
- #define SAB82532_ISR0_TIME 0x40
- #define SAB82532_ISR0_PERR 0x20
- #define SAB82532_ISR0_FERR 0x10
- #define SAB82532_ISR0_PLLA 0x08
- #define SAB82532_ISR0_CDSC 0x04
- #define SAB82532_ISR0_RFO 0x02
- #define SAB82532_ISR0_RPF 0x01
- #define SAB82532_ISR1_BRK 0x80
- #define SAB82532_ISR1_BRKT 0x40
- #define SAB82532_ISR1_ALLS 0x20
- #define SAB82532_ISR1_XOFF 0x10
- #define SAB82532_ISR1_TIN 0x08
- #define SAB82532_ISR1_CSC 0x04
- #define SAB82532_ISR1_XON 0x02
- #define SAB82532_ISR1_XPR 0x01
- #define SAB82532_IMR0_TCD 0x80
- #define SAB82532_IMR0_TIME 0x40
- #define SAB82532_IMR0_PERR 0x20
- #define SAB82532_IMR0_FERR 0x10
- #define SAB82532_IMR0_PLLA 0x08
- #define SAB82532_IMR0_CDSC 0x04
- #define SAB82532_IMR0_RFO 0x02
- #define SAB82532_IMR0_RPF 0x01
- #define SAB82532_IMR1_BRK 0x80
- #define SAB82532_IMR1_BRKT 0x40
- #define SAB82532_IMR1_ALLS 0x20
- #define SAB82532_IMR1_XOFF 0x10
- #define SAB82532_IMR1_TIN 0x08
- #define SAB82532_IMR1_CSC 0x04
- #define SAB82532_IMR1_XON 0x02
- #define SAB82532_IMR1_XPR 0x01
- #define SAB82532_PIS_SYNC_B 0x08
- #define SAB82532_PIS_DTR_B 0x04
- #define SAB82532_PIS_DTR_A 0x02
- #define SAB82532_PIS_SYNC_A 0x01
- #define SAB82532_CCR4_MCK4 0x80
- #define SAB82532_CCR4_EBRG 0x40
- #define SAB82532_CCR4_TST1 0x20
- #define SAB82532_CCR4_ICD 0x10
- #endif
|