diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-parisc/iosapic.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 'include/asm-parisc/iosapic.h')
-rw-r--r-- | include/asm-parisc/iosapic.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/include/asm-parisc/iosapic.h b/include/asm-parisc/iosapic.h new file mode 100644 index 000000000000..613390e6805c --- /dev/null +++ b/include/asm-parisc/iosapic.h | |||
@@ -0,0 +1,53 @@ | |||
1 | /* | ||
2 | ** This file is private to iosapic driver. | ||
3 | ** If stuff needs to be used by another driver, move it to a common file. | ||
4 | ** | ||
5 | ** WARNING: fields most data structures here are ordered to make sure | ||
6 | ** they pack nicely for 64-bit compilation. (ie sizeof(long) == 8) | ||
7 | */ | ||
8 | |||
9 | |||
10 | /* | ||
11 | ** I/O SAPIC init function | ||
12 | ** Caller knows where an I/O SAPIC is. LBA has an integrated I/O SAPIC. | ||
13 | ** Call setup as part of per instance initialization. | ||
14 | ** (ie *not* init_module() function unless only one is present.) | ||
15 | ** fixup_irq is to initialize PCI IRQ line support and | ||
16 | ** virtualize pcidev->irq value. To be called by pci_fixup_bus(). | ||
17 | */ | ||
18 | extern void *iosapic_register(unsigned long hpa); | ||
19 | extern int iosapic_fixup_irq(void *obj, struct pci_dev *pcidev); | ||
20 | |||
21 | |||
22 | #ifdef __IA64__ | ||
23 | /* | ||
24 | ** PA: PIB (Processor Interrupt Block) is handled by Runway bus adapter. | ||
25 | ** and is hardcoded to 0xfeeNNNN0 where NNNN is id_eid field. | ||
26 | ** | ||
27 | ** IA64: PIB is handled by "Local SAPIC" (integrated in the processor). | ||
28 | */ | ||
29 | struct local_sapic_info { | ||
30 | struct local_sapic_info *lsi_next; /* point to next CPU info */ | ||
31 | int *lsi_cpu_id; /* point to logical CPU id */ | ||
32 | unsigned long *lsi_id_eid; /* point to IA-64 CPU id */ | ||
33 | int *lsi_status; /* point to CPU status */ | ||
34 | void *lsi_private; /* point to special info */ | ||
35 | }; | ||
36 | |||
37 | /* | ||
38 | ** "root" data structure which ties everything together. | ||
39 | ** Should always be able to start with sapic_root and locate | ||
40 | ** the desired information. | ||
41 | */ | ||
42 | struct sapic_info { | ||
43 | struct sapic_info *si_next; /* info is per cell */ | ||
44 | int si_cellid; /* cell id */ | ||
45 | unsigned int si_status; /* status */ | ||
46 | char *si_pib_base; /* intr blk base address */ | ||
47 | local_sapic_info_t *si_local_info; | ||
48 | io_sapic_info_t *si_io_info; | ||
49 | extint_info_t *si_extint_info;/* External Intr info */ | ||
50 | }; | ||
51 | |||
52 | #endif /* IA64 */ | ||
53 | |||