Home | History | Annotate | Line # | Download | only in libpci
pci_user.h revision 1.2
      1  1.1  pooka void *rumpcomp_pci_map(unsigned long, unsigned long);
      2  1.1  pooka int rumpcomp_pci_confread(unsigned, unsigned, unsigned, int, unsigned int *);
      3  1.1  pooka int rumpcomp_pci_confwrite(unsigned, unsigned, unsigned, int, unsigned int);
      4  1.1  pooka 
      5  1.2  pooka int rumpcomp_pci_irq_map(unsigned, unsigned, unsigned, int, unsigned);
      6  1.2  pooka void *rumpcomp_pci_irq_establish(unsigned, int (*)(void *), void *);
      7  1.1  pooka 
      8  1.1  pooka /* XXX: needs work: support boundary-restricted allocations */
      9  1.2  pooka int rumpcomp_pci_dmalloc(size_t, size_t, unsigned long *, unsigned long *);
     10  1.2  pooka 
     11  1.2  pooka struct rumpcomp_pci_dmaseg {
     12  1.2  pooka 	unsigned long ds_pa;
     13  1.2  pooka 	unsigned long ds_len;
     14  1.2  pooka 	unsigned long ds_vacookie;
     15  1.2  pooka };
     16  1.2  pooka int rumpcomp_pci_dmamem_map(struct rumpcomp_pci_dmaseg *, size_t, size_t,
     17  1.2  pooka 			    void **);
     18  1.1  pooka 
     19  1.1  pooka unsigned long rumpcomp_pci_virt_to_mach(void *);
     20