uboot/arch/powerpc/include/asm/cpm_85xx.h
<<
>>
Prefs
   1/*
   2 * MPC85xx Communication Processor Module
   3 * Copyright (c) 2003,Motorola Inc.
   4 * Xianghua Xiao (X.Xiao@motorola.com)
   5 *
   6 * MPC8260 Communication Processor Module.
   7 * Copyright (c) 1999 Dan Malek (dmalek@jlc.net)
   8 *
   9 * This file contains structures and information for the communication
  10 * processor channels found in the dual port RAM or parameter RAM.
  11 * All CPM control and status is available through the MPC8260 internal
  12 * memory map.  See immap.h for details.
  13 */
  14#ifndef __CPM_85XX__
  15#define __CPM_85XX__
  16
  17#include <asm/immap_85xx.h>
  18
  19/* CPM Command register.
  20*/
  21#define CPM_CR_RST      ((uint)0x80000000)
  22#define CPM_CR_PAGE     ((uint)0x7c000000)
  23#define CPM_CR_SBLOCK   ((uint)0x03e00000)
  24#define CPM_CR_FLG      ((uint)0x00010000)
  25#define CPM_CR_MCN      ((uint)0x00003fc0)
  26#define CPM_CR_OPCODE   ((uint)0x0000000f)
  27
  28/* Device sub-block and page codes.
  29*/
  30#define CPM_CR_SCC1_SBLOCK      (0x04)
  31#define CPM_CR_SCC2_SBLOCK      (0x05)
  32#define CPM_CR_SCC3_SBLOCK      (0x06)
  33#define CPM_CR_SCC4_SBLOCK      (0x07)
  34#define CPM_CR_SMC1_SBLOCK      (0x08)
  35#define CPM_CR_SMC2_SBLOCK      (0x09)
  36#define CPM_CR_SPI_SBLOCK       (0x0a)
  37#define CPM_CR_I2C_SBLOCK       (0x0b)
  38#define CPM_CR_TIMER_SBLOCK     (0x0f)
  39#define CPM_CR_RAND_SBLOCK      (0x0e)
  40#define CPM_CR_FCC1_SBLOCK      (0x10)
  41#define CPM_CR_FCC2_SBLOCK      (0x11)
  42#define CPM_CR_FCC3_SBLOCK      (0x12)
  43#define CPM_CR_MCC1_SBLOCK      (0x1c)
  44
  45#define CPM_CR_SCC1_PAGE        (0x00)
  46#define CPM_CR_SCC2_PAGE        (0x01)
  47#define CPM_CR_SCC3_PAGE        (0x02)
  48#define CPM_CR_SCC4_PAGE        (0x03)
  49#define CPM_CR_SPI_PAGE         (0x09)
  50#define CPM_CR_I2C_PAGE         (0x0a)
  51#define CPM_CR_TIMER_PAGE       (0x0a)
  52#define CPM_CR_RAND_PAGE        (0x0a)
  53#define CPM_CR_FCC1_PAGE        (0x04)
  54#define CPM_CR_FCC2_PAGE        (0x05)
  55#define CPM_CR_FCC3_PAGE        (0x06)
  56#define CPM_CR_MCC1_PAGE        (0x07)
  57#define CPM_CR_MCC2_PAGE        (0x08)
  58
  59/* Some opcodes (there are more...later)
  60*/
  61#define CPM_CR_INIT_TRX         ((ushort)0x0000)
  62#define CPM_CR_INIT_RX          ((ushort)0x0001)
  63#define CPM_CR_INIT_TX          ((ushort)0x0002)
  64#define CPM_CR_HUNT_MODE        ((ushort)0x0003)
  65#define CPM_CR_STOP_TX          ((ushort)0x0004)
  66#define CPM_CR_RESTART_TX       ((ushort)0x0006)
  67#define CPM_CR_SET_GADDR        ((ushort)0x0008)
  68
  69#define mk_cr_cmd(PG, SBC, MCN, OP) \
  70        ((PG << 26) | (SBC << 21) | (MCN << 6) | OP)
  71
  72/* Dual Port RAM addresses.  The first 16K is available for almost
  73 * any CPM use, so we put the BDs there.  The first 128 bytes are
  74 * used for SMC1 and SMC2 parameter RAM, so we start allocating
  75 * BDs above that.  All of this must change when we start
  76 * downloading RAM microcode.
  77 */
  78#define CPM_DATAONLY_BASE       ((uint)128)
  79#define CPM_DP_NOSPACE          ((uint)0x7FFFFFFF)
  80#define CPM_FCC_SPECIAL_BASE    ((uint)0x0000B000)
  81#define CPM_DATAONLY_SIZE       ((uint)(16 * 1024) - CPM_DATAONLY_BASE)
  82
  83/* The number of pages of host memory we allocate for CPM.  This is
  84 * done early in kernel initialization to get physically contiguous
  85 * pages.
  86 */
  87#define NUM_CPM_HOST_PAGES      2
  88
  89/* Export the base address of the communication processor registers
  90 * and dual port ram.
  91 */
  92/*extern        cpm8560_t       *cpmp;   Pointer to comm processor */
  93uint            m8560_cpm_dpalloc(uint size, uint align);
  94uint            m8560_cpm_hostalloc(uint size, uint align);
  95void            m8560_cpm_setbrg(uint brg, uint rate);
  96void            m8560_cpm_fastbrg(uint brg, uint rate, int div16);
  97void            m8560_cpm_extcbrg(uint brg, uint rate, uint extclk, int pinsel);
  98
  99/* Buffer descriptors used by many of the CPM protocols.
 100*/
 101typedef struct cpm_buf_desc {
 102        ushort  cbd_sc;         /* Status and Control */
 103        ushort  cbd_datlen;     /* Data length in buffer */
 104        uint    cbd_bufaddr;    /* Buffer address in host memory */
 105} cbd_t;
 106
 107#define BD_SC_EMPTY     ((ushort)0x8000)        /* Receive is empty */
 108#define BD_SC_READY     ((ushort)0x8000)        /* Transmit is ready */
 109#define BD_SC_WRAP      ((ushort)0x2000)        /* Last buffer descriptor */
 110#define BD_SC_INTRPT    ((ushort)0x1000)        /* Interrupt on change */
 111#define BD_SC_LAST      ((ushort)0x0800)        /* Last buffer in frame */
 112#define BD_SC_CM        ((ushort)0x0200)        /* Continous mode */
 113#define BD_SC_ID        ((ushort)0x0100)        /* Rec'd too many idles */
 114#define BD_SC_P         ((ushort)0x0100)        /* xmt preamble */
 115#define BD_SC_BR        ((ushort)0x0020)        /* Break received */
 116#define BD_SC_FR        ((ushort)0x0010)        /* Framing error */
 117#define BD_SC_PR        ((ushort)0x0008)        /* Parity error */
 118#define BD_SC_OV        ((ushort)0x0002)        /* Overrun */
 119#define BD_SC_CD        ((ushort)0x0001)        /* ?? */
 120
 121/* Function code bits, usually generic to devices.
 122*/
 123#define CPMFCR_GBL      ((u_char)0x20)  /* Set memory snooping */
 124#define CPMFCR_EB       ((u_char)0x10)  /* Set big endian byte order */
 125#define CPMFCR_TC2      ((u_char)0x04)  /* Transfer code 2 value */
 126#define CPMFCR_DTB      ((u_char)0x02)  /* Use local bus for data when set */
 127#define CPMFCR_BDB      ((u_char)0x01)  /* Use local bus for BD when set */
 128
 129/* Parameter RAM offsets from the base.
 130*/
 131#define CPM_POST_WORD_ADDR      0x80FC  /* steal a long at the end of SCC1 */
 132#define PROFF_SCC1              ((uint)0x8000)
 133#define PROFF_SCC2              ((uint)0x8100)
 134#define PROFF_SCC3              ((uint)0x8200)
 135#define PROFF_SCC4              ((uint)0x8300)
 136#define PROFF_FCC1              ((uint)0x8400)
 137#define PROFF_FCC2              ((uint)0x8500)
 138#define PROFF_FCC3              ((uint)0x8600)
 139#define PROFF_MCC1              ((uint)0x8700)
 140#define PROFF_MCC2              ((uint)0x8800)
 141#define PROFF_SPI_BASE          ((uint)0x89fc)
 142#define PROFF_TIMERS            ((uint)0x8ae0)
 143#define PROFF_REVNUM            ((uint)0x8af0)
 144#define PROFF_RAND              ((uint)0x8af8)
 145#define PROFF_I2C_BASE          ((uint)0x8afc)
 146
 147/* Baud rate generators.
 148*/
 149#define CPM_BRG_RST             ((uint)0x00020000)
 150#define CPM_BRG_EN              ((uint)0x00010000)
 151#define CPM_BRG_EXTC_INT        ((uint)0x00000000)
 152#define CPM_BRG_EXTC_CLK3_9     ((uint)0x00004000)
 153#define CPM_BRG_EXTC_CLK5_15    ((uint)0x00008000)
 154#define CPM_BRG_ATB             ((uint)0x00002000)
 155#define CPM_BRG_CD_MASK         ((uint)0x00001ffe)
 156#define CPM_BRG_DIV16           ((uint)0x00000001)
 157
 158/* SCCs.
 159*/
 160#define SCC_GSMRH_IRP           ((uint)0x00040000)
 161#define SCC_GSMRH_GDE           ((uint)0x00010000)
 162#define SCC_GSMRH_TCRC_CCITT    ((uint)0x00008000)
 163#define SCC_GSMRH_TCRC_BISYNC   ((uint)0x00004000)
 164#define SCC_GSMRH_TCRC_HDLC     ((uint)0x00000000)
 165#define SCC_GSMRH_REVD          ((uint)0x00002000)
 166#define SCC_GSMRH_TRX           ((uint)0x00001000)
 167#define SCC_GSMRH_TTX           ((uint)0x00000800)
 168#define SCC_GSMRH_CDP           ((uint)0x00000400)
 169#define SCC_GSMRH_CTSP          ((uint)0x00000200)
 170#define SCC_GSMRH_CDS           ((uint)0x00000100)
 171#define SCC_GSMRH_CTSS          ((uint)0x00000080)
 172#define SCC_GSMRH_TFL           ((uint)0x00000040)
 173#define SCC_GSMRH_RFW           ((uint)0x00000020)
 174#define SCC_GSMRH_TXSY          ((uint)0x00000010)
 175#define SCC_GSMRH_SYNL16        ((uint)0x0000000c)
 176#define SCC_GSMRH_SYNL8         ((uint)0x00000008)
 177#define SCC_GSMRH_SYNL4         ((uint)0x00000004)
 178#define SCC_GSMRH_RTSM          ((uint)0x00000002)
 179#define SCC_GSMRH_RSYN          ((uint)0x00000001)
 180
 181#define SCC_GSMRL_SIR           ((uint)0x80000000)      /* SCC2 only */
 182#define SCC_GSMRL_EDGE_NONE     ((uint)0x60000000)
 183#define SCC_GSMRL_EDGE_NEG      ((uint)0x40000000)
 184#define SCC_GSMRL_EDGE_POS      ((uint)0x20000000)
 185#define SCC_GSMRL_EDGE_BOTH     ((uint)0x00000000)
 186#define SCC_GSMRL_TCI           ((uint)0x10000000)
 187#define SCC_GSMRL_TSNC_3        ((uint)0x0c000000)
 188#define SCC_GSMRL_TSNC_4        ((uint)0x08000000)
 189#define SCC_GSMRL_TSNC_14       ((uint)0x04000000)
 190#define SCC_GSMRL_TSNC_INF      ((uint)0x00000000)
 191#define SCC_GSMRL_RINV          ((uint)0x02000000)
 192#define SCC_GSMRL_TINV          ((uint)0x01000000)
 193#define SCC_GSMRL_TPL_128       ((uint)0x00c00000)
 194#define SCC_GSMRL_TPL_64        ((uint)0x00a00000)
 195#define SCC_GSMRL_TPL_48        ((uint)0x00800000)
 196#define SCC_GSMRL_TPL_32        ((uint)0x00600000)
 197#define SCC_GSMRL_TPL_16        ((uint)0x00400000)
 198#define SCC_GSMRL_TPL_8         ((uint)0x00200000)
 199#define SCC_GSMRL_TPL_NONE      ((uint)0x00000000)
 200#define SCC_GSMRL_TPP_ALL1      ((uint)0x00180000)
 201#define SCC_GSMRL_TPP_01        ((uint)0x00100000)
 202#define SCC_GSMRL_TPP_10        ((uint)0x00080000)
 203#define SCC_GSMRL_TPP_ZEROS     ((uint)0x00000000)
 204#define SCC_GSMRL_TEND          ((uint)0x00040000)
 205#define SCC_GSMRL_TDCR_32       ((uint)0x00030000)
 206#define SCC_GSMRL_TDCR_16       ((uint)0x00020000)
 207#define SCC_GSMRL_TDCR_8        ((uint)0x00010000)
 208#define SCC_GSMRL_TDCR_1        ((uint)0x00000000)
 209#define SCC_GSMRL_RDCR_32       ((uint)0x0000c000)
 210#define SCC_GSMRL_RDCR_16       ((uint)0x00008000)
 211#define SCC_GSMRL_RDCR_8        ((uint)0x00004000)
 212#define SCC_GSMRL_RDCR_1        ((uint)0x00000000)
 213#define SCC_GSMRL_RENC_DFMAN    ((uint)0x00003000)
 214#define SCC_GSMRL_RENC_MANCH    ((uint)0x00002000)
 215#define SCC_GSMRL_RENC_FM0      ((uint)0x00001000)
 216#define SCC_GSMRL_RENC_NRZI     ((uint)0x00000800)
 217#define SCC_GSMRL_RENC_NRZ      ((uint)0x00000000)
 218#define SCC_GSMRL_TENC_DFMAN    ((uint)0x00000600)
 219#define SCC_GSMRL_TENC_MANCH    ((uint)0x00000400)
 220#define SCC_GSMRL_TENC_FM0      ((uint)0x00000200)
 221#define SCC_GSMRL_TENC_NRZI     ((uint)0x00000100)
 222#define SCC_GSMRL_TENC_NRZ      ((uint)0x00000000)
 223#define SCC_GSMRL_DIAG_LE       ((uint)0x000000c0)      /* Loop and echo */
 224#define SCC_GSMRL_DIAG_ECHO     ((uint)0x00000080)
 225#define SCC_GSMRL_DIAG_LOOP     ((uint)0x00000040)
 226#define SCC_GSMRL_DIAG_NORM     ((uint)0x00000000)
 227#define SCC_GSMRL_ENR           ((uint)0x00000020)
 228#define SCC_GSMRL_ENT           ((uint)0x00000010)
 229#define SCC_GSMRL_MODE_ENET     ((uint)0x0000000c)
 230#define SCC_GSMRL_MODE_DDCMP    ((uint)0x00000009)
 231#define SCC_GSMRL_MODE_BISYNC   ((uint)0x00000008)
 232#define SCC_GSMRL_MODE_V14      ((uint)0x00000007)
 233#define SCC_GSMRL_MODE_AHDLC    ((uint)0x00000006)
 234#define SCC_GSMRL_MODE_PROFIBUS ((uint)0x00000005)
 235#define SCC_GSMRL_MODE_UART     ((uint)0x00000004)
 236#define SCC_GSMRL_MODE_SS7      ((uint)0x00000003)
 237#define SCC_GSMRL_MODE_ATALK    ((uint)0x00000002)
 238#define SCC_GSMRL_MODE_HDLC     ((uint)0x00000000)
 239
 240#define SCC_TODR_TOD            ((ushort)0x8000)
 241
 242/* SCC Event and Mask register.
 243*/
 244#define SCCM_TXE        ((unsigned char)0x10)
 245#define SCCM_BSY        ((unsigned char)0x04)
 246#define SCCM_TX         ((unsigned char)0x02)
 247#define SCCM_RX         ((unsigned char)0x01)
 248
 249typedef struct scc_param {
 250        ushort  scc_rbase;      /* Rx Buffer descriptor base address */
 251        ushort  scc_tbase;      /* Tx Buffer descriptor base address */
 252        u_char  scc_rfcr;       /* Rx function code */
 253        u_char  scc_tfcr;       /* Tx function code */
 254        ushort  scc_mrblr;      /* Max receive buffer length */
 255        uint    scc_rstate;     /* Internal */
 256        uint    scc_idp;        /* Internal */
 257        ushort  scc_rbptr;      /* Internal */
 258        ushort  scc_ibc;        /* Internal */
 259        uint    scc_rxtmp;      /* Internal */
 260        uint    scc_tstate;     /* Internal */
 261        uint    scc_tdp;        /* Internal */
 262        ushort  scc_tbptr;      /* Internal */
 263        ushort  scc_tbc;        /* Internal */
 264        uint    scc_txtmp;      /* Internal */
 265        uint    scc_rcrc;       /* Internal */
 266        uint    scc_tcrc;       /* Internal */
 267} sccp_t;
 268
 269/* CPM Ethernet through SCC1.
 270 */
 271typedef struct scc_enet {
 272        sccp_t  sen_genscc;
 273        uint    sen_cpres;      /* Preset CRC */
 274        uint    sen_cmask;      /* Constant mask for CRC */
 275        uint    sen_crcec;      /* CRC Error counter */
 276        uint    sen_alec;       /* alignment error counter */
 277        uint    sen_disfc;      /* discard frame counter */
 278        ushort  sen_pads;       /* Tx short frame pad character */
 279        ushort  sen_retlim;     /* Retry limit threshold */
 280        ushort  sen_retcnt;     /* Retry limit counter */
 281        ushort  sen_maxflr;     /* maximum frame length register */
 282        ushort  sen_minflr;     /* minimum frame length register */
 283        ushort  sen_maxd1;      /* maximum DMA1 length */
 284        ushort  sen_maxd2;      /* maximum DMA2 length */
 285        ushort  sen_maxd;       /* Rx max DMA */
 286        ushort  sen_dmacnt;     /* Rx DMA counter */
 287        ushort  sen_maxb;       /* Max BD byte count */
 288        ushort  sen_gaddr1;     /* Group address filter */
 289        ushort  sen_gaddr2;
 290        ushort  sen_gaddr3;
 291        ushort  sen_gaddr4;
 292        uint    sen_tbuf0data0; /* Save area 0 - current frame */
 293        uint    sen_tbuf0data1; /* Save area 1 - current frame */
 294        uint    sen_tbuf0rba;   /* Internal */
 295        uint    sen_tbuf0crc;   /* Internal */
 296        ushort  sen_tbuf0bcnt;  /* Internal */
 297        ushort  sen_paddrh;     /* physical address (MSB) */
 298        ushort  sen_paddrm;
 299        ushort  sen_paddrl;     /* physical address (LSB) */
 300        ushort  sen_pper;       /* persistence */
 301        ushort  sen_rfbdptr;    /* Rx first BD pointer */
 302        ushort  sen_tfbdptr;    /* Tx first BD pointer */
 303        ushort  sen_tlbdptr;    /* Tx last BD pointer */
 304        uint    sen_tbuf1data0; /* Save area 0 - current frame */
 305        uint    sen_tbuf1data1; /* Save area 1 - current frame */
 306        uint    sen_tbuf1rba;   /* Internal */
 307        uint    sen_tbuf1crc;   /* Internal */
 308        ushort  sen_tbuf1bcnt;  /* Internal */
 309        ushort  sen_txlen;      /* Tx Frame length counter */
 310        ushort  sen_iaddr1;     /* Individual address filter */
 311        ushort  sen_iaddr2;
 312        ushort  sen_iaddr3;
 313        ushort  sen_iaddr4;
 314        ushort  sen_boffcnt;    /* Backoff counter */
 315
 316        /* NOTE: Some versions of the manual have the following items
 317         * incorrectly documented.  Below is the proper order.
 318         */
 319        ushort  sen_taddrh;     /* temp address (MSB) */
 320        ushort  sen_taddrm;
 321        ushort  sen_taddrl;     /* temp address (LSB) */
 322} scc_enet_t;
 323
 324
 325/* SCC Event register as used by Ethernet.
 326*/
 327#define SCCE_ENET_GRA   ((ushort)0x0080)        /* Graceful stop complete */
 328#define SCCE_ENET_TXE   ((ushort)0x0010)        /* Transmit Error */
 329#define SCCE_ENET_RXF   ((ushort)0x0008)        /* Full frame received */
 330#define SCCE_ENET_BSY   ((ushort)0x0004)        /* All incoming buffers full */
 331#define SCCE_ENET_TXB   ((ushort)0x0002)        /* A buffer was transmitted */
 332#define SCCE_ENET_RXB   ((ushort)0x0001)        /* A buffer was received */
 333
 334/* SCC Mode Register (PSMR) as used by Ethernet.
 335*/
 336#define SCC_PSMR_HBC    ((ushort)0x8000)        /* Enable heartbeat */
 337#define SCC_PSMR_FC     ((ushort)0x4000)        /* Force collision */
 338#define SCC_PSMR_RSH    ((ushort)0x2000)        /* Receive short frames */
 339#define SCC_PSMR_IAM    ((ushort)0x1000)        /* Check individual hash */
 340#define SCC_PSMR_ENCRC  ((ushort)0x0800)        /* Ethernet CRC mode */
 341#define SCC_PSMR_PRO    ((ushort)0x0200)        /* Promiscuous mode */
 342#define SCC_PSMR_BRO    ((ushort)0x0100)        /* Catch broadcast pkts */
 343#define SCC_PSMR_SBT    ((ushort)0x0080)        /* Special backoff timer */
 344#define SCC_PSMR_LPB    ((ushort)0x0040)        /* Set Loopback mode */
 345#define SCC_PSMR_SIP    ((ushort)0x0020)        /* Sample Input Pins */
 346#define SCC_PSMR_LCW    ((ushort)0x0010)        /* Late collision window */
 347#define SCC_PSMR_NIB22  ((ushort)0x000a)        /* Start frame search */
 348#define SCC_PSMR_FDE    ((ushort)0x0001)        /* Full duplex enable */
 349
 350/* Buffer descriptor control/status used by Ethernet receive.
 351 * Common to SCC and FCC.
 352 */
 353#define BD_ENET_RX_EMPTY        ((ushort)0x8000)
 354#define BD_ENET_RX_WRAP         ((ushort)0x2000)
 355#define BD_ENET_RX_INTR         ((ushort)0x1000)
 356#define BD_ENET_RX_LAST         ((ushort)0x0800)
 357#define BD_ENET_RX_FIRST        ((ushort)0x0400)
 358#define BD_ENET_RX_MISS         ((ushort)0x0100)
 359#define BD_ENET_RX_BC           ((ushort)0x0080)        /* FCC Only */
 360#define BD_ENET_RX_MC           ((ushort)0x0040)        /* FCC Only */
 361#define BD_ENET_RX_LG           ((ushort)0x0020)
 362#define BD_ENET_RX_NO           ((ushort)0x0010)
 363#define BD_ENET_RX_SH           ((ushort)0x0008)
 364#define BD_ENET_RX_CR           ((ushort)0x0004)
 365#define BD_ENET_RX_OV           ((ushort)0x0002)
 366#define BD_ENET_RX_CL           ((ushort)0x0001)
 367#define BD_ENET_RX_STATS        ((ushort)0x01ff)        /* All status bits */
 368
 369/* Buffer descriptor control/status used by Ethernet transmit.
 370 * Common to SCC and FCC.
 371 */
 372#define BD_ENET_TX_READY        ((ushort)0x8000)
 373#define BD_ENET_TX_PAD          ((ushort)0x4000)
 374#define BD_ENET_TX_WRAP         ((ushort)0x2000)
 375#define BD_ENET_TX_INTR         ((ushort)0x1000)
 376#define BD_ENET_TX_LAST         ((ushort)0x0800)
 377#define BD_ENET_TX_TC           ((ushort)0x0400)
 378#define BD_ENET_TX_DEF          ((ushort)0x0200)
 379#define BD_ENET_TX_HB           ((ushort)0x0100)
 380#define BD_ENET_TX_LC           ((ushort)0x0080)
 381#define BD_ENET_TX_RL           ((ushort)0x0040)
 382#define BD_ENET_TX_RCMASK       ((ushort)0x003c)
 383#define BD_ENET_TX_UN           ((ushort)0x0002)
 384#define BD_ENET_TX_CSL          ((ushort)0x0001)
 385#define BD_ENET_TX_STATS        ((ushort)0x03ff)        /* All status bits */
 386
 387/* SCC as UART
 388*/
 389typedef struct scc_uart {
 390        sccp_t  scc_genscc;
 391        uint    scc_res1;       /* Reserved */
 392        uint    scc_res2;       /* Reserved */
 393        ushort  scc_maxidl;     /* Maximum idle chars */
 394        ushort  scc_idlc;       /* temp idle counter */
 395        ushort  scc_brkcr;      /* Break count register */
 396        ushort  scc_parec;      /* receive parity error counter */
 397        ushort  scc_frmec;      /* receive framing error counter */
 398        ushort  scc_nosec;      /* receive noise counter */
 399        ushort  scc_brkec;      /* receive break condition counter */
 400        ushort  scc_brkln;      /* last received break length */
 401        ushort  scc_uaddr1;     /* UART address character 1 */
 402        ushort  scc_uaddr2;     /* UART address character 2 */
 403        ushort  scc_rtemp;      /* Temp storage */
 404        ushort  scc_toseq;      /* Transmit out of sequence char */
 405        ushort  scc_char1;      /* control character 1 */
 406        ushort  scc_char2;      /* control character 2 */
 407        ushort  scc_char3;      /* control character 3 */
 408        ushort  scc_char4;      /* control character 4 */
 409        ushort  scc_char5;      /* control character 5 */
 410        ushort  scc_char6;      /* control character 6 */
 411        ushort  scc_char7;      /* control character 7 */
 412        ushort  scc_char8;      /* control character 8 */
 413        ushort  scc_rccm;       /* receive control character mask */
 414        ushort  scc_rccr;       /* receive control character register */
 415        ushort  scc_rlbc;       /* receive last break character */
 416} scc_uart_t;
 417
 418/* SCC Event and Mask registers when it is used as a UART.
 419*/
 420#define UART_SCCM_GLR           ((ushort)0x1000)
 421#define UART_SCCM_GLT           ((ushort)0x0800)
 422#define UART_SCCM_AB            ((ushort)0x0200)
 423#define UART_SCCM_IDL           ((ushort)0x0100)
 424#define UART_SCCM_GRA           ((ushort)0x0080)
 425#define UART_SCCM_BRKE          ((ushort)0x0040)
 426#define UART_SCCM_BRKS          ((ushort)0x0020)
 427#define UART_SCCM_CCR           ((ushort)0x0008)
 428#define UART_SCCM_BSY           ((ushort)0x0004)
 429#define UART_SCCM_TX            ((ushort)0x0002)
 430#define UART_SCCM_RX            ((ushort)0x0001)
 431
 432/* The SCC PSMR when used as a UART.
 433*/
 434#define SCU_PSMR_FLC            ((ushort)0x8000)
 435#define SCU_PSMR_SL             ((ushort)0x4000)
 436#define SCU_PSMR_CL             ((ushort)0x3000)
 437#define SCU_PSMR_UM             ((ushort)0x0c00)
 438#define SCU_PSMR_FRZ            ((ushort)0x0200)
 439#define SCU_PSMR_RZS            ((ushort)0x0100)
 440#define SCU_PSMR_SYN            ((ushort)0x0080)
 441#define SCU_PSMR_DRT            ((ushort)0x0040)
 442#define SCU_PSMR_PEN            ((ushort)0x0010)
 443#define SCU_PSMR_RPM            ((ushort)0x000c)
 444#define SCU_PSMR_REVP           ((ushort)0x0008)
 445#define SCU_PSMR_TPM            ((ushort)0x0003)
 446#define SCU_PSMR_TEVP           ((ushort)0x0003)
 447
 448/* CPM Transparent mode SCC.
 449 */
 450typedef struct scc_trans {
 451        sccp_t  st_genscc;
 452        uint    st_cpres;       /* Preset CRC */
 453        uint    st_cmask;       /* Constant mask for CRC */
 454} scc_trans_t;
 455
 456#define BD_SCC_TX_LAST          ((ushort)0x0800)
 457
 458/* How about some FCCs.....
 459*/
 460#define FCC_GFMR_DIAG_NORM      ((uint)0x00000000)
 461#define FCC_GFMR_DIAG_LE        ((uint)0x40000000)
 462#define FCC_GFMR_DIAG_AE        ((uint)0x80000000)
 463#define FCC_GFMR_DIAG_ALE       ((uint)0xc0000000)
 464#define FCC_GFMR_TCI            ((uint)0x20000000)
 465#define FCC_GFMR_TRX            ((uint)0x10000000)
 466#define FCC_GFMR_TTX            ((uint)0x08000000)
 467#define FCC_GFMR_TTX            ((uint)0x08000000)
 468#define FCC_GFMR_CDP            ((uint)0x04000000)
 469#define FCC_GFMR_CTSP           ((uint)0x02000000)
 470#define FCC_GFMR_CDS            ((uint)0x01000000)
 471#define FCC_GFMR_CTSS           ((uint)0x00800000)
 472#define FCC_GFMR_SYNL_NONE      ((uint)0x00000000)
 473#define FCC_GFMR_SYNL_AUTO      ((uint)0x00004000)
 474#define FCC_GFMR_SYNL_8         ((uint)0x00008000)
 475#define FCC_GFMR_SYNL_16        ((uint)0x0000c000)
 476#define FCC_GFMR_RTSM           ((uint)0x00002000)
 477#define FCC_GFMR_RENC_NRZ       ((uint)0x00000000)
 478#define FCC_GFMR_RENC_NRZI      ((uint)0x00000800)
 479#define FCC_GFMR_REVD           ((uint)0x00000400)
 480#define FCC_GFMR_TENC_NRZ       ((uint)0x00000000)
 481#define FCC_GFMR_TENC_NRZI      ((uint)0x00000100)
 482#define FCC_GFMR_TCRC_16        ((uint)0x00000000)
 483#define FCC_GFMR_TCRC_32        ((uint)0x00000080)
 484#define FCC_GFMR_ENR            ((uint)0x00000020)
 485#define FCC_GFMR_ENT            ((uint)0x00000010)
 486#define FCC_GFMR_MODE_ENET      ((uint)0x0000000c)
 487#define FCC_GFMR_MODE_ATM       ((uint)0x0000000a)
 488#define FCC_GFMR_MODE_HDLC      ((uint)0x00000000)
 489
 490/* Generic FCC parameter ram.
 491*/
 492typedef struct fcc_param {
 493        ushort  fcc_riptr;      /* Rx Internal temp pointer */
 494        ushort  fcc_tiptr;      /* Tx Internal temp pointer */
 495        ushort  fcc_res1;
 496        ushort  fcc_mrblr;      /* Max receive buffer length, mod 32 bytes */
 497        uint    fcc_rstate;     /* Upper byte is Func code, must be set */
 498        uint    fcc_rbase;      /* Receive BD base */
 499        ushort  fcc_rbdstat;    /* RxBD status */
 500        ushort  fcc_rbdlen;     /* RxBD down counter */
 501        uint    fcc_rdptr;      /* RxBD internal data pointer */
 502        uint    fcc_tstate;     /* Upper byte is Func code, must be set */
 503        uint    fcc_tbase;      /* Transmit BD base */
 504        ushort  fcc_tbdstat;    /* TxBD status */
 505        ushort  fcc_tbdlen;     /* TxBD down counter */
 506        uint    fcc_tdptr;      /* TxBD internal data pointer */
 507        uint    fcc_rbptr;      /* Rx BD Internal buf pointer */
 508        uint    fcc_tbptr;      /* Tx BD Internal buf pointer */
 509        uint    fcc_rcrc;       /* Rx temp CRC */
 510        uint    fcc_res2;
 511        uint    fcc_tcrc;       /* Tx temp CRC */
 512} fccp_t;
 513
 514
 515/* Ethernet controller through FCC.
 516*/
 517typedef struct fcc_enet {
 518        fccp_t  fen_genfcc;
 519        uint    fen_statbuf;    /* Internal status buffer */
 520        uint    fen_camptr;     /* CAM address */
 521        uint    fen_cmask;      /* Constant mask for CRC */
 522        uint    fen_cpres;      /* Preset CRC */
 523        uint    fen_crcec;      /* CRC Error counter */
 524        uint    fen_alec;       /* alignment error counter */
 525        uint    fen_disfc;      /* discard frame counter */
 526        ushort  fen_retlim;     /* Retry limit */
 527        ushort  fen_retcnt;     /* Retry counter */
 528        ushort  fen_pper;       /* Persistence */
 529        ushort  fen_boffcnt;    /* backoff counter */
 530        uint    fen_gaddrh;     /* Group address filter, high 32-bits */
 531        uint    fen_gaddrl;     /* Group address filter, low 32-bits */
 532        ushort  fen_tfcstat;    /* out of sequence TxBD */
 533        ushort  fen_tfclen;
 534        uint    fen_tfcptr;
 535        ushort  fen_mflr;       /* Maximum frame length (1518) */
 536        ushort  fen_paddrh;     /* MAC address */
 537        ushort  fen_paddrm;
 538        ushort  fen_paddrl;
 539        ushort  fen_ibdcount;   /* Internal BD counter */
 540        ushort  fen_ibdstart;   /* Internal BD start pointer */
 541        ushort  fen_ibdend;     /* Internal BD end pointer */
 542        ushort  fen_txlen;      /* Internal Tx frame length counter */
 543        uint    fen_ibdbase[8]; /* Internal use */
 544        uint    fen_iaddrh;     /* Individual address filter */
 545        uint    fen_iaddrl;
 546        ushort  fen_minflr;     /* Minimum frame length (64) */
 547        ushort  fen_taddrh;     /* Filter transfer MAC address */
 548        ushort  fen_taddrm;
 549        ushort  fen_taddrl;
 550        ushort  fen_padptr;     /* Pointer to pad byte buffer */
 551        ushort  fen_cftype;     /* control frame type */
 552        ushort  fen_cfrange;    /* control frame range */
 553        ushort  fen_maxb;       /* maximum BD count */
 554        ushort  fen_maxd1;      /* Max DMA1 length (1520) */
 555        ushort  fen_maxd2;      /* Max DMA2 length (1520) */
 556        ushort  fen_maxd;       /* internal max DMA count */
 557        ushort  fen_dmacnt;     /* internal DMA counter */
 558        uint    fen_octc;       /* Total octect counter */
 559        uint    fen_colc;       /* Total collision counter */
 560        uint    fen_broc;       /* Total broadcast packet counter */
 561        uint    fen_mulc;       /* Total multicast packet count */
 562        uint    fen_uspc;       /* Total packets < 64 bytes */
 563        uint    fen_frgc;       /* Total packets < 64 bytes with errors */
 564        uint    fen_ospc;       /* Total packets > 1518 */
 565        uint    fen_jbrc;       /* Total packets > 1518 with errors */
 566        uint    fen_p64c;       /* Total packets == 64 bytes */
 567        uint    fen_p65c;       /* Total packets 64 < bytes <= 127 */
 568        uint    fen_p128c;      /* Total packets 127 < bytes <= 255 */
 569        uint    fen_p256c;      /* Total packets 256 < bytes <= 511 */
 570        uint    fen_p512c;      /* Total packets 512 < bytes <= 1023 */
 571        uint    fen_p1024c;     /* Total packets 1024 < bytes <= 1518 */
 572        uint    fen_cambuf;     /* Internal CAM buffer poiner */
 573        ushort  fen_rfthr;      /* Received frames threshold */
 574        ushort  fen_rfcnt;      /* Received frames count */
 575} fcc_enet_t;
 576
 577/* FCC Event/Mask register as used by Ethernet.
 578*/
 579#define FCC_ENET_GRA    ((ushort)0x0080)        /* Graceful stop complete */
 580#define FCC_ENET_RXC    ((ushort)0x0040)        /* Control Frame Received */
 581#define FCC_ENET_TXC    ((ushort)0x0020)        /* Out of seq. Tx sent */
 582#define FCC_ENET_TXE    ((ushort)0x0010)        /* Transmit Error */
 583#define FCC_ENET_RXF    ((ushort)0x0008)        /* Full frame received */
 584#define FCC_ENET_BSY    ((ushort)0x0004)        /* Busy.  Rx Frame dropped */
 585#define FCC_ENET_TXB    ((ushort)0x0002)        /* A buffer was transmitted */
 586#define FCC_ENET_RXB    ((ushort)0x0001)        /* A buffer was received */
 587
 588/* FCC Mode Register (FPSMR) as used by Ethernet.
 589*/
 590#define FCC_PSMR_HBC    ((uint)0x80000000)      /* Enable heartbeat */
 591#define FCC_PSMR_FC     ((uint)0x40000000)      /* Force Collision */
 592#define FCC_PSMR_SBT    ((uint)0x20000000)      /* Stop backoff timer */
 593#define FCC_PSMR_LPB    ((uint)0x10000000)      /* Local protect. 1 = FDX */
 594#define FCC_PSMR_LCW    ((uint)0x08000000)      /* Late collision select */
 595#define FCC_PSMR_FDE    ((uint)0x04000000)      /* Full Duplex Enable */
 596#define FCC_PSMR_MON    ((uint)0x02000000)      /* RMON Enable */
 597#define FCC_PSMR_PRO    ((uint)0x00400000)      /* Promiscuous Enable */
 598#define FCC_PSMR_FCE    ((uint)0x00200000)      /* Flow Control Enable */
 599#define FCC_PSMR_RSH    ((uint)0x00100000)      /* Receive Short Frames */
 600#define FCC_PSMR_CAM    ((uint)0x00000400)      /* CAM enable */
 601#define FCC_PSMR_BRO    ((uint)0x00000200)      /* Broadcast pkt discard */
 602#define FCC_PSMR_ENCRC  ((uint)0x00000080)      /* Use 32-bit CRC */
 603
 604/* IIC parameter RAM.
 605*/
 606typedef struct iic {
 607        ushort  iic_rbase;      /* Rx Buffer descriptor base address */
 608        ushort  iic_tbase;      /* Tx Buffer descriptor base address */
 609        u_char  iic_rfcr;       /* Rx function code */
 610        u_char  iic_tfcr;       /* Tx function code */
 611        ushort  iic_mrblr;      /* Max receive buffer length */
 612        uint    iic_rstate;     /* Internal */
 613        uint    iic_rdp;        /* Internal */
 614        ushort  iic_rbptr;      /* Internal */
 615        ushort  iic_rbc;        /* Internal */
 616        uint    iic_rxtmp;      /* Internal */
 617        uint    iic_tstate;     /* Internal */
 618        uint    iic_tdp;        /* Internal */
 619        ushort  iic_tbptr;      /* Internal */
 620        ushort  iic_tbc;        /* Internal */
 621        uint    iic_txtmp;      /* Internal */
 622} iic_t;
 623
 624/* SPI parameter RAM.
 625*/
 626typedef struct spi {
 627        ushort  spi_rbase;      /* Rx Buffer descriptor base address */
 628        ushort  spi_tbase;      /* Tx Buffer descriptor base address */
 629        u_char  spi_rfcr;       /* Rx function code */
 630        u_char  spi_tfcr;       /* Tx function code */
 631        ushort  spi_mrblr;      /* Max receive buffer length */
 632        uint    spi_rstate;     /* Internal */
 633        uint    spi_rdp;        /* Internal */
 634        ushort  spi_rbptr;      /* Internal */
 635        ushort  spi_rbc;        /* Internal */
 636        uint    spi_rxtmp;      /* Internal */
 637        uint    spi_tstate;     /* Internal */
 638        uint    spi_tdp;        /* Internal */
 639        ushort  spi_tbptr;      /* Internal */
 640        ushort  spi_tbc;        /* Internal */
 641        uint    spi_txtmp;      /* Internal */
 642        uint    spi_res;        /* Tx temp. */
 643        uint    spi_res1[4];    /* SDMA temp. */
 644} spi_t;
 645
 646/* SPI Mode register.
 647*/
 648#define SPMODE_LOOP     ((ushort)0x4000)        /* Loopback */
 649#define SPMODE_CI       ((ushort)0x2000)        /* Clock Invert */
 650#define SPMODE_CP       ((ushort)0x1000)        /* Clock Phase */
 651#define SPMODE_DIV16    ((ushort)0x0800)        /* BRG/16 mode */
 652#define SPMODE_REV      ((ushort)0x0400)        /* Reversed Data */
 653#define SPMODE_MSTR     ((ushort)0x0200)        /* SPI Master */
 654#define SPMODE_EN       ((ushort)0x0100)        /* Enable */
 655#define SPMODE_LENMSK   ((ushort)0x00f0)        /* character length */
 656#define SPMODE_PMMSK    ((ushort)0x000f)        /* prescale modulus */
 657
 658#define SPMODE_LEN(x)   ((((x)-1)&0xF)<<4)
 659#define SPMODE_PM(x)    ((x) &0xF)
 660
 661#define SPI_EB          ((u_char)0x10)          /* big endian byte order */
 662
 663#define BD_IIC_START    ((ushort)0x0400)
 664
 665/*-----------------------------------------------------------------------
 666 * CMXFCR - CMX FCC Clock Route Register                                15-12
 667 */
 668#define CMXFCR_FC1         0x40000000   /* FCC1 connection              */
 669#define CMXFCR_RF1CS_MSK   0x38000000   /* Receive FCC1 Clock Source Mask */
 670#define CMXFCR_TF1CS_MSK   0x07000000   /* Transmit FCC1 Clock Source Mask */
 671#define CMXFCR_FC2         0x00400000   /* FCC2 connection              */
 672#define CMXFCR_RF2CS_MSK   0x00380000   /* Receive FCC2 Clock Source Mask */
 673#define CMXFCR_TF2CS_MSK   0x00070000   /* Transmit FCC2 Clock Source Mask */
 674#define CMXFCR_FC3         0x00004000   /* FCC3 connection              */
 675#define CMXFCR_RF3CS_MSK   0x00003800   /* Receive FCC3 Clock Source Mask */
 676#define CMXFCR_TF3CS_MSK   0x00000700   /* Transmit FCC3 Clock Source Mask */
 677
 678#define CMXFCR_RF1CS_BRG5  0x00000000   /* Receive FCC1 Clock Source is BRG5 */
 679#define CMXFCR_RF1CS_BRG6  0x08000000   /* Receive FCC1 Clock Source is BRG6 */
 680#define CMXFCR_RF1CS_BRG7  0x10000000   /* Receive FCC1 Clock Source is BRG7 */
 681#define CMXFCR_RF1CS_BRG8  0x18000000   /* Receive FCC1 Clock Source is BRG8 */
 682#define CMXFCR_RF1CS_CLK9  0x20000000   /* Receive FCC1 Clock Source is CLK9 */
 683#define CMXFCR_RF1CS_CLK10 0x28000000   /* Receive FCC1 Clock Source is CLK10 */
 684#define CMXFCR_RF1CS_CLK11 0x30000000   /* Receive FCC1 Clock Source is CLK11 */
 685#define CMXFCR_RF1CS_CLK12 0x38000000   /* Receive FCC1 Clock Source is CLK12 */
 686
 687#define CMXFCR_TF1CS_BRG5  0x00000000   /* Transmit FCC1 Clock Source is BRG5 */
 688#define CMXFCR_TF1CS_BRG6  0x01000000   /* Transmit FCC1 Clock Source is BRG6 */
 689#define CMXFCR_TF1CS_BRG7  0x02000000   /* Transmit FCC1 Clock Source is BRG7 */
 690#define CMXFCR_TF1CS_BRG8  0x03000000   /* Transmit FCC1 Clock Source is BRG8 */
 691#define CMXFCR_TF1CS_CLK9  0x04000000   /* Transmit FCC1 Clock Source is CLK9 */
 692#define CMXFCR_TF1CS_CLK10 0x05000000   /* Transmit FCC1 Clock Source is CLK10 */
 693#define CMXFCR_TF1CS_CLK11 0x06000000   /* Transmit FCC1 Clock Source is CLK11 */
 694#define CMXFCR_TF1CS_CLK12 0x07000000   /* Transmit FCC1 Clock Source is CLK12 */
 695
 696#define CMXFCR_RF2CS_BRG5  0x00000000   /* Receive FCC2 Clock Source is BRG5 */
 697#define CMXFCR_RF2CS_BRG6  0x00080000   /* Receive FCC2 Clock Source is BRG6 */
 698#define CMXFCR_RF2CS_BRG7  0x00100000   /* Receive FCC2 Clock Source is BRG7 */
 699#define CMXFCR_RF2CS_BRG8  0x00180000   /* Receive FCC2 Clock Source is BRG8 */
 700#define CMXFCR_RF2CS_CLK13 0x00200000   /* Receive FCC2 Clock Source is CLK13 */
 701#define CMXFCR_RF2CS_CLK14 0x00280000   /* Receive FCC2 Clock Source is CLK14 */
 702#define CMXFCR_RF2CS_CLK15 0x00300000   /* Receive FCC2 Clock Source is CLK15 */
 703#define CMXFCR_RF2CS_CLK16 0x00380000   /* Receive FCC2 Clock Source is CLK16 */
 704
 705#define CMXFCR_TF2CS_BRG5  0x00000000   /* Transmit FCC2 Clock Source is BRG5 */
 706#define CMXFCR_TF2CS_BRG6  0x00010000   /* Transmit FCC2 Clock Source is BRG6 */
 707#define CMXFCR_TF2CS_BRG7  0x00020000   /* Transmit FCC2 Clock Source is BRG7 */
 708#define CMXFCR_TF2CS_BRG8  0x00030000   /* Transmit FCC2 Clock Source is BRG8 */
 709#define CMXFCR_TF2CS_CLK13 0x00040000   /* Transmit FCC2 Clock Source is CLK13 */
 710#define CMXFCR_TF2CS_CLK14 0x00050000   /* Transmit FCC2 Clock Source is CLK14 */
 711#define CMXFCR_TF2CS_CLK15 0x00060000   /* Transmit FCC2 Clock Source is CLK15 */
 712#define CMXFCR_TF2CS_CLK16 0x00070000   /* Transmit FCC2 Clock Source is CLK16 */
 713
 714#define CMXFCR_RF3CS_BRG5  0x00000000   /* Receive FCC3 Clock Source is BRG5 */
 715#define CMXFCR_RF3CS_BRG6  0x00000800   /* Receive FCC3 Clock Source is BRG6 */
 716#define CMXFCR_RF3CS_BRG7  0x00001000   /* Receive FCC3 Clock Source is BRG7 */
 717#define CMXFCR_RF3CS_BRG8  0x00001800   /* Receive FCC3 Clock Source is BRG8 */
 718#define CMXFCR_RF3CS_CLK13 0x00002000   /* Receive FCC3 Clock Source is CLK13 */
 719#define CMXFCR_RF3CS_CLK14 0x00002800   /* Receive FCC3 Clock Source is CLK14 */
 720#define CMXFCR_RF3CS_CLK15 0x00003000   /* Receive FCC3 Clock Source is CLK15 */
 721#define CMXFCR_RF3CS_CLK16 0x00003800   /* Receive FCC3 Clock Source is CLK16 */
 722
 723#define CMXFCR_TF3CS_BRG5  0x00000000   /* Transmit FCC3 Clock Source is BRG5 */
 724#define CMXFCR_TF3CS_BRG6  0x00000100   /* Transmit FCC3 Clock Source is BRG6 */
 725#define CMXFCR_TF3CS_BRG7  0x00000200   /* Transmit FCC3 Clock Source is BRG7 */
 726#define CMXFCR_TF3CS_BRG8  0x00000300   /* Transmit FCC3 Clock Source is BRG8 */
 727#define CMXFCR_TF3CS_CLK13 0x00000400   /* Transmit FCC3 Clock Source is CLK13 */
 728#define CMXFCR_TF3CS_CLK14 0x00000500   /* Transmit FCC3 Clock Source is CLK14 */
 729#define CMXFCR_TF3CS_CLK15 0x00000600   /* Transmit FCC3 Clock Source is CLK15 */
 730#define CMXFCR_TF3CS_CLK16 0x00000700   /* Transmit FCC3 Clock Source is CLK16 */
 731
 732/*-----------------------------------------------------------------------
 733 * CMXSCR - CMX SCC Clock Route Register                                15-14
 734 */
 735#define CMXSCR_GR1         0x80000000   /* Grant Support of SCC1        */
 736#define CMXSCR_SC1         0x40000000   /* SCC1 connection              */
 737#define CMXSCR_RS1CS_MSK   0x38000000   /* Receive SCC1 Clock Source Mask */
 738#define CMXSCR_TS1CS_MSK   0x07000000   /* Transmit SCC1 Clock Source Mask */
 739#define CMXSCR_GR2         0x00800000   /* Grant Support of SCC2        */
 740#define CMXSCR_SC2         0x00400000   /* SCC2 connection              */
 741#define CMXSCR_RS2CS_MSK   0x00380000   /* Receive SCC2 Clock Source Mask */
 742#define CMXSCR_TS2CS_MSK   0x00070000   /* Transmit SCC2 Clock Source Mask */
 743#define CMXSCR_GR3         0x00008000   /* Grant Support of SCC3        */
 744#define CMXSCR_SC3         0x00004000   /* SCC3 connection              */
 745#define CMXSCR_RS3CS_MSK   0x00003800   /* Receive SCC3 Clock Source Mask */
 746#define CMXSCR_TS3CS_MSK   0x00000700   /* Transmit SCC3 Clock Source Mask */
 747#define CMXSCR_GR4         0x00000080   /* Grant Support of SCC4        */
 748#define CMXSCR_SC4         0x00000040   /* SCC4 connection              */
 749#define CMXSCR_RS4CS_MSK   0x00000038   /* Receive SCC4 Clock Source Mask */
 750#define CMXSCR_TS4CS_MSK   0x00000007   /* Transmit SCC4 Clock Source Mask */
 751
 752#define CMXSCR_RS1CS_BRG1  0x00000000   /* SCC1 Rx Clock Source is BRG1 */
 753#define CMXSCR_RS1CS_BRG2  0x08000000   /* SCC1 Rx Clock Source is BRG2 */
 754#define CMXSCR_RS1CS_BRG3  0x10000000   /* SCC1 Rx Clock Source is BRG3 */
 755#define CMXSCR_RS1CS_BRG4  0x18000000   /* SCC1 Rx Clock Source is BRG4 */
 756#define CMXSCR_RS1CS_CLK11 0x20000000   /* SCC1 Rx Clock Source is CLK11 */
 757#define CMXSCR_RS1CS_CLK12 0x28000000   /* SCC1 Rx Clock Source is CLK12 */
 758#define CMXSCR_RS1CS_CLK3  0x30000000   /* SCC1 Rx Clock Source is CLK3 */
 759#define CMXSCR_RS1CS_CLK4  0x38000000   /* SCC1 Rx Clock Source is CLK4 */
 760
 761#define CMXSCR_TS1CS_BRG1  0x00000000   /* SCC1 Tx Clock Source is BRG1 */
 762#define CMXSCR_TS1CS_BRG2  0x01000000   /* SCC1 Tx Clock Source is BRG2 */
 763#define CMXSCR_TS1CS_BRG3  0x02000000   /* SCC1 Tx Clock Source is BRG3 */
 764#define CMXSCR_TS1CS_BRG4  0x03000000   /* SCC1 Tx Clock Source is BRG4 */
 765#define CMXSCR_TS1CS_CLK11 0x04000000   /* SCC1 Tx Clock Source is CLK11 */
 766#define CMXSCR_TS1CS_CLK12 0x05000000   /* SCC1 Tx Clock Source is CLK12 */
 767#define CMXSCR_TS1CS_CLK3  0x06000000   /* SCC1 Tx Clock Source is CLK3 */
 768#define CMXSCR_TS1CS_CLK4  0x07000000   /* SCC1 Tx Clock Source is CLK4 */
 769
 770#define CMXSCR_RS2CS_BRG1  0x00000000   /* SCC2 Rx Clock Source is BRG1 */
 771#define CMXSCR_RS2CS_BRG2  0x00080000   /* SCC2 Rx Clock Source is BRG2 */
 772#define CMXSCR_RS2CS_BRG3  0x00100000   /* SCC2 Rx Clock Source is BRG3 */
 773#define CMXSCR_RS2CS_BRG4  0x00180000   /* SCC2 Rx Clock Source is BRG4 */
 774#define CMXSCR_RS2CS_CLK11 0x00200000   /* SCC2 Rx Clock Source is CLK11 */
 775#define CMXSCR_RS2CS_CLK12 0x00280000   /* SCC2 Rx Clock Source is CLK12 */
 776#define CMXSCR_RS2CS_CLK3  0x00300000   /* SCC2 Rx Clock Source is CLK3 */
 777#define CMXSCR_RS2CS_CLK4  0x00380000   /* SCC2 Rx Clock Source is CLK4 */
 778
 779#define CMXSCR_TS2CS_BRG1  0x00000000   /* SCC2 Tx Clock Source is BRG1 */
 780#define CMXSCR_TS2CS_BRG2  0x00010000   /* SCC2 Tx Clock Source is BRG2 */
 781#define CMXSCR_TS2CS_BRG3  0x00020000   /* SCC2 Tx Clock Source is BRG3 */
 782#define CMXSCR_TS2CS_BRG4  0x00030000   /* SCC2 Tx Clock Source is BRG4 */
 783#define CMXSCR_TS2CS_CLK11 0x00040000   /* SCC2 Tx Clock Source is CLK11 */
 784#define CMXSCR_TS2CS_CLK12 0x00050000   /* SCC2 Tx Clock Source is CLK12 */
 785#define CMXSCR_TS2CS_CLK3  0x00060000   /* SCC2 Tx Clock Source is CLK3 */
 786#define CMXSCR_TS2CS_CLK4  0x00070000   /* SCC2 Tx Clock Source is CLK4 */
 787
 788#define CMXSCR_RS3CS_BRG1  0x00000000   /* SCC3 Rx Clock Source is BRG1 */
 789#define CMXSCR_RS3CS_BRG2  0x00000800   /* SCC3 Rx Clock Source is BRG2 */
 790#define CMXSCR_RS3CS_BRG3  0x00001000   /* SCC3 Rx Clock Source is BRG3 */
 791#define CMXSCR_RS3CS_BRG4  0x00001800   /* SCC3 Rx Clock Source is BRG4 */
 792#define CMXSCR_RS3CS_CLK5  0x00002000   /* SCC3 Rx Clock Source is CLK5 */
 793#define CMXSCR_RS3CS_CLK6  0x00002800   /* SCC3 Rx Clock Source is CLK6 */
 794#define CMXSCR_RS3CS_CLK7  0x00003000   /* SCC3 Rx Clock Source is CLK7 */
 795#define CMXSCR_RS3CS_CLK8  0x00003800   /* SCC3 Rx Clock Source is CLK8 */
 796
 797#define CMXSCR_TS3CS_BRG1  0x00000000   /* SCC3 Tx Clock Source is BRG1 */
 798#define CMXSCR_TS3CS_BRG2  0x00000100   /* SCC3 Tx Clock Source is BRG2 */
 799#define CMXSCR_TS3CS_BRG3  0x00000200   /* SCC3 Tx Clock Source is BRG3 */
 800#define CMXSCR_TS3CS_BRG4  0x00000300   /* SCC3 Tx Clock Source is BRG4 */
 801#define CMXSCR_TS3CS_CLK5  0x00000400   /* SCC3 Tx Clock Source is CLK5 */
 802#define CMXSCR_TS3CS_CLK6  0x00000500   /* SCC3 Tx Clock Source is CLK6 */
 803#define CMXSCR_TS3CS_CLK7  0x00000600   /* SCC3 Tx Clock Source is CLK7 */
 804#define CMXSCR_TS3CS_CLK8  0x00000700   /* SCC3 Tx Clock Source is CLK8 */
 805
 806#define CMXSCR_RS4CS_BRG1  0x00000000   /* SCC4 Rx Clock Source is BRG1 */
 807#define CMXSCR_RS4CS_BRG2  0x00000008   /* SCC4 Rx Clock Source is BRG2 */
 808#define CMXSCR_RS4CS_BRG3  0x00000010   /* SCC4 Rx Clock Source is BRG3 */
 809#define CMXSCR_RS4CS_BRG4  0x00000018   /* SCC4 Rx Clock Source is BRG4 */
 810#define CMXSCR_RS4CS_CLK5  0x00000020   /* SCC4 Rx Clock Source is CLK5 */
 811#define CMXSCR_RS4CS_CLK6  0x00000028   /* SCC4 Rx Clock Source is CLK6 */
 812#define CMXSCR_RS4CS_CLK7  0x00000030   /* SCC4 Rx Clock Source is CLK7 */
 813#define CMXSCR_RS4CS_CLK8  0x00000038   /* SCC4 Rx Clock Source is CLK8 */
 814
 815#define CMXSCR_TS4CS_BRG1  0x00000000   /* SCC4 Tx Clock Source is BRG1 */
 816#define CMXSCR_TS4CS_BRG2  0x00000001   /* SCC4 Tx Clock Source is BRG2 */
 817#define CMXSCR_TS4CS_BRG3  0x00000002   /* SCC4 Tx Clock Source is BRG3 */
 818#define CMXSCR_TS4CS_BRG4  0x00000003   /* SCC4 Tx Clock Source is BRG4 */
 819#define CMXSCR_TS4CS_CLK5  0x00000004   /* SCC4 Tx Clock Source is CLK5 */
 820#define CMXSCR_TS4CS_CLK6  0x00000005   /* SCC4 Tx Clock Source is CLK6 */
 821#define CMXSCR_TS4CS_CLK7  0x00000006   /* SCC4 Tx Clock Source is CLK7 */
 822#define CMXSCR_TS4CS_CLK8  0x00000007   /* SCC4 Tx Clock Source is CLK8 */
 823
 824#endif /* __CPM_85XX__ */
 825