1
2
3
4
5
6
7#ifndef I915_SCATTERLIST_H
8#define I915_SCATTERLIST_H
9
10#include <linux/pfn.h>
11#include <linux/scatterlist.h>
12#include <linux/swiotlb.h>
13
14#include "i915_gem.h"
15
16struct drm_mm_node;
17struct ttm_resource;
18
19
20
21
22static __always_inline struct sgt_iter {
23 struct scatterlist *sgp;
24 union {
25 unsigned long pfn;
26 dma_addr_t dma;
27 };
28 unsigned int curr;
29 unsigned int max;
30} __sgt_iter(struct scatterlist *sgl, bool dma) {
31 struct sgt_iter s = { .sgp = sgl };
32
33 if (dma && s.sgp && sg_dma_len(s.sgp) == 0) {
34 s.sgp = NULL;
35 } else if (s.sgp) {
36 s.max = s.curr = s.sgp->offset;
37 if (dma) {
38 s.dma = sg_dma_address(s.sgp);
39 s.max += sg_dma_len(s.sgp);
40 } else {
41 s.pfn = page_to_pfn(sg_page(s.sgp));
42 s.max += s.sgp->length;
43 }
44 }
45
46 return s;
47}
48
49static inline int __sg_page_count(const struct scatterlist *sg)
50{
51 return sg->length >> PAGE_SHIFT;
52}
53
54static inline int __sg_dma_page_count(const struct scatterlist *sg)
55{
56 return sg_dma_len(sg) >> PAGE_SHIFT;
57}
58
59static inline struct scatterlist *____sg_next(struct scatterlist *sg)
60{
61 ++sg;
62 if (unlikely(sg_is_chain(sg)))
63 sg = sg_chain_ptr(sg);
64 return sg;
65}
66
67
68
69
70
71
72
73
74
75
76static inline struct scatterlist *__sg_next(struct scatterlist *sg)
77{
78 return sg_is_last(sg) ? NULL : ____sg_next(sg);
79}
80
81
82
83
84
85
86
87
88#define __for_each_sgt_daddr(__dp, __iter, __sgt, __step) \
89 for ((__iter) = __sgt_iter((__sgt)->sgl, true); \
90 ((__dp) = (__iter).dma + (__iter).curr), (__iter).sgp; \
91 (((__iter).curr += (__step)) >= (__iter).max) ? \
92 (__iter) = __sgt_iter(__sg_next((__iter).sgp), true), 0 : 0)
93
94
95
96
97
98
99
100#define for_each_sgt_page(__pp, __iter, __sgt) \
101 for ((__iter) = __sgt_iter((__sgt)->sgl, false); \
102 ((__pp) = (__iter).pfn == 0 ? NULL : \
103 pfn_to_page((__iter).pfn + ((__iter).curr >> PAGE_SHIFT))); \
104 (((__iter).curr += PAGE_SIZE) >= (__iter).max) ? \
105 (__iter) = __sgt_iter(__sg_next((__iter).sgp), false), 0 : 0)
106
107
108
109
110
111
112
113
114
115static inline unsigned int i915_sg_dma_sizes(struct scatterlist *sg)
116{
117 unsigned int page_sizes;
118
119 page_sizes = 0;
120 while (sg && sg_dma_len(sg)) {
121 GEM_BUG_ON(sg->offset);
122 GEM_BUG_ON(!IS_ALIGNED(sg_dma_len(sg), PAGE_SIZE));
123 page_sizes |= sg_dma_len(sg);
124 sg = __sg_next(sg);
125 }
126
127 return page_sizes;
128}
129
130static inline unsigned int i915_sg_segment_size(void)
131{
132 unsigned int size = swiotlb_max_segment();
133
134 if (size == 0)
135 size = UINT_MAX;
136
137 size = rounddown(size, PAGE_SIZE);
138
139 if (size < PAGE_SIZE)
140 size = PAGE_SIZE;
141
142 return size;
143}
144
145bool i915_sg_trim(struct sg_table *orig_st);
146
147struct sg_table *i915_sg_from_mm_node(const struct drm_mm_node *node,
148 u64 region_start);
149
150struct sg_table *i915_sg_from_buddy_resource(struct ttm_resource *res,
151 u64 region_start);
152
153#endif
154