2005-04-16 22:20:36 +00:00
|
|
|
/* gerdes_amd7930.c,v 0.99 2001/10/02
|
|
|
|
*
|
|
|
|
* gerdes_amd7930.c Amd 79C30A and 79C32A specific routines
|
|
|
|
* (based on HiSax driver by Karsten Keil)
|
|
|
|
*
|
|
|
|
* Author Christoph Ersfeld <info@formula-n.de>
|
|
|
|
* Formula-n Europe AG (www.formula-n.com)
|
|
|
|
* previously Gerdes AG
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This file is (c) under GNU PUBLIC LICENSE
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Notes:
|
|
|
|
* Version 0.99 is the first release of this driver and there are
|
|
|
|
* certainly a few bugs.
|
|
|
|
*
|
|
|
|
* Please don't report any malfunction to me without sending
|
|
|
|
* (compressed) debug-logs.
|
|
|
|
* It would be nearly impossible to retrace it.
|
|
|
|
*
|
|
|
|
* Log D-channel-processing as follows:
|
|
|
|
*
|
|
|
|
* 1. Load hisax with card-specific parameters, this example ist for
|
|
|
|
* Formula-n enter:now ISDN PCI and compatible
|
|
|
|
* (f.e. Gerdes Power ISDN PCI)
|
|
|
|
*
|
|
|
|
* modprobe hisax type=41 protocol=2 id=gerdes
|
|
|
|
*
|
|
|
|
* if you chose an other value for id, you need to modify the
|
|
|
|
* code below, too.
|
|
|
|
*
|
|
|
|
* 2. set debug-level
|
|
|
|
*
|
|
|
|
* hisaxctrl gerdes 1 0x3ff
|
|
|
|
* hisaxctrl gerdes 11 0x4f
|
|
|
|
* cat /dev/isdnctrl >> ~/log &
|
|
|
|
*
|
|
|
|
* Please take also a look into /var/log/messages if there is
|
|
|
|
* anything importand concerning HISAX.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Credits:
|
|
|
|
* Programming the driver for Formula-n enter:now ISDN PCI and
|
|
|
|
* necessary this driver for the used Amd 7930 D-channel-controller
|
|
|
|
* was spnsored by Formula-n Europe AG.
|
|
|
|
* Thanks to Karsten Keil and Petr Novak, who gave me support in
|
|
|
|
* Hisax-specific questions.
|
|
|
|
* I want so say special thanks to Carl-Friedrich Braun, who had to
|
|
|
|
* answer a lot of questions about generally ISDN and about handling
|
|
|
|
* of the Amd-Chip.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "hisax.h"
|
|
|
|
#include "isdnl1.h"
|
|
|
|
#include "isac.h"
|
|
|
|
#include "amd7930_fn.h"
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/init.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/gfp.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
static void Amd7930_new_ph(struct IsdnCardState *cs);
|
|
|
|
|
|
|
|
static WORD initAMD[] = {
|
|
|
|
0x0100,
|
|
|
|
|
|
|
|
0x00A5, 3, 0x01, 0x40, 0x58, // LPR, LMR1, LMR2
|
|
|
|
0x0086, 1, 0x0B, // DMR1 (D-Buffer TH-Interrupts on)
|
|
|
|
0x0087, 1, 0xFF, // DMR2
|
|
|
|
0x0092, 1, 0x03, // EFCR (extended mode d-channel-fifo on)
|
|
|
|
0x0090, 4, 0xFE, 0xFF, 0x02, 0x0F, // FRAR4, SRAR4, DMR3, DMR4 (address recognition )
|
|
|
|
0x0084, 2, 0x80, 0x00, // DRLR
|
|
|
|
0x00C0, 1, 0x47, // PPCR1
|
|
|
|
0x00C8, 1, 0x01, // PPCR2
|
|
|
|
|
|
|
|
0x0102,
|
|
|
|
0x0107,
|
|
|
|
0x01A1, 1,
|
|
|
|
0x0121, 1,
|
|
|
|
0x0189, 2,
|
|
|
|
|
|
|
|
0x0045, 4, 0x61, 0x72, 0x00, 0x00, // MCR1, MCR2, MCR3, MCR4
|
|
|
|
0x0063, 2, 0x08, 0x08, // GX
|
|
|
|
0x0064, 2, 0x08, 0x08, // GR
|
|
|
|
0x0065, 2, 0x99, 0x00, // GER
|
|
|
|
0x0066, 2, 0x7C, 0x8B, // STG
|
|
|
|
0x0067, 2, 0x00, 0x00, // FTGR1, FTGR2
|
|
|
|
0x0068, 2, 0x20, 0x20, // ATGR1, ATGR2
|
|
|
|
0x0069, 1, 0x4F, // MMR1
|
|
|
|
0x006A, 1, 0x00, // MMR2
|
|
|
|
0x006C, 1, 0x40, // MMR3
|
|
|
|
0x0021, 1, 0x02, // INIT
|
|
|
|
0x00A3, 1, 0x40, // LMR1
|
|
|
|
|
|
|
|
0xFFFF
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-06-25 21:59:18 +00:00
|
|
|
static void /* macro wWordAMD */
|
2005-04-16 22:20:36 +00:00
|
|
|
WriteWordAmd7930(struct IsdnCardState *cs, BYTE reg, WORD val)
|
|
|
|
{
|
2012-02-20 03:52:38 +00:00
|
|
|
wByteAMD(cs, 0x00, reg);
|
|
|
|
wByteAMD(cs, 0x01, LOBYTE(val));
|
|
|
|
wByteAMD(cs, 0x01, HIBYTE(val));
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-06-25 21:59:18 +00:00
|
|
|
static WORD /* macro rWordAMD */
|
2005-04-16 22:20:36 +00:00
|
|
|
ReadWordAmd7930(struct IsdnCardState *cs, BYTE reg)
|
|
|
|
{
|
2012-02-20 03:52:38 +00:00
|
|
|
WORD res;
|
|
|
|
/* direct access register */
|
|
|
|
if (reg < 8) {
|
|
|
|
res = rByteAMD(cs, reg);
|
|
|
|
res += 256 * rByteAMD(cs, reg);
|
|
|
|
}
|
|
|
|
/* indirect access register */
|
|
|
|
else {
|
|
|
|
wByteAMD(cs, 0x00, reg);
|
|
|
|
res = rByteAMD(cs, 0x01);
|
|
|
|
res += 256 * rByteAMD(cs, 0x01);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
return (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
Amd7930_ph_command(struct IsdnCardState *cs, u_char command, char *s)
|
|
|
|
{
|
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
|
|
|
debugl1(cs, "AMD7930: %s: ph_command 0x%02X", s, command);
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
cs->dc.amd7930.lmr1 = command;
|
|
|
|
wByteAMD(cs, 0xA3, command);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static BYTE i430States[] = {
|
|
|
|
// to reset F3 F4 F5 F6 F7 F8 AR from
|
2012-02-20 03:52:38 +00:00
|
|
|
0x01, 0x02, 0x00, 0x00, 0x00, 0x07, 0x05, 0x00, // init
|
|
|
|
0x01, 0x02, 0x00, 0x00, 0x00, 0x07, 0x05, 0x00, // reset
|
|
|
|
0x01, 0x02, 0x00, 0x00, 0x00, 0x09, 0x05, 0x04, // F3
|
|
|
|
0x01, 0x02, 0x00, 0x00, 0x1B, 0x00, 0x00, 0x00, // F4
|
|
|
|
0x01, 0x02, 0x00, 0x00, 0x1B, 0x00, 0x00, 0x00, // F5
|
|
|
|
0x01, 0x03, 0x00, 0x00, 0x00, 0x06, 0x05, 0x00, // F6
|
|
|
|
0x11, 0x13, 0x00, 0x00, 0x1B, 0x00, 0x15, 0x00, // F7
|
|
|
|
0x01, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, // F8
|
|
|
|
0x01, 0x03, 0x00, 0x00, 0x00, 0x09, 0x00, 0x0A}; // AR
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Row init - reset F3 F4 F5 F6 F7 F8 AR */
|
|
|
|
static BYTE stateHelper[] = { 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08 };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
Amd7930_get_state(struct IsdnCardState *cs) {
|
2012-02-20 03:52:38 +00:00
|
|
|
BYTE lsr = rByteAMD(cs, 0xA1);
|
|
|
|
cs->dc.amd7930.ph_state = (lsr & 0x7) + 2;
|
|
|
|
Amd7930_new_ph(cs);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
Amd7930_new_ph(struct IsdnCardState *cs)
|
|
|
|
{
|
2012-02-20 03:52:38 +00:00
|
|
|
u_char index = stateHelper[cs->dc.amd7930.old_state] * 8 + stateHelper[cs->dc.amd7930.ph_state] - 1;
|
|
|
|
u_char message = i430States[index];
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
2005-04-16 22:20:36 +00:00
|
|
|
debugl1(cs, "AMD7930: new_ph %d, old_ph %d, message %d, index %d",
|
2012-02-20 03:52:38 +00:00
|
|
|
cs->dc.amd7930.ph_state, cs->dc.amd7930.old_state, message & 0x0f, index);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
cs->dc.amd7930.old_state = cs->dc.amd7930.ph_state;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
/* abort transmit if nessesary */
|
|
|
|
if ((message & 0xf0) && (cs->tx_skb)) {
|
|
|
|
wByteAMD(cs, 0x21, 0xC2);
|
|
|
|
wByteAMD(cs, 0x21, 0x02);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
switch (message & 0x0f) {
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
case (1):
|
|
|
|
l1_msg(cs, HW_RESET | INDICATION, NULL);
|
|
|
|
Amd7930_get_state(cs);
|
|
|
|
break;
|
|
|
|
case (2): /* init, Card starts in F3 */
|
|
|
|
l1_msg(cs, HW_DEACTIVATE | CONFIRM, NULL);
|
|
|
|
break;
|
|
|
|
case (3):
|
|
|
|
l1_msg(cs, HW_DEACTIVATE | INDICATION, NULL);
|
|
|
|
break;
|
|
|
|
case (4):
|
|
|
|
l1_msg(cs, HW_POWERUP | CONFIRM, NULL);
|
|
|
|
Amd7930_ph_command(cs, 0x50, "HW_ENABLE REQUEST");
|
|
|
|
break;
|
|
|
|
case (5):
|
|
|
|
l1_msg(cs, HW_RSYNC | INDICATION, NULL);
|
|
|
|
break;
|
|
|
|
case (6):
|
|
|
|
l1_msg(cs, HW_INFO4_P8 | INDICATION, NULL);
|
|
|
|
break;
|
|
|
|
case (7): /* init, Card starts in F7 */
|
|
|
|
l1_msg(cs, HW_RSYNC | INDICATION, NULL);
|
|
|
|
l1_msg(cs, HW_INFO4_P8 | INDICATION, NULL);
|
|
|
|
break;
|
|
|
|
case (8):
|
|
|
|
l1_msg(cs, HW_POWERUP | CONFIRM, NULL);
|
|
|
|
/* fall through */
|
|
|
|
case (9):
|
|
|
|
Amd7930_ph_command(cs, 0x40, "HW_ENABLE REQ cleared if set");
|
|
|
|
l1_msg(cs, HW_RSYNC | INDICATION, NULL);
|
|
|
|
l1_msg(cs, HW_INFO2 | INDICATION, NULL);
|
|
|
|
l1_msg(cs, HW_INFO4_P8 | INDICATION, NULL);
|
|
|
|
break;
|
|
|
|
case (10):
|
|
|
|
Amd7930_ph_command(cs, 0x40, "T3 expired, HW_ENABLE REQ cleared");
|
|
|
|
cs->dc.amd7930.old_state = 3;
|
|
|
|
break;
|
|
|
|
case (11):
|
|
|
|
l1_msg(cs, HW_INFO2 | INDICATION, NULL);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2006-11-22 14:57:56 +00:00
|
|
|
Amd7930_bh(struct work_struct *work)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-11-22 14:57:56 +00:00
|
|
|
struct IsdnCardState *cs =
|
|
|
|
container_of(work, struct IsdnCardState, tqueue);
|
2012-02-20 03:52:38 +00:00
|
|
|
struct PStack *stptr;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (test_and_clear_bit(D_CLEARBUSY, &cs->event)) {
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->debug)
|
2005-04-16 22:20:36 +00:00
|
|
|
debugl1(cs, "Amd7930: bh, D-Channel Busy cleared");
|
|
|
|
stptr = cs->stlist;
|
|
|
|
while (stptr != NULL) {
|
|
|
|
stptr->l1.l1l2(stptr, PH_PAUSE | CONFIRM, NULL);
|
|
|
|
stptr = stptr->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (test_and_clear_bit(D_L1STATECHANGE, &cs->event)) {
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
|
|
|
debugl1(cs, "AMD7930: bh, D_L1STATECHANGE");
|
|
|
|
Amd7930_new_ph(cs);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (test_and_clear_bit(D_RCVBUFREADY, &cs->event)) {
|
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
|
|
|
debugl1(cs, "AMD7930: bh, D_RCVBUFREADY");
|
|
|
|
DChannel_proc_rcv(cs);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (test_and_clear_bit(D_XMTBUFREADY, &cs->event)) {
|
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
|
|
|
debugl1(cs, "AMD7930: bh, D_XMTBUFREADY");
|
|
|
|
DChannel_proc_xmt(cs);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
Amd7930_empty_Dfifo(struct IsdnCardState *cs, int flag)
|
|
|
|
{
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
BYTE stat, der;
|
2005-04-16 22:20:36 +00:00
|
|
|
BYTE *ptr;
|
|
|
|
struct sk_buff *skb;
|
|
|
|
|
|
|
|
|
|
|
|
if ((cs->debug & L1_DEB_ISAC) && !(cs->debug & L1_DEB_ISAC_FIFO))
|
|
|
|
debugl1(cs, "Amd7930: empty_Dfifo");
|
|
|
|
|
|
|
|
|
|
|
|
ptr = cs->rcvbuf + cs->rcvidx;
|
|
|
|
|
|
|
|
/* AMD interrupts off */
|
|
|
|
AmdIrqOff(cs);
|
|
|
|
|
|
|
|
/* read D-Channel-Fifo*/
|
|
|
|
stat = rByteAMD(cs, 0x07); // DSR2
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
/* while Data in Fifo ... */
|
|
|
|
while ((stat & 2) && ((ptr-cs->rcvbuf) < MAX_DFRAME_LEN_L1)) {
|
|
|
|
*ptr = rByteAMD(cs, 0x04); // DCRB
|
|
|
|
ptr++;
|
|
|
|
stat = rByteAMD(cs, 0x07); // DSR2
|
|
|
|
cs->rcvidx = ptr - cs->rcvbuf;
|
|
|
|
|
|
|
|
/* Paket ready? */
|
|
|
|
if (stat & 1) {
|
|
|
|
|
|
|
|
der = rWordAMD(cs, 0x03);
|
|
|
|
|
|
|
|
/* no errors, packet ok */
|
|
|
|
if (!der && !flag) {
|
|
|
|
rWordAMD(cs, 0x89); // clear DRCR
|
|
|
|
|
|
|
|
if ((cs->rcvidx) > 0) {
|
|
|
|
if (!(skb = alloc_skb(cs->rcvidx, GFP_ATOMIC)))
|
|
|
|
printk(KERN_WARNING "HiSax: Amd7930: empty_Dfifo, D receive out of memory!\n");
|
|
|
|
else {
|
|
|
|
/* Debugging */
|
|
|
|
if (cs->debug & L1_DEB_ISAC_FIFO) {
|
|
|
|
char *t = cs->dlog;
|
|
|
|
|
|
|
|
t += sprintf(t, "Amd7930: empty_Dfifo cnt: %d |", cs->rcvidx);
|
|
|
|
QuickHex(t, cs->rcvbuf, cs->rcvidx);
|
|
|
|
debugl1(cs, cs->dlog);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2012-02-20 03:52:38 +00:00
|
|
|
/* moves received data in sk-buffer */
|
|
|
|
memcpy(skb_put(skb, cs->rcvidx), cs->rcvbuf, cs->rcvidx);
|
|
|
|
skb_queue_tail(&cs->rq, skb);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
2012-02-20 03:52:38 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2012-02-20 03:52:38 +00:00
|
|
|
/* throw damaged packets away, reset receive-buffer, indicate RX */
|
|
|
|
ptr = cs->rcvbuf;
|
2005-04-16 22:20:36 +00:00
|
|
|
cs->rcvidx = 0;
|
2012-02-20 03:52:38 +00:00
|
|
|
schedule_event(cs, D_RCVBUFREADY);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2012-02-20 03:52:38 +00:00
|
|
|
}
|
|
|
|
/* Packet to long, overflow */
|
|
|
|
if (cs->rcvidx >= MAX_DFRAME_LEN_L1) {
|
|
|
|
if (cs->debug & L1_DEB_WARN)
|
|
|
|
debugl1(cs, "AMD7930: empty_Dfifo L2-Framelength overrun");
|
|
|
|
cs->rcvidx = 0;
|
|
|
|
return;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
/* AMD interrupts on */
|
|
|
|
AmdIrqOn(cs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
Amd7930_fill_Dfifo(struct IsdnCardState *cs)
|
|
|
|
{
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
WORD dtcrr, dtcrw, len, count;
|
|
|
|
BYTE txstat, dmr3;
|
|
|
|
BYTE *ptr, *deb_ptr;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if ((cs->debug & L1_DEB_ISAC) && !(cs->debug & L1_DEB_ISAC_FIFO))
|
|
|
|
debugl1(cs, "Amd7930: fill_Dfifo");
|
|
|
|
|
|
|
|
if ((!cs->tx_skb) || (cs->tx_skb->len <= 0))
|
|
|
|
return;
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
dtcrw = 0;
|
|
|
|
if (!cs->dc.amd7930.tx_xmtlen)
|
|
|
|
/* new Frame */
|
|
|
|
len = dtcrw = cs->tx_skb->len;
|
|
|
|
/* continue frame */
|
|
|
|
else len = cs->dc.amd7930.tx_xmtlen;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* AMD interrupts off */
|
|
|
|
AmdIrqOff(cs);
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
deb_ptr = ptr = cs->tx_skb->data;
|
|
|
|
|
|
|
|
/* while free place in tx-fifo available and data in sk-buffer */
|
|
|
|
txstat = 0x10;
|
|
|
|
while ((txstat & 0x10) && (cs->tx_cnt < len)) {
|
|
|
|
wByteAMD(cs, 0x04, *ptr);
|
|
|
|
ptr++;
|
|
|
|
cs->tx_cnt++;
|
|
|
|
txstat = rByteAMD(cs, 0x07);
|
|
|
|
}
|
|
|
|
count = ptr - cs->tx_skb->data;
|
2005-04-16 22:20:36 +00:00
|
|
|
skb_pull(cs->tx_skb, count);
|
|
|
|
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
dtcrr = rWordAMD(cs, 0x85); // DTCR
|
|
|
|
dmr3 = rByteAMD(cs, 0x8E);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (cs->debug & L1_DEB_ISAC) {
|
|
|
|
debugl1(cs, "Amd7930: fill_Dfifo, DMR3: 0x%02X, DTCR read: 0x%04X write: 0x%02X 0x%02X", dmr3, dtcrr, LOBYTE(dtcrw), HIBYTE(dtcrw));
|
2012-02-20 03:52:38 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
/* writeing of dtcrw starts transmit */
|
|
|
|
if (!cs->dc.amd7930.tx_xmtlen) {
|
|
|
|
wWordAMD(cs, 0x85, dtcrw);
|
|
|
|
cs->dc.amd7930.tx_xmtlen = dtcrw;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (test_and_set_bit(FLG_DBUSY_TIMER, &cs->HW_Flags)) {
|
|
|
|
debugl1(cs, "Amd7930: fill_Dfifo dbusytimer running");
|
|
|
|
del_timer(&cs->dbusytimer);
|
|
|
|
}
|
|
|
|
init_timer(&cs->dbusytimer);
|
|
|
|
cs->dbusytimer.expires = jiffies + ((DBUSY_TIMER_VALUE * HZ) / 1000);
|
|
|
|
add_timer(&cs->dbusytimer);
|
|
|
|
|
|
|
|
if (cs->debug & L1_DEB_ISAC_FIFO) {
|
|
|
|
char *t = cs->dlog;
|
|
|
|
|
|
|
|
t += sprintf(t, "Amd7930: fill_Dfifo cnt: %d |", count);
|
|
|
|
QuickHex(t, deb_ptr, count);
|
|
|
|
debugl1(cs, cs->dlog);
|
|
|
|
}
|
|
|
|
/* AMD interrupts on */
|
2012-02-20 03:52:38 +00:00
|
|
|
AmdIrqOn(cs);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Amd7930_interrupt(struct IsdnCardState *cs, BYTE irflags)
|
|
|
|
{
|
|
|
|
BYTE dsr1, dsr2, lsr;
|
2012-02-20 03:52:38 +00:00
|
|
|
WORD der;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
while (irflags)
|
|
|
|
{
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
dsr1 = rByteAMD(cs, 0x02);
|
|
|
|
der = rWordAMD(cs, 0x03);
|
|
|
|
dsr2 = rByteAMD(cs, 0x07);
|
|
|
|
lsr = rByteAMD(cs, 0xA1);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
|
|
|
debugl1(cs, "Amd7930: interrupt: flags: 0x%02X, DSR1: 0x%02X, DSR2: 0x%02X, LSR: 0x%02X, DER=0x%04X", irflags, dsr1, dsr2, lsr, der);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
/* D error -> read DER and DSR2 bit 2 */
|
|
|
|
if (der || (dsr2 & 4)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->debug & L1_DEB_WARN)
|
|
|
|
debugl1(cs, "Amd7930: interrupt: D error DER=0x%04X", der);
|
|
|
|
|
|
|
|
/* RX, TX abort if collision detected */
|
|
|
|
if (der & 2) {
|
|
|
|
wByteAMD(cs, 0x21, 0xC2);
|
|
|
|
wByteAMD(cs, 0x21, 0x02);
|
|
|
|
if (test_and_clear_bit(FLG_DBUSY_TIMER, &cs->HW_Flags))
|
|
|
|
del_timer(&cs->dbusytimer);
|
|
|
|
if (test_and_clear_bit(FLG_L1_DBUSY, &cs->HW_Flags))
|
|
|
|
schedule_event(cs, D_CLEARBUSY);
|
|
|
|
/* restart frame */
|
|
|
|
if (cs->tx_skb) {
|
|
|
|
skb_push(cs->tx_skb, cs->tx_cnt);
|
|
|
|
cs->tx_cnt = 0;
|
|
|
|
cs->dc.amd7930.tx_xmtlen = 0;
|
|
|
|
Amd7930_fill_Dfifo(cs);
|
|
|
|
} else {
|
|
|
|
printk(KERN_WARNING "HiSax: Amd7930 D-Collision, no skb\n");
|
|
|
|
debugl1(cs, "Amd7930: interrupt: D-Collision, no skb");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* remove damaged data from fifo */
|
|
|
|
Amd7930_empty_Dfifo(cs, 1);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (test_and_clear_bit(FLG_DBUSY_TIMER, &cs->HW_Flags))
|
|
|
|
del_timer(&cs->dbusytimer);
|
|
|
|
if (test_and_clear_bit(FLG_L1_DBUSY, &cs->HW_Flags))
|
|
|
|
schedule_event(cs, D_CLEARBUSY);
|
2012-02-20 03:52:38 +00:00
|
|
|
/* restart TX-Frame */
|
|
|
|
if (cs->tx_skb) {
|
2005-04-16 22:20:36 +00:00
|
|
|
skb_push(cs->tx_skb, cs->tx_cnt);
|
|
|
|
cs->tx_cnt = 0;
|
2012-02-20 03:52:38 +00:00
|
|
|
cs->dc.amd7930.tx_xmtlen = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
Amd7930_fill_Dfifo(cs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
/* D TX FIFO empty -> fill */
|
|
|
|
if (irflags & 1) {
|
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
|
|
|
debugl1(cs, "Amd7930: interrupt: clear Timer and fill D-TX-FIFO if data");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
/* AMD interrupts off */
|
|
|
|
AmdIrqOff(cs);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
if (test_and_clear_bit(FLG_DBUSY_TIMER, &cs->HW_Flags))
|
|
|
|
del_timer(&cs->dbusytimer);
|
|
|
|
if (test_and_clear_bit(FLG_L1_DBUSY, &cs->HW_Flags))
|
|
|
|
schedule_event(cs, D_CLEARBUSY);
|
|
|
|
if (cs->tx_skb) {
|
|
|
|
if (cs->tx_skb->len)
|
|
|
|
Amd7930_fill_Dfifo(cs);
|
|
|
|
}
|
|
|
|
/* AMD interrupts on */
|
|
|
|
AmdIrqOn(cs);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
/* D RX FIFO full or tiny packet in Fifo -> empty */
|
|
|
|
if ((irflags & 2) || (dsr1 & 2)) {
|
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
|
|
|
debugl1(cs, "Amd7930: interrupt: empty D-FIFO");
|
|
|
|
Amd7930_empty_Dfifo(cs, 0);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
/* D-Frame transmit complete */
|
|
|
|
if (dsr1 & 64) {
|
|
|
|
if (cs->debug & L1_DEB_ISAC) {
|
|
|
|
debugl1(cs, "Amd7930: interrupt: transmit packet ready");
|
|
|
|
}
|
|
|
|
/* AMD interrupts off */
|
|
|
|
AmdIrqOff(cs);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
if (test_and_clear_bit(FLG_DBUSY_TIMER, &cs->HW_Flags))
|
|
|
|
del_timer(&cs->dbusytimer);
|
|
|
|
if (test_and_clear_bit(FLG_L1_DBUSY, &cs->HW_Flags))
|
|
|
|
schedule_event(cs, D_CLEARBUSY);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->tx_skb) {
|
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
|
|
|
debugl1(cs, "Amd7930: interrupt: TX-Packet ready, freeing skb");
|
|
|
|
dev_kfree_skb_irq(cs->tx_skb);
|
|
|
|
cs->tx_cnt = 0;
|
|
|
|
cs->dc.amd7930.tx_xmtlen = 0;
|
|
|
|
cs->tx_skb = NULL;
|
|
|
|
}
|
|
|
|
if ((cs->tx_skb = skb_dequeue(&cs->sq))) {
|
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
|
|
|
debugl1(cs, "Amd7930: interrupt: TX-Packet ready, next packet dequeued");
|
|
|
|
cs->tx_cnt = 0;
|
|
|
|
cs->dc.amd7930.tx_xmtlen = 0;
|
|
|
|
Amd7930_fill_Dfifo(cs);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
schedule_event(cs, D_XMTBUFREADY);
|
|
|
|
/* AMD interrupts on */
|
|
|
|
AmdIrqOn(cs);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
/* LIU status interrupt -> read LSR, check statechanges */
|
|
|
|
if (lsr & 0x38) {
|
|
|
|
/* AMD interrupts off */
|
|
|
|
AmdIrqOff(cs);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
|
|
|
debugl1(cs, "Amd: interrupt: LSR=0x%02X, LIU is in state %d", lsr, ((lsr & 0x7) + 2));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
cs->dc.amd7930.ph_state = (lsr & 0x7) + 2;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
schedule_event(cs, D_L1STATECHANGE);
|
|
|
|
/* AMD interrupts on */
|
|
|
|
AmdIrqOn(cs);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
/* reads Interrupt-Register again. If there is a new interrupt-flag: restart handler */
|
|
|
|
irflags = rByteAMD(cs, 0x00);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
Amd7930_l1hw(struct PStack *st, int pr, void *arg)
|
|
|
|
{
|
2012-02-20 03:52:38 +00:00
|
|
|
struct IsdnCardState *cs = (struct IsdnCardState *) st->l1.hardware;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct sk_buff *skb = arg;
|
|
|
|
u_long flags;
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
2005-04-16 22:20:36 +00:00
|
|
|
debugl1(cs, "Amd7930: l1hw called, pr: 0x%04X", pr);
|
|
|
|
|
|
|
|
switch (pr) {
|
2012-02-20 03:52:38 +00:00
|
|
|
case (PH_DATA | REQUEST):
|
|
|
|
if (cs->debug & DEB_DLOG_HEX)
|
|
|
|
LogFrame(cs, skb->data, skb->len);
|
|
|
|
if (cs->debug & DEB_DLOG_VERBOSE)
|
|
|
|
dlogframe(cs, skb, 0);
|
|
|
|
spin_lock_irqsave(&cs->lock, flags);
|
|
|
|
if (cs->tx_skb) {
|
|
|
|
skb_queue_tail(&cs->sq, skb);
|
2005-04-16 22:20:36 +00:00
|
|
|
#ifdef L2FRAME_DEBUG /* psa */
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->debug & L1_DEB_LAPD)
|
|
|
|
Logl2Frame(cs, skb, "Amd7930: l1hw: PH_DATA Queued", 0);
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
2012-02-20 03:52:38 +00:00
|
|
|
} else {
|
2005-04-16 22:20:36 +00:00
|
|
|
cs->tx_skb = skb;
|
|
|
|
cs->tx_cnt = 0;
|
2012-02-20 03:52:38 +00:00
|
|
|
cs->dc.amd7930.tx_xmtlen = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
#ifdef L2FRAME_DEBUG /* psa */
|
|
|
|
if (cs->debug & L1_DEB_LAPD)
|
2012-02-20 03:52:38 +00:00
|
|
|
Logl2Frame(cs, skb, "Amd7930: l1hw: PH_DATA", 0);
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
Amd7930_fill_Dfifo(cs);
|
2012-02-20 03:52:38 +00:00
|
|
|
}
|
|
|
|
spin_unlock_irqrestore(&cs->lock, flags);
|
|
|
|
break;
|
|
|
|
case (PH_PULL | INDICATION):
|
|
|
|
spin_lock_irqsave(&cs->lock, flags);
|
|
|
|
if (cs->tx_skb) {
|
|
|
|
if (cs->debug & L1_DEB_WARN)
|
|
|
|
debugl1(cs, "Amd7930: l1hw: l2l1 tx_skb exist this shouldn't happen");
|
|
|
|
skb_queue_tail(&cs->sq, skb);
|
2005-04-16 22:20:36 +00:00
|
|
|
spin_unlock_irqrestore(&cs->lock, flags);
|
|
|
|
break;
|
2012-02-20 03:52:38 +00:00
|
|
|
}
|
|
|
|
if (cs->debug & DEB_DLOG_HEX)
|
|
|
|
LogFrame(cs, skb->data, skb->len);
|
|
|
|
if (cs->debug & DEB_DLOG_VERBOSE)
|
|
|
|
dlogframe(cs, skb, 0);
|
|
|
|
cs->tx_skb = skb;
|
|
|
|
cs->tx_cnt = 0;
|
|
|
|
cs->dc.amd7930.tx_xmtlen = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
#ifdef L2FRAME_DEBUG /* psa */
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->debug & L1_DEB_LAPD)
|
|
|
|
Logl2Frame(cs, skb, "Amd7930: l1hw: PH_DATA_PULLED", 0);
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
2012-02-20 03:52:38 +00:00
|
|
|
Amd7930_fill_Dfifo(cs);
|
|
|
|
spin_unlock_irqrestore(&cs->lock, flags);
|
|
|
|
break;
|
|
|
|
case (PH_PULL | REQUEST):
|
|
|
|
#ifdef L2FRAME_DEBUG /* psa */
|
|
|
|
if (cs->debug & L1_DEB_LAPD)
|
|
|
|
debugl1(cs, "Amd7930: l1hw: -> PH_REQUEST_PULL, skb: %s", (cs->tx_skb) ? "yes" : "no");
|
|
|
|
#endif
|
|
|
|
if (!cs->tx_skb) {
|
|
|
|
test_and_clear_bit(FLG_L1_PULL_REQ, &st->l1.Flags);
|
|
|
|
st->l1.l1l2(st, PH_PULL | CONFIRM, NULL);
|
|
|
|
} else
|
|
|
|
test_and_set_bit(FLG_L1_PULL_REQ, &st->l1.Flags);
|
|
|
|
break;
|
|
|
|
case (HW_RESET | REQUEST):
|
|
|
|
spin_lock_irqsave(&cs->lock, flags);
|
|
|
|
if ((cs->dc.amd7930.ph_state == 8)) {
|
|
|
|
/* b-channels off, PH-AR cleared
|
|
|
|
* change to F3 */
|
|
|
|
Amd7930_ph_command(cs, 0x20, "HW_RESET REQEST"); //LMR1 bit 5
|
|
|
|
spin_unlock_irqrestore(&cs->lock, flags);
|
|
|
|
} else {
|
|
|
|
Amd7930_ph_command(cs, 0x40, "HW_RESET REQUEST");
|
|
|
|
cs->dc.amd7930.ph_state = 2;
|
|
|
|
spin_unlock_irqrestore(&cs->lock, flags);
|
|
|
|
Amd7930_new_ph(cs);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case (HW_ENABLE | REQUEST):
|
|
|
|
cs->dc.amd7930.ph_state = 9;
|
|
|
|
Amd7930_new_ph(cs);
|
|
|
|
break;
|
|
|
|
case (HW_INFO3 | REQUEST):
|
|
|
|
// automatic
|
|
|
|
break;
|
|
|
|
case (HW_TESTLOOP | REQUEST):
|
|
|
|
/* not implemented yet */
|
|
|
|
break;
|
|
|
|
case (HW_DEACTIVATE | RESPONSE):
|
|
|
|
skb_queue_purge(&cs->rq);
|
|
|
|
skb_queue_purge(&cs->sq);
|
|
|
|
if (cs->tx_skb) {
|
|
|
|
dev_kfree_skb(cs->tx_skb);
|
|
|
|
cs->tx_skb = NULL;
|
|
|
|
}
|
|
|
|
if (test_and_clear_bit(FLG_DBUSY_TIMER, &cs->HW_Flags))
|
|
|
|
del_timer(&cs->dbusytimer);
|
|
|
|
if (test_and_clear_bit(FLG_L1_DBUSY, &cs->HW_Flags))
|
|
|
|
schedule_event(cs, D_CLEARBUSY);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (cs->debug & L1_DEB_WARN)
|
|
|
|
debugl1(cs, "Amd7930: l1hw: unknown %04x", pr);
|
|
|
|
break;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-25 21:59:18 +00:00
|
|
|
static void
|
2005-04-16 22:20:36 +00:00
|
|
|
setstack_Amd7930(struct PStack *st, struct IsdnCardState *cs)
|
|
|
|
{
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
2005-04-16 22:20:36 +00:00
|
|
|
debugl1(cs, "Amd7930: setstack called");
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
st->l1.l1hw = Amd7930_l1hw;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-25 21:59:18 +00:00
|
|
|
static void
|
2005-04-16 22:20:36 +00:00
|
|
|
DC_Close_Amd7930(struct IsdnCardState *cs) {
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
2005-04-16 22:20:36 +00:00
|
|
|
debugl1(cs, "Amd7930: DC_Close called");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
dbusy_timer_handler(struct IsdnCardState *cs)
|
|
|
|
{
|
|
|
|
u_long flags;
|
|
|
|
struct PStack *stptr;
|
2012-02-20 03:52:38 +00:00
|
|
|
WORD dtcr, der;
|
|
|
|
BYTE dsr1, dsr2;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
2005-04-16 22:20:36 +00:00
|
|
|
debugl1(cs, "Amd7930: dbusy_timer expired!");
|
|
|
|
|
|
|
|
if (test_bit(FLG_DBUSY_TIMER, &cs->HW_Flags)) {
|
|
|
|
spin_lock_irqsave(&cs->lock, flags);
|
2012-02-20 03:52:38 +00:00
|
|
|
/* D Transmit Byte Count Register:
|
|
|
|
* Counts down packet's number of Bytes, 0 if packet ready */
|
|
|
|
dtcr = rWordAMD(cs, 0x85);
|
|
|
|
dsr1 = rByteAMD(cs, 0x02);
|
|
|
|
dsr2 = rByteAMD(cs, 0x07);
|
|
|
|
der = rWordAMD(cs, 0x03);
|
|
|
|
|
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
2005-04-16 22:20:36 +00:00
|
|
|
debugl1(cs, "Amd7930: dbusy_timer_handler: DSR1=0x%02X, DSR2=0x%02X, DER=0x%04X, cs->tx_skb->len=%u, tx_stat=%u, dtcr=%u, cs->tx_cnt=%u", dsr1, dsr2, der, cs->tx_skb->len, cs->dc.amd7930.tx_xmtlen, dtcr, cs->tx_cnt);
|
|
|
|
|
|
|
|
if ((cs->dc.amd7930.tx_xmtlen - dtcr) < cs->tx_cnt) { /* D-Channel Busy */
|
|
|
|
test_and_set_bit(FLG_L1_DBUSY, &cs->HW_Flags);
|
|
|
|
stptr = cs->stlist;
|
|
|
|
spin_unlock_irqrestore(&cs->lock, flags);
|
|
|
|
while (stptr != NULL) {
|
|
|
|
stptr->l1.l1l2(stptr, PH_PAUSE | INDICATION, NULL);
|
|
|
|
stptr = stptr->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* discard frame; reset transceiver */
|
|
|
|
test_and_clear_bit(FLG_DBUSY_TIMER, &cs->HW_Flags);
|
|
|
|
if (cs->tx_skb) {
|
|
|
|
dev_kfree_skb_any(cs->tx_skb);
|
|
|
|
cs->tx_cnt = 0;
|
|
|
|
cs->tx_skb = NULL;
|
2012-02-20 03:52:38 +00:00
|
|
|
cs->dc.amd7930.tx_xmtlen = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
} else {
|
|
|
|
printk(KERN_WARNING "HiSax: Amd7930: D-Channel Busy no skb\n");
|
|
|
|
debugl1(cs, "Amd7930: D-Channel Busy no skb");
|
|
|
|
|
|
|
|
}
|
|
|
|
/* Transmitter reset, abort transmit */
|
|
|
|
wByteAMD(cs, 0x21, 0x82);
|
|
|
|
wByteAMD(cs, 0x21, 0x02);
|
|
|
|
spin_unlock_irqrestore(&cs->lock, flags);
|
IRQ: Maintain regs pointer globally rather than passing to IRQ handlers
Maintain a per-CPU global "struct pt_regs *" variable which can be used instead
of passing regs around manually through all ~1800 interrupt handlers in the
Linux kernel.
The regs pointer is used in few places, but it potentially costs both stack
space and code to pass it around. On the FRV arch, removing the regs parameter
from all the genirq function results in a 20% speed up of the IRQ exit path
(ie: from leaving timer_interrupt() to leaving do_IRQ()).
Where appropriate, an arch may override the generic storage facility and do
something different with the variable. On FRV, for instance, the address is
maintained in GR28 at all times inside the kernel as part of general exception
handling.
Having looked over the code, it appears that the parameter may be handed down
through up to twenty or so layers of functions. Consider a USB character
device attached to a USB hub, attached to a USB controller that posts its
interrupts through a cascaded auxiliary interrupt controller. A character
device driver may want to pass regs to the sysrq handler through the input
layer which adds another few layers of parameter passing.
I've build this code with allyesconfig for x86_64 and i386. I've runtested the
main part of the code on FRV and i386, though I can't test most of the drivers.
I've also done partial conversion for powerpc and MIPS - these at least compile
with minimal configurations.
This will affect all archs. Mostly the changes should be relatively easy.
Take do_IRQ(), store the regs pointer at the beginning, saving the old one:
struct pt_regs *old_regs = set_irq_regs(regs);
And put the old one back at the end:
set_irq_regs(old_regs);
Don't pass regs through to generic_handle_irq() or __do_IRQ().
In timer_interrupt(), this sort of change will be necessary:
- update_process_times(user_mode(regs));
- profile_tick(CPU_PROFILING, regs);
+ update_process_times(user_mode(get_irq_regs()));
+ profile_tick(CPU_PROFILING);
I'd like to move update_process_times()'s use of get_irq_regs() into itself,
except that i386, alone of the archs, uses something other than user_mode().
Some notes on the interrupt handling in the drivers:
(*) input_dev() is now gone entirely. The regs pointer is no longer stored in
the input_dev struct.
(*) finish_unlinks() in drivers/usb/host/ohci-q.c needs checking. It does
something different depending on whether it's been supplied with a regs
pointer or not.
(*) Various IRQ handler function pointers have been moved to type
irq_handler_t.
Signed-Off-By: David Howells <dhowells@redhat.com>
(cherry picked from 1b16e7ac850969f38b375e511e3fa2f474a33867 commit)
2006-10-05 13:55:46 +00:00
|
|
|
cs->irq_func(cs->irq, cs);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
2005-04-16 22:20:36 +00:00
|
|
|
debugl1(cs, "Amd7930: dbusy_timer_handler: Transmitter reset");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-02-08 02:20:29 +00:00
|
|
|
void Amd7930_init(struct IsdnCardState *cs)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2012-02-20 03:52:38 +00:00
|
|
|
WORD *ptr;
|
|
|
|
BYTE cmd, cnt;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
if (cs->debug & L1_DEB_ISAC)
|
2005-04-16 22:20:36 +00:00
|
|
|
debugl1(cs, "Amd7930: initamd called");
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
cs->dc.amd7930.tx_xmtlen = 0;
|
|
|
|
cs->dc.amd7930.old_state = 0;
|
|
|
|
cs->dc.amd7930.lmr1 = 0x40;
|
|
|
|
cs->dc.amd7930.ph_command = Amd7930_ph_command;
|
2005-04-16 22:20:36 +00:00
|
|
|
cs->setstack_d = setstack_Amd7930;
|
|
|
|
cs->DC_Close = DC_Close_Amd7930;
|
|
|
|
|
|
|
|
/* AMD Initialisation */
|
|
|
|
for (ptr = initAMD; *ptr != 0xFFFF; ) {
|
|
|
|
cmd = LOBYTE(*ptr);
|
|
|
|
|
2012-02-20 03:52:38 +00:00
|
|
|
/* read */
|
|
|
|
if (*ptr++ >= 0x100) {
|
2005-04-16 22:20:36 +00:00
|
|
|
if (cmd < 8)
|
2012-02-20 03:52:38 +00:00
|
|
|
/* reset register */
|
|
|
|
rByteAMD(cs, cmd);
|
2005-04-16 22:20:36 +00:00
|
|
|
else {
|
|
|
|
wByteAMD(cs, 0x00, cmd);
|
|
|
|
for (cnt = *ptr++; cnt > 0; cnt--)
|
|
|
|
rByteAMD(cs, 0x01);
|
|
|
|
}
|
|
|
|
}
|
2012-02-20 03:52:38 +00:00
|
|
|
/* write */
|
|
|
|
else if (cmd < 8)
|
2005-04-16 22:20:36 +00:00
|
|
|
wByteAMD(cs, cmd, LOBYTE(*ptr++));
|
|
|
|
|
|
|
|
else {
|
|
|
|
wByteAMD(cs, 0x00, cmd);
|
|
|
|
for (cnt = *ptr++; cnt > 0; cnt--)
|
|
|
|
wByteAMD(cs, 0x01, LOBYTE(*ptr++));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void __devinit
|
|
|
|
setup_Amd7930(struct IsdnCardState *cs)
|
|
|
|
{
|
2012-02-20 03:52:38 +00:00
|
|
|
INIT_WORK(&cs->tqueue, Amd7930_bh);
|
2005-04-16 22:20:36 +00:00
|
|
|
cs->dbusytimer.function = (void *) dbusy_timer_handler;
|
|
|
|
cs->dbusytimer.data = (long) cs;
|
|
|
|
init_timer(&cs->dbusytimer);
|
|
|
|
}
|