2010-07-01 11:10:16 +02:00
|
|
|
/*
|
|
|
|
pci_get_bar.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "pci.h"
|
|
|
|
#include "syslib.h"
|
|
|
|
#include <minix/sysutil.h>
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* pci_get_bar *
|
|
|
|
*===========================================================================*/
|
2012-03-25 20:25:53 +02:00
|
|
|
int pci_get_bar(devind, port, base, size, ioflag)
|
2010-07-01 11:10:16 +02:00
|
|
|
int devind;
|
|
|
|
int port;
|
|
|
|
u32_t *base;
|
|
|
|
u32_t *size;
|
|
|
|
int *ioflag;
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
message m;
|
|
|
|
|
|
|
|
m.m_type= BUSC_PCI_GET_BAR;
|
2014-05-15 11:45:42 +02:00
|
|
|
m.m_lsys_pci_busc_get_bar.devind = devind;
|
|
|
|
m.m_lsys_pci_busc_get_bar.port = port;
|
2010-07-01 11:10:16 +02:00
|
|
|
|
2013-11-01 13:34:14 +01:00
|
|
|
r= ipc_sendrec(pci_procnr, &m);
|
2010-07-01 11:10:16 +02:00
|
|
|
if (r != 0)
|
|
|
|
panic("pci_get_bar: can't talk to PCI: %d", r);
|
|
|
|
|
|
|
|
if (m.m_type == 0)
|
|
|
|
{
|
2014-05-15 11:45:42 +02:00
|
|
|
*base= m.m_pci_lsys_busc_get_bar.base;
|
|
|
|
*size= m.m_pci_lsys_busc_get_bar.size;
|
|
|
|
*ioflag= m.m_pci_lsys_busc_get_bar.flags;
|
2010-07-01 11:10:16 +02:00
|
|
|
}
|
|
|
|
return m.m_type;
|
|
|
|
}
|
|
|
|
|