Lines Matching defs:table
19 ** table which is implemented in I/O SAPIC.
228 * iosapic_load_irt - Fill in the interrupt routing table
234 * entries in the PCI interrupt routing table for the cell specified
240 * table in the caller allocated memory pointed to by mem_addr.
244 * The PCI interrupt routing table entry format is derived from the
245 * IA64 SAL Specification 2.4. The PCI interrupt routing table defines
248 * devices). This table does NOT include information for devices/slots
258 struct irt_entry *table; /* start of interrupt routing tbl */
264 /* Use pat pdc routine to get interrupt routing table size */
273 ** allocate memory for interrupt routing table
275 ** the contents of the table are exclusively
278 table = iosapic_alloc_irt(num_entries);
279 if (table == NULL) {
285 /* get PCI INT routing table */
286 status = pdc_pat_get_irt(table, cell_num);
309 table = iosapic_alloc_irt(num_entries);
310 if (!table) {
317 status = pdc_pci_irt(num_entries, 0, table);
321 /* return interrupt table address */
322 *irt = table;
326 struct irt_entry *p = table;
331 table,
367 /* get interrupt routing table for this cell */