Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
8ac84dd1
Commit
8ac84dd1
authored
Feb 10, 2002
by
Kai Germaschewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Start new driver for HFC PCI based cards.
parent
0dc68d77
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1301 additions
and
0 deletions
+1301
-0
drivers/isdn/Config.in
drivers/isdn/Config.in
+1
-0
drivers/isdn/hisax/Makefile
drivers/isdn/hisax/Makefile
+1
-0
drivers/isdn/hisax/hisax_hfcpci.c
drivers/isdn/hisax/hisax_hfcpci.c
+1261
-0
drivers/isdn/hisax/hisax_hfcpci.h
drivers/isdn/hisax/hisax_hfcpci.h
+38
-0
No files found.
drivers/isdn/Config.in
View file @
8ac84dd1
...
...
@@ -84,6 +84,7 @@ if [ "$CONFIG_ISDN_DRV_HISAX" != "n" ]; then
dep_tristate 'ST5481 USB ISDN modem (EXPERIMENTAL)' CONFIG_HISAX_ST5481 $CONFIG_HISAX $CONFIG_USB $CONFIG_EXPERIMENTAL
dep_tristate 'AVM Fritz!Card PCI/PCIv2/PnP support (EXPERIMENTAL)' CONFIG_HISAX_FRITZ_PCIPNP $CONFIG_HISAX $CONFIG_EXPERIMENTAL
dep_tristate 'AVM Fritz!Card classic support (EXPERIMENTAL)' CONFIG_HISAX_FRITZ_CLASSIC $CONFIG_HISAX $CONFIG_EXPERIMENTAL
dep_tristate 'HFC PCI support (EXPERIMENTAL)' CONFIG_HISAX_HFCPCI $CONFIG_HISAX $CONFIG_EXPERIMENTAL
fi
endmenu
...
...
drivers/isdn/hisax/Makefile
View file @
8ac84dd1
...
...
@@ -64,6 +64,7 @@ obj-$(CONFIG_HISAX_ELSA_CS) += elsa_cs.o
obj-$(CONFIG_HISAX_ST5481)
+=
hisax_st5481.o
obj-$(CONFIG_HISAX_FRITZ_PCIPNP)
+=
hisax_isac.o hisax_fcpcipnp.o
obj-$(CONFIG_HISAX_FRITZ_CLASSIC)
+=
hisax_isac.o hisax_hscx.o hisax_fcclassic.o
obj-$(CONFIG_HISAX_FRITZ_PCIPNP)
+=
hisax_hfcpci.o
CERT
:=
$(
shell
md5sum
-c
md5sums.asc
>>
/dev/null
;
echo
$$
?
)
CFLAGS_cert.o
:=
-DCERTIFICATION
=
$(CERT)
...
...
drivers/isdn/hisax/hisax_hfcpci.c
0 → 100644
View file @
8ac84dd1
This diff is collapsed.
Click to expand it.
drivers/isdn/hisax/hisax_hfcpci.h
0 → 100644
View file @
8ac84dd1
#include "hisax_if.h"
#include "hisax_isac.h"
#include <linux/pci.h>
struct
hfcpci_bcs
{
struct
hisax_b_if
b_if
;
struct
hfcpci_adapter
*
adapter
;
int
mode
;
int
channel
;
int
last_fcnt
;
struct
sk_buff
*
tx_skb
;
};
struct
hfcpci_adapter
{
struct
hisax_d_if
d_if
;
spinlock_t
hw_lock
;
unsigned
int
irq
;
void
*
mmio
;
char
*
fifo
;
dma_addr_t
fifo_dma
;
struct
sk_buff
*
tx_skb
;
int
last_fcnt
;
u8
int_m1
,
int_m2
;
u8
fifo_en
;
u8
trm
;
u8
sctrl
,
sctrl_r
,
sctrl_e
;
u8
nt_mode
;
u8
ctmt
;
u8
mst_m
;
u8
conn
;
u8
bswapped
;
struct
hfcpci_bcs
bcs
[
2
];
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment