Home
last modified time | relevance | path

Searched refs:Pci_Dev (Results 1 – 3 of 3) sorted by relevance

/linux-2.4.37.9/arch/ppc64/kernel/
Dpci.c1067 void dumpPci_Dev(struct pci_dev* Pci_Dev) in dumpPci_Dev() argument
1070 udbg_printf("\tpci_dev* = 0x%p\n",Pci_Dev); in dumpPci_Dev()
1071 if ( Pci_Dev == NULL ) return; in dumpPci_Dev()
1072 udbg_printf("\tname = %s \n",Pci_Dev->name); in dumpPci_Dev()
1073 udbg_printf("\tbus* = 0x%p\n",Pci_Dev->bus); in dumpPci_Dev()
1074 udbg_printf("\tsysdata* = 0x%p\n",Pci_Dev->sysdata); in dumpPci_Dev()
1076 PCI_GET_PHB_NUMBER(Pci_Dev), in dumpPci_Dev()
1077 PCI_GET_BUS_NUMBER(Pci_Dev), in dumpPci_Dev()
1078 PCI_SLOT(Pci_Dev->devfn), in dumpPci_Dev()
1079 PCI_FUNC(Pci_Dev->devfn), in dumpPci_Dev()
[all …]
DpSeries_pci.c201 pci_read_irq_line(struct pci_dev *Pci_Dev) in pci_read_irq_line() argument
206 pci_read_config_byte(Pci_Dev, PCI_INTERRUPT_PIN, &InterruptPin); in pci_read_irq_line()
208 PPCDBG(PPCDBG_BUSWALK,"\tDevice: %s No Interrupt used by device.\n",Pci_Dev->slot_name); in pci_read_irq_line()
212 Node = pci_device_to_OF_node(Pci_Dev); in pci_read_irq_line()
214 PPCDBG(PPCDBG_BUSWALK,"\tDevice: %s Device Node not found.\n",Pci_Dev->slot_name); in pci_read_irq_line()
218 PPCDBG(PPCDBG_BUSWALK,"\tDevice: %s No Device OF interrupts defined.\n",Pci_Dev->slot_name); in pci_read_irq_line()
221 Pci_Dev->irq = Node->intrs[0].line; in pci_read_irq_line()
224 if (Pci_Dev->irq > 16) in pci_read_irq_line()
225 Pci_Dev->irq -= 3; in pci_read_irq_line()
228 pci_write_config_byte(Pci_Dev, PCI_INTERRUPT_LINE, Pci_Dev->irq); in pci_read_irq_line()
[all …]
Dpci.h114 extern void dumpPci_Dev(struct pci_dev* Pci_Dev);