1d01fb0c31dc8ee574f9fc8c77cc5818d6f757ed
[tpg/acess2.git] / KernelLand / Kernel / arch / armv7 / vpci_tegra2.c
1 /*
2  * Acess2 Kernel ARMv7 Port
3  * - By John Hodge (thePowersGang)
4  *
5  * vpci_tegra2.c
6  * - Tegra2 VPCI Definitions
7  */
8 #include <virtual_pci.h>
9
10 // === PROTOTYPES ===
11
12 // === GLOBALS ===
13 tVPCI_Device    gaVPCI_Devices[] = {
14         // NOTE: USB Controllers moved to command line arguments
15         #if 0
16         {
17         .Vendor=0x0ACE,.Device=0x1100,
18         .Class = 0x0C032100,    // Serial, USB, ECHI
19         .BARs = {0xC5000000,0,0,0,0,0},
20         .IRQ = 0*32+20,
21         },
22         {
23         .Vendor=0x0ACE,.Device=0x1100,
24         .Class = 0x0C032000,    // Serial, USB, ECHI
25         .BARs = {0xC5004000,0,0,0,0,0},
26         .IRQ = 0*32+21,
27         },
28         {
29         .Vendor=0x0ACE,.Device=0x1100,
30         .Class = 0x0C032000,    // Serial, USB, ECHI
31         .BARs = {0xC5008000,0,0,0,0,0},
32         .IRQ = 4*32+1,
33         }
34         #endif
35 };
36 int giVPCI_DeviceCount = sizeof(gaVPCI_Devices)/sizeof(gaVPCI_Devices[0]);
37

UCC git Repository :: git.ucc.asn.au