-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Manu Abraham
authored and
Mauro Carvalho Chehab
committed
Jan 17, 2010
1 parent
2202304
commit 415765d
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: b3b961448f702339444036f94252ff2ba7a99feb | ||
refs/heads/master: ad0ac434cb3b34640a4e81d7e80a1512c6e40253 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#ifndef __MANTIS_IOC_H | ||
#define __MANTIS_IOC_H | ||
|
||
#define GPIF_A00 0x00 | ||
#define GPIF_A01 0x01 | ||
#define GPIF_A02 0x02 | ||
#define GPIF_A03 0x03 | ||
#define GPIF_A04 0x04 | ||
#define GPIF_A05 0x05 | ||
#define GPIF_A06 0x06 | ||
#define GPIF_A07 0x07 | ||
#define GPIF_A08 0x08 | ||
#define GPIF_A09 0x09 | ||
#define GPIF_A10 0x0a | ||
#define GPIF_A11 0x0b | ||
|
||
#define GPIF_A12 0x0c | ||
#define GPIF_A13 0x0d | ||
#define GPIF_A14 0x0e | ||
|
||
enum mantis_stream_control { | ||
STREAM_TO_HIF = 0, | ||
STREAM_TO_CAM | ||
}; | ||
|
||
extern int mantis_get_mac(struct mantis_pci *mantis); | ||
extern void gpio_set_bits(struct mantis_pci *mantis, u32 bitpos, u8 value); | ||
|
||
extern int mantis_stream_control(struct mantis_pci *mantis, enum mantis_stream_control stream_ctl); | ||
|
||
#endif /* __MANTIS_IOC_H */ |