drm: Add pci_map_page and pci_unmap_page()
[dragonfly.git] / sys / dev / drm / include / linux / pci.h
1 /*
2  * Copyright (c) 2014-2015 François Tigeot
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice unmodified, this list of conditions, and the following
10  *    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 OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #ifndef LINUX_PCI_H
28 #define LINUX_PCI_H
29
30 #define PCI_ANY_ID      (~0u)
31
32 #include <sys/bus.h>
33 #include <bus/pci/pcivar.h>
34
35 #include <linux/types.h>
36 #include <linux/device.h>
37 #include <linux/io.h>
38
39 #include <linux/pci_ids.h>
40
41 struct pci_device_id {
42         uint32_t class;
43         uint32_t class_mask;
44         uint32_t vendor;
45         uint32_t device;
46         uint32_t subvendor;
47         uint32_t subdevice;
48         unsigned long driver_data;
49 };
50
51 struct pci_dev {
52         struct device   *dev;
53 };
54
55 #define PCI_DEVFN(slot, func)   ((((slot) & 0x1f) << 3) | ((func) & 0x07))
56
57 #define PCI_DMA_BIDIRECTIONAL   0
58
59 static inline int
60 pci_read_config_byte(struct pci_dev *pdev, int where, u8 *val)
61 {
62         *val = (u16)pci_read_config(pdev->dev, where, 1);
63         return 0;
64 }
65
66 static inline int
67 pci_read_config_word(struct pci_dev *pdev, int where, u16 *val)
68 {
69         *val = (u16)pci_read_config(pdev->dev, where, 2);
70         return 0;
71 }
72
73 static inline int
74 pci_read_config_dword(struct pci_dev *pdev, int where, u32 *val)
75 {
76         *val = (u32)pci_read_config(pdev->dev, where, 4);
77         return 0;
78 }
79
80 static inline int
81 pci_write_config_byte(struct pci_dev *pdev, int where, u8 val)
82 {
83         pci_write_config(pdev->dev, where, val, 1);
84         return 0;
85 }
86
87 static inline int
88 pci_write_config_word(struct pci_dev *pdev, int where, u16 val)
89 {
90         pci_write_config(pdev->dev, where, val, 2);
91         return 0;
92 }
93
94 static inline int
95 pci_write_config_dword(struct pci_dev *pdev, int where, u32 val)
96 {
97         pci_write_config(pdev->dev, where, val, 4);
98         return 0;
99 }
100
101
102 static inline struct pci_dev *
103 pci_dev_get(struct pci_dev *dev)
104 {
105         /* Linux increments a reference count here */
106         return dev;
107 }
108
109 static inline struct pci_dev *
110 pci_dev_put(struct pci_dev *dev)
111 {
112         /* Linux decrements a reference count here */
113         return dev;
114 }
115
116
117 static inline int
118 pci_set_dma_mask(struct pci_dev *dev, u64 mask)
119 {
120         return -EIO;
121 }
122
123 static inline int
124 pci_set_consistent_dma_mask(struct pci_dev *dev, u64 mask)
125 {
126         return -EIO;
127 }
128
129 #include <asm/pci.h>
130
131 #endif /* LINUX_PCI_H */