2006-01-12 15:37:37 +01:00
|
|
|
/*
|
|
|
|
pci_init1.c
|
|
|
|
*/
|
|
|
|
|
2006-02-15 15:21:56 +01:00
|
|
|
#include "pci.h"
|
2006-01-12 15:37:37 +01:00
|
|
|
#include "syslib.h"
|
|
|
|
#include <string.h>
|
2006-02-15 15:21:56 +01:00
|
|
|
#include <unistd.h>
|
2009-08-17 20:48:27 +02:00
|
|
|
#include <minix/ds.h>
|
2006-01-12 15:37:37 +01:00
|
|
|
#include <minix/sysutil.h>
|
|
|
|
|
2006-02-15 15:21:56 +01:00
|
|
|
int pci_procnr= ANY;
|
|
|
|
|
2006-01-12 15:37:37 +01:00
|
|
|
/*===========================================================================*
|
|
|
|
* pci_init1 *
|
|
|
|
*===========================================================================*/
|
|
|
|
PUBLIC void pci_init1(name)
|
|
|
|
char *name;
|
|
|
|
{
|
|
|
|
int r;
|
2010-04-08 15:41:35 +02:00
|
|
|
endpoint_t endpoint;
|
2006-01-12 15:37:37 +01:00
|
|
|
size_t len;
|
|
|
|
message m;
|
|
|
|
|
2010-04-08 15:41:35 +02:00
|
|
|
r= ds_retrieve_label_endpt("pci", &endpoint);
|
2006-02-15 15:21:56 +01:00
|
|
|
if (r != 0)
|
2010-04-08 15:41:35 +02:00
|
|
|
panic("pci_init1: ds_retrieve_label_endpt failed for 'pci': %d", r);
|
|
|
|
pci_procnr= endpoint;
|
2006-02-15 15:21:56 +01:00
|
|
|
|
2006-01-12 15:37:37 +01:00
|
|
|
m.m_type= BUSC_PCI_INIT;
|
|
|
|
len= strlen(name);
|
|
|
|
if (len+1 <= sizeof(m.m3_ca1))
|
|
|
|
strcpy(m.m3_ca1, name);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
len= sizeof(m.m3_ca1)-1;
|
|
|
|
memcpy(m.m3_ca1, name, len);
|
|
|
|
m.m3_ca1[len]= '\0';
|
|
|
|
}
|
2006-02-15 15:21:56 +01:00
|
|
|
r= sendrec(pci_procnr, &m);
|
2006-01-12 15:37:37 +01:00
|
|
|
if (r != 0)
|
2010-03-05 16:05:11 +01:00
|
|
|
panic("pci_init1: can't talk to PCI: %d", r);
|
2006-01-12 15:37:37 +01:00
|
|
|
if (m.m_type != 0)
|
2010-03-05 16:05:11 +01:00
|
|
|
panic("pci_init1: got bad reply from PCI: %d", m.m_type);
|
2006-01-12 15:37:37 +01:00
|
|
|
}
|
|
|
|
|