Merge branch 'for-3.3/core' of git://git.kernel.dk/linux-block
[deliverable/linux.git] / drivers / staging / cxt1e1 / musycc.c
CommitLineData
50ee11fe
BB
1unsigned int max_intcnt = 0;
2unsigned int max_bh = 0;
3
4/*-----------------------------------------------------------------------------
5 * musycc.c -
6 *
7 * Copyright (C) 2007 One Stop Systems, Inc.
8 * Copyright (C) 2003-2006 SBE, Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program 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
18 * GNU General Public License for more details.
19 *
20 * For further information, contact via email: support@onestopsystems.com
21 * One Stop Systems, Inc. Escondido, California U.S.A.
22 *-----------------------------------------------------------------------------
50ee11fe
BB
23 */
24
e6e4d05d 25#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
50ee11fe
BB
26
27#include <linux/types.h>
28#include "pmcc4_sysdep.h"
29#include <linux/kernel.h>
30#include <linux/errno.h>
31#include <linux/init.h>
32#include "sbecom_inline_linux.h"
33#include "libsbew.h"
34#include "pmcc4_private.h"
35#include "pmcc4.h"
36#include "musycc.h"
37
38#ifdef SBE_INCLUDE_SYMBOLS
39#define STATIC
40#else
41#define STATIC static
42#endif
43
44#define sd_find_chan(ci,ch) c4_find_chan(ch)
45
46
47/*******************************************************************/
48/* global driver variables */
49extern ci_t *c4_list;
50extern int drvr_state;
b8b73994 51extern int cxt1e1_log_level;
50ee11fe 52
c694ed85
BB
53extern int cxt1e1_max_mru;
54extern int cxt1e1_max_mtu;
50ee11fe
BB
55extern int max_rxdesc_used;
56extern int max_txdesc_used;
57extern ci_t *CI; /* dummy pointr to board ZEROE's data - DEBUG
58 * USAGE */
59
60
61/*******************************************************************/
62/* forward references */
63void c4_fifo_free (mpi_t *, int);
64void c4_wk_chan_restart (mch_t *);
65void musycc_bh_tx_eom (mpi_t *, int);
66int musycc_chan_up (ci_t *, int);
67status_t __init musycc_init (ci_t *);
68STATIC void __init musycc_init_port (mpi_t *);
69void musycc_intr_bh_tasklet (ci_t *);
70void musycc_serv_req (mpi_t *, u_int32_t);
71void musycc_update_timeslots (mpi_t *);
72
73/*******************************************************************/
74
75#if 1
76STATIC int
77musycc_dump_rxbuffer_ring (mch_t * ch, int lockit)
78{
79 struct mdesc *m;
80 unsigned long flags = 0;
81
82 u_int32_t status;
83 int n;
84
85 if (lockit)
86 {
87 spin_lock_irqsave (&ch->ch_rxlock, flags);
88 }
89 if (ch->rxd_num == 0)
90 {
694a9807 91 pr_info(" ZERO receive buffers allocated for this channel.");
50ee11fe
BB
92 } else
93 {
94 FLUSH_MEM_READ ();
95 m = &ch->mdr[ch->rxix_irq_srv];
96 for (n = ch->rxd_num; n; n--)
97 {
98 status = le32_to_cpu (m->status);
99 {
694a9807 100 pr_info("%c %08lx[%2d]: sts %08x (%c%c%c%c:%d.) Data [%08x] Next [%08x]\n",
50ee11fe
BB
101 (m == &ch->mdr[ch->rxix_irq_srv]) ? 'F' : ' ',
102 (unsigned long) m, n,
103 status,
104 m->data ? (status & HOST_RX_OWNED ? 'H' : 'M') : '-',
105 status & POLL_DISABLED ? 'P' : '-',
106 status & EOBIRQ_ENABLE ? 'b' : '-',
107 status & EOMIRQ_ENABLE ? 'm' : '-',
108 status & LENGTH_MASK,
109 le32_to_cpu (m->data), le32_to_cpu (m->next));
110#ifdef RLD_DUMP_BUFDATA
111 {
112 u_int32_t *dp;
113 int len = status & LENGTH_MASK;
114
115#if 1
116 if (m->data && (status & HOST_RX_OWNED))
117#else
118 if (m->data) /* always dump regardless of valid RX
119 * data */
120#endif
121 {
122 dp = (u_int32_t *) OS_phystov ((void *) (le32_to_cpu (m->data)));
123 if (len >= 0x10)
694a9807 124 pr_info(" %x[%x]: %08X %08X %08X %08x\n", (u_int32_t) dp, len,
50ee11fe
BB
125 *dp, *(dp + 1), *(dp + 2), *(dp + 3));
126 else if (len >= 0x08)
694a9807 127 pr_info(" %x[%x]: %08X %08X\n", (u_int32_t) dp, len,
50ee11fe
BB
128 *dp, *(dp + 1));
129 else
694a9807 130 pr_info(" %x[%x]: %08X\n", (u_int32_t) dp, len, *dp);
50ee11fe
BB
131 }
132 }
133#endif
134 }
135 m = m->snext;
136 }
137 } /* -for- */
694a9807 138 pr_info("\n");
50ee11fe
BB
139
140 if (lockit)
141 {
142 spin_unlock_irqrestore (&ch->ch_rxlock, flags);
143 }
144 return 0;
145}
146#endif
147
148#if 1
149STATIC int
150musycc_dump_txbuffer_ring (mch_t * ch, int lockit)
151{
152 struct mdesc *m;
153 unsigned long flags = 0;
154 u_int32_t status;
155 int n;
156
157 if (lockit)
158 {
159 spin_lock_irqsave (&ch->ch_txlock, flags);
160 }
161 if (ch->txd_num == 0)
162 {
694a9807 163 pr_info(" ZERO transmit buffers allocated for this channel.");
50ee11fe
BB
164 } else
165 {
166 FLUSH_MEM_READ ();
167 m = ch->txd_irq_srv;
168 for (n = ch->txd_num; n; n--)
169 {
170 status = le32_to_cpu (m->status);
171 {
694a9807 172 pr_info("%c%c %08lx[%2d]: sts %08x (%c%c%c%c:%d.) Data [%08x] Next [%08x]\n",
50ee11fe
BB
173 (m == ch->txd_usr_add) ? 'F' : ' ',
174 (m == ch->txd_irq_srv) ? 'L' : ' ',
175 (unsigned long) m, n,
176 status,
177 m->data ? (status & MUSYCC_TX_OWNED ? 'M' : 'H') : '-',
178 status & POLL_DISABLED ? 'P' : '-',
179 status & EOBIRQ_ENABLE ? 'b' : '-',
180 status & EOMIRQ_ENABLE ? 'm' : '-',
181 status & LENGTH_MASK,
182 le32_to_cpu (m->data), le32_to_cpu (m->next));
183#ifdef RLD_DUMP_BUFDATA
184 {
185 u_int32_t *dp;
186 int len = status & LENGTH_MASK;
187
188 if (m->data)
189 {
190 dp = (u_int32_t *) OS_phystov ((void *) (le32_to_cpu (m->data)));
191 if (len >= 0x10)
694a9807 192 pr_info(" %x[%x]: %08X %08X %08X %08x\n", (u_int32_t) dp, len,
50ee11fe
BB
193 *dp, *(dp + 1), *(dp + 2), *(dp + 3));
194 else if (len >= 0x08)
694a9807 195 pr_info(" %x[%x]: %08X %08X\n", (u_int32_t) dp, len,
50ee11fe
BB
196 *dp, *(dp + 1));
197 else
694a9807 198 pr_info(" %x[%x]: %08X\n", (u_int32_t) dp, len, *dp);
50ee11fe
BB
199 }
200 }
201#endif
202 }
203 m = m->snext;
204 }
205 } /* -for- */
694a9807 206 pr_info("\n");
50ee11fe
BB
207
208 if (lockit)
209 {
210 spin_unlock_irqrestore (&ch->ch_txlock, flags);
211 }
212 return 0;
213}
214#endif
215
216
217/*
218 * The following supports a backdoor debug facility which can be used to
219 * display the state of a board's channel.
220 */
221
222status_t
223musycc_dump_ring (ci_t * ci, unsigned int chan)
224{
225 mch_t *ch;
226
227 if (chan >= MAX_CHANS_USED)
228 {
229 return SBE_DRVR_FAIL; /* E2BIG */
230 }
231 {
232 int bh;
233
234 bh = atomic_read (&ci->bh_pending);
694a9807 235 pr_info(">> bh_pend %d [%d] ihead %d itail %d [%d] th_cnt %d bh_cnt %d wdcnt %d note %d\n",
50ee11fe
BB
236 bh, max_bh, ci->iqp_headx, ci->iqp_tailx, max_intcnt,
237 ci->intlog.drvr_intr_thcount,
238 ci->intlog.drvr_intr_bhcount,
239 ci->wdcount, ci->wd_notify);
240 max_bh = 0; /* reset counter */
241 max_intcnt = 0; /* reset counter */
242 }
243
244 if (!(ch = sd_find_chan (dummy, chan)))
245 {
694a9807 246 pr_info(">> musycc_dump_ring: channel %d not up.\n", chan);
50ee11fe
BB
247 return ENOENT;
248 }
694a9807 249 pr_info(">> CI %p CHANNEL %3d @ %p: state %x status/p %x/%x\n", ci, chan, ch, ch->state,
50ee11fe 250 ch->status, ch->p.status);
694a9807 251 pr_info("--------------------------------\nTX Buffer Ring - Channel %d, txd_num %d. (bd/ch pend %d %d), TXD required %d, txpkt %lu\n",
50ee11fe
BB
252 chan, ch->txd_num,
253 (u_int32_t) atomic_read (&ci->tx_pending), (u_int32_t) atomic_read (&ch->tx_pending), ch->txd_required, ch->s.tx_packets);
694a9807 254 pr_info("++ User 0x%p IRQ_SRV 0x%p USR_ADD 0x%p QStopped %x, start_tx %x tx_full %d txd_free %d mode %x\n",
50ee11fe
BB
255 ch->user, ch->txd_irq_srv, ch->txd_usr_add,
256 sd_queue_stopped (ch->user),
257 ch->ch_start_tx, ch->tx_full, ch->txd_free, ch->p.chan_mode);
258 musycc_dump_txbuffer_ring (ch, 1);
694a9807 259 pr_info("RX Buffer Ring - Channel %d, rxd_num %d. IRQ_SRV[%d] 0x%p, start_rx %x rxpkt %lu\n",
50ee11fe
BB
260 chan, ch->rxd_num, ch->rxix_irq_srv,
261 &ch->mdr[ch->rxix_irq_srv], ch->ch_start_rx, ch->s.rx_packets);
262 musycc_dump_rxbuffer_ring (ch, 1);
263
264 return SBE_DRVR_SUCCESS;
265}
266
267
268status_t
269musycc_dump_rings (ci_t * ci, unsigned int start_chan)
270{
271 unsigned int chan;
272
273 for (chan = start_chan; chan < (start_chan + 5); chan++)
274 musycc_dump_ring (ci, chan);
275 return SBE_DRVR_SUCCESS;
276}
277
278
279/*
280 * NOTE on musycc_init_mdt(): These MUSYCC writes are only operational after
281 * a MUSYCC GROUP_INIT command has been issued.
282 */
283
284void
285musycc_init_mdt (mpi_t * pi)
286{
287 u_int32_t *addr, cfg;
288 int i;
289
290 /*
291 * This Idle Code insertion takes effect prior to channel's first
292 * transmitted message. After that, each message contains its own Idle
293 * Code information which is to be issued after the message is
294 * transmitted (Ref.MUSYCC 5.2.2.3: MCENBL bit in Group Configuration
295 * Descriptor).
296 */
297
298 addr = (u_int32_t *) ((u_long) pi->reg + MUSYCC_MDT_BASE03_ADDR);
299 cfg = CFG_CH_FLAG_7E << IDLE_CODE;
300
301 for (i = 0; i < 32; addr++, i++)
302 {
303 pci_write_32 (addr, cfg);
304 }
305}
306
307
308/* Set TX thp to the next unprocessed md */
309
310void
311musycc_update_tx_thp (mch_t * ch)
312{
313 struct mdesc *md;
314 unsigned long flags;
315
316 spin_lock_irqsave (&ch->ch_txlock, flags);
317 while (1)
318 {
319 md = ch->txd_irq_srv;
320 FLUSH_MEM_READ ();
321 if (!md->data)
322 {
323 /* No MDs with buffers to process */
324 spin_unlock_irqrestore (&ch->ch_txlock, flags);
325 return;
326 }
327 if ((le32_to_cpu (md->status)) & MUSYCC_TX_OWNED)
328 {
329 /* this is the MD to restart TX with */
330 break;
331 }
332 /*
333 * Otherwise, we have a valid, host-owned message descriptor which
334 * has been successfully transmitted and whose buffer can be freed,
335 * so... process this MD, it's owned by the host. (This might give
336 * as a new, updated txd_irq_srv.)
337 */
338 musycc_bh_tx_eom (ch->up, ch->gchan);
339 }
340 md = ch->txd_irq_srv;
341 ch->up->regram->thp[ch->gchan] = cpu_to_le32 (OS_vtophys (md));
342 FLUSH_MEM_WRITE ();
343
344 if (ch->tx_full)
345 {
346 ch->tx_full = 0;
347 ch->txd_required = 0;
348 sd_enable_xmit (ch->user); /* re-enable to catch flow controlled
349 * channel */
350 }
351 spin_unlock_irqrestore (&ch->ch_txlock, flags);
352
353#ifdef RLD_TRANS_DEBUG
694a9807 354 pr_info("++ musycc_update_tx_thp[%d]: setting thp = %p, sts %x\n", ch->channum, md, md->status);
50ee11fe
BB
355#endif
356}
357
358
50ee11fe
BB
359/*
360 * This is the workq task executed by the OS when our queue_work() is
361 * scheduled and run. It can fire off either RX or TX ACTIVATION depending
362 * upon the channel's ch_start_tx and ch_start_rx variables. This routine
363 * is implemented as a work queue so that the call to the service request is
364 * able to sleep, awaiting an interrupt acknowledgment response (SACK) from
365 * the hardware.
366 */
367
368void
369musycc_wq_chan_restart (void *arg) /* channel private structure */
370{
371 mch_t *ch;
372 mpi_t *pi;
373 struct mdesc *md;
374#if 0
375 unsigned long flags;
376#endif
377
378 ch = container_of(arg, struct c4_chan_info, ch_work);
379 pi = ch->up;
380
381#ifdef RLD_TRANS_DEBUG
694a9807 382 pr_info("wq_chan_restart[%d]: start_RT[%d/%d] status %x\n",
50ee11fe
BB
383 ch->channum, ch->ch_start_rx, ch->ch_start_tx, ch->status);
384
385#endif
386
387 /**********************************/
388 /** check for RX restart request **/
389 /**********************************/
390
391 if ((ch->ch_start_rx) && (ch->status & RX_ENABLED))
392 {
393
394 ch->ch_start_rx = 0;
395#if defined(RLD_TRANS_DEBUG) || defined(RLD_RXACT_DEBUG)
396 {
397 static int hereb4 = 7;
398
399 if (hereb4) /* RLD DEBUG */
400 {
401 hereb4--;
402#ifdef RLD_TRANS_DEBUG
403 md = &ch->mdr[ch->rxix_irq_srv];
694a9807 404 pr_info("++ musycc_wq_chan_restart[%d] CHAN RX ACTIVATE: rxix_irq_srv %d, md %p sts %x, rxpkt %lu\n",
50ee11fe
BB
405 ch->channum, ch->rxix_irq_srv, md, le32_to_cpu (md->status),
406 ch->s.rx_packets);
407#elif defined(RLD_RXACT_DEBUG)
408 md = &ch->mdr[ch->rxix_irq_srv];
694a9807 409 pr_info("++ musycc_wq_chan_restart[%d] CHAN RX ACTIVATE: rxix_irq_srv %d, md %p sts %x, rxpkt %lu\n",
50ee11fe
BB
410 ch->channum, ch->rxix_irq_srv, md, le32_to_cpu (md->status),
411 ch->s.rx_packets);
412 musycc_dump_rxbuffer_ring (ch, 1); /* RLD DEBUG */
413#endif
414 }
415 }
416#endif
417 musycc_serv_req (pi, SR_CHANNEL_ACTIVATE | SR_RX_DIRECTION | ch->gchan);
418 }
419 /**********************************/
420 /** check for TX restart request **/
421 /**********************************/
422
423 if ((ch->ch_start_tx) && (ch->status & TX_ENABLED))
424 {
425 /* find next unprocessed message, then set TX thp to it */
426 musycc_update_tx_thp (ch);
427
428#if 0
429 spin_lock_irqsave (&ch->ch_txlock, flags);
430#endif
431 md = ch->txd_irq_srv;
432 if (!md)
433 {
434#ifdef RLD_TRANS_DEBUG
694a9807 435 pr_info("-- musycc_wq_chan_restart[%d]: WARNING, starting NULL md\n", ch->channum);
50ee11fe
BB
436#endif
437#if 0
438 spin_unlock_irqrestore (&ch->ch_txlock, flags);
439#endif
440 } else if (md->data && ((le32_to_cpu (md->status)) & MUSYCC_TX_OWNED))
441 {
442 ch->ch_start_tx = 0;
443#if 0
444 spin_unlock_irqrestore (&ch->ch_txlock, flags); /* allow interrupts for service request */
445#endif
446#ifdef RLD_TRANS_DEBUG
694a9807 447 pr_info("++ musycc_wq_chan_restart() CHAN TX ACTIVATE: chan %d txd_irq_srv %p = sts %x, txpkt %lu\n",
50ee11fe
BB
448 ch->channum, ch->txd_irq_srv, ch->txd_irq_srv->status, ch->s.tx_packets);
449#endif
450 musycc_serv_req (pi, SR_CHANNEL_ACTIVATE | SR_TX_DIRECTION | ch->gchan);
451 }
452#ifdef RLD_RESTART_DEBUG
453 else
454 {
455 /* retain request to start until retried and we have data to xmit */
694a9807 456 pr_info("-- musycc_wq_chan_restart[%d]: DELAYED due to md %p sts %x data %x, start_tx %x\n",
50ee11fe
BB
457 ch->channum, md,
458 le32_to_cpu (md->status),
459 le32_to_cpu (md->data), ch->ch_start_tx);
460 musycc_dump_txbuffer_ring (ch, 0);
461#if 0
462 spin_unlock_irqrestore (&ch->ch_txlock, flags); /* allow interrupts for service request */
463#endif
464 }
465#endif
466 }
467}
50ee11fe
BB
468
469
470 /*
471 * Channel restart either fires of a workqueue request (2.6) or lodges a
472 * watchdog activation sequence (2.4).
473 */
474
475void
476musycc_chan_restart (mch_t * ch)
477{
478#ifdef RLD_RESTART_DEBUG
694a9807 479 pr_info("++ musycc_chan_restart[%d]: txd_irq_srv @ %p = sts %x\n",
50ee11fe
BB
480 ch->channum, ch->txd_irq_srv, ch->txd_irq_srv->status);
481#endif
482
50ee11fe
BB
483 /* 2.6 - find next unprocessed message, then set TX thp to it */
484#ifdef RLD_RESTART_DEBUG
694a9807 485 pr_info(">> musycc_chan_restart: scheduling Chan %x workQ @ %p\n", ch->channum, &ch->ch_work);
50ee11fe
BB
486#endif
487 c4_wk_chan_restart (ch); /* work queue mechanism fires off: Ref:
488 * musycc_wq_chan_restart () */
489
50ee11fe
BB
490}
491
492
50ee11fe
BB
493void
494rld_put_led (mpi_t * pi, u_int32_t ledval)
495{
496 static u_int32_t led = 0;
497
498 if (ledval == 0)
499 led = 0;
500 else
501 led |= ledval;
502
503 pci_write_32 ((u_int32_t *) &pi->up->cpldbase->leds, led); /* RLD DEBUG TRANHANG */
504}
505
506
507#define MUSYCC_SR_RETRY_CNT 9
508
509void
510musycc_serv_req (mpi_t * pi, u_int32_t req)
511{
512 volatile u_int32_t r;
513 int rcnt;
514
515 /*
516 * PORT NOTE: Semaphore protect service loop guarantees only a single
517 * operation at a time. Per MUSYCC Manual - "Issuing service requests to
518 * the same channel group without first receiving ACK from each request
519 * may cause the host to lose track of which service request has been
520 * acknowledged."
521 */
522
523 SD_SEM_TAKE (&pi->sr_sem_busy, "serv"); /* only 1 thru here, per
524 * group */
525
526 if (pi->sr_last == req)
527 {
528#ifdef RLD_TRANS_DEBUG
694a9807 529 pr_info(">> same SR, Port %d Req %x\n", pi->portnum, req);
50ee11fe
BB
530#endif
531
532 /*
533 * The most likely repeated request is the channel activation command
534 * which follows the occurrence of a Transparent mode TX ONR or a
535 * BUFF error. If the previous command was a CHANNEL ACTIVATE,
536 * precede it with a NOOP command in order maintain coherent control
537 * of this current (re)ACTIVATE.
538 */
539
540 r = (pi->sr_last & ~SR_GCHANNEL_MASK);
541 if ((r == (SR_CHANNEL_ACTIVATE | SR_TX_DIRECTION)) ||
542 (r == (SR_CHANNEL_ACTIVATE | SR_RX_DIRECTION)))
543 {
544#ifdef RLD_TRANS_DEBUG
694a9807 545 pr_info(">> same CHAN ACT SR, Port %d Req %x => issue SR_NOOP CMD\n", pi->portnum, req);
50ee11fe
BB
546#endif
547 SD_SEM_GIVE (&pi->sr_sem_busy); /* allow this next request */
548 musycc_serv_req (pi, SR_NOOP);
549 SD_SEM_TAKE (&pi->sr_sem_busy, "serv"); /* relock & continue w/
550 * original req */
551 } else if (req == SR_NOOP)
552 {
553 /* no need to issue back-to-back SR_NOOP commands at this time */
554#ifdef RLD_TRANS_DEBUG
694a9807 555 pr_info(">> same Port SR_NOOP skipped, Port %d\n", pi->portnum);
50ee11fe
BB
556#endif
557 SD_SEM_GIVE (&pi->sr_sem_busy); /* allow this next request */
558 return;
559 }
560 }
561 rcnt = 0;
562 pi->sr_last = req;
563rewrite:
564 pci_write_32 ((u_int32_t *) &pi->reg->srd, req);
565 FLUSH_MEM_WRITE ();
566
567 /*
568 * Per MUSYCC Manual, Section 6.1,2 - "When writing an SCR service
569 * request, the host must ensure at least one PCI bus clock cycle has
570 * elapsed before writing another service request. To meet this minimum
571 * elapsed service request write timing interval, it is recommended that
572 * the host follow any SCR write with another operation which reads from
573 * the same address."
574 */
575 r = pci_read_32 ((u_int32_t *) &pi->reg->srd); /* adhere to write
576 * timing imposition */
577
578
579 if ((r != req) && (req != SR_CHIP_RESET) && (++rcnt <= MUSYCC_SR_RETRY_CNT))
580 {
b8b73994 581 if (cxt1e1_log_level >= LOG_MONITOR)
694a9807 582 pr_info("%s: %d - reissue srv req/last %x/%x (hdw reads %x), Chan %d.\n",
50ee11fe
BB
583 pi->up->devname, rcnt, req, pi->sr_last, r,
584 (pi->portnum * MUSYCC_NCHANS) + (req & 0x1f));
585 OS_uwait_dummy (); /* this delay helps reduce reissue counts
586 * (reason not yet researched) */
587 goto rewrite;
588 }
589 if (rcnt > MUSYCC_SR_RETRY_CNT)
590 {
e6e4d05d
JP
591 pr_warning("%s: failed service request (#%d)= %x, group %d.\n",
592 pi->up->devname, MUSYCC_SR_RETRY_CNT, req, pi->portnum);
50ee11fe
BB
593 SD_SEM_GIVE (&pi->sr_sem_busy); /* allow any next request */
594 return;
595 }
596 if (req == SR_CHIP_RESET)
597 {
598 /*
599 * PORT NOTE: the CHIP_RESET command is NOT ack'd by the MUSYCC, thus
600 * the upcoming delay is used. Though the MUSYCC documentation
601 * suggests a read-after-write would supply the required delay, it's
602 * unclear what CPU/BUS clock speeds might have been assumed when
603 * suggesting this 'lack of ACK' workaround. Thus the use of uwait.
604 */
605 OS_uwait (100000, "icard"); /* 100ms */
606 } else
607 {
608 FLUSH_MEM_READ ();
609 SD_SEM_TAKE (&pi->sr_sem_wait, "sakack"); /* sleep until SACK
610 * interrupt occurs */
611 }
612 SD_SEM_GIVE (&pi->sr_sem_busy); /* allow any next request */
613}
614
615
616#ifdef SBE_PMCC4_ENABLE
617void
618musycc_update_timeslots (mpi_t * pi)
619{
620 int i, ch;
621 char e1mode = IS_FRAME_ANY_E1 (pi->p.port_mode);
622
623 for (i = 0; i < 32; i++)
624 {
625 int usedby = 0, last = 0, ts, j, bits[8];
626
627 u_int8_t lastval = 0;
628
629 if (((i == 0) && e1mode) || /* disable if E1 mode */
630 ((i == 16) && ((pi->p.port_mode == CFG_FRAME_E1CRC_CAS) || (pi->p.port_mode == CFG_FRAME_E1CRC_CAS_AMI)))
631 || ((i > 23) && (!e1mode))) /* disable if T1 mode */
632 {
633 pi->tsm[i] = 0xff; /* make tslot unavailable for this mode */
634 } else
635 {
636 pi->tsm[i] = 0x00; /* make tslot available for assignment */
637 }
638 for (j = 0; j < 8; j++)
639 bits[j] = -1;
640 for (ch = 0; ch < MUSYCC_NCHANS; ch++)
641 {
642 if ((pi->chan[ch]->state == UP) && (pi->chan[ch]->p.bitmask[i]))
643 {
644 usedby++;
645 last = ch;
646 lastval = pi->chan[ch]->p.bitmask[i];
647 for (j = 0; j < 8; j++)
648 if (lastval & (1 << j))
649 bits[j] = ch;
650 pi->tsm[i] |= lastval;
651 }
652 }
653 if (!usedby)
654 ts = 0;
655 else if ((usedby == 1) && (lastval == 0xff))
656 ts = (4 << 5) | last;
657 else if ((usedby == 1) && (lastval == 0x7f))
658 ts = (5 << 5) | last;
659 else
660 {
661 int idx;
662
663 if (bits[0] < 0)
664 ts = (6 << 5) | (idx = last);
665 else
666 ts = (7 << 5) | (idx = bits[0]);
667 for (j = 1; j < 8; j++)
668 {
669 pi->regram->rscm[idx * 8 + j] = (bits[j] < 0) ? 0 : (0x80 | bits[j]);
670 pi->regram->tscm[idx * 8 + j] = (bits[j] < 0) ? 0 : (0x80 | bits[j]);
671 }
672 }
673 pi->regram->rtsm[i] = ts;
674 pi->regram->ttsm[i] = ts;
675 }
676 FLUSH_MEM_WRITE ();
677
678 musycc_serv_req (pi, SR_TIMESLOT_MAP | SR_RX_DIRECTION);
679 musycc_serv_req (pi, SR_TIMESLOT_MAP | SR_TX_DIRECTION);
680 musycc_serv_req (pi, SR_SUBCHANNEL_MAP | SR_RX_DIRECTION);
681 musycc_serv_req (pi, SR_SUBCHANNEL_MAP | SR_TX_DIRECTION);
682}
683#endif
684
685
686#ifdef SBE_WAN256T3_ENABLE
687void
688musycc_update_timeslots (mpi_t * pi)
689{
690 mch_t *ch;
691
692 u_int8_t ts, hmask, tsen;
693 int gchan;
694 int i;
695
696#ifdef SBE_PMCC4_ENABLE
697 hmask = (0x1f << pi->up->p.hypersize) & 0x1f;
698#endif
699#ifdef SBE_WAN256T3_ENABLE
700 hmask = (0x1f << hyperdummy) & 0x1f;
701#endif
702 for (i = 0; i < 128; i++)
703 {
704 gchan = ((pi->portnum * MUSYCC_NCHANS) + (i & hmask)) % MUSYCC_NCHANS;
705 ch = pi->chan[gchan];
706 if (ch->p.mode_56k)
707 tsen = MODE_56KBPS;
708 else
709 tsen = MODE_64KBPS; /* also the default */
710 ts = ((pi->portnum % 4) == (i / 32)) ? (tsen << 5) | (i & hmask) : 0;
711 pi->regram->rtsm[i] = ts;
712 pi->regram->ttsm[i] = ts;
713 }
714 FLUSH_MEM_WRITE ();
715 musycc_serv_req (pi, SR_TIMESLOT_MAP | SR_RX_DIRECTION);
716 musycc_serv_req (pi, SR_TIMESLOT_MAP | SR_TX_DIRECTION);
717}
718#endif
719
720
721 /*
722 * This routine converts a generic library channel configuration parameter
723 * into a hardware specific register value (IE. MUSYCC CCD Register).
724 */
725u_int32_t
726musycc_chan_proto (int proto)
727{
728 int reg;
729
730 switch (proto)
731 {
732 case CFG_CH_PROTO_TRANS: /* 0 */
733 reg = MUSYCC_CCD_TRANS;
734 break;
735 case CFG_CH_PROTO_SS7: /* 1 */
736 reg = MUSYCC_CCD_SS7;
737 break;
738 default:
739 case CFG_CH_PROTO_ISLP_MODE: /* 4 */
740 case CFG_CH_PROTO_HDLC_FCS16: /* 2 */
741 reg = MUSYCC_CCD_HDLC_FCS16;
742 break;
743 case CFG_CH_PROTO_HDLC_FCS32: /* 3 */
744 reg = MUSYCC_CCD_HDLC_FCS32;
745 break;
746 }
747
748 return reg;
749}
750
751#ifdef SBE_WAN256T3_ENABLE
752STATIC void __init
753musycc_init_port (mpi_t * pi)
754{
755 pci_write_32 ((u_int32_t *) &pi->reg->gbp, OS_vtophys (pi->regram));
756
757 pi->regram->grcd =
758 __constant_cpu_to_le32 (MUSYCC_GRCD_RX_ENABLE |
759 MUSYCC_GRCD_TX_ENABLE |
760 MUSYCC_GRCD_SF_ALIGN |
761 MUSYCC_GRCD_SUBCHAN_DISABLE |
762 MUSYCC_GRCD_OOFMP_DISABLE |
763 MUSYCC_GRCD_COFAIRQ_DISABLE |
764 MUSYCC_GRCD_MC_ENABLE |
765 (MUSYCC_GRCD_POLLTH_32 << MUSYCC_GRCD_POLLTH_SHIFT));
766
767 pi->regram->pcd =
768 __constant_cpu_to_le32 (MUSYCC_PCD_E1X4_MODE |
769 MUSYCC_PCD_TXDATA_RISING |
770 MUSYCC_PCD_TX_DRIVEN);
771
772 /* Message length descriptor */
c694ed85 773 pi->regram->mld = __constant_cpu_to_le32 (cxt1e1_max_mru | (cxt1e1_max_mru << 16));
50ee11fe
BB
774 FLUSH_MEM_WRITE ();
775
776 musycc_serv_req (pi, SR_GROUP_INIT | SR_RX_DIRECTION);
777 musycc_serv_req (pi, SR_GROUP_INIT | SR_TX_DIRECTION);
778
779 musycc_init_mdt (pi);
780
781 musycc_update_timeslots (pi);
782}
783#endif
784
785
786status_t __init
787musycc_init (ci_t * ci)
788{
789 char *regaddr; /* temp for address boundary calculations */
790 int i, gchan;
791
792 OS_sem_init (&ci->sem_wdbusy, SEM_AVAILABLE); /* watchdog exclusion */
793
794 /*
795 * Per MUSYCC manual, Section 6.3.4 - "The host must allocate a dword
796 * aligned memory segment for interrupt queue pointers."
797 */
798
799#define INT_QUEUE_BOUNDARY 4
800
801 regaddr = OS_kmalloc ((INT_QUEUE_SIZE + 1) * sizeof (u_int32_t));
802 if (regaddr == 0)
803 return ENOMEM;
804 ci->iqd_p_saved = regaddr; /* save orig value for free's usage */
805 ci->iqd_p = (u_int32_t *) ((unsigned long) (regaddr + INT_QUEUE_BOUNDARY - 1) &
806 (~(INT_QUEUE_BOUNDARY - 1))); /* this calculates
807 * closest boundary */
808
809 for (i = 0; i < INT_QUEUE_SIZE; i++)
810 {
811 ci->iqd_p[i] = __constant_cpu_to_le32 (INT_EMPTY_ENTRY);
812 }
813
814 for (i = 0; i < ci->max_port; i++)
815 {
816 mpi_t *pi = &ci->port[i];
817
818 /*
819 * Per MUSYCC manual, Section 6.3.2 - "The host must allocate a 2KB
820 * bound memory segment for Channel Group 0."
821 */
822
823#define GROUP_BOUNDARY 0x800
824
825 regaddr = OS_kmalloc (sizeof (struct musycc_groupr) + GROUP_BOUNDARY);
826 if (regaddr == 0)
827 {
828 for (gchan = 0; gchan < i; gchan++)
829 {
830 pi = &ci->port[gchan];
831 OS_kfree (pi->reg);
832 pi->reg = 0;
833 }
834 return ENOMEM;
835 }
836 pi->regram_saved = regaddr; /* save orig value for free's usage */
837 pi->regram = (struct musycc_groupr *) ((unsigned long) (regaddr + GROUP_BOUNDARY - 1) &
838 (~(GROUP_BOUNDARY - 1))); /* this calculates
839 * closest boundary */
840 }
841
842 /* any board centric MUSYCC commands will use group ZERO as its "home" */
843 ci->regram = ci->port[0].regram;
844 musycc_serv_req (&ci->port[0], SR_CHIP_RESET);
845
846 pci_write_32 ((u_int32_t *) &ci->reg->gbp, OS_vtophys (ci->regram));
847 pci_flush_write (ci);
848#ifdef CONFIG_SBE_PMCC4_NCOMM
849 ci->regram->__glcd = __constant_cpu_to_le32 (GCD_MAGIC);
850#else
851 /* standard driver POLLS for INTB via CPLD register */
852 ci->regram->__glcd = __constant_cpu_to_le32 (GCD_MAGIC | MUSYCC_GCD_INTB_DISABLE);
853#endif
854
855 ci->regram->__iqp = cpu_to_le32 (OS_vtophys (&ci->iqd_p[0]));
856 ci->regram->__iql = __constant_cpu_to_le32 (INT_QUEUE_SIZE - 1);
857 pci_write_32 ((u_int32_t *) &ci->reg->dacbp, 0);
858 FLUSH_MEM_WRITE ();
859
860 ci->state = C_RUNNING; /* mark as full interrupt processing
861 * available */
862
863 musycc_serv_req (&ci->port[0], SR_GLOBAL_INIT); /* FIRST INTERRUPT ! */
864
865 /* sanity check settable parameters */
866
c694ed85 867 if (cxt1e1_max_mru > 0xffe)
50ee11fe 868 {
e6e4d05d 869 pr_warning("Maximum allowed MRU exceeded, resetting %d to %d.\n",
c694ed85
BB
870 cxt1e1_max_mru, 0xffe);
871 cxt1e1_max_mru = 0xffe;
50ee11fe 872 }
c694ed85 873 if (cxt1e1_max_mtu > 0xffe)
50ee11fe 874 {
e6e4d05d 875 pr_warning("Maximum allowed MTU exceeded, resetting %d to %d.\n",
c694ed85
BB
876 cxt1e1_max_mtu, 0xffe);
877 cxt1e1_max_mtu = 0xffe;
50ee11fe
BB
878 }
879#ifdef SBE_WAN256T3_ENABLE
880 for (i = 0; i < MUSYCC_NPORTS; i++)
881 musycc_init_port (&ci->port[i]);
882#endif
883
884 return SBE_DRVR_SUCCESS; /* no error */
885}
886
887
888void
889musycc_bh_tx_eom (mpi_t * pi, int gchan)
890{
891 mch_t *ch;
892 struct mdesc *md;
893
894#if 0
895#ifndef SBE_ISR_INLINE
896 unsigned long flags;
897
898#endif
899#endif
900 volatile u_int32_t status;
901
902 ch = pi->chan[gchan];
903 if (ch == 0 || ch->state != UP)
904 {
b8b73994 905 if (cxt1e1_log_level >= LOG_ERROR)
694a9807
JP
906 pr_info("%s: intr: xmit EOM on uninitialized channel %d\n",
907 pi->up->devname, gchan);
50ee11fe
BB
908 }
909 if (ch == 0 || ch->mdt == 0)
910 return; /* note: mdt==0 implies a malloc()
911 * failure w/in chan_up() routine */
912
913#if 0
914#ifdef SBE_ISR_INLINE
915 spin_lock_irq (&ch->ch_txlock);
916#else
917 spin_lock_irqsave (&ch->ch_txlock, flags);
918#endif
919#endif
920 do
921 {
922 FLUSH_MEM_READ ();
923 md = ch->txd_irq_srv;
924 status = le32_to_cpu (md->status);
925
926 /*
927 * Note: Per MUSYCC Ref 6.4.9, the host does not poll a host-owned
928 * Transmit Buffer Descriptor during Transparent Mode.
929 */
930 if (status & MUSYCC_TX_OWNED)
931 {
932 int readCount, loopCount;
933
934 /***********************************************************/
935 /* HW Bug Fix */
936 /* ---------- */
937 /* Under certain PCI Bus loading conditions, the data */
938 /* associated with an update of Shared Memory is delayed */
939 /* relative to its PCI Interrupt. This is caught when */
940 /* the host determines it does not yet OWN the descriptor. */
941 /***********************************************************/
942
943 readCount = 0;
944 while (status & MUSYCC_TX_OWNED)
945 {
946 for (loopCount = 0; loopCount < 0x30; loopCount++)
947 OS_uwait_dummy (); /* use call to avoid optimization
948 * removal of dummy delay */
949 FLUSH_MEM_READ ();
950 status = le32_to_cpu (md->status);
951 if (readCount++ > 40)
952 break; /* don't wait any longer */
953 }
954 if (status & MUSYCC_TX_OWNED)
955 {
b8b73994 956 if (cxt1e1_log_level >= LOG_MONITOR)
50ee11fe 957 {
694a9807
JP
958 pr_info("%s: Port %d Chan %2d - unexpected TX msg ownership intr (md %p sts %x)\n",
959 pi->up->devname, pi->portnum, ch->channum,
960 md, status);
961 pr_info("++ User 0x%p IRQ_SRV 0x%p USR_ADD 0x%p QStopped %x, start_tx %x tx_full %d txd_free %d mode %x\n",
50ee11fe
BB
962 ch->user, ch->txd_irq_srv, ch->txd_usr_add,
963 sd_queue_stopped (ch->user),
964 ch->ch_start_tx, ch->tx_full, ch->txd_free, ch->p.chan_mode);
965 musycc_dump_txbuffer_ring (ch, 0);
966 }
967 break; /* Not our mdesc, done */
968 } else
969 {
b8b73994 970 if (cxt1e1_log_level >= LOG_MONITOR)
694a9807 971 pr_info("%s: Port %d Chan %2d - recovered TX msg ownership [%d] (md %p sts %x)\n",
50ee11fe
BB
972 pi->up->devname, pi->portnum, ch->channum, readCount, md, status);
973 }
974 }
975 ch->txd_irq_srv = md->snext;
976
977 md->data = 0;
978 if (md->mem_token != 0)
979 {
980 /* upcount channel */
981 atomic_sub (OS_mem_token_tlen (md->mem_token), &ch->tx_pending);
982 /* upcount card */
983 atomic_sub (OS_mem_token_tlen (md->mem_token), &pi->up->tx_pending);
984#ifdef SBE_WAN256T3_ENABLE
985 if (!atomic_read (&pi->up->tx_pending))
986 wan256t3_led (pi->up, LED_TX, 0);
987#endif
988
989#ifdef CONFIG_SBE_WAN256T3_NCOMM
990 /* callback that our packet was sent */
991 {
992 int hdlcnum = (pi->portnum * 32 + gchan);
993
994 if (hdlcnum >= 228)
995 {
996 if (nciProcess_TX_complete)
997 (*nciProcess_TX_complete) (hdlcnum,
998 getuserbychan (gchan));
999 }
1000 }
1001#endif /*** CONFIG_SBE_WAN256T3_NCOMM ***/
1002
1003 OS_mem_token_free_irq (md->mem_token);
1004 md->mem_token = 0;
1005 }
1006 md->status = 0;
1007#ifdef RLD_TXFULL_DEBUG
b8b73994 1008 if (cxt1e1_log_level >= LOG_MONITOR2)
694a9807
JP
1009 pr_info("~~ tx_eom: tx_full %x txd_free %d -> %d\n",
1010 ch->tx_full, ch->txd_free, ch->txd_free + 1);
50ee11fe
BB
1011#endif
1012 ++ch->txd_free;
1013 FLUSH_MEM_WRITE ();
1014
1015 if ((ch->p.chan_mode != CFG_CH_PROTO_TRANS) && (status & EOBIRQ_ENABLE))
1016 {
b8b73994 1017 if (cxt1e1_log_level >= LOG_MONITOR)
694a9807 1018 pr_info("%s: Mode (%x) incorrect EOB status (%x)\n",
50ee11fe
BB
1019 pi->up->devname, ch->p.chan_mode, status);
1020 if ((status & EOMIRQ_ENABLE) == 0)
1021 break;
1022 }
1023 }
1024 while ((ch->p.chan_mode != CFG_CH_PROTO_TRANS) && ((status & EOMIRQ_ENABLE) == 0));
1025 /*
1026 * NOTE: (The above 'while' is coupled w/ previous 'do', way above.) Each
1027 * Transparent data buffer has the EOB bit, and NOT the EOM bit, set and
1028 * will furthermore have a separate IQD associated with each messages
1029 * buffer.
1030 */
1031
1032 FLUSH_MEM_READ ();
1033 /*
1034 * Smooth flow control hysterisis by maintaining task stoppage until half
1035 * the available write buffers are available.
1036 */
1037 if (ch->tx_full && (ch->txd_free >= (ch->txd_num / 2)))
1038 {
1039 /*
1040 * Then, only releave task stoppage if we actually have enough
1041 * buffers to service the last requested packet. It may require MORE
1042 * than half the available!
1043 */
1044 if (ch->txd_free >= ch->txd_required)
1045 {
1046
1047#ifdef RLD_TXFULL_DEBUG
b8b73994 1048 if (cxt1e1_log_level >= LOG_MONITOR2)
694a9807 1049 pr_info("tx_eom[%d]: enable xmit tx_full no more, txd_free %d txd_num/2 %d\n",
50ee11fe
BB
1050 ch->channum,
1051 ch->txd_free, ch->txd_num / 2);
1052#endif
1053 ch->tx_full = 0;
1054 ch->txd_required = 0;
1055 sd_enable_xmit (ch->user); /* re-enable to catch flow controlled
1056 * channel */
1057 }
1058 }
1059#ifdef RLD_TXFULL_DEBUG
1060 else if (ch->tx_full)
1061 {
b8b73994 1062 if (cxt1e1_log_level >= LOG_MONITOR2)
694a9807 1063 pr_info("tx_eom[%d]: bypass TX enable though room available? (txd_free %d txd_num/2 %d)\n",
50ee11fe
BB
1064 ch->channum,
1065 ch->txd_free, ch->txd_num / 2);
1066 }
1067#endif
1068
1069 FLUSH_MEM_WRITE ();
1070#if 0
1071#ifdef SBE_ISR_INLINE
1072 spin_unlock_irq (&ch->ch_txlock);
1073#else
1074 spin_unlock_irqrestore (&ch->ch_txlock, flags);
1075#endif
1076#endif
1077}
1078
1079
1080STATIC void
1081musycc_bh_rx_eom (mpi_t * pi, int gchan)
1082{
1083 mch_t *ch;
1084 void *m, *m2;
1085 struct mdesc *md;
1086 volatile u_int32_t status;
1087 u_int32_t error;
1088
1089 ch = pi->chan[gchan];
1090 if (ch == 0 || ch->state != UP)
1091 {
b8b73994 1092 if (cxt1e1_log_level > LOG_ERROR)
694a9807
JP
1093 pr_info("%s: intr: receive EOM on uninitialized channel %d\n",
1094 pi->up->devname, gchan);
50ee11fe
BB
1095 return;
1096 }
1097 if (ch->mdr == 0)
1098 return; /* can this happen ? */
1099
1100 for (;;)
1101 {
1102 FLUSH_MEM_READ ();
1103 md = &ch->mdr[ch->rxix_irq_srv];
1104 status = le32_to_cpu (md->status);
1105 if (!(status & HOST_RX_OWNED))
1106 break; /* Not our mdesc, done */
1107 m = md->mem_token;
1108 error = (status >> 16) & 0xf;
1109 if (error == 0)
1110 {
1111#ifdef CONFIG_SBE_WAN256T3_NCOMM
1112 int hdlcnum = (pi->portnum * 32 + gchan);
1113
1114 /*
1115 * if the packet number belongs to NCOMM, then send it to the TMS
1116 * driver
1117 */
1118 if (hdlcnum >= 228)
1119 {
1120 if (nciProcess_RX_packet)
1121 (*nciProcess_RX_packet) (hdlcnum, status & 0x3fff, m, ch->user);
1122 } else
1123#endif /*** CONFIG_SBE_WAN256T3_NCOMM ***/
1124
1125 {
c694ed85 1126 if ((m2 = OS_mem_token_alloc (cxt1e1_max_mru)))
50ee11fe
BB
1127 {
1128 /* substitute the mbuf+cluster */
1129 md->mem_token = m2;
1130 md->data = cpu_to_le32 (OS_vtophys (OS_mem_token_data (m2)));
1131
1132 /* pass the received mbuf upward */
1133 sd_recv_consume (m, status & LENGTH_MASK, ch->user);
1134 ch->s.rx_packets++;
1135 ch->s.rx_bytes += status & LENGTH_MASK;
1136 } else
1137 {
1138 ch->s.rx_dropped++;
1139 }
1140 }
1141 } else if (error == ERR_FCS)
1142 {
1143 ch->s.rx_crc_errors++;
1144 } else if (error == ERR_ALIGN)
1145 {
1146 ch->s.rx_missed_errors++;
1147 } else if (error == ERR_ABT)
1148 {
1149 ch->s.rx_missed_errors++;
1150 } else if (error == ERR_LNG)
1151 {
1152 ch->s.rx_length_errors++;
1153 } else if (error == ERR_SHT)
1154 {
1155 ch->s.rx_length_errors++;
1156 }
1157 FLUSH_MEM_WRITE ();
c694ed85 1158 status = cxt1e1_max_mru;
50ee11fe
BB
1159 if (ch->p.chan_mode == CFG_CH_PROTO_TRANS)
1160 status |= EOBIRQ_ENABLE;
1161 md->status = cpu_to_le32 (status);
1162
1163 /* Check next mdesc in the ring */
1164 if (++ch->rxix_irq_srv >= ch->rxd_num)
1165 ch->rxix_irq_srv = 0;
1166 FLUSH_MEM_WRITE ();
1167 }
1168}
1169
1170
1171irqreturn_t
1172musycc_intr_th_handler (void *devp)
1173{
1174 ci_t *ci = (ci_t *) devp;
1175 volatile u_int32_t status, currInt = 0;
1176 u_int32_t nextInt, intCnt;
1177
1178 /*
1179 * Hardware not available, potential interrupt hang. But since interrupt
1180 * might be shared, just return.
1181 */
1182 if (ci->state == C_INIT)
1183 {
1184 return IRQ_NONE;
1185 }
1186 /*
1187 * Marked as hardware available. Don't service interrupts, just clear the
1188 * event.
1189 */
1190
1191 if (ci->state == C_IDLE)
1192 {
1193 status = pci_read_32 ((u_int32_t *) &ci->reg->isd);
1194
1195 /* clear the interrupt but process nothing else */
1196 pci_write_32 ((u_int32_t *) &ci->reg->isd, status);
1197 return IRQ_HANDLED;
1198 }
1199 FLUSH_PCI_READ ();
1200 FLUSH_MEM_READ ();
1201
1202 status = pci_read_32 ((u_int32_t *) &ci->reg->isd);
1203 nextInt = INTRPTS_NEXTINT (status);
1204 intCnt = INTRPTS_INTCNT (status);
1205 ci->intlog.drvr_intr_thcount++;
1206
1207 /*********************************************************/
1208 /* HW Bug Fix */
1209 /* ---------- */
1210 /* Under certain PCI Bus loading conditions, the */
1211 /* MUSYCC looses the data associated with an update */
1212 /* of its ISD and erroneously returns the immediately */
1213 /* preceding 'nextInt' value. However, the 'intCnt' */
1214 /* value appears to be correct. By not starting service */
1215 /* where the 'missing' 'nextInt' SHOULD point causes */
1216 /* the IQD not to be serviced - the 'not serviced' */
1217 /* entries then remain and continue to increase as more */
1218 /* incorrect ISD's are encountered. */
1219 /*********************************************************/
1220
1221 if (nextInt != INTRPTS_NEXTINT (ci->intlog.this_status_new))
1222 {
b8b73994 1223 if (cxt1e1_log_level >= LOG_MONITOR)
50ee11fe 1224 {
694a9807 1225 pr_info("%s: note - updated ISD from %08x to %08x\n",
50ee11fe
BB
1226 ci->devname, status,
1227 (status & (~INTRPTS_NEXTINT_M)) | ci->intlog.this_status_new);
1228 }
1229 /*
1230 * Replace bogus status with software corrected value.
1231 *
1232 * It's not known whether, during this problem occurrence, if the
1233 * INTFULL bit is correctly reported or not.
1234 */
1235 status = (status & (~INTRPTS_NEXTINT_M)) | (ci->intlog.this_status_new);
1236 nextInt = INTRPTS_NEXTINT (status);
1237 }
1238 /**********************************************/
1239 /* Cn847x Bug Fix */
1240 /* -------------- */
1241 /* Fix for inability to write back same index */
1242 /* as read for a full interrupt queue. */
1243 /**********************************************/
1244
1245 if (intCnt == INT_QUEUE_SIZE)
1246 {
1247 currInt = ((intCnt - 1) + nextInt) & (INT_QUEUE_SIZE - 1);
1248 } else
1249 /************************************************/
1250 /* Interrupt Write Location Issues */
1251 /* ------------------------------- */
1252 /* When the interrupt status descriptor is */
1253 /* written, the interrupt line is de-asserted */
1254 /* by the Cn847x. In the case of MIPS */
1255 /* microprocessors, this must occur at the */
1256 /* beginning of the interrupt handler so that */
1257 /* the interrupt handle is not re-entered due */
1258 /* to interrupt dis-assertion latency. */
1259 /* In the case of all other processors, this */
1260 /* action should occur at the end of the */
1261 /* interrupt handler to avoid overwriting the */
1262 /* interrupt queue. */
1263 /************************************************/
1264
1265 if (intCnt)
1266 {
1267 currInt = (intCnt + nextInt) & (INT_QUEUE_SIZE - 1);
1268 } else
1269 {
1270 /*
1271 * NOTE: Servicing an interrupt whose ISD contains a count of ZERO
1272 * can be indicative of a Shared Interrupt chain. Our driver can be
1273 * called from the system's interrupt handler as a matter of the OS
1274 * walking the chain. As the chain is walked, the interrupt will
1275 * eventually be serviced by the correct driver/handler.
1276 */
1277#if 0
1278 /* chained interrupt = not ours */
694a9807 1279 pr_info(">> %s: intCnt NULL, sts %x, possibly a chained interrupt!\n",
50ee11fe
BB
1280 ci->devname, status);
1281#endif
1282 return IRQ_NONE;
1283 }
1284
1285 ci->iqp_tailx = currInt;
1286
1287 currInt <<= INTRPTS_NEXTINT_S;
1288 ci->intlog.last_status_new = ci->intlog.this_status_new;
1289 ci->intlog.this_status_new = currInt;
1290
b8b73994 1291 if ((cxt1e1_log_level >= LOG_WARN) && (status & INTRPTS_INTFULL_M))
50ee11fe 1292 {
694a9807 1293 pr_info("%s: Interrupt queue full condition occurred\n", ci->devname);
50ee11fe 1294 }
b8b73994 1295 if (cxt1e1_log_level >= LOG_DEBUG)
694a9807 1296 pr_info("%s: interrupts pending, isd @ 0x%p: %x curr %d cnt %d NEXT %d\n",
50ee11fe
BB
1297 ci->devname, &ci->reg->isd,
1298 status, nextInt, intCnt, (intCnt + nextInt) & (INT_QUEUE_SIZE - 1));
1299
1300 FLUSH_MEM_WRITE ();
1301#if defined(SBE_ISR_TASKLET)
1302 pci_write_32 ((u_int32_t *) &ci->reg->isd, currInt);
1303 atomic_inc (&ci->bh_pending);
1304 tasklet_schedule (&ci->ci_musycc_isr_tasklet);
1305#elif defined(SBE_ISR_IMMEDIATE)
1306 pci_write_32 ((u_int32_t *) &ci->reg->isd, currInt);
1307 atomic_inc (&ci->bh_pending);
1308 queue_task (&ci->ci_musycc_isr_tq, &tq_immediate);
1309 mark_bh (IMMEDIATE_BH);
1310#elif defined(SBE_ISR_INLINE)
1311 (void) musycc_intr_bh_tasklet (ci);
1312 pci_write_32 ((u_int32_t *) &ci->reg->isd, currInt);
1313#endif
1314 return IRQ_HANDLED;
1315}
1316
1317
1318#if defined(SBE_ISR_IMMEDIATE)
1319unsigned long
1320#else
1321void
1322#endif
1323musycc_intr_bh_tasklet (ci_t * ci)
1324{
1325 mpi_t *pi;
1326 mch_t *ch;
1327 unsigned int intCnt;
1328 volatile u_int32_t currInt = 0;
1329 volatile unsigned int headx, tailx;
1330 int readCount, loopCount;
1331 int group, gchan, event, err, tx;
1332 u_int32_t badInt = INT_EMPTY_ENTRY;
1333 u_int32_t badInt2 = INT_EMPTY_ENTRY2;
1334
1335 /*
1336 * Hardware not available, potential interrupt hang. But since interrupt
1337 * might be shared, just return.
1338 */
1339 if ((drvr_state != SBE_DRVR_AVAILABLE) || (ci->state == C_INIT))
1340 {
1341#if defined(SBE_ISR_IMMEDIATE)
1342 return 0L;
1343#else
1344 return;
1345#endif
1346 }
1347#if defined(SBE_ISR_TASKLET) || defined(SBE_ISR_IMMEDIATE)
1348 if (drvr_state != SBE_DRVR_AVAILABLE)
1349 {
1350#if defined(SBE_ISR_TASKLET)
1351 return;
1352#elif defined(SBE_ISR_IMMEDIATE)
1353 return 0L;
1354#endif
1355 }
1356#elif defined(SBE_ISR_INLINE)
1357 /* no semaphore taken, no double checks */
1358#endif
1359
1360 ci->intlog.drvr_intr_bhcount++;
1361 FLUSH_MEM_READ ();
1362 {
1363 unsigned int bh = atomic_read (&ci->bh_pending);
1364
1365 max_bh = max (bh, max_bh);
1366 }
1367 atomic_set (&ci->bh_pending, 0);/* if here, no longer pending */
1368 while ((headx = ci->iqp_headx) != (tailx = ci->iqp_tailx))
1369 {
1370 intCnt = (tailx >= headx) ? (tailx - headx) : (tailx - headx + INT_QUEUE_SIZE);
1371 currInt = le32_to_cpu (ci->iqd_p[headx]);
1372
1373 max_intcnt = max (intCnt, max_intcnt); /* RLD DEBUG */
1374
1375 /**************************************************/
1376 /* HW Bug Fix */
1377 /* ---------- */
1378 /* The following code checks for the condition */
1379 /* of interrupt assertion before interrupt */
1380 /* queue update. This is a problem on several */
1381 /* PCI-Local bridge chips found on some products. */
1382 /**************************************************/
1383
1384 readCount = 0;
1385 if ((currInt == badInt) || (currInt == badInt2))
1386 ci->intlog.drvr_int_failure++;
1387
1388 while ((currInt == badInt) || (currInt == badInt2))
1389 {
1390 for (loopCount = 0; loopCount < 0x30; loopCount++)
1391 OS_uwait_dummy (); /* use call to avoid optimization removal
1392 * of dummy delay */
1393 FLUSH_MEM_READ ();
1394 currInt = le32_to_cpu (ci->iqd_p[headx]);
1395 if (readCount++ > 20)
1396 break;
1397 }
1398
1399 if ((currInt == badInt) || (currInt == badInt2)) /* catch failure of Bug
1400 * Fix checking */
1401 {
b8b73994 1402 if (cxt1e1_log_level >= LOG_WARN)
694a9807 1403 pr_info("%s: Illegal Interrupt Detected @ 0x%p, mod %d.)\n",
50ee11fe
BB
1404 ci->devname, &ci->iqd_p[headx], headx);
1405
1406 /*
1407 * If the descriptor has not recovered, then leaving the EMPTY
1408 * entry set will not signal to the MUSYCC that this descriptor
25985edc 1409 * has been serviced. The Interrupt Queue can then start losing
50ee11fe
BB
1410 * available descriptors and MUSYCC eventually encounters and
1411 * reports the INTFULL condition. Per manual, changing any bit
1412 * marks descriptor as available, thus the use of different
1413 * EMPTY_ENTRY values.
1414 */
1415
1416 if (currInt == badInt)
1417 {
1418 ci->iqd_p[headx] = __constant_cpu_to_le32 (INT_EMPTY_ENTRY2);
1419 } else
1420 {
1421 ci->iqd_p[headx] = __constant_cpu_to_le32 (INT_EMPTY_ENTRY);
1422 }
1423 ci->iqp_headx = (headx + 1) & (INT_QUEUE_SIZE - 1); /* insure wrapness */
1424 FLUSH_MEM_WRITE ();
1425 FLUSH_MEM_READ ();
1426 continue;
1427 }
1428 group = INTRPT_GRP (currInt);
1429 gchan = INTRPT_CH (currInt);
1430 event = INTRPT_EVENT (currInt);
1431 err = INTRPT_ERROR (currInt);
1432 tx = currInt & INTRPT_DIR_M;
1433
1434 ci->iqd_p[headx] = __constant_cpu_to_le32 (INT_EMPTY_ENTRY);
1435 FLUSH_MEM_WRITE ();
1436
b8b73994 1437 if (cxt1e1_log_level >= LOG_DEBUG)
50ee11fe
BB
1438 {
1439 if (err != 0)
694a9807 1440 pr_info(" %08x -> err: %2d,", currInt, err);
50ee11fe 1441
694a9807 1442 pr_info("+ interrupt event: %d, grp: %d, chan: %2d, side: %cX\n",
50ee11fe
BB
1443 event, group, gchan, tx ? 'T' : 'R');
1444 }
1445 pi = &ci->port[group]; /* notice that here we assume 1-1 group -
1446 * port mapping */
1447 ch = pi->chan[gchan];
1448 switch (event)
1449 {
1450 case EVE_SACK: /* Service Request Acknowledge */
b8b73994 1451 if (cxt1e1_log_level >= LOG_DEBUG)
50ee11fe
BB
1452 {
1453 volatile u_int32_t r;
1454
1455 r = pci_read_32 ((u_int32_t *) &pi->reg->srd);
694a9807 1456 pr_info("- SACK cmd: %08x (hdw= %08x)\n", pi->sr_last, r);
50ee11fe
BB
1457 }
1458 SD_SEM_GIVE (&pi->sr_sem_wait); /* wake up waiting process */
1459 break;
1460 case EVE_CHABT: /* Change To Abort Code (0x7e -> 0xff) */
1461 case EVE_CHIC: /* Change To Idle Code (0xff -> 0x7e) */
1462 break;
1463 case EVE_EOM: /* End Of Message */
1464 case EVE_EOB: /* End Of Buffer (Transparent mode) */
1465 if (tx)
1466 {
1467 musycc_bh_tx_eom (pi, gchan);
1468 } else
1469 {
1470 musycc_bh_rx_eom (pi, gchan);
1471 }
1472#if 0
1473 break;
1474#else
1475 /*
1476 * MUSYCC Interrupt Descriptor section states that EOB and EOM
1477 * can be combined with the NONE error (as well as others). So
1478 * drop thru to catch this...
1479 */
1480#endif
1481 case EVE_NONE:
1482 if (err == ERR_SHT)
1483 {
1484 ch->s.rx_length_errors++;
1485 }
1486 break;
1487 default:
b8b73994 1488 if (cxt1e1_log_level >= LOG_WARN)
694a9807 1489 pr_info("%s: unexpected interrupt event: %d, iqd[%d]: %08x, port: %d\n", ci->devname,
50ee11fe
BB
1490 event, headx, currInt, group);
1491 break;
1492 } /* switch on event */
1493
1494
1495 /*
1496 * Per MUSYCC Manual, Section 6.4.8.3 [Transmit Errors], TX errors
1497 * are service-affecting and require action to resume normal
1498 * bit-level processing.
1499 */
1500
1501 switch (err)
1502 {
1503 case ERR_ONR:
1504 /*
1505 * Per MUSYCC manual, Section 6.4.8.3 [Transmit Errors], this
1506 * error requires Transmit channel reactivation.
1507 *
1508 * Per MUSYCC manual, Section 6.4.8.4 [Receive Errors], this error
1509 * requires Receive channel reactivation.
1510 */
1511 if (tx)
1512 {
1513
1514 /*
1515 * TX ONR Error only occurs when channel is configured for
1516 * Transparent Mode. However, this code will catch and
1517 * re-activate on ANY TX ONR error.
1518 */
1519
1520 /*
1521 * Set flag to re-enable on any next transmit attempt.
1522 */
1523 ch->ch_start_tx = CH_START_TX_ONR;
1524
1525 {
1526#ifdef RLD_TRANS_DEBUG
b8b73994 1527 if (1 || cxt1e1_log_level >= LOG_MONITOR)
50ee11fe 1528#else
b8b73994 1529 if (cxt1e1_log_level >= LOG_MONITOR)
50ee11fe
BB
1530#endif
1531 {
694a9807 1532 pr_info("%s: TX buffer underflow [ONR] on channel %d, mode %x QStopped %x free %d\n",
50ee11fe
BB
1533 ci->devname, ch->channum, ch->p.chan_mode, sd_queue_stopped (ch->user), ch->txd_free);
1534#ifdef RLD_DEBUG
1535 if (ch->p.chan_mode == 2) /* problem = ONR on HDLC
1536 * mode */
1537 {
694a9807 1538 pr_info("++ Failed Last %x Next %x QStopped %x, start_tx %x tx_full %d txd_free %d mode %x\n",
50ee11fe
BB
1539 (u_int32_t) ch->txd_irq_srv, (u_int32_t) ch->txd_usr_add,
1540 sd_queue_stopped (ch->user),
1541 ch->ch_start_tx, ch->tx_full, ch->txd_free, ch->p.chan_mode);
1542 musycc_dump_txbuffer_ring (ch, 0);
1543 }
1544#endif
1545 }
1546 }
1547 } else /* RX buffer overrun */
1548 {
1549 /*
1550 * Per MUSYCC manual, Section 6.4.8.4 [Receive Errors],
1551 * channel recovery for this RX ONR error IS required. It is
1552 * also suggested to increase the number of receive buffers
1553 * for this channel. Receive channel reactivation IS
1554 * required, and data has been lost.
1555 */
1556 ch->s.rx_over_errors++;
1557 ch->ch_start_rx = CH_START_RX_ONR;
1558
b8b73994 1559 if (cxt1e1_log_level >= LOG_WARN)
50ee11fe 1560 {
694a9807 1561 pr_info("%s: RX buffer overflow [ONR] on channel %d, mode %x\n",
50ee11fe
BB
1562 ci->devname, ch->channum, ch->p.chan_mode);
1563 //musycc_dump_rxbuffer_ring (ch, 0); /* RLD DEBUG */
1564 }
1565 }
1566 musycc_chan_restart (ch);
1567 break;
1568 case ERR_BUF:
1569 if (tx)
1570 {
1571 ch->s.tx_fifo_errors++;
1572 ch->ch_start_tx = CH_START_TX_BUF;
1573 /*
1574 * Per MUSYCC manual, Section 6.4.8.3 [Transmit Errors],
1575 * this BUFF error requires Transmit channel reactivation.
1576 */
b8b73994 1577 if (cxt1e1_log_level >= LOG_MONITOR)
694a9807 1578 pr_info("%s: TX buffer underrun [BUFF] on channel %d, mode %x\n",
50ee11fe
BB
1579 ci->devname, ch->channum, ch->p.chan_mode);
1580 } else /* RX buffer overrun */
1581 {
1582 ch->s.rx_over_errors++;
1583 /*
1584 * Per MUSYCC manual, Section 6.4.8.4 [Receive Errors], HDLC
1585 * mode requires NO recovery for this RX BUFF error is
1586 * required. It is suggested to increase the FIFO buffer
1587 * space for this channel. Receive channel reactivation is
1588 * not required, but data has been lost.
1589 */
b8b73994 1590 if (cxt1e1_log_level >= LOG_WARN)
694a9807 1591 pr_info("%s: RX buffer overrun [BUFF] on channel %d, mode %x\n",
50ee11fe
BB
1592 ci->devname, ch->channum, ch->p.chan_mode);
1593 /*
1594 * Per MUSYCC manual, Section 6.4.9.4 [Receive Errors],
1595 * Transparent mode DOES require recovery for the RX BUFF
1596 * error. It is suggested to increase the FIFO buffer space
1597 * for this channel. Receive channel reactivation IS
1598 * required and data has been lost.
1599 */
1600 if (ch->p.chan_mode == CFG_CH_PROTO_TRANS)
1601 ch->ch_start_rx = CH_START_RX_BUF;
1602 }
1603
1604 if (tx || (ch->p.chan_mode == CFG_CH_PROTO_TRANS))
1605 musycc_chan_restart (ch);
1606 break;
1607 default:
1608 break;
1609 } /* switch on err */
1610
1611 /* Check for interrupt lost condition */
b8b73994 1612 if ((currInt & INTRPT_ILOST_M) && (cxt1e1_log_level >= LOG_ERROR))
50ee11fe 1613 {
694a9807 1614 pr_info("%s: Interrupt queue overflow - ILOST asserted\n",
50ee11fe
BB
1615 ci->devname);
1616 }
1617 ci->iqp_headx = (headx + 1) & (INT_QUEUE_SIZE - 1); /* insure wrapness */
1618 FLUSH_MEM_WRITE ();
1619 FLUSH_MEM_READ ();
1620 } /* while */
b8b73994 1621 if ((cxt1e1_log_level >= LOG_MONITOR2) && (ci->iqp_headx != ci->iqp_tailx))
50ee11fe
BB
1622 {
1623 int bh;
1624
1625 bh = atomic_read (&CI->bh_pending);
694a9807 1626 pr_info("_bh_: late arrivals, head %d != tail %d, pending %d\n",
50ee11fe
BB
1627 ci->iqp_headx, ci->iqp_tailx, bh);
1628 }
1629#if defined(SBE_ISR_IMMEDIATE)
1630 return 0L;
1631#endif
1632 /* else, nothing returned */
1633}
1634
1635#if 0
1636int __init
1637musycc_new_chan (ci_t * ci, int channum, void *user)
1638{
1639 mch_t *ch;
1640
1641 ch = ci->port[channum / MUSYCC_NCHANS].chan[channum % MUSYCC_NCHANS];
1642
1643 if (ch->state != UNASSIGNED)
1644 return EEXIST;
1645 /* NOTE: mch_t already cleared during OS_kmalloc() */
1646 ch->state = DOWN;
1647 ch->user = user;
1648#if 0
1649 ch->status = 0;
1650 ch->p.status = 0;
1651 ch->p.intr_mask = 0;
1652#endif
1653 ch->p.chan_mode = CFG_CH_PROTO_HDLC_FCS16;
1654 ch->p.idlecode = CFG_CH_FLAG_7E;
1655 ch->p.pad_fill_count = 2;
1656 spin_lock_init (&ch->ch_rxlock);
1657 spin_lock_init (&ch->ch_txlock);
1658
1659 return 0;
1660}
1661#endif
1662
1663
1664#ifdef SBE_PMCC4_ENABLE
1665status_t
1666musycc_chan_down (ci_t * dummy, int channum)
1667{
1668 mpi_t *pi;
1669 mch_t *ch;
1670 int i, gchan;
1671
1672 if (!(ch = sd_find_chan (dummy, channum)))
1673 return EINVAL;
1674 pi = ch->up;
1675 gchan = ch->gchan;
1676
1677 /* Deactivate the channel */
1678 musycc_serv_req (pi, SR_CHANNEL_DEACTIVATE | SR_RX_DIRECTION | gchan);
1679 ch->ch_start_rx = 0;
1680 musycc_serv_req (pi, SR_CHANNEL_DEACTIVATE | SR_TX_DIRECTION | gchan);
1681 ch->ch_start_tx = 0;
1682
1683 if (ch->state == DOWN)
1684 return 0;
1685 ch->state = DOWN;
1686
1687 pi->regram->thp[gchan] = 0;
1688 pi->regram->tmp[gchan] = 0;
1689 pi->regram->rhp[gchan] = 0;
1690 pi->regram->rmp[gchan] = 0;
1691 FLUSH_MEM_WRITE ();
1692 for (i = 0; i < ch->txd_num; i++)
1693 {
1694 if (ch->mdt[i].mem_token != 0)
1695 OS_mem_token_free (ch->mdt[i].mem_token);
1696 }
1697
1698 for (i = 0; i < ch->rxd_num; i++)
1699 {
1700 if (ch->mdr[i].mem_token != 0)
1701 OS_mem_token_free (ch->mdr[i].mem_token);
1702 }
1703
1704 OS_kfree (ch->mdr);
1705 ch->mdr = 0;
1706 ch->rxd_num = 0;
1707 OS_kfree (ch->mdt);
1708 ch->mdt = 0;
1709 ch->txd_num = 0;
1710
1711 musycc_update_timeslots (pi);
1712 c4_fifo_free (pi, ch->gchan);
1713
1714 pi->openchans--;
1715 return 0;
1716}
1717#endif
1718
1719
1720int
1721musycc_del_chan (ci_t * ci, int channum)
1722{
1723 mch_t *ch;
1724
1725 if ((channum < 0) || (channum >= (MUSYCC_NPORTS * MUSYCC_NCHANS))) /* sanity chk param */
1726 return ECHRNG;
1727 if (!(ch = sd_find_chan (ci, channum)))
1728 return ENOENT;
1729 if (ch->state == UP)
1730 musycc_chan_down (ci, channum);
1731 ch->state = UNASSIGNED;
1732 return 0;
1733}
1734
1735
1736int
1737musycc_del_chan_stats (ci_t * ci, int channum)
1738{
1739 mch_t *ch;
1740
1741 if (channum < 0 || channum >= (MUSYCC_NPORTS * MUSYCC_NCHANS)) /* sanity chk param */
1742 return ECHRNG;
1743 if (!(ch = sd_find_chan (ci, channum)))
1744 return ENOENT;
1745
1746 memset (&ch->s, 0, sizeof (struct sbecom_chan_stats));
1747 return 0;
1748}
1749
1750
1751int
1752musycc_start_xmit (ci_t * ci, int channum, void *mem_token)
1753{
1754 mch_t *ch;
1755 struct mdesc *md;
1756 void *m2;
1757#if 0
1758 unsigned long flags;
1759#endif
1760 int txd_need_cnt;
1761 u_int32_t len;
1762
1763 if (!(ch = sd_find_chan (ci, channum)))
1764 return ENOENT;
1765
1766 if (ci->state != C_RUNNING) /* full interrupt processing available */
1767 return EINVAL;
1768 if (ch->state != UP)
1769 return EINVAL;
1770
1771 if (!(ch->status & TX_ENABLED))
1772 return EROFS; /* how else to flag unwritable state ? */
1773
1774#ifdef RLD_TRANS_DEBUGx
b8b73994 1775 if (1 || cxt1e1_log_level >= LOG_MONITOR2)
50ee11fe 1776#else
b8b73994 1777 if (cxt1e1_log_level >= LOG_MONITOR2)
50ee11fe
BB
1778#endif
1779 {
694a9807 1780 pr_info("++ start_xmt[%d]: state %x start %x full %d free %d required %d stopped %x\n",
50ee11fe
BB
1781 channum, ch->state, ch->ch_start_tx, ch->tx_full,
1782 ch->txd_free, ch->txd_required, sd_queue_stopped (ch->user));
1783 }
1784 /***********************************************/
1785 /** Determine total amount of data to be sent **/
1786 /***********************************************/
1787 m2 = mem_token;
1788 txd_need_cnt = 0;
1789 for (len = OS_mem_token_tlen (m2); len > 0;
1790 m2 = (void *) OS_mem_token_next (m2))
1791 {
1792 if (!OS_mem_token_len (m2))
1793 continue;
1794 txd_need_cnt++;
1795 len -= OS_mem_token_len (m2);
1796 }
1797
1798 if (txd_need_cnt == 0)
1799 {
b8b73994 1800 if (cxt1e1_log_level >= LOG_MONITOR2)
694a9807 1801 pr_info("%s channel %d: no TX data in User buffer\n", ci->devname, channum);
50ee11fe
BB
1802 OS_mem_token_free (mem_token);
1803 return 0; /* no data to send */
1804 }
1805 /*************************************************/
1806 /** Are there sufficient descriptors available? **/
1807 /*************************************************/
1808 if (txd_need_cnt > ch->txd_num) /* never enough descriptors for this
1809 * large a buffer */
1810 {
b8b73994 1811 if (cxt1e1_log_level >= LOG_DEBUG)
50ee11fe 1812 {
694a9807 1813 pr_info("start_xmit: discarding buffer, insufficient descriptor cnt %d, need %d.\n",
50ee11fe
BB
1814 ch->txd_num, txd_need_cnt + 1);
1815 }
1816 ch->s.tx_dropped++;
1817 OS_mem_token_free (mem_token);
1818 return 0;
1819 }
1820#if 0
1821 spin_lock_irqsave (&ch->ch_txlock, flags);
1822#endif
1823 /************************************************************/
1824 /** flow control the line if not enough descriptors remain **/
1825 /************************************************************/
1826 if (txd_need_cnt > ch->txd_free)
1827 {
b8b73994 1828 if (cxt1e1_log_level >= LOG_MONITOR2)
50ee11fe 1829 {
694a9807 1830 pr_info("start_xmit[%d]: EBUSY - need more descriptors, have %d of %d need %d\n",
50ee11fe
BB
1831 channum, ch->txd_free, ch->txd_num, txd_need_cnt);
1832 }
1833 ch->tx_full = 1;
1834 ch->txd_required = txd_need_cnt;
1835 sd_disable_xmit (ch->user);
1836#if 0
1837 spin_unlock_irqrestore (&ch->ch_txlock, flags);
1838#endif
1839 return EBUSY; /* tell user to try again later */
1840 }
1841 /**************************************************/
1842 /** Put the user data into MUSYCC data buffer(s) **/
1843 /**************************************************/
1844 m2 = mem_token;
1845 md = ch->txd_usr_add; /* get current available descriptor */
1846
1847 for (len = OS_mem_token_tlen (m2); len > 0; m2 = OS_mem_token_next (m2))
1848 {
1849 int u = OS_mem_token_len (m2);
1850
1851 if (!u)
1852 continue;
1853 len -= u;
1854
1855 /*
1856 * Enable following chunks, yet wait to enable the FIRST chunk until
1857 * after ALL subsequent chunks are setup.
1858 */
1859 if (md != ch->txd_usr_add) /* not first chunk */
1860 u |= MUSYCC_TX_OWNED; /* transfer ownership from HOST to MUSYCC */
1861
1862 if (len) /* not last chunk */
1863 u |= EOBIRQ_ENABLE;
1864 else if (ch->p.chan_mode == CFG_CH_PROTO_TRANS)
1865 {
1866 /*
1867 * Per MUSYCC Ref 6.4.9 for Transparent Mode, the host must
1868 * always clear EOMIRQ_ENABLE in every Transmit Buffer Descriptor
1869 * (IE. don't set herein).
1870 */
1871 u |= EOBIRQ_ENABLE;
1872 } else
1873 u |= EOMIRQ_ENABLE; /* EOM, last HDLC chunk */
1874
1875
1876 /* last chunk in hdlc mode */
1877 u |= (ch->p.idlecode << IDLE_CODE);
1878 if (ch->p.pad_fill_count)
1879 {
1880#if 0
1881 /* NOOP NOTE: u_int8_t cannot be > 0xFF */
1882 /* sanitize pad_fill_count for maximums allowed by hardware */
1883 if (ch->p.pad_fill_count > EXTRA_FLAGS_MASK)
1884 ch->p.pad_fill_count = EXTRA_FLAGS_MASK;
1885#endif
1886 u |= (PADFILL_ENABLE | (ch->p.pad_fill_count << EXTRA_FLAGS));
1887 }
1888 md->mem_token = len ? 0 : mem_token; /* Fill in mds on last
1889 * segment, others set ZERO
1890 * so that entire token is
1891 * removed ONLY when ALL
1892 * segments have been
1893 * transmitted. */
1894
1895 md->data = cpu_to_le32 (OS_vtophys (OS_mem_token_data (m2)));
1896 FLUSH_MEM_WRITE ();
1897 md->status = cpu_to_le32 (u);
1898 --ch->txd_free;
1899 md = md->snext;
1900 }
1901 FLUSH_MEM_WRITE ();
1902
1903
1904 /*
1905 * Now transfer ownership of first chunk from HOST to MUSYCC in order to
1906 * fire-off this XMIT.
1907 */
1908 ch->txd_usr_add->status |= __constant_cpu_to_le32 (MUSYCC_TX_OWNED);
1909 FLUSH_MEM_WRITE ();
1910 ch->txd_usr_add = md;
1911
1912 len = OS_mem_token_tlen (mem_token);
1913 atomic_add (len, &ch->tx_pending);
1914 atomic_add (len, &ci->tx_pending);
1915 ch->s.tx_packets++;
1916 ch->s.tx_bytes += len;
50ee11fe
BB
1917 /*
1918 * If an ONR was seen, then channel requires poking to restart
1919 * transmission.
1920 */
1921 if (ch->ch_start_tx)
1922 {
50ee11fe 1923 musycc_chan_restart (ch);
50ee11fe
BB
1924 }
1925#ifdef SBE_WAN256T3_ENABLE
1926 wan256t3_led (ci, LED_TX, LEDV_G);
1927#endif
1928 return 0;
1929}
1930
1931
50ee11fe 1932/*** End-of-File ***/
This page took 0.249986 seconds and 5 git commands to generate.