summaryrefslogtreecommitdiff
path: root/minix/lib/libsys/pci_init.c
blob: 11e028bf1079e87dc14673ca507480ba61e61d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
pci_init.c
*/

#include "syslib.h"
#include <minix/ds.h>
#include <minix/sysutil.h>

endpoint_t pci_procnr= ANY;

/*===========================================================================*
 *				pci_init				     *
 *===========================================================================*/
void pci_init(void)
{
	int r;
	message m;

	r= ds_retrieve_label_endpt("pci", &pci_procnr);
	if (r != 0)
		panic("pci_init: unable to obtain label for 'pci': %d", r);

	m.m_type= BUSC_PCI_INIT;
	r= ipc_sendrec(pci_procnr, &m);
	if (r != 0)
		panic("pci_init: can't talk to PCI: %d", r);
	if (m.m_type != 0)
		panic("pci_init: got bad reply from PCI: %d", m.m_type);
}