/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool
365 by Suren A. Chilingaryan
Restructure driver headers
1
#ifndef _PCIDRIVER_CONFIG_H
2
#define _PCIDRIVER_CONFIG_H
1 by Suren A. Chilingaryan
Initial import
3
4
/* Debug messages */
55 by Suren A. Chilingaryan
IRQ support in NWL DMA engine
5
//#define DEBUG
1 by Suren A. Chilingaryan
Initial import
6
7
/* Enable/disable IRQ handling */
8
#define ENABLE_IRQ
9
365 by Suren A. Chilingaryan
Restructure driver headers
10
/* Maximum number of interrupt sources */
11
#define PCIDRIVER_INT_MAXSOURCES		16
12
13
/* Maximum number of devices*/
14
#define MAXDEVICES 				4
15
16
/* Minor number */
17
#define MINORNR 				0
18
1 by Suren A. Chilingaryan
Initial import
19
/* The name of the module */
365 by Suren A. Chilingaryan
Restructure driver headers
20
#define MODNAME 				"pciDriver"
1 by Suren A. Chilingaryan
Initial import
21
22
/* Node name of the char device */
365 by Suren A. Chilingaryan
Restructure driver headers
23
#define NODENAME 				"fpga"
24
#define NODENAMEFMT 				"fpga%d"
25
26
/* Identifies the PCI-E Xilinx ML605 */
27
#define PCIE_XILINX_VENDOR_ID 			0x10ee
28
#define PCIE_ML605_DEVICE_ID 			0x6024
29
30
/* Identifies the PCI-E IPE Hardware */
31
#define PCIE_IPECAMERA_DEVICE_ID 		0x6081
32
#define PCIE_KAPTURE_DEVICE_ID 			0x6028
33
34
35
#endif /* _PCIDRIVER_CONFIG_H */