2005-12-02 15:41:46 +01:00
|
|
|
/*
|
|
|
|
pci_ids.c
|
|
|
|
*/
|
|
|
|
|
2006-02-15 15:21:56 +01:00
|
|
|
#include "pci.h"
|
2005-12-02 15:41:46 +01:00
|
|
|
#include "syslib.h"
|
|
|
|
#include <minix/sysutil.h>
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* pci_ids *
|
|
|
|
*===========================================================================*/
|
|
|
|
PUBLIC void pci_ids(devind, vidp, didp)
|
|
|
|
int devind;
|
|
|
|
u16_t *vidp;
|
|
|
|
u16_t *didp;
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
message m;
|
|
|
|
|
|
|
|
m.m_type= BUSC_PCI_IDS;
|
|
|
|
m.m1_i1= devind;
|
|
|
|
|
2006-02-15 15:21:56 +01:00
|
|
|
r= sendrec(pci_procnr, &m);
|
2005-12-02 15:41:46 +01:00
|
|
|
if (r != 0)
|
2010-03-05 16:05:11 +01:00
|
|
|
panic("pci_ids: can't talk to PCI: %d", r);
|
2005-12-02 15:41:46 +01:00
|
|
|
|
|
|
|
if (m.m_type != 0)
|
2010-03-05 16:05:11 +01:00
|
|
|
panic("pci_ids: got bad reply from PCI: %d", m.m_type);
|
2005-12-02 15:41:46 +01:00
|
|
|
*vidp= m.m1_i1;
|
|
|
|
*didp= m.m1_i2;
|
|
|
|
printf("pci_ids: %04x/%04x\n", *vidp, *didp);
|
|
|
|
}
|
|
|
|
|