minix/minix/lib/libsys/pci_attr_r32.c

33 lines
620 B
C
Raw Normal View History

2005-12-02 15:41:46 +01:00
/*
pci_attr_r32.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_attr_r32 *
*===========================================================================*/
2012-03-25 20:25:53 +02:00
u32_t pci_attr_r32(devind, port)
2005-12-02 15:41:46 +01:00
int devind;
int port;
{
int r;
message m;
m.m_type= BUSC_PCI_ATTR_R32;
m.m2_i1= devind;
m.m2_i2= port;
r= ipc_sendrec(pci_procnr, &m);
2005-12-02 15:41:46 +01:00
if (r != 0)
panic("pci_attr_r32: can't talk to PCI: %d", r);
2005-12-02 15:41:46 +01:00
if (m.m_type != 0)
panic("pci_attr_r32: got bad reply from PCI: %d", m.m_type);
2005-12-02 15:41:46 +01:00
return m.m2_l1;
}