diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 15:20:36 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 15:20:36 -0700 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/isdn/hisax/enternow.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'drivers/isdn/hisax/enternow.h')
-rw-r--r-- | drivers/isdn/hisax/enternow.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/drivers/isdn/hisax/enternow.h b/drivers/isdn/hisax/enternow.h new file mode 100644 index 00000000000..ed2eec5874c --- /dev/null +++ b/drivers/isdn/hisax/enternow.h @@ -0,0 +1,51 @@ +/* 2001/10/02 + * + * enternow.h Header-file included by + * enternow_pci.c + * + * 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 + */ + + +/* ***************************************************************************************** * + * ****************************** datatypes and macros ************************************* * + * ***************************************************************************************** */ + +#define BYTE unsigned char +#define WORD unsigned int +#define HIBYTE(w) ((unsigned char)((w & 0xff00) / 256)) +#define LOBYTE(w) ((unsigned char)(w & 0x00ff)) +#define InByte(addr) inb(addr) +#define OutByte(addr,val) outb(val,addr) + + + +/* ***************************************************************************************** * + * *********************************** card-specific *************************************** * + * ***************************************************************************************** */ + +/* für PowerISDN PCI */ +#define TJ_AMD_IRQ 0x20 +#define TJ_LED1 0x40 +#define TJ_LED2 0x80 + + +/* Das Fenster zum AMD... + * Ab Adresse hw.njet.base + TJ_AMD_PORT werden vom AMD jeweils 8 Bit in + * den TigerJet i/o-Raum gemappt + * -> 0x01 des AMD bei hw.njet.base + 0C4 */ +#define TJ_AMD_PORT 0xC0 + + + +/* ***************************************************************************************** * + * *************************************** Prototypen ************************************** * + * ***************************************************************************************** */ + +BYTE ReadByteAmd7930(struct IsdnCardState *cs, BYTE offset); +void WriteByteAmd7930(struct IsdnCardState *cs, BYTE offset, BYTE value); |