pci_private.h revision 214110
1139749Simp/*-
291355Simp * Copyright (c) 1997, Stefan Esser <se@freebsd.org>
391355Simp * Copyright (c) 2000, Michael Smith <msmith@freebsd.org>
491355Simp * Copyright (c) 2000, BSDi
591355Simp * All rights reserved.
691355Simp *
791355Simp * Redistribution and use in source and binary forms, with or without
891355Simp * modification, are permitted provided that the following conditions
991355Simp * are met:
1091355Simp * 1. Redistributions of source code must retain the above copyright
1191355Simp *    notice unmodified, this list of conditions, and the following
1291355Simp *    disclaimer.
1391355Simp * 2. Redistributions in binary form must reproduce the above copyright
1491355Simp *    notice, this list of conditions and the following disclaimer in the
1591355Simp *    documentation and/or other materials provided with the distribution.
1691355Simp *
1791355Simp * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1891355Simp * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1991355Simp * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2091355Simp * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2191355Simp * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2291355Simp * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2391355Simp * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2491355Simp * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2591355Simp * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2691355Simp * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2791355Simp *
2891355Simp * $FreeBSD: head/sys/dev/pci/pci_private.h 214110 2010-10-20 16:47:09Z jkim $
2991355Simp *
3091355Simp */
3191355Simp
3291355Simp#ifndef _PCI_PRIVATE_H_
33165217Sjhb#define	_PCI_PRIVATE_H_
3491355Simp
3591355Simp/*
3691355Simp * Export definitions of the pci bus so that we can more easily share
37154599Sjhb * it with "subclass" busses.
3891355Simp */
39154599SjhbDECLARE_CLASS(pci_driver);
40102440Sjhb
41211430Sjhbextern int 	pci_do_power_resume;
42214110Sjkimextern int 	pci_do_power_suspend;
43211430Sjhb
44172394Smariusvoid		pci_add_children(device_t dev, int domain, int busno,
45172394Smarius		    size_t dinfo_size);
46102440Sjhbvoid		pci_add_child(device_t bus, struct pci_devinfo *dinfo);
47153898Simpvoid		pci_add_resources(device_t bus, device_t dev, int force,
48153898Simp		    uint32_t prefetchmask);
49201609Sjhbvoid		pci_delete_child(device_t dev, device_t child);
50128058Simpvoid		pci_driver_added(device_t dev, driver_t *driver);
5191355Simpint		pci_print_child(device_t dev, device_t child);
5291355Simpvoid		pci_probe_nomatch(device_t dev, device_t child);
5391355Simpint		pci_read_ivar(device_t dev, device_t child, int which,
5491355Simp		    uintptr_t *result);
5591355Simpint		pci_write_ivar(device_t dev, device_t child, int which,
5691355Simp		    uintptr_t value);
57169221Sjhbint		pci_setup_intr(device_t dev, device_t child,
58169221Sjhb		    struct resource *irq, int flags, driver_filter_t *filter,
59169221Sjhb		    driver_intr_t *intr, void *arg, void **cookiep);
60169221Sjhbint		pci_teardown_intr(device_t dev, device_t child,
61169221Sjhb		    struct resource *irq, void *cookie);
62163163Sjmgint		pci_get_vpd_ident_method(device_t dev, device_t child,
63163163Sjmg		    const char **identptr);
64163163Sjmgint		pci_get_vpd_readonly_method(device_t dev, device_t child,
65163163Sjmg		    const char *kw, const char **vptr);
6691355Simpint		pci_set_powerstate_method(device_t dev, device_t child,
6791355Simp		    int state);
6891355Simpint		pci_get_powerstate_method(device_t dev, device_t child);
69119266Simpuint32_t	pci_read_config_method(device_t dev, device_t child,
7091355Simp		    int reg, int width);
7191355Simpvoid		pci_write_config_method(device_t dev, device_t child,
72119266Simp		    int reg, uint32_t val, int width);
73113544Smdoddint		pci_enable_busmaster_method(device_t dev, device_t child);
74113544Smdoddint		pci_disable_busmaster_method(device_t dev, device_t child);
75113544Smdoddint		pci_enable_io_method(device_t dev, device_t child, int space);
76113544Smdoddint		pci_disable_io_method(device_t dev, device_t child, int space);
77153560Sjhbint		pci_find_extcap_method(device_t dev, device_t child,
78153560Sjhb		    int capability, int *capreg);
79164264Sjhbint		pci_alloc_msi_method(device_t dev, device_t child, int *count);
80166176Sjhbint		pci_alloc_msix_method(device_t dev, device_t child, int *count);
81166176Sjhbint		pci_remap_msix_method(device_t dev, device_t child,
82169221Sjhb		    int count, const u_int *vectors);
83164264Sjhbint		pci_release_msi_method(device_t dev, device_t child);
84164264Sjhbint		pci_msi_count_method(device_t dev, device_t child);
85166176Sjhbint		pci_msix_count_method(device_t dev, device_t child);
8691355Simpstruct resource	*pci_alloc_resource(device_t dev, device_t child,
8791355Simp		    int type, int *rid, u_long start, u_long end, u_long count,
8891355Simp		    u_int flags);
89189306Sjhbint		pci_activate_resource(device_t dev, device_t child, int type,
90189306Sjhb		    int rid, struct resource *r);
91201279Sjhbint		pci_deactivate_resource(device_t dev, device_t child, int type,
92201279Sjhb		    int rid, struct resource *r);
9391355Simpvoid		pci_delete_resource(device_t dev, device_t child,
9491355Simp		    int type, int rid);
9591355Simpstruct resource_list *pci_get_resource_list (device_t dev, device_t child);
96172394Smariusstruct pci_devinfo *pci_read_device(device_t pcib, int d, int b, int s, int f,
9792233Simp		    size_t size);
9891355Simpvoid		pci_print_verbose(struct pci_devinfo *dinfo);
9991355Simpint		pci_freecfg(struct pci_devinfo *dinfo);
100111056Simpint		pci_child_location_str_method(device_t cbdev, device_t child,
101111056Simp		    char *buf, size_t buflen);
102111056Simpint		pci_child_pnpinfo_str_method(device_t cbdev, device_t child,
103111056Simp		    char *buf, size_t buflen);
104117115Stmmint		pci_assign_interrupt_method(device_t dev, device_t child);
105120155Siwasakiint		pci_resume(device_t dev);
106128058Simpint		pci_suspend(device_t dev);
107169615Simp
108169615Simp/** Restore the config register state.  The state must be previously
109169615Simp * saved with pci_cfg_save.  However, the pci bus driver takes care of
110169615Simp * that.  This function will also return the device to PCI_POWERSTATE_D0
111169615Simp * if it is currently in a lower power mode.
112169615Simp */
113142735Simpvoid		pci_cfg_restore(device_t, struct pci_devinfo *);
114169615Simp
115169615Simp/** Save the config register state.  Optionally set the power state to D3
116169615Simp * if the third argument is non-zero.
117169615Simp */
118142735Simpvoid		pci_cfg_save(device_t, struct pci_devinfo *, int);
119164067Sjhb
12091355Simp#endif /* _PCI_PRIVATE_H_ */
121