]>
Commit | Line | Data |
---|---|---|
ad0ebb91 DG |
1 | /* |
2 | * QEMU sPAPR IOMMU (TCE) code | |
3 | * | |
4 | * Copyright (c) 2010 David Gibson, IBM Corporation <[email protected]> | |
5 | * | |
6 | * This library is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU Lesser General Public | |
8 | * License as published by the Free Software Foundation; either | |
9 | * version 2 of the License, or (at your option) any later version. | |
10 | * | |
11 | * This library 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 GNU | |
14 | * Lesser General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Lesser General Public | |
17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. | |
18 | */ | |
83c9f4ca | 19 | #include "hw/hw.h" |
9c17d615 | 20 | #include "sysemu/kvm.h" |
83c9f4ca | 21 | #include "hw/qdev.h" |
ad0ebb91 | 22 | #include "kvm_ppc.h" |
9c17d615 | 23 | #include "sysemu/dma.h" |
022c62cb | 24 | #include "exec/address-spaces.h" |
7e472264 | 25 | #include "trace.h" |
ad0ebb91 | 26 | |
0d09e41a | 27 | #include "hw/ppc/spapr.h" |
ee9a569a | 28 | #include "hw/ppc/spapr_vio.h" |
ad0ebb91 DG |
29 | |
30 | #include <libfdt.h> | |
31 | ||
ad0ebb91 DG |
32 | enum sPAPRTCEAccess { |
33 | SPAPR_TCE_FAULT = 0, | |
34 | SPAPR_TCE_RO = 1, | |
35 | SPAPR_TCE_WO = 2, | |
36 | SPAPR_TCE_RW = 3, | |
37 | }; | |
38 | ||
650f33ad AK |
39 | #define IOMMU_PAGE_SIZE(shift) (1ULL << (shift)) |
40 | #define IOMMU_PAGE_MASK(shift) (~(IOMMU_PAGE_SIZE(shift) - 1)) | |
41 | ||
6a0a70b0 | 42 | static QLIST_HEAD(spapr_tce_tables, sPAPRTCETable) spapr_tce_tables; |
ad0ebb91 | 43 | |
f9ce8e0a | 44 | sPAPRTCETable *spapr_tce_find_by_liobn(target_ulong liobn) |
ad0ebb91 DG |
45 | { |
46 | sPAPRTCETable *tcet; | |
47 | ||
d4261662 DG |
48 | if (liobn & 0xFFFFFFFF00000000ULL) { |
49 | hcall_dprintf("Request for out-of-bounds LIOBN 0x" TARGET_FMT_lx "\n", | |
50 | liobn); | |
51 | return NULL; | |
52 | } | |
53 | ||
ad0ebb91 | 54 | QLIST_FOREACH(tcet, &spapr_tce_tables, list) { |
f9ce8e0a | 55 | if (tcet->liobn == (uint32_t)liobn) { |
ad0ebb91 DG |
56 | return tcet; |
57 | } | |
58 | } | |
59 | ||
60 | return NULL; | |
61 | } | |
62 | ||
5709af3b GK |
63 | static IOMMUAccessFlags spapr_tce_iommu_access_flags(uint64_t tce) |
64 | { | |
65 | switch (tce & SPAPR_TCE_RW) { | |
66 | case SPAPR_TCE_FAULT: | |
67 | return IOMMU_NONE; | |
68 | case SPAPR_TCE_RO: | |
69 | return IOMMU_RO; | |
70 | case SPAPR_TCE_WO: | |
71 | return IOMMU_WO; | |
72 | default: /* SPAPR_TCE_RW */ | |
73 | return IOMMU_RW; | |
74 | } | |
75 | } | |
76 | ||
79e2b9ae | 77 | /* Called from RCU critical section */ |
8d7b8cb9 LT |
78 | static IOMMUTLBEntry spapr_tce_translate_iommu(MemoryRegion *iommu, hwaddr addr, |
79 | bool is_write) | |
ad0ebb91 | 80 | { |
a84bb436 | 81 | sPAPRTCETable *tcet = container_of(iommu, sPAPRTCETable, iommu); |
ad0ebb91 | 82 | uint64_t tce; |
7e472264 AK |
83 | IOMMUTLBEntry ret = { |
84 | .target_as = &address_space_memory, | |
85 | .iova = 0, | |
86 | .translated_addr = 0, | |
87 | .addr_mask = ~(hwaddr)0, | |
88 | .perm = IOMMU_NONE, | |
89 | }; | |
ad0ebb91 | 90 | |
ee9a569a | 91 | if ((addr >> tcet->page_shift) < tcet->nb_table) { |
7e472264 | 92 | /* Check if we are in bound */ |
650f33ad AK |
93 | hwaddr page_mask = IOMMU_PAGE_MASK(tcet->page_shift); |
94 | ||
95 | tce = tcet->table[addr >> tcet->page_shift]; | |
96 | ret.iova = addr & page_mask; | |
97 | ret.translated_addr = tce & page_mask; | |
98 | ret.addr_mask = ~page_mask; | |
5709af3b | 99 | ret.perm = spapr_tce_iommu_access_flags(tce); |
ad0ebb91 | 100 | } |
7e472264 AK |
101 | trace_spapr_iommu_xlate(tcet->liobn, addr, ret.iova, ret.perm, |
102 | ret.addr_mask); | |
ad0ebb91 | 103 | |
7e472264 | 104 | return ret; |
a71bfbfe PB |
105 | } |
106 | ||
ee9a569a AK |
107 | static int spapr_tce_table_post_load(void *opaque, int version_id) |
108 | { | |
109 | sPAPRTCETable *tcet = SPAPR_TCE_TABLE(opaque); | |
110 | ||
111 | if (tcet->vdev) { | |
112 | spapr_vio_set_bypass(tcet->vdev, tcet->bypass); | |
113 | } | |
114 | ||
115 | return 0; | |
116 | } | |
117 | ||
a83000f5 AL |
118 | static const VMStateDescription vmstate_spapr_tce_table = { |
119 | .name = "spapr_iommu", | |
523e7b8a AK |
120 | .version_id = 2, |
121 | .minimum_version_id = 2, | |
ee9a569a | 122 | .post_load = spapr_tce_table_post_load, |
523e7b8a | 123 | .fields = (VMStateField []) { |
a83000f5 AL |
124 | /* Sanity check */ |
125 | VMSTATE_UINT32_EQUAL(liobn, sPAPRTCETable), | |
523e7b8a | 126 | VMSTATE_UINT32_EQUAL(nb_table, sPAPRTCETable), |
a83000f5 AL |
127 | |
128 | /* IOMMU state */ | |
129 | VMSTATE_BOOL(bypass, sPAPRTCETable), | |
130 | VMSTATE_VARRAY_UINT32(table, sPAPRTCETable, nb_table, 0, vmstate_info_uint64, uint64_t), | |
131 | ||
132 | VMSTATE_END_OF_LIST() | |
133 | }, | |
134 | }; | |
135 | ||
a84bb436 PB |
136 | static MemoryRegionIOMMUOps spapr_iommu_ops = { |
137 | .translate = spapr_tce_translate_iommu, | |
138 | }; | |
ad0ebb91 | 139 | |
a83000f5 | 140 | static int spapr_tce_table_realize(DeviceState *dev) |
ad0ebb91 | 141 | { |
a83000f5 | 142 | sPAPRTCETable *tcet = SPAPR_TCE_TABLE(dev); |
12fd2853 | 143 | uint64_t window_size = (uint64_t)tcet->nb_table << tcet->page_shift; |
ad0ebb91 | 144 | |
12fd2853 | 145 | if (kvm_enabled() && !(window_size >> 32)) { |
a83000f5 | 146 | tcet->table = kvmppc_create_spapr_tce(tcet->liobn, |
12fd2853 | 147 | window_size, |
9bb62a07 AK |
148 | &tcet->fd, |
149 | tcet->vfio_accel); | |
ad0ebb91 DG |
150 | } |
151 | ||
152 | if (!tcet->table) { | |
523e7b8a | 153 | size_t table_size = tcet->nb_table * sizeof(uint64_t); |
ad0ebb91 DG |
154 | tcet->table = g_malloc0(table_size); |
155 | } | |
156 | ||
7e472264 | 157 | trace_spapr_iommu_new_table(tcet->liobn, tcet, tcet->table, tcet->fd); |
ad0ebb91 | 158 | |
a83000f5 | 159 | memory_region_init_iommu(&tcet->iommu, OBJECT(dev), &spapr_iommu_ops, |
ee9a569a AK |
160 | "iommu-spapr", |
161 | (uint64_t)tcet->nb_table << tcet->page_shift); | |
a84bb436 | 162 | |
ad0ebb91 DG |
163 | QLIST_INSERT_HEAD(&spapr_tce_tables, tcet, list); |
164 | ||
00d4f525 AK |
165 | vmstate_register(DEVICE(tcet), tcet->liobn, &vmstate_spapr_tce_table, |
166 | tcet); | |
167 | ||
a83000f5 AL |
168 | return 0; |
169 | } | |
170 | ||
523e7b8a | 171 | sPAPRTCETable *spapr_tce_new_table(DeviceState *owner, uint32_t liobn, |
1b8eceee | 172 | uint64_t bus_offset, |
650f33ad | 173 | uint32_t page_shift, |
9bb62a07 AK |
174 | uint32_t nb_table, |
175 | bool vfio_accel) | |
a83000f5 AL |
176 | { |
177 | sPAPRTCETable *tcet; | |
dea1b3ce | 178 | char tmp[64]; |
a83000f5 AL |
179 | |
180 | if (spapr_tce_find_by_liobn(liobn)) { | |
181 | fprintf(stderr, "Attempted to create TCE table with duplicate" | |
182 | " LIOBN 0x%x\n", liobn); | |
183 | return NULL; | |
184 | } | |
185 | ||
523e7b8a | 186 | if (!nb_table) { |
a83000f5 AL |
187 | return NULL; |
188 | } | |
189 | ||
190 | tcet = SPAPR_TCE_TABLE(object_new(TYPE_SPAPR_TCE_TABLE)); | |
191 | tcet->liobn = liobn; | |
1b8eceee | 192 | tcet->bus_offset = bus_offset; |
650f33ad | 193 | tcet->page_shift = page_shift; |
523e7b8a | 194 | tcet->nb_table = nb_table; |
9bb62a07 | 195 | tcet->vfio_accel = vfio_accel; |
a83000f5 | 196 | |
dea1b3ce AK |
197 | snprintf(tmp, sizeof(tmp), "tce-table-%x", liobn); |
198 | object_property_add_child(OBJECT(owner), tmp, OBJECT(tcet), NULL); | |
a83000f5 | 199 | |
e4c35b78 | 200 | object_property_set_bool(OBJECT(tcet), true, "realized", NULL); |
a83000f5 | 201 | |
2b7dc949 | 202 | return tcet; |
ad0ebb91 DG |
203 | } |
204 | ||
5f9490de | 205 | static void spapr_tce_table_unrealize(DeviceState *dev, Error **errp) |
ad0ebb91 | 206 | { |
5f9490de | 207 | sPAPRTCETable *tcet = SPAPR_TCE_TABLE(dev); |
a83000f5 | 208 | |
2b7dc949 | 209 | QLIST_REMOVE(tcet, list); |
ad0ebb91 | 210 | |
2b7dc949 PB |
211 | if (!kvm_enabled() || |
212 | (kvmppc_remove_spapr_tce(tcet->table, tcet->fd, | |
523e7b8a | 213 | tcet->nb_table) != 0)) { |
2b7dc949 | 214 | g_free(tcet->table); |
ad0ebb91 DG |
215 | } |
216 | } | |
217 | ||
a84bb436 PB |
218 | MemoryRegion *spapr_tce_get_iommu(sPAPRTCETable *tcet) |
219 | { | |
220 | return &tcet->iommu; | |
221 | } | |
222 | ||
a83000f5 | 223 | static void spapr_tce_reset(DeviceState *dev) |
eddeed26 | 224 | { |
a83000f5 | 225 | sPAPRTCETable *tcet = SPAPR_TCE_TABLE(dev); |
523e7b8a | 226 | size_t table_size = tcet->nb_table * sizeof(uint64_t); |
eddeed26 | 227 | |
53724ee5 | 228 | memset(tcet->table, 0, table_size); |
eddeed26 DG |
229 | } |
230 | ||
edded454 DG |
231 | static target_ulong put_tce_emu(sPAPRTCETable *tcet, target_ulong ioba, |
232 | target_ulong tce) | |
233 | { | |
a84bb436 | 234 | IOMMUTLBEntry entry; |
650f33ad | 235 | hwaddr page_mask = IOMMU_PAGE_MASK(tcet->page_shift); |
1b8eceee | 236 | unsigned long index = (ioba - tcet->bus_offset) >> tcet->page_shift; |
edded454 | 237 | |
1b8eceee | 238 | if (index >= tcet->nb_table) { |
b55519a0 | 239 | hcall_dprintf("spapr_vio_put_tce on out-of-bounds IOBA 0x" |
edded454 DG |
240 | TARGET_FMT_lx "\n", ioba); |
241 | return H_PARAMETER; | |
242 | } | |
243 | ||
1b8eceee | 244 | tcet->table[index] = tce; |
edded454 | 245 | |
a84bb436 | 246 | entry.target_as = &address_space_memory, |
650f33ad AK |
247 | entry.iova = ioba & page_mask; |
248 | entry.translated_addr = tce & page_mask; | |
249 | entry.addr_mask = ~page_mask; | |
5709af3b | 250 | entry.perm = spapr_tce_iommu_access_flags(tce); |
a84bb436 PB |
251 | memory_region_notify_iommu(&tcet->iommu, entry); |
252 | ||
edded454 DG |
253 | return H_SUCCESS; |
254 | } | |
ad0ebb91 | 255 | |
da95324e | 256 | static target_ulong h_put_tce_indirect(PowerPCCPU *cpu, |
28e02042 | 257 | sPAPRMachineState *spapr, |
da95324e AK |
258 | target_ulong opcode, target_ulong *args) |
259 | { | |
260 | int i; | |
261 | target_ulong liobn = args[0]; | |
262 | target_ulong ioba = args[1]; | |
263 | target_ulong ioba1 = ioba; | |
264 | target_ulong tce_list = args[2]; | |
265 | target_ulong npages = args[3]; | |
f1215ea7 | 266 | target_ulong ret = H_PARAMETER, tce = 0; |
da95324e AK |
267 | sPAPRTCETable *tcet = spapr_tce_find_by_liobn(liobn); |
268 | CPUState *cs = CPU(cpu); | |
650f33ad | 269 | hwaddr page_mask, page_size; |
da95324e AK |
270 | |
271 | if (!tcet) { | |
272 | return H_PARAMETER; | |
273 | } | |
274 | ||
650f33ad | 275 | if ((npages > 512) || (tce_list & SPAPR_TCE_PAGE_MASK)) { |
da95324e AK |
276 | return H_PARAMETER; |
277 | } | |
278 | ||
650f33ad AK |
279 | page_mask = IOMMU_PAGE_MASK(tcet->page_shift); |
280 | page_size = IOMMU_PAGE_SIZE(tcet->page_shift); | |
281 | ioba &= page_mask; | |
282 | ||
283 | for (i = 0; i < npages; ++i, ioba += page_size) { | |
4d9ab7d4 | 284 | tce = ldq_be_phys(cs->as, tce_list + i * sizeof(target_ulong)); |
da95324e | 285 | |
da95324e AK |
286 | ret = put_tce_emu(tcet, ioba, tce); |
287 | if (ret) { | |
288 | break; | |
289 | } | |
290 | } | |
291 | ||
292 | /* Trace last successful or the first problematic entry */ | |
293 | i = i ? (i - 1) : 0; | |
d9d96a3c AK |
294 | if (SPAPR_IS_PCI_LIOBN(liobn)) { |
295 | trace_spapr_iommu_pci_indirect(liobn, ioba1, tce_list, i, tce, ret); | |
296 | } else { | |
297 | trace_spapr_iommu_indirect(liobn, ioba1, tce_list, i, tce, ret); | |
298 | } | |
da95324e AK |
299 | return ret; |
300 | } | |
301 | ||
28e02042 | 302 | static target_ulong h_stuff_tce(PowerPCCPU *cpu, sPAPRMachineState *spapr, |
da95324e AK |
303 | target_ulong opcode, target_ulong *args) |
304 | { | |
305 | int i; | |
306 | target_ulong liobn = args[0]; | |
307 | target_ulong ioba = args[1]; | |
308 | target_ulong tce_value = args[2]; | |
309 | target_ulong npages = args[3]; | |
310 | target_ulong ret = H_PARAMETER; | |
311 | sPAPRTCETable *tcet = spapr_tce_find_by_liobn(liobn); | |
650f33ad | 312 | hwaddr page_mask, page_size; |
da95324e AK |
313 | |
314 | if (!tcet) { | |
315 | return H_PARAMETER; | |
316 | } | |
317 | ||
318 | if (npages > tcet->nb_table) { | |
319 | return H_PARAMETER; | |
320 | } | |
321 | ||
650f33ad AK |
322 | page_mask = IOMMU_PAGE_MASK(tcet->page_shift); |
323 | page_size = IOMMU_PAGE_SIZE(tcet->page_shift); | |
324 | ioba &= page_mask; | |
da95324e | 325 | |
650f33ad | 326 | for (i = 0; i < npages; ++i, ioba += page_size) { |
da95324e AK |
327 | ret = put_tce_emu(tcet, ioba, tce_value); |
328 | if (ret) { | |
329 | break; | |
330 | } | |
331 | } | |
d9d96a3c AK |
332 | if (SPAPR_IS_PCI_LIOBN(liobn)) { |
333 | trace_spapr_iommu_pci_stuff(liobn, ioba, tce_value, npages, ret); | |
334 | } else { | |
335 | trace_spapr_iommu_stuff(liobn, ioba, tce_value, npages, ret); | |
336 | } | |
da95324e AK |
337 | |
338 | return ret; | |
339 | } | |
340 | ||
28e02042 | 341 | static target_ulong h_put_tce(PowerPCCPU *cpu, sPAPRMachineState *spapr, |
ad0ebb91 DG |
342 | target_ulong opcode, target_ulong *args) |
343 | { | |
344 | target_ulong liobn = args[0]; | |
345 | target_ulong ioba = args[1]; | |
346 | target_ulong tce = args[2]; | |
7e472264 | 347 | target_ulong ret = H_PARAMETER; |
ad0ebb91 | 348 | sPAPRTCETable *tcet = spapr_tce_find_by_liobn(liobn); |
ad0ebb91 | 349 | |
edded454 | 350 | if (tcet) { |
650f33ad AK |
351 | hwaddr page_mask = IOMMU_PAGE_MASK(tcet->page_shift); |
352 | ||
353 | ioba &= page_mask; | |
354 | ||
7e472264 | 355 | ret = put_tce_emu(tcet, ioba, tce); |
edded454 | 356 | } |
d9d96a3c AK |
357 | if (SPAPR_IS_PCI_LIOBN(liobn)) { |
358 | trace_spapr_iommu_pci_put(liobn, ioba, tce, ret); | |
359 | } else { | |
360 | trace_spapr_iommu_put(liobn, ioba, tce, ret); | |
361 | } | |
ad0ebb91 | 362 | |
7e472264 | 363 | return ret; |
ad0ebb91 DG |
364 | } |
365 | ||
a0fcac9c LD |
366 | static target_ulong get_tce_emu(sPAPRTCETable *tcet, target_ulong ioba, |
367 | target_ulong *tce) | |
368 | { | |
1b8eceee AK |
369 | unsigned long index = (ioba - tcet->bus_offset) >> tcet->page_shift; |
370 | ||
371 | if (index >= tcet->nb_table) { | |
a0fcac9c LD |
372 | hcall_dprintf("spapr_iommu_get_tce on out-of-bounds IOBA 0x" |
373 | TARGET_FMT_lx "\n", ioba); | |
374 | return H_PARAMETER; | |
375 | } | |
376 | ||
1b8eceee | 377 | *tce = tcet->table[index]; |
a0fcac9c LD |
378 | |
379 | return H_SUCCESS; | |
380 | } | |
381 | ||
28e02042 | 382 | static target_ulong h_get_tce(PowerPCCPU *cpu, sPAPRMachineState *spapr, |
a0fcac9c LD |
383 | target_ulong opcode, target_ulong *args) |
384 | { | |
385 | target_ulong liobn = args[0]; | |
386 | target_ulong ioba = args[1]; | |
387 | target_ulong tce = 0; | |
388 | target_ulong ret = H_PARAMETER; | |
389 | sPAPRTCETable *tcet = spapr_tce_find_by_liobn(liobn); | |
390 | ||
a0fcac9c | 391 | if (tcet) { |
650f33ad AK |
392 | hwaddr page_mask = IOMMU_PAGE_MASK(tcet->page_shift); |
393 | ||
394 | ioba &= page_mask; | |
395 | ||
a0fcac9c LD |
396 | ret = get_tce_emu(tcet, ioba, &tce); |
397 | if (!ret) { | |
398 | args[0] = tce; | |
399 | } | |
400 | } | |
d9d96a3c AK |
401 | if (SPAPR_IS_PCI_LIOBN(liobn)) { |
402 | trace_spapr_iommu_pci_get(liobn, ioba, ret, tce); | |
403 | } else { | |
404 | trace_spapr_iommu_get(liobn, ioba, ret, tce); | |
405 | } | |
a0fcac9c LD |
406 | |
407 | return ret; | |
408 | } | |
409 | ||
ad0ebb91 | 410 | int spapr_dma_dt(void *fdt, int node_off, const char *propname, |
5c4cbcf2 | 411 | uint32_t liobn, uint64_t window, uint32_t size) |
ad0ebb91 | 412 | { |
5c4cbcf2 AK |
413 | uint32_t dma_prop[5]; |
414 | int ret; | |
415 | ||
416 | dma_prop[0] = cpu_to_be32(liobn); | |
417 | dma_prop[1] = cpu_to_be32(window >> 32); | |
418 | dma_prop[2] = cpu_to_be32(window & 0xFFFFFFFF); | |
419 | dma_prop[3] = 0; /* window size is 32 bits */ | |
420 | dma_prop[4] = cpu_to_be32(size); | |
421 | ||
422 | ret = fdt_setprop_cell(fdt, node_off, "ibm,#dma-address-cells", 2); | |
423 | if (ret < 0) { | |
424 | return ret; | |
425 | } | |
ad0ebb91 | 426 | |
5c4cbcf2 AK |
427 | ret = fdt_setprop_cell(fdt, node_off, "ibm,#dma-size-cells", 2); |
428 | if (ret < 0) { | |
429 | return ret; | |
430 | } | |
ad0ebb91 | 431 | |
5c4cbcf2 AK |
432 | ret = fdt_setprop(fdt, node_off, propname, dma_prop, sizeof(dma_prop)); |
433 | if (ret < 0) { | |
434 | return ret; | |
ad0ebb91 DG |
435 | } |
436 | ||
437 | return 0; | |
438 | } | |
5c4cbcf2 AK |
439 | |
440 | int spapr_tcet_dma_dt(void *fdt, int node_off, const char *propname, | |
2b7dc949 | 441 | sPAPRTCETable *tcet) |
5c4cbcf2 | 442 | { |
2b7dc949 | 443 | if (!tcet) { |
5c4cbcf2 AK |
444 | return 0; |
445 | } | |
446 | ||
2b7dc949 | 447 | return spapr_dma_dt(fdt, node_off, propname, |
650f33ad | 448 | tcet->liobn, 0, tcet->nb_table << tcet->page_shift); |
5c4cbcf2 | 449 | } |
a83000f5 AL |
450 | |
451 | static void spapr_tce_table_class_init(ObjectClass *klass, void *data) | |
452 | { | |
453 | DeviceClass *dc = DEVICE_CLASS(klass); | |
a83000f5 AL |
454 | dc->init = spapr_tce_table_realize; |
455 | dc->reset = spapr_tce_reset; | |
5f9490de | 456 | dc->unrealize = spapr_tce_table_unrealize; |
a83000f5 AL |
457 | |
458 | QLIST_INIT(&spapr_tce_tables); | |
459 | ||
460 | /* hcall-tce */ | |
461 | spapr_register_hypercall(H_PUT_TCE, h_put_tce); | |
a0fcac9c | 462 | spapr_register_hypercall(H_GET_TCE, h_get_tce); |
da95324e AK |
463 | spapr_register_hypercall(H_PUT_TCE_INDIRECT, h_put_tce_indirect); |
464 | spapr_register_hypercall(H_STUFF_TCE, h_stuff_tce); | |
a83000f5 AL |
465 | } |
466 | ||
467 | static TypeInfo spapr_tce_table_info = { | |
468 | .name = TYPE_SPAPR_TCE_TABLE, | |
469 | .parent = TYPE_DEVICE, | |
470 | .instance_size = sizeof(sPAPRTCETable), | |
471 | .class_init = spapr_tce_table_class_init, | |
a83000f5 AL |
472 | }; |
473 | ||
474 | static void register_types(void) | |
475 | { | |
476 | type_register_static(&spapr_tce_table_info); | |
477 | } | |
478 | ||
479 | type_init(register_types); |