aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/irda/w83977af.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/net/irda/w83977af.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/net/irda/w83977af.h')
-rw-r--r--drivers/net/irda/w83977af.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/drivers/net/irda/w83977af.h b/drivers/net/irda/w83977af.h
new file mode 100644
index 000000000000..04476c2e9121
--- /dev/null
+++ b/drivers/net/irda/w83977af.h
@@ -0,0 +1,53 @@
1#ifndef W83977AF_H
2#define W83977AF_H
3
4#define W977_EFIO_BASE 0x370
5#define W977_EFIO2_BASE 0x3f0
6#define W977_DEVICE_IR 0x06
7
8
9/*
10 * Enter extended function mode
11 */
12static inline void w977_efm_enter(unsigned int efio)
13{
14 outb(0x87, efio);
15 outb(0x87, efio);
16}
17
18/*
19 * Select a device to configure
20 */
21
22static inline void w977_select_device(__u8 devnum, unsigned int efio)
23{
24 outb(0x07, efio);
25 outb(devnum, efio+1);
26}
27
28/*
29 * Write a byte to a register
30 */
31static inline void w977_write_reg(__u8 reg, __u8 value, unsigned int efio)
32{
33 outb(reg, efio);
34 outb(value, efio+1);
35}
36
37/*
38 * read a byte from a register
39 */
40static inline __u8 w977_read_reg(__u8 reg, unsigned int efio)
41{
42 outb(reg, efio);
43 return inb(efio+1);
44}
45
46/*
47 * Exit extended function mode
48 */
49static inline void w977_efm_exit(unsigned int efio)
50{
51 outb(0xAA, efio);
52}
53#endif