1 /* $OpenBSD: pci_machdep.h,v 1.17 2021/02/25 23:07:48 patrick Exp $ */ 2 3 /* 4 * Copyright (c) 2003-2004 Opsycon AB (www.opsycon.se / www.opsycon.com) 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS 16 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 19 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 * 27 */ 28 29 typedef struct arm32_pci_chipset *pci_chipset_tag_t; 30 typedef u_long pcitag_t; 31 typedef u_long pci_intr_handle_t; 32 33 struct pci_attach_args; 34 35 /* 36 * arm32-specific PCI structure and type definitions. 37 * NOT TO BE USED DIRECTLY BY MACHINE INDEPENDENT CODE. 38 */ 39 struct arm32_pci_chipset { 40 void *pc_conf_v; 41 void (*pc_attach_hook)(struct device *, 42 struct device *, struct pcibus_attach_args *); 43 int (*pc_bus_maxdevs)(void *, int); 44 pcitag_t (*pc_make_tag)(void *, int, int, int); 45 void (*pc_decompose_tag)(void *, pcitag_t, int *, 46 int *, int *); 47 int (*pc_conf_size)(void *, pcitag_t); 48 pcireg_t (*pc_conf_read)(void *, pcitag_t, int); 49 void (*pc_conf_write)(void *, pcitag_t, int, pcireg_t); 50 int (*pc_probe_device_hook)(void *, struct pci_attach_args *); 51 52 void *pc_intr_v; 53 int (*pc_intr_map)(struct pci_attach_args *, 54 pci_intr_handle_t *); 55 int (*pc_intr_map_msi)(struct pci_attach_args *, 56 pci_intr_handle_t *); 57 int (*pc_intr_map_msix)(struct pci_attach_args *, 58 int, pci_intr_handle_t *); 59 const char *(*pc_intr_string)(void *, pci_intr_handle_t); 60 void *(*pc_intr_establish)(void *, pci_intr_handle_t, 61 int, struct cpu_info *, int (*)(void *), void *, 62 char *); 63 void (*pc_intr_disestablish)(void *, void *); 64 }; 65 66 /* 67 * Functions provided to machine-independent PCI code. 68 */ 69 #define pci_attach_hook(p, s, pba) \ 70 (*(pba)->pba_pc->pc_attach_hook)((p), (s), (pba)) 71 #define pci_bus_maxdevs(c, b) \ 72 (*(c)->pc_bus_maxdevs)((c)->pc_conf_v, (b)) 73 #define pci_make_tag(c, b, d, f) \ 74 (*(c)->pc_make_tag)((c)->pc_conf_v, (b), (d), (f)) 75 #define pci_decompose_tag(c, t, bp, dp, fp) \ 76 (*(c)->pc_decompose_tag)((c)->pc_conf_v, (t), (bp), (dp), (fp)) 77 #define pci_conf_size(c, t) \ 78 (*(c)->pc_conf_size)((c)->pc_conf_v, (t)) 79 #define pci_conf_read(c, t, r) \ 80 (*(c)->pc_conf_read)((c)->pc_conf_v, (t), (r)) 81 #define pci_conf_write(c, t, r, v) \ 82 (*(c)->pc_conf_write)((c)->pc_conf_v, (t), (r), (v)) 83 #define pci_probe_device_hook(c, a) \ 84 (*(c)->pc_probe_device_hook)((c)->pc_conf_v, (a)) 85 #define pci_intr_map(c, ihp) \ 86 (*(c)->pa_pc->pc_intr_map)((c), (ihp)) 87 #define pci_intr_map_msi(c, ihp) \ 88 (*(c)->pa_pc->pc_intr_map_msi)((c), (ihp)) 89 #define pci_intr_map_msix(c, vec, ihp) \ 90 (*(c)->pa_pc->pc_intr_map_msix)((c), (vec), (ihp)) 91 #define pci_intr_string(c, ih) \ 92 (*(c)->pc_intr_string)((c)->pc_intr_v, (ih)) 93 #define pci_intr_establish(c, ih, l, h, a, nm) \ 94 (*(c)->pc_intr_establish)((c)->pc_intr_v, (ih), (l), NULL, (h), (a),\ 95 (nm)) 96 #define pci_intr_establish_cpu(c, ih, l, ci, h, a, nm) \ 97 (*(c)->pc_intr_establish)((c)->pc_intr_v, (ih), (l), (ci), (h), (a),\ 98 (nm)) 99 #define pci_intr_disestablish(c, iv) \ 100 (*(c)->pc_intr_disestablish)((c)->pc_intr_v, (iv)) 101 102 #define pci_min_powerstate(c, t) (PCI_PMCSR_STATE_D3) 103 #define pci_set_powerstate_md(c, t, s, p) 104 105 #define pci_dev_postattach(a, b) 106