Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / drivers / atm / he.h
blob1dc277547a7362572af4f1c9b7bbecec42e413fc
1 /* $Id: he.h,v 1.4 2003/05/06 22:48:00 chas Exp $ */
3 /*
5 he.h
7 ForeRunnerHE ATM Adapter driver for ATM on Linux
8 Copyright (C) 1999-2001 Naval Research Laboratory
10 This library is free software; you can redistribute it and/or
11 modify it under the terms of the GNU Lesser General Public
12 License as published by the Free Software Foundation; either
13 version 2.1 of the License, or (at your option) any later version.
15 This library is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
20 You should have received a copy of the GNU Lesser General Public
21 License along with this library; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 he.h
30 ForeRunnerHE ATM Adapter driver for ATM on Linux
31 Copyright (C) 1999-2000 Naval Research Laboratory
33 Permission to use, copy, modify and distribute this software and its
34 documentation is hereby granted, provided that both the copyright
35 notice and this permission notice appear in all copies of the software,
36 derivative works or modified versions, and any portions thereof, and
37 that both notices appear in supporting documentation.
39 NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND
40 DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER
41 RESULTING FROM THE USE OF THIS SOFTWARE.
45 #ifndef _HE_H_
46 #define _HE_H_
48 #define DEV_LABEL "he"
50 #define CONFIG_DEFAULT_VCIBITS 12
51 #define CONFIG_DEFAULT_VPIBITS 0
53 #define CONFIG_IRQ_SIZE 128
54 #define CONFIG_IRQ_THRESH (CONFIG_IRQ_SIZE/2)
56 #define CONFIG_NUMTPDS 256
58 #define CONFIG_TPDRQ_SIZE 512
59 #define TPDRQ_MASK(x) (((unsigned long)(x))&((CONFIG_TPDRQ_SIZE<<3)-1))
61 #define CONFIG_RBRQ_SIZE 512
62 #define CONFIG_RBRQ_THRESH 400
63 #define RBRQ_MASK(x) (((unsigned long)(x))&((CONFIG_RBRQ_SIZE<<3)-1))
65 #define CONFIG_TBRQ_SIZE 512
66 #define CONFIG_TBRQ_THRESH 400
67 #define TBRQ_MASK(x) (((unsigned long)(x))&((CONFIG_TBRQ_SIZE<<2)-1))
69 #define CONFIG_RBPL_SIZE 512
70 #define CONFIG_RBPL_THRESH 64
71 #define CONFIG_RBPL_BUFSIZE 4096
72 #define RBPL_MASK(x) (((unsigned long)(x))&((CONFIG_RBPL_SIZE<<3)-1))
74 #define CONFIG_RBPS_SIZE 1024
75 #define CONFIG_RBPS_THRESH 64
76 #define CONFIG_RBPS_BUFSIZE 128
77 #define RBPS_MASK(x) (((unsigned long)(x))&((CONFIG_RBPS_SIZE<<3)-1))
79 /* 5.1.3 initialize connection memory */
81 #define CONFIG_RSRA 0x00000
82 #define CONFIG_RCMLBM 0x08000
83 #define CONFIG_RCMABR 0x0d800
84 #define CONFIG_RSRB 0x0e000
86 #define CONFIG_TSRA 0x00000
87 #define CONFIG_TSRB 0x08000
88 #define CONFIG_TSRC 0x0c000
89 #define CONFIG_TSRD 0x0e000
90 #define CONFIG_TMABR 0x0f000
91 #define CONFIG_TPDBA 0x10000
93 #define HE_MAXCIDBITS 12
95 /* 2.9.3.3 interrupt encodings */
97 struct he_irq {
98 volatile u32 isw;
101 #define IRQ_ALIGNMENT 0x1000
103 #define NEXT_ENTRY(base, tail, mask) \
104 (((unsigned long)base)|(((unsigned long)(tail+1))&mask))
106 #define ITYPE_INVALID 0xffffffff
107 #define ITYPE_TBRQ_THRESH (0<<3)
108 #define ITYPE_TPD_COMPLETE (1<<3)
109 #define ITYPE_RBPS_THRESH (2<<3)
110 #define ITYPE_RBPL_THRESH (3<<3)
111 #define ITYPE_RBRQ_THRESH (4<<3)
112 #define ITYPE_RBRQ_TIMER (5<<3)
113 #define ITYPE_PHY (6<<3)
114 #define ITYPE_OTHER 0x80
115 #define ITYPE_PARITY 0x81
116 #define ITYPE_ABORT 0x82
118 #define ITYPE_GROUP(x) (x & 0x7)
119 #define ITYPE_TYPE(x) (x & 0xf8)
121 #define HE_NUM_GROUPS 8
123 /* 2.1.4 transmit packet descriptor */
125 struct he_tpd {
127 /* read by the adapter */
129 volatile u32 status;
130 volatile u32 reserved;
132 #define TPD_MAXIOV 3
133 struct {
134 u32 addr, len;
135 } iovec[TPD_MAXIOV];
137 #define address0 iovec[0].addr
138 #define length0 iovec[0].len
140 /* linux-atm extensions */
142 struct sk_buff *skb;
143 struct atm_vcc *vcc;
145 #ifdef USE_TPD_POOL
146 struct list_head entry;
147 #else
148 u32 inuse;
149 char padding[32 - sizeof(u32) - (2*sizeof(void*))];
150 #endif
153 #define TPD_ALIGNMENT 64
154 #define TPD_LEN_MASK 0xffff
156 #define TPD_ADDR_SHIFT 6
157 #define TPD_MASK 0xffffffc0
158 #define TPD_ADDR(x) ((x) & TPD_MASK)
159 #define TPD_INDEX(x) (TPD_ADDR(x) >> TPD_ADDR_SHIFT)
162 /* table 2.3 transmit buffer return elements */
164 struct he_tbrq {
165 volatile u32 tbre;
168 #define TBRQ_ALIGNMENT CONFIG_TBRQ_SIZE
170 #define TBRQ_TPD(tbrq) ((tbrq)->tbre & 0xffffffc0)
171 #define TBRQ_EOS(tbrq) ((tbrq)->tbre & (1<<3))
172 #define TBRQ_MULTIPLE(tbrq) ((tbrq)->tbre & (1))
174 /* table 2.21 receive buffer return queue element field organization */
176 struct he_rbrq {
177 volatile u32 addr;
178 volatile u32 cidlen;
181 #define RBRQ_ALIGNMENT CONFIG_RBRQ_SIZE
183 #define RBRQ_ADDR(rbrq) ((rbrq)->addr & 0xffffffc0)
184 #define RBRQ_CRC_ERR(rbrq) ((rbrq)->addr & (1<<5))
185 #define RBRQ_LEN_ERR(rbrq) ((rbrq)->addr & (1<<4))
186 #define RBRQ_END_PDU(rbrq) ((rbrq)->addr & (1<<3))
187 #define RBRQ_AAL5_PROT(rbrq) ((rbrq)->addr & (1<<2))
188 #define RBRQ_CON_CLOSED(rbrq) ((rbrq)->addr & (1<<1))
189 #define RBRQ_HBUF_ERR(rbrq) ((rbrq)->addr & 1)
190 #define RBRQ_CID(rbrq) (((rbrq)->cidlen >> 16) & 0x1fff)
191 #define RBRQ_BUFLEN(rbrq) ((rbrq)->cidlen & 0xffff)
193 /* figure 2.3 transmit packet descriptor ready queue */
195 struct he_tpdrq {
196 volatile u32 tpd;
197 volatile u32 cid;
200 #define TPDRQ_ALIGNMENT CONFIG_TPDRQ_SIZE
202 /* table 2.30 host status page detail */
204 #define HSP_ALIGNMENT 0x400 /* must align on 1k boundary */
206 struct he_hsp {
207 struct he_hsp_entry {
208 volatile u32 tbrq_tail;
209 volatile u32 reserved1[15];
210 volatile u32 rbrq_tail;
211 volatile u32 reserved2[15];
212 } group[HE_NUM_GROUPS];
215 /* figure 2.9 receive buffer pools */
217 struct he_rbp {
218 volatile u32 phys;
219 volatile u32 status;
222 /* NOTE: it is suggested that virt be the virtual address of the host
223 buffer. on a 64-bit machine, this would not work. Instead, we
224 store the real virtual address in another list, and store an index
225 (and buffer status) in the virt member.
228 #define RBP_INDEX_OFF 6
229 #define RBP_INDEX(x) (((long)(x) >> RBP_INDEX_OFF) & 0xffff)
230 #define RBP_LOANED 0x80000000
231 #define RBP_SMALLBUF 0x40000000
233 struct he_virt {
234 void *virt;
237 #define RBPL_ALIGNMENT CONFIG_RBPL_SIZE
238 #define RBPS_ALIGNMENT CONFIG_RBPS_SIZE
240 #ifdef notyet
241 struct he_group {
242 u32 rpbs_size, rpbs_qsize;
243 struct he_rbp rbps_ba;
245 u32 rpbl_size, rpbl_qsize;
246 struct he_rpb_entry *rbpl_ba;
248 #endif
250 #define HE_LOOKUP_VCC(dev, cid) ((dev)->he_vcc_table[(cid)].vcc)
252 struct he_vcc_table
254 struct atm_vcc *vcc;
257 struct he_cs_stper
259 long pcr;
260 int inuse;
263 #define HE_NUM_CS_STPER 16
265 struct he_dev {
266 unsigned int number;
267 unsigned int irq;
268 void __iomem *membase;
270 char prod_id[30];
271 char mac_addr[6];
272 int media; /*
273 * 0x26 = HE155 MM
274 * 0x27 = HE622 MM
275 * 0x46 = HE155 SM
276 * 0x47 = HE622 SM
280 unsigned int vcibits, vpibits;
281 unsigned int cells_per_row;
282 unsigned int bytes_per_row;
283 unsigned int cells_per_lbuf;
284 unsigned int r0_numrows, r0_startrow, r0_numbuffs;
285 unsigned int r1_numrows, r1_startrow, r1_numbuffs;
286 unsigned int tx_numrows, tx_startrow, tx_numbuffs;
287 unsigned int buffer_limit;
289 struct he_vcc_table *he_vcc_table;
291 #ifdef notyet
292 struct he_group group[HE_NUM_GROUPS];
293 #endif
294 struct he_cs_stper cs_stper[HE_NUM_CS_STPER];
295 unsigned total_bw;
297 dma_addr_t irq_phys;
298 struct he_irq *irq_base, *irq_head, *irq_tail;
299 volatile unsigned *irq_tailoffset;
300 int irq_peak;
302 #ifdef USE_TASKLET
303 struct tasklet_struct tasklet;
304 #endif
305 #ifdef USE_TPD_POOL
306 struct pci_pool *tpd_pool;
307 struct list_head outstanding_tpds;
308 #else
309 struct he_tpd *tpd_head, *tpd_base, *tpd_end;
310 dma_addr_t tpd_base_phys;
311 #endif
313 dma_addr_t tpdrq_phys;
314 struct he_tpdrq *tpdrq_base, *tpdrq_tail, *tpdrq_head;
316 spinlock_t global_lock; /* 8.1.5 pci transaction ordering
317 error problem */
318 dma_addr_t rbrq_phys;
319 struct he_rbrq *rbrq_base, *rbrq_head;
320 int rbrq_peak;
322 #ifdef USE_RBPL_POOL
323 struct pci_pool *rbpl_pool;
324 #else
325 void *rbpl_pages;
326 dma_addr_t rbpl_pages_phys;
327 #endif
328 dma_addr_t rbpl_phys;
329 struct he_rbp *rbpl_base, *rbpl_tail;
330 struct he_virt *rbpl_virt;
331 int rbpl_peak;
333 #ifdef USE_RBPS
334 #ifdef USE_RBPS_POOL
335 struct pci_pool *rbps_pool;
336 #else
337 void *rbps_pages;
338 dma_addr_t rbps_pages_phys;
339 #endif
340 #endif
341 dma_addr_t rbps_phys;
342 struct he_rbp *rbps_base, *rbps_tail;
343 struct he_virt *rbps_virt;
344 int rbps_peak;
346 dma_addr_t tbrq_phys;
347 struct he_tbrq *tbrq_base, *tbrq_head;
348 int tbrq_peak;
350 dma_addr_t hsp_phys;
351 struct he_hsp *hsp;
353 struct pci_dev *pci_dev;
354 struct atm_dev *atm_dev;
355 struct he_dev *next;
358 struct he_iovec
360 u32 iov_base;
361 u32 iov_len;
364 #define HE_MAXIOV 20
366 struct he_vcc
368 struct he_iovec iov_head[HE_MAXIOV];
369 struct he_iovec *iov_tail;
370 int pdu_len;
372 int rc_index;
374 wait_queue_head_t rx_waitq;
375 wait_queue_head_t tx_waitq;
378 #define HE_VCC(vcc) ((struct he_vcc *)(vcc->dev_data))
380 #define PCI_VENDOR_ID_FORE 0x1127
381 #define PCI_DEVICE_ID_FORE_HE 0x400
383 #define GEN_CNTL_0 0x40
384 #define INT_PROC_ENBL (1<<25)
385 #define SLAVE_ENDIAN_MODE (1<<16)
386 #define MRL_ENB (1<<5)
387 #define MRM_ENB (1<<4)
388 #define INIT_ENB (1<<2)
389 #define IGNORE_TIMEOUT (1<<1)
390 #define ENBL_64 (1<<0)
392 #define MIN_PCI_LATENCY 32 /* errata 8.1.3 */
394 #define HE_DEV(dev) ((struct he_dev *) (dev)->dev_data)
396 #define he_is622(dev) ((dev)->media & 0x1)
398 #define HE_REGMAP_SIZE 0x100000
400 #define RESET_CNTL 0x80000
401 #define BOARD_RST_STATUS (1<<6)
403 #define HOST_CNTL 0x80004
404 #define PCI_BUS_SIZE64 (1<<27)
405 #define DESC_RD_STATIC_64 (1<<26)
406 #define DATA_RD_STATIC_64 (1<<25)
407 #define DATA_WR_STATIC_64 (1<<24)
408 #define ID_CS (1<<12)
409 #define ID_WREN (1<<11)
410 #define ID_DOUT (1<<10)
411 #define ID_DOFFSET 10
412 #define ID_DIN (1<<9)
413 #define ID_CLOCK (1<<8)
414 #define QUICK_RD_RETRY (1<<7)
415 #define QUICK_WR_RETRY (1<<6)
416 #define OUTFF_ENB (1<<5)
417 #define CMDFF_ENB (1<<4)
418 #define PERR_INT_ENB (1<<2)
419 #define IGNORE_INTR (1<<0)
421 #define LB_SWAP 0x80008
422 #define SWAP_RNUM_MAX(x) (x<<27)
423 #define DATA_WR_SWAP (1<<20)
424 #define DESC_RD_SWAP (1<<19)
425 #define DATA_RD_SWAP (1<<18)
426 #define INTR_SWAP (1<<17)
427 #define DESC_WR_SWAP (1<<16)
428 #define SDRAM_INIT (1<<15)
429 #define BIG_ENDIAN_HOST (1<<14)
430 #define XFER_SIZE (1<<7)
432 #define LB_MEM_ADDR 0x8000c
433 #define LB_MEM_DATA 0x80010
435 #define LB_MEM_ACCESS 0x80014
436 #define LB_MEM_HNDSHK (1<<30)
437 #define LM_MEM_WRITE (0x7)
438 #define LM_MEM_READ (0x3)
440 #define SDRAM_CTL 0x80018
441 #define LB_64_ENB (1<<3)
442 #define LB_TWR (1<<2)
443 #define LB_TRP (1<<1)
444 #define LB_TRAS (1<<0)
446 #define INT_FIFO 0x8001c
447 #define INT_MASK_D (1<<15)
448 #define INT_MASK_C (1<<14)
449 #define INT_MASK_B (1<<13)
450 #define INT_MASK_A (1<<12)
451 #define INT_CLEAR_D (1<<11)
452 #define INT_CLEAR_C (1<<10)
453 #define INT_CLEAR_B (1<<9)
454 #define INT_CLEAR_A (1<<8)
456 #define ABORT_ADDR 0x80020
458 #define IRQ0_BASE 0x80080
459 #define IRQ_BASE(x) (x<<12)
460 #define IRQ_MASK ((CONFIG_IRQ_SIZE<<2)-1) /* was 0x3ff */
461 #define IRQ_TAIL(x) (((unsigned long)(x)) & IRQ_MASK)
462 #define IRQ0_HEAD 0x80084
463 #define IRQ_SIZE(x) (x<<22)
464 #define IRQ_THRESH(x) (x<<12)
465 #define IRQ_HEAD(x) (x<<2)
466 /* #define IRQ_PENDING (1) conflict with linux/irq.h */
467 #define IRQ0_CNTL 0x80088
468 #define IRQ_ADDRSEL(x) (x<<2)
469 #define IRQ_INT_A (0<<2)
470 #define IRQ_INT_B (1<<2)
471 #define IRQ_INT_C (2<<2)
472 #define IRQ_INT_D (3<<2)
473 #define IRQ_TYPE_ADDR 0x1
474 #define IRQ_TYPE_LINE 0x0
475 #define IRQ0_DATA 0x8008c
477 #define IRQ1_BASE 0x80090
478 #define IRQ1_HEAD 0x80094
479 #define IRQ1_CNTL 0x80098
480 #define IRQ1_DATA 0x8009c
482 #define IRQ2_BASE 0x800a0
483 #define IRQ2_HEAD 0x800a4
484 #define IRQ2_CNTL 0x800a8
485 #define IRQ2_DATA 0x800ac
487 #define IRQ3_BASE 0x800b0
488 #define IRQ3_HEAD 0x800b4
489 #define IRQ3_CNTL 0x800b8
490 #define IRQ3_DATA 0x800bc
492 #define GRP_10_MAP 0x800c0
493 #define GRP_32_MAP 0x800c4
494 #define GRP_54_MAP 0x800c8
495 #define GRP_76_MAP 0x800cc
497 #define G0_RBPS_S 0x80400
498 #define G0_RBPS_T 0x80404
499 #define RBP_TAIL(x) ((x)<<3)
500 #define RBP_MASK(x) ((x)|0x1fff)
501 #define G0_RBPS_QI 0x80408
502 #define RBP_QSIZE(x) ((x)<<14)
503 #define RBP_INT_ENB (1<<13)
504 #define RBP_THRESH(x) (x)
505 #define G0_RBPS_BS 0x8040c
506 #define G0_RBPL_S 0x80410
507 #define G0_RBPL_T 0x80414
508 #define G0_RBPL_QI 0x80418
509 #define G0_RBPL_BS 0x8041c
511 #define G1_RBPS_S 0x80420
512 #define G1_RBPS_T 0x80424
513 #define G1_RBPS_QI 0x80428
514 #define G1_RBPS_BS 0x8042c
515 #define G1_RBPL_S 0x80430
516 #define G1_RBPL_T 0x80434
517 #define G1_RBPL_QI 0x80438
518 #define G1_RBPL_BS 0x8043c
520 #define G2_RBPS_S 0x80440
521 #define G2_RBPS_T 0x80444
522 #define G2_RBPS_QI 0x80448
523 #define G2_RBPS_BS 0x8044c
524 #define G2_RBPL_S 0x80450
525 #define G2_RBPL_T 0x80454
526 #define G2_RBPL_QI 0x80458
527 #define G2_RBPL_BS 0x8045c
529 #define G3_RBPS_S 0x80460
530 #define G3_RBPS_T 0x80464
531 #define G3_RBPS_QI 0x80468
532 #define G3_RBPS_BS 0x8046c
533 #define G3_RBPL_S 0x80470
534 #define G3_RBPL_T 0x80474
535 #define G3_RBPL_QI 0x80478
536 #define G3_RBPL_BS 0x8047c
538 #define G4_RBPS_S 0x80480
539 #define G4_RBPS_T 0x80484
540 #define G4_RBPS_QI 0x80488
541 #define G4_RBPS_BS 0x8048c
542 #define G4_RBPL_S 0x80490
543 #define G4_RBPL_T 0x80494
544 #define G4_RBPL_QI 0x80498
545 #define G4_RBPL_BS 0x8049c
547 #define G5_RBPS_S 0x804a0
548 #define G5_RBPS_T 0x804a4
549 #define G5_RBPS_QI 0x804a8
550 #define G5_RBPS_BS 0x804ac
551 #define G5_RBPL_S 0x804b0
552 #define G5_RBPL_T 0x804b4
553 #define G5_RBPL_QI 0x804b8
554 #define G5_RBPL_BS 0x804bc
556 #define G6_RBPS_S 0x804c0
557 #define G6_RBPS_T 0x804c4
558 #define G6_RBPS_QI 0x804c8
559 #define G6_RBPS_BS 0x804cc
560 #define G6_RBPL_S 0x804d0
561 #define G6_RBPL_T 0x804d4
562 #define G6_RBPL_QI 0x804d8
563 #define G6_RBPL_BS 0x804dc
565 #define G7_RBPS_S 0x804e0
566 #define G7_RBPS_T 0x804e4
567 #define G7_RBPS_QI 0x804e8
568 #define G7_RBPS_BS 0x804ec
570 #define G7_RBPL_S 0x804f0
571 #define G7_RBPL_T 0x804f4
572 #define G7_RBPL_QI 0x804f8
573 #define G7_RBPL_BS 0x804fc
575 #define G0_RBRQ_ST 0x80500
576 #define G0_RBRQ_H 0x80504
577 #define G0_RBRQ_Q 0x80508
578 #define RBRQ_THRESH(x) ((x)<<13)
579 #define RBRQ_SIZE(x) (x)
580 #define G0_RBRQ_I 0x8050c
581 #define RBRQ_TIME(x) ((x)<<8)
582 #define RBRQ_COUNT(x) (x)
584 /* fill in 1 ... 7 later */
586 #define G0_TBRQ_B_T 0x80600
587 #define G0_TBRQ_H 0x80604
588 #define G0_TBRQ_S 0x80608
589 #define G0_TBRQ_THRESH 0x8060c
590 #define TBRQ_THRESH(x) (x)
592 /* fill in 1 ... 7 later */
594 #define RH_CONFIG 0x805c0
595 #define PHY_INT_ENB (1<<10)
596 #define OAM_GID(x) (x<<7)
597 #define PTMR_PRE(x) (x)
599 #define G0_INMQ_S 0x80580
600 #define G0_INMQ_L 0x80584
601 #define G1_INMQ_S 0x80588
602 #define G1_INMQ_L 0x8058c
603 #define G2_INMQ_S 0x80590
604 #define G2_INMQ_L 0x80594
605 #define G3_INMQ_S 0x80598
606 #define G3_INMQ_L 0x8059c
607 #define G4_INMQ_S 0x805a0
608 #define G4_INMQ_L 0x805a4
609 #define G5_INMQ_S 0x805a8
610 #define G5_INMQ_L 0x805ac
611 #define G6_INMQ_S 0x805b0
612 #define G6_INMQ_L 0x805b4
613 #define G7_INMQ_S 0x805b8
614 #define G7_INMQ_L 0x805bc
616 #define TPDRQ_B_H 0x80680
617 #define TPDRQ_T 0x80684
618 #define TPDRQ_S 0x80688
620 #define UBUFF_BA 0x8068c
622 #define RLBF0_H 0x806c0
623 #define RLBF0_T 0x806c4
624 #define RLBF1_H 0x806c8
625 #define RLBF1_T 0x806cc
626 #define RLBC_H 0x806d0
627 #define RLBC_T 0x806d4
628 #define RLBC_H2 0x806d8
629 #define TLBF_H 0x806e0
630 #define TLBF_T 0x806e4
631 #define RLBF0_C 0x806e8
632 #define RLBF1_C 0x806ec
633 #define RXTHRSH 0x806f0
634 #define LITHRSH 0x806f4
636 #define LBARB 0x80700
637 #define SLICE_X(x) (x<<28)
638 #define ARB_RNUM_MAX(x) (x<<23)
639 #define TH_PRTY(x) (x<<21)
640 #define RH_PRTY(x) (x<<19)
641 #define TL_PRTY(x) (x<<17)
642 #define RL_PRTY(x) (x<<15)
643 #define BUS_MULTI(x) (x<<8)
644 #define NET_PREF(x) (x)
646 #define SDRAMCON 0x80704
647 #define BANK_ON (1<<14)
648 #define WIDE_DATA (1<<13)
649 #define TWR_WAIT (1<<12)
650 #define TRP_WAIT (1<<11)
651 #define TRAS_WAIT (1<<10)
652 #define REF_RATE(x) (x)
654 #define LBSTAT 0x80708
656 #define RCC_STAT 0x8070c
657 #define RCC_BUSY (1)
659 #define TCMCONFIG 0x80740
660 #define TM_DESL2 (1<<10)
661 #define TM_BANK_WAIT(x) (x<<6)
662 #define TM_ADD_BANK4(x) (x<<4)
663 #define TM_PAR_CHECK(x) (x<<3)
664 #define TM_RW_WAIT(x) (x<<2)
665 #define TM_SRAM_TYPE(x) (x)
667 #define TSRB_BA 0x80744
668 #define TSRC_BA 0x80748
669 #define TMABR_BA 0x8074c
670 #define TPD_BA 0x80750
671 #define TSRD_BA 0x80758
673 #define TX_CONFIG 0x80760
674 #define DRF_THRESH(x) (x<<22)
675 #define TX_UT_MODE(x) (x<<21)
676 #define TX_VCI_MASK(x) (x<<17)
677 #define LBFREE_CNT(x) (x)
679 #define TXAAL5_PROTO 0x80764
680 #define CPCS_UU(x) (x<<8)
681 #define CPI(x) (x)
683 #define RCMCONFIG 0x80780
684 #define RM_DESL2(x) (x<<10)
685 #define RM_BANK_WAIT(x) (x<<6)
686 #define RM_ADD_BANK(x) (x<<4)
687 #define RM_PAR_CHECK(x) (x<<3)
688 #define RM_RW_WAIT(x) (x<<2)
689 #define RM_SRAM_TYPE(x) (x)
691 #define RCMRSRB_BA 0x80784
692 #define RCMLBM_BA 0x80788
693 #define RCMABR_BA 0x8078c
695 #define RC_CONFIG 0x807c0
696 #define UT_RD_DELAY(x) (x<<11)
697 #define WRAP_MODE(x) (x<<10)
698 #define RC_UT_MODE(x) (x<<9)
699 #define RX_ENABLE (1<<8)
700 #define RX_VALVP(x) (x<<4)
701 #define RX_VALVC(x) (x)
703 #define MCC 0x807c4
704 #define OEC 0x807c8
705 #define DCC 0x807cc
706 #define CEC 0x807d0
708 #define HSP_BA 0x807f0
710 #define LB_CONFIG 0x807f4
711 #define LB_SIZE(x) (x)
713 #define CON_DAT 0x807f8
714 #define CON_CTL 0x807fc
715 #define CON_CTL_MBOX (2<<30)
716 #define CON_CTL_TCM (1<<30)
717 #define CON_CTL_RCM (0<<30)
718 #define CON_CTL_WRITE (1<<29)
719 #define CON_CTL_READ (0<<29)
720 #define CON_CTL_BUSY (1<<28)
721 #define CON_BYTE_DISABLE_3 (1<<22) /* 24..31 */
722 #define CON_BYTE_DISABLE_2 (1<<21) /* 16..23 */
723 #define CON_BYTE_DISABLE_1 (1<<20) /* 8..15 */
724 #define CON_BYTE_DISABLE_0 (1<<19) /* 0..7 */
725 #define CON_CTL_ADDR(x) (x)
727 #define FRAMER 0x80800 /* to 0x80bfc */
729 /* 3.3 network controller (internal) mailbox registers */
731 #define CS_STPER0 0x0
732 /* ... */
733 #define CS_STPER31 0x01f
735 #define CS_STTIM0 0x020
736 /* ... */
737 #define CS_STTIM31 0x03f
739 #define CS_TGRLD0 0x040
740 /* ... */
741 #define CS_TGRLD15 0x04f
743 #define CS_ERTHR0 0x050
744 #define CS_ERTHR1 0x051
745 #define CS_ERTHR2 0x052
746 #define CS_ERTHR3 0x053
747 #define CS_ERTHR4 0x054
748 #define CS_ERCTL0 0x055
749 #define TX_ENABLE (1<<28)
750 #define ER_ENABLE (1<<27)
751 #define CS_ERCTL1 0x056
752 #define CS_ERCTL2 0x057
753 #define CS_ERSTAT0 0x058
754 #define CS_ERSTAT1 0x059
756 #define CS_RTCCT 0x060
757 #define CS_RTFWC 0x061
758 #define CS_RTFWR 0x062
759 #define CS_RTFTC 0x063
760 #define CS_RTATR 0x064
762 #define CS_TFBSET 0x070
763 #define CS_TFBADD 0x071
764 #define CS_TFBSUB 0x072
765 #define CS_WCRMAX 0x073
766 #define CS_WCRMIN 0x074
767 #define CS_WCRINC 0x075
768 #define CS_WCRDEC 0x076
769 #define CS_WCRCEIL 0x077
770 #define CS_BWDCNT 0x078
772 #define CS_OTPPER 0x080
773 #define CS_OTWPER 0x081
774 #define CS_OTTLIM 0x082
775 #define CS_OTTCNT 0x083
777 #define CS_HGRRT0 0x090
778 /* ... */
779 #define CS_HGRRT7 0x097
781 #define CS_ORPTRS 0x0a0
783 #define RXCON_CLOSE 0x100
786 #define RCM_MEM_SIZE 0x10000 /* 1M of 32-bit registers */
787 #define TCM_MEM_SIZE 0x20000 /* 2M of 32-bit registers */
789 /* 2.5 transmit connection memory registers */
791 #define TSR0_CONN_STATE(x) ((x>>28) & 0x7)
792 #define TSR0_USE_WMIN (1<<23)
793 #define TSR0_GROUP(x) ((x & 0x7)<<18)
794 #define TSR0_ABR (2<<16)
795 #define TSR0_UBR (1<<16)
796 #define TSR0_CBR (0<<16)
797 #define TSR0_PROT (1<<15)
798 #define TSR0_AAL0_SDU (2<<12)
799 #define TSR0_AAL0 (1<<12)
800 #define TSR0_AAL5 (0<<12)
801 #define TSR0_HALT_ER (1<<11)
802 #define TSR0_MARK_CI (1<<10)
803 #define TSR0_MARK_ER (1<<9)
804 #define TSR0_UPDATE_GER (1<<8)
805 #define TSR0_RC_INDEX(x) (x & 0x1F)
807 #define TSR1_PCR(x) ((x & 0x7FFF)<<16)
808 #define TSR1_MCR(x) (x & 0x7FFF)
810 #define TSR2_ACR(x) ((x & 0x7FFF)<<16)
812 #define TSR3_NRM_CNT(x) ((x & 0xFF)<<24)
813 #define TSR3_CRM_CNT(x) (x & 0xFFFF)
815 #define TSR4_FLUSH_CONN (1<<31)
816 #define TSR4_SESSION_ENDED (1<<30)
817 #define TSR4_CRC10 (1<<28)
818 #define TSR4_NULL_CRC10 (1<<27)
819 #define TSR4_PROT (1<<26)
820 #define TSR4_AAL0_SDU (2<<23)
821 #define TSR4_AAL0 (1<<23)
822 #define TSR4_AAL5 (0<<23)
824 #define TSR9_OPEN_CONN (1<<20)
826 #define TSR11_ICR(x) ((x & 0x7FFF)<<16)
827 #define TSR11_TRM(x) ((x & 0x7)<<13)
828 #define TSR11_NRM(x) ((x & 0x7)<<10)
829 #define TSR11_ADTF(x) (x & 0x3FF)
831 #define TSR13_RDF(x) ((x & 0xF)<<23)
832 #define TSR13_RIF(x) ((x & 0xF)<<19)
833 #define TSR13_CDF(x) ((x & 0x7)<<16)
834 #define TSR13_CRM(x) (x & 0xFFFF)
836 #define TSR14_DELETE (1<<31)
837 #define TSR14_ABR_CLOSE (1<<16)
839 /* 2.7.1 per connection receieve state registers */
841 #define RSR0_START_PDU (1<<10)
842 #define RSR0_OPEN_CONN (1<<6)
843 #define RSR0_CLOSE_CONN (0<<6)
844 #define RSR0_PPD_ENABLE (1<<5)
845 #define RSR0_EPD_ENABLE (1<<4)
846 #define RSR0_TCP_CKSUM (1<<3)
847 #define RSR0_AAL5 (0)
848 #define RSR0_AAL0 (1)
849 #define RSR0_AAL0_SDU (2)
850 #define RSR0_RAWCELL (3)
851 #define RSR0_RAWCELL_CRC10 (4)
853 #define RSR1_AQI_ENABLE (1<<20)
854 #define RSR1_RBPL_ONLY (1<<19)
855 #define RSR1_GROUP(x) ((x)<<16)
857 #define RSR4_AQI_ENABLE (1<<30)
858 #define RSR4_GROUP(x) ((x)<<27)
859 #define RSR4_RBPL_ONLY (1<<26)
861 /* 2.1.4 transmit packet descriptor */
863 #define TPD_USERCELL 0x0
864 #define TPD_SEGMENT_OAMF5 0x4
865 #define TPD_END2END_OAMF5 0x5
866 #define TPD_RMCELL 0x6
867 #define TPD_CELLTYPE(x) (x<<3)
868 #define TPD_EOS (1<<2)
869 #define TPD_CLP (1<<1)
870 #define TPD_INT (1<<0)
871 #define TPD_LST (1<<31)
873 /* table 4.3 serial eeprom information */
875 #define PROD_ID 0x08 /* char[] */
876 #define PROD_ID_LEN 30
877 #define HW_REV 0x26 /* char[] */
878 #define M_SN 0x3a /* integer */
879 #define MEDIA 0x3e /* integer */
880 #define HE155MM 0x26
881 #define HE155SM 0x27
882 #define HE622MM 0x46
883 #define HE622SM 0x47
884 #define MAC_ADDR 0x42 /* char[] */
886 #define CS_LOW 0x0
887 #define CS_HIGH ID_CS /* HOST_CNTL_ID_PROM_SEL */
888 #define CLK_LOW 0x0
889 #define CLK_HIGH ID_CLOCK /* HOST_CNTL_ID_PROM_CLOCK */
890 #define SI_HIGH ID_DIN /* HOST_CNTL_ID_PROM_DATA_IN */
891 #define EEPROM_DELAY 400 /* microseconds */
893 #endif /* _HE_H_ */