]>
Commit | Line | Data |
---|---|---|
ae4de14c AK |
1 | /* |
2 | * QEMU sPAPR Dynamic DMA windows support | |
3 | * | |
4 | * Copyright (c) 2015 Alexey Kardashevskiy, IBM Corporation. | |
5 | * | |
6 | * This program is free software; you can redistribute it and/or modify | |
7 | * it under the terms of the GNU General Public License as published by | |
8 | * the Free Software Foundation; either version 2 of the License, | |
9 | * or (at your option) any later version. | |
10 | * | |
11 | * This program is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | * GNU General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU General Public License | |
17 | * along with this program; if not, see <http://www.gnu.org/licenses/>. | |
18 | */ | |
19 | ||
20 | #include "qemu/osdep.h" | |
21 | #include "cpu.h" | |
22 | #include "qemu/error-report.h" | |
23 | #include "hw/ppc/spapr.h" | |
24 | #include "hw/pci-host/spapr.h" | |
25 | #include "trace.h" | |
26 | ||
27 | static int spapr_phb_get_active_win_num_cb(Object *child, void *opaque) | |
28 | { | |
29 | sPAPRTCETable *tcet; | |
30 | ||
31 | tcet = (sPAPRTCETable *) object_dynamic_cast(child, TYPE_SPAPR_TCE_TABLE); | |
32 | if (tcet && tcet->nb_table) { | |
33 | ++*(unsigned *)opaque; | |
34 | } | |
35 | return 0; | |
36 | } | |
37 | ||
38 | static unsigned spapr_phb_get_active_win_num(sPAPRPHBState *sphb) | |
39 | { | |
40 | unsigned ret = 0; | |
41 | ||
42 | object_child_foreach(OBJECT(sphb), spapr_phb_get_active_win_num_cb, &ret); | |
43 | ||
44 | return ret; | |
45 | } | |
46 | ||
47 | static int spapr_phb_get_free_liobn_cb(Object *child, void *opaque) | |
48 | { | |
49 | sPAPRTCETable *tcet; | |
50 | ||
51 | tcet = (sPAPRTCETable *) object_dynamic_cast(child, TYPE_SPAPR_TCE_TABLE); | |
52 | if (tcet && !tcet->nb_table) { | |
53 | *(uint32_t *)opaque = tcet->liobn; | |
54 | return 1; | |
55 | } | |
56 | return 0; | |
57 | } | |
58 | ||
59 | static unsigned spapr_phb_get_free_liobn(sPAPRPHBState *sphb) | |
60 | { | |
61 | uint32_t liobn = 0; | |
62 | ||
63 | object_child_foreach(OBJECT(sphb), spapr_phb_get_free_liobn_cb, &liobn); | |
64 | ||
65 | return liobn; | |
66 | } | |
67 | ||
68 | static uint32_t spapr_page_mask_to_query_mask(uint64_t page_mask) | |
69 | { | |
70 | int i; | |
71 | uint32_t mask = 0; | |
72 | const struct { int shift; uint32_t mask; } masks[] = { | |
73 | { 12, RTAS_DDW_PGSIZE_4K }, | |
74 | { 16, RTAS_DDW_PGSIZE_64K }, | |
75 | { 24, RTAS_DDW_PGSIZE_16M }, | |
76 | { 25, RTAS_DDW_PGSIZE_32M }, | |
77 | { 26, RTAS_DDW_PGSIZE_64M }, | |
78 | { 27, RTAS_DDW_PGSIZE_128M }, | |
79 | { 28, RTAS_DDW_PGSIZE_256M }, | |
80 | { 34, RTAS_DDW_PGSIZE_16G }, | |
81 | }; | |
82 | ||
83 | for (i = 0; i < ARRAY_SIZE(masks); ++i) { | |
84 | if (page_mask & (1ULL << masks[i].shift)) { | |
85 | mask |= masks[i].mask; | |
86 | } | |
87 | } | |
88 | ||
89 | return mask; | |
90 | } | |
91 | ||
92 | static void rtas_ibm_query_pe_dma_window(PowerPCCPU *cpu, | |
93 | sPAPRMachineState *spapr, | |
94 | uint32_t token, uint32_t nargs, | |
95 | target_ulong args, | |
96 | uint32_t nret, target_ulong rets) | |
97 | { | |
98 | sPAPRPHBState *sphb; | |
8994e91e | 99 | uint64_t buid; |
ae4de14c | 100 | uint32_t avail, addr, pgmask = 0; |
ae4de14c AK |
101 | |
102 | if ((nargs != 3) || (nret != 5)) { | |
103 | goto param_error_exit; | |
104 | } | |
105 | ||
106 | buid = ((uint64_t)rtas_ld(args, 1) << 32) | rtas_ld(args, 2); | |
107 | addr = rtas_ld(args, 0); | |
108 | sphb = spapr_pci_find_phb(spapr, buid); | |
109 | if (!sphb || !sphb->ddw_enabled) { | |
110 | goto param_error_exit; | |
111 | } | |
112 | ||
113 | /* Translate page mask to LoPAPR format */ | |
114 | pgmask = spapr_page_mask_to_query_mask(sphb->page_size_mask); | |
115 | ||
ae4de14c AK |
116 | avail = SPAPR_PCI_DMA_MAX_WINDOWS - spapr_phb_get_active_win_num(sphb); |
117 | ||
118 | rtas_st(rets, 0, RTAS_OUT_SUCCESS); | |
119 | rtas_st(rets, 1, avail); | |
8994e91e | 120 | rtas_st(rets, 2, 0x80000000); /* The largest window we can possibly have */ |
ae4de14c AK |
121 | rtas_st(rets, 3, pgmask); |
122 | rtas_st(rets, 4, 0); /* DMA migration mask, not supported */ | |
123 | ||
8994e91e | 124 | trace_spapr_iommu_ddw_query(buid, addr, avail, 0x80000000, pgmask); |
ae4de14c AK |
125 | return; |
126 | ||
127 | param_error_exit: | |
128 | rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR); | |
129 | } | |
130 | ||
131 | static void rtas_ibm_create_pe_dma_window(PowerPCCPU *cpu, | |
132 | sPAPRMachineState *spapr, | |
133 | uint32_t token, uint32_t nargs, | |
134 | target_ulong args, | |
135 | uint32_t nret, target_ulong rets) | |
136 | { | |
137 | sPAPRPHBState *sphb; | |
138 | sPAPRTCETable *tcet = NULL; | |
139 | uint32_t addr, page_shift, window_shift, liobn; | |
140 | uint64_t buid, win_addr; | |
141 | int windows; | |
142 | ||
143 | if ((nargs != 5) || (nret != 4)) { | |
144 | goto param_error_exit; | |
145 | } | |
146 | ||
147 | buid = ((uint64_t)rtas_ld(args, 1) << 32) | rtas_ld(args, 2); | |
148 | addr = rtas_ld(args, 0); | |
149 | sphb = spapr_pci_find_phb(spapr, buid); | |
150 | if (!sphb || !sphb->ddw_enabled) { | |
151 | goto param_error_exit; | |
152 | } | |
153 | ||
154 | page_shift = rtas_ld(args, 3); | |
155 | window_shift = rtas_ld(args, 4); | |
156 | liobn = spapr_phb_get_free_liobn(sphb); | |
157 | windows = spapr_phb_get_active_win_num(sphb); | |
158 | ||
159 | if (!(sphb->page_size_mask & (1ULL << page_shift)) || | |
160 | (window_shift < page_shift)) { | |
161 | goto param_error_exit; | |
162 | } | |
163 | ||
164 | if (!liobn || !sphb->ddw_enabled || windows == SPAPR_PCI_DMA_MAX_WINDOWS) { | |
165 | goto hw_error_exit; | |
166 | } | |
167 | ||
168 | tcet = spapr_tce_find_by_liobn(liobn); | |
169 | if (!tcet) { | |
170 | goto hw_error_exit; | |
171 | } | |
172 | ||
173 | win_addr = (windows == 0) ? sphb->dma_win_addr : sphb->dma64_win_addr; | |
174 | spapr_tce_table_enable(tcet, page_shift, win_addr, | |
175 | 1ULL << (window_shift - page_shift)); | |
176 | if (!tcet->nb_table) { | |
177 | goto hw_error_exit; | |
178 | } | |
179 | ||
180 | trace_spapr_iommu_ddw_create(buid, addr, 1ULL << page_shift, | |
181 | 1ULL << window_shift, tcet->bus_offset, liobn); | |
182 | ||
183 | rtas_st(rets, 0, RTAS_OUT_SUCCESS); | |
184 | rtas_st(rets, 1, liobn); | |
185 | rtas_st(rets, 2, tcet->bus_offset >> 32); | |
186 | rtas_st(rets, 3, tcet->bus_offset & ((uint32_t) -1)); | |
187 | ||
188 | return; | |
189 | ||
190 | hw_error_exit: | |
191 | rtas_st(rets, 0, RTAS_OUT_HW_ERROR); | |
192 | return; | |
193 | ||
194 | param_error_exit: | |
195 | rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR); | |
196 | } | |
197 | ||
198 | static void rtas_ibm_remove_pe_dma_window(PowerPCCPU *cpu, | |
199 | sPAPRMachineState *spapr, | |
200 | uint32_t token, uint32_t nargs, | |
201 | target_ulong args, | |
202 | uint32_t nret, target_ulong rets) | |
203 | { | |
204 | sPAPRPHBState *sphb; | |
205 | sPAPRTCETable *tcet; | |
206 | uint32_t liobn; | |
207 | ||
208 | if ((nargs != 1) || (nret != 1)) { | |
209 | goto param_error_exit; | |
210 | } | |
211 | ||
212 | liobn = rtas_ld(args, 0); | |
213 | tcet = spapr_tce_find_by_liobn(liobn); | |
214 | if (!tcet) { | |
215 | goto param_error_exit; | |
216 | } | |
217 | ||
218 | sphb = SPAPR_PCI_HOST_BRIDGE(OBJECT(tcet)->parent); | |
219 | if (!sphb || !sphb->ddw_enabled || !tcet->nb_table) { | |
220 | goto param_error_exit; | |
221 | } | |
222 | ||
223 | spapr_tce_table_disable(tcet); | |
224 | trace_spapr_iommu_ddw_remove(liobn); | |
225 | ||
226 | rtas_st(rets, 0, RTAS_OUT_SUCCESS); | |
227 | return; | |
228 | ||
229 | param_error_exit: | |
230 | rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR); | |
231 | } | |
232 | ||
233 | static void rtas_ibm_reset_pe_dma_window(PowerPCCPU *cpu, | |
234 | sPAPRMachineState *spapr, | |
235 | uint32_t token, uint32_t nargs, | |
236 | target_ulong args, | |
237 | uint32_t nret, target_ulong rets) | |
238 | { | |
239 | sPAPRPHBState *sphb; | |
240 | uint64_t buid; | |
241 | uint32_t addr; | |
242 | ||
243 | if ((nargs != 3) || (nret != 1)) { | |
244 | goto param_error_exit; | |
245 | } | |
246 | ||
247 | buid = ((uint64_t)rtas_ld(args, 1) << 32) | rtas_ld(args, 2); | |
248 | addr = rtas_ld(args, 0); | |
249 | sphb = spapr_pci_find_phb(spapr, buid); | |
250 | if (!sphb || !sphb->ddw_enabled) { | |
251 | goto param_error_exit; | |
252 | } | |
253 | ||
254 | spapr_phb_dma_reset(sphb); | |
255 | trace_spapr_iommu_ddw_reset(buid, addr); | |
256 | ||
257 | rtas_st(rets, 0, RTAS_OUT_SUCCESS); | |
258 | ||
259 | return; | |
260 | ||
261 | param_error_exit: | |
262 | rtas_st(rets, 0, RTAS_OUT_PARAM_ERROR); | |
263 | } | |
264 | ||
265 | static void spapr_rtas_ddw_init(void) | |
266 | { | |
267 | spapr_rtas_register(RTAS_IBM_QUERY_PE_DMA_WINDOW, | |
268 | "ibm,query-pe-dma-window", | |
269 | rtas_ibm_query_pe_dma_window); | |
270 | spapr_rtas_register(RTAS_IBM_CREATE_PE_DMA_WINDOW, | |
271 | "ibm,create-pe-dma-window", | |
272 | rtas_ibm_create_pe_dma_window); | |
273 | spapr_rtas_register(RTAS_IBM_REMOVE_PE_DMA_WINDOW, | |
274 | "ibm,remove-pe-dma-window", | |
275 | rtas_ibm_remove_pe_dma_window); | |
276 | spapr_rtas_register(RTAS_IBM_RESET_PE_DMA_WINDOW, | |
277 | "ibm,reset-pe-dma-window", | |
278 | rtas_ibm_reset_pe_dma_window); | |
279 | } | |
280 | ||
281 | type_init(spapr_rtas_ddw_init) |