2 * ARM Platform Bus device tree generation helpers
4 * Copyright (c) 2014 Linaro Limited
7 * Alex Graf <agraf@suse.de>
8 * Eric Auger <eric.auger@linaro.org>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms and conditions of the GNU General Public License,
12 * version 2 or later, as published by the Free Software Foundation.
14 * This program is distributed in the hope it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * You should have received a copy of the GNU General Public License along with
20 * this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "qemu/osdep.h"
25 #include "qapi/error.h"
27 #include "qemu-common.h"
29 #include <linux/vfio.h>
31 #include "hw/arm/sysbus-fdt.h"
32 #include "qemu/error-report.h"
33 #include "sysemu/device_tree.h"
34 #include "hw/platform-bus.h"
35 #include "sysemu/sysemu.h"
36 #include "hw/vfio/vfio-platform.h"
37 #include "hw/vfio/vfio-calxeda-xgmac.h"
38 #include "hw/vfio/vfio-amd-xgbe.h"
39 #include "hw/arm/fdt.h"
42 * internal struct that contains the information to create dynamic
45 typedef struct PlatformBusFDTData
{
46 void *fdt
; /* device tree handle */
47 int irq_start
; /* index of the first IRQ usable by platform bus devices */
48 const char *pbus_node_name
; /* name of the platform bus node */
49 PlatformBusDevice
*pbus
;
53 * struct used when calling the machine init done notifier
54 * that constructs the fdt nodes of platform bus devices
56 typedef struct PlatformBusFDTNotifierParams
{
58 ARMPlatformBusFDTParams
*fdt_params
;
59 } PlatformBusFDTNotifierParams
;
61 /* struct that associates a device type name and a node creation function */
62 typedef struct NodeCreationPair
{
64 int (*add_fdt_node_fn
)(SysBusDevice
*sbdev
, void *opaque
);
69 typedef struct HostProperty
{
77 * copy_properties_from_host
79 * copies properties listed in an array from host device tree to
80 * guest device tree. If a non optional property is not found, the
81 * function asserts. An optional property is ignored if not found
82 * in the host device tree.
83 * @props: array of HostProperty to copy
84 * @nb_props: number of properties in the array
85 * @host_dt: host device tree blob
86 * @guest_dt: guest device tree blob
87 * @node_path: host dt node path where the property is supposed to be
89 * @nodename: guest node name the properties should be added to
91 static void copy_properties_from_host(HostProperty
*props
, int nb_props
,
92 void *host_fdt
, void *guest_fdt
,
93 char *node_path
, char *nodename
)
99 for (i
= 0; i
< nb_props
; i
++) {
100 r
= qemu_fdt_getprop(host_fdt
, node_path
,
103 props
[i
].optional
? &err
: &error_fatal
);
105 qemu_fdt_setprop(guest_fdt
, nodename
,
106 props
[i
].name
, r
, prop_len
);
108 if (prop_len
!= -FDT_ERR_NOTFOUND
) {
109 /* optional property not returned although property exists */
110 error_report_err(err
);
118 /* clock properties whose values are copied/pasted from host */
119 static HostProperty clock_copied_properties
[] = {
120 {"compatible", false},
121 {"#clock-cells", false},
122 {"clock-frequency", true},
123 {"clock-output-names", true},
127 * fdt_build_clock_node
129 * Build a guest clock node, used as a dependency from a passthrough'ed
130 * device. Most information are retrieved from the host clock node.
131 * Also check the host clock is a fixed one.
133 * @host_fdt: host device tree blob from which info are retrieved
134 * @guest_fdt: guest device tree blob where the clock node is added
135 * @host_phandle: phandle of the clock in host device tree
136 * @guest_phandle: phandle to assign to the guest node
138 static void fdt_build_clock_node(void *host_fdt
, void *guest_fdt
,
139 uint32_t host_phandle
,
140 uint32_t guest_phandle
)
142 char *node_path
= NULL
;
145 int ret
, node_offset
, prop_len
, path_len
= 16;
147 node_offset
= fdt_node_offset_by_phandle(host_fdt
, host_phandle
);
148 if (node_offset
<= 0) {
149 error_setg(&error_fatal
,
150 "not able to locate clock handle %d in host device tree",
153 node_path
= g_malloc(path_len
);
154 while ((ret
= fdt_get_path(host_fdt
, node_offset
, node_path
, path_len
))
155 == -FDT_ERR_NOSPACE
) {
157 node_path
= g_realloc(node_path
, path_len
);
160 error_setg(&error_fatal
,
161 "not able to retrieve node path for clock handle %d",
165 r
= qemu_fdt_getprop(host_fdt
, node_path
, "compatible", &prop_len
,
167 if (strcmp(r
, "fixed-clock")) {
168 error_setg(&error_fatal
,
169 "clock handle %d is not a fixed clock", host_phandle
);
172 nodename
= strrchr(node_path
, '/');
173 qemu_fdt_add_subnode(guest_fdt
, nodename
);
175 copy_properties_from_host(clock_copied_properties
,
176 ARRAY_SIZE(clock_copied_properties
),
178 node_path
, nodename
);
180 qemu_fdt_setprop_cell(guest_fdt
, nodename
, "phandle", guest_phandle
);
186 * sysfs_to_dt_name: convert the name found in sysfs into the node name
187 * for instance e0900000.xgmac is converted into xgmac@e0900000
188 * @sysfs_name: directory name in sysfs
190 * returns the device tree name upon success or NULL in case the sysfs name
191 * does not match the expected format
193 static char *sysfs_to_dt_name(const char *sysfs_name
)
195 gchar
**substrings
= g_strsplit(sysfs_name
, ".", 2);
196 char *dt_name
= NULL
;
198 if (!substrings
|| !substrings
[0] || !substrings
[1]) {
201 dt_name
= g_strdup_printf("%s@%s", substrings
[1], substrings
[0]);
203 g_strfreev(substrings
);
207 /* Device Specific Code */
210 * add_calxeda_midway_xgmac_fdt_node
212 * Generates a simple node with following properties:
213 * compatible string, regs, interrupts, dma-coherent
215 static int add_calxeda_midway_xgmac_fdt_node(SysBusDevice
*sbdev
, void *opaque
)
217 PlatformBusFDTData
*data
= opaque
;
218 PlatformBusDevice
*pbus
= data
->pbus
;
219 void *fdt
= data
->fdt
;
220 const char *parent_node
= data
->pbus_node_name
;
221 int compat_str_len
, i
;
223 uint32_t *irq_attr
, *reg_attr
;
224 uint64_t mmio_base
, irq_number
;
225 VFIOPlatformDevice
*vdev
= VFIO_PLATFORM_DEVICE(sbdev
);
226 VFIODevice
*vbasedev
= &vdev
->vbasedev
;
228 mmio_base
= platform_bus_get_mmio_addr(pbus
, sbdev
, 0);
229 nodename
= g_strdup_printf("%s/%s@%" PRIx64
, parent_node
,
230 vbasedev
->name
, mmio_base
);
231 qemu_fdt_add_subnode(fdt
, nodename
);
233 compat_str_len
= strlen(vdev
->compat
) + 1;
234 qemu_fdt_setprop(fdt
, nodename
, "compatible",
235 vdev
->compat
, compat_str_len
);
237 qemu_fdt_setprop(fdt
, nodename
, "dma-coherent", "", 0);
239 reg_attr
= g_new(uint32_t, vbasedev
->num_regions
* 2);
240 for (i
= 0; i
< vbasedev
->num_regions
; i
++) {
241 mmio_base
= platform_bus_get_mmio_addr(pbus
, sbdev
, i
);
242 reg_attr
[2 * i
] = cpu_to_be32(mmio_base
);
243 reg_attr
[2 * i
+ 1] = cpu_to_be32(
244 memory_region_size(vdev
->regions
[i
]->mem
));
246 qemu_fdt_setprop(fdt
, nodename
, "reg", reg_attr
,
247 vbasedev
->num_regions
* 2 * sizeof(uint32_t));
249 irq_attr
= g_new(uint32_t, vbasedev
->num_irqs
* 3);
250 for (i
= 0; i
< vbasedev
->num_irqs
; i
++) {
251 irq_number
= platform_bus_get_irqn(pbus
, sbdev
, i
)
253 irq_attr
[3 * i
] = cpu_to_be32(GIC_FDT_IRQ_TYPE_SPI
);
254 irq_attr
[3 * i
+ 1] = cpu_to_be32(irq_number
);
255 irq_attr
[3 * i
+ 2] = cpu_to_be32(GIC_FDT_IRQ_FLAGS_LEVEL_HI
);
257 qemu_fdt_setprop(fdt
, nodename
, "interrupts",
258 irq_attr
, vbasedev
->num_irqs
* 3 * sizeof(uint32_t));
265 /* AMD xgbe properties whose values are copied/pasted from host */
266 static HostProperty amd_xgbe_copied_properties
[] = {
267 {"compatible", false},
268 {"dma-coherent", true},
269 {"amd,per-channel-interrupt", true},
271 {"mac-address", true},
272 {"amd,speed-set", false},
273 {"amd,serdes-blwc", true},
274 {"amd,serdes-cdr-rate", true},
275 {"amd,serdes-pq-skew", true},
276 {"amd,serdes-tx-amp", true},
277 {"amd,serdes-dfe-tap-config", true},
278 {"amd,serdes-dfe-tap-enable", true},
279 {"clock-names", false},
283 * add_amd_xgbe_fdt_node
285 * Generates the combined xgbe/phy node following kernel >=4.2
286 * binding documentation:
287 * Documentation/devicetree/bindings/net/amd-xgbe.txt:
288 * Also 2 clock nodes are created (dma and ptp)
290 * Asserts in case of error
292 static int add_amd_xgbe_fdt_node(SysBusDevice
*sbdev
, void *opaque
)
294 PlatformBusFDTData
*data
= opaque
;
295 PlatformBusDevice
*pbus
= data
->pbus
;
296 VFIOPlatformDevice
*vdev
= VFIO_PLATFORM_DEVICE(sbdev
);
297 VFIODevice
*vbasedev
= &vdev
->vbasedev
;
299 const char *parent_node
= data
->pbus_node_name
;
300 char **node_path
, *nodename
, *dt_name
;
301 void *guest_fdt
= data
->fdt
, *host_fdt
;
304 uint32_t *irq_attr
, *reg_attr
, *host_clock_phandles
;
305 uint64_t mmio_base
, irq_number
;
306 uint32_t guest_clock_phandles
[2];
308 host_fdt
= load_device_tree_from_sysfs();
310 dt_name
= sysfs_to_dt_name(vbasedev
->name
);
312 error_setg(&error_fatal
, "%s incorrect sysfs device name %s",
313 __func__
, vbasedev
->name
);
315 node_path
= qemu_fdt_node_path(host_fdt
, dt_name
, vdev
->compat
,
317 if (!node_path
|| !node_path
[0]) {
318 error_setg(&error_fatal
, "%s unable to retrieve node path for %s/%s",
319 __func__
, dt_name
, vdev
->compat
);
323 error_setg(&error_fatal
, "%s more than one node matching %s/%s!",
324 __func__
, dt_name
, vdev
->compat
);
329 if (vbasedev
->num_regions
!= 5) {
330 error_setg(&error_fatal
, "%s Does the host dt node combine XGBE/PHY?",
334 /* generate nodes for DMA_CLK and PTP_CLK */
335 r
= qemu_fdt_getprop(host_fdt
, node_path
[0], "clocks",
336 &prop_len
, &error_fatal
);
338 error_setg(&error_fatal
, "%s clocks property should contain 2 handles",
341 host_clock_phandles
= (uint32_t *)r
;
342 guest_clock_phandles
[0] = qemu_fdt_alloc_phandle(guest_fdt
);
343 guest_clock_phandles
[1] = qemu_fdt_alloc_phandle(guest_fdt
);
346 * clock handles fetched from host dt are in be32 layout whereas
347 * rest of the code uses cpu layout. Also guest clock handles are
350 fdt_build_clock_node(host_fdt
, guest_fdt
,
351 be32_to_cpu(host_clock_phandles
[0]),
352 guest_clock_phandles
[0]);
354 fdt_build_clock_node(host_fdt
, guest_fdt
,
355 be32_to_cpu(host_clock_phandles
[1]),
356 guest_clock_phandles
[1]);
358 /* combined XGBE/PHY node */
359 mmio_base
= platform_bus_get_mmio_addr(pbus
, sbdev
, 0);
360 nodename
= g_strdup_printf("%s/%s@%" PRIx64
, parent_node
,
361 vbasedev
->name
, mmio_base
);
362 qemu_fdt_add_subnode(guest_fdt
, nodename
);
364 copy_properties_from_host(amd_xgbe_copied_properties
,
365 ARRAY_SIZE(amd_xgbe_copied_properties
),
367 node_path
[0], nodename
);
369 qemu_fdt_setprop_cells(guest_fdt
, nodename
, "clocks",
370 guest_clock_phandles
[0],
371 guest_clock_phandles
[1]);
373 reg_attr
= g_new(uint32_t, vbasedev
->num_regions
* 2);
374 for (i
= 0; i
< vbasedev
->num_regions
; i
++) {
375 mmio_base
= platform_bus_get_mmio_addr(pbus
, sbdev
, i
);
376 reg_attr
[2 * i
] = cpu_to_be32(mmio_base
);
377 reg_attr
[2 * i
+ 1] = cpu_to_be32(
378 memory_region_size(vdev
->regions
[i
]->mem
));
380 qemu_fdt_setprop(guest_fdt
, nodename
, "reg", reg_attr
,
381 vbasedev
->num_regions
* 2 * sizeof(uint32_t));
383 irq_attr
= g_new(uint32_t, vbasedev
->num_irqs
* 3);
384 for (i
= 0; i
< vbasedev
->num_irqs
; i
++) {
385 irq_number
= platform_bus_get_irqn(pbus
, sbdev
, i
)
387 irq_attr
[3 * i
] = cpu_to_be32(GIC_FDT_IRQ_TYPE_SPI
);
388 irq_attr
[3 * i
+ 1] = cpu_to_be32(irq_number
);
390 * General device interrupt and PCS auto-negotiation interrupts are
391 * level-sensitive while the 4 per-channel interrupts are edge
394 QLIST_FOREACH(intp
, &vdev
->intp_list
, next
) {
395 if (intp
->pin
== i
) {
399 if (intp
->flags
& VFIO_IRQ_INFO_AUTOMASKED
) {
400 irq_attr
[3 * i
+ 2] = cpu_to_be32(GIC_FDT_IRQ_FLAGS_LEVEL_HI
);
402 irq_attr
[3 * i
+ 2] = cpu_to_be32(GIC_FDT_IRQ_FLAGS_EDGE_LO_HI
);
405 qemu_fdt_setprop(guest_fdt
, nodename
, "interrupts",
406 irq_attr
, vbasedev
->num_irqs
* 3 * sizeof(uint32_t));
409 g_strfreev(node_path
);
416 #endif /* CONFIG_LINUX */
418 /* list of supported dynamic sysbus devices */
419 static const NodeCreationPair add_fdt_node_functions
[] = {
421 {TYPE_VFIO_CALXEDA_XGMAC
, add_calxeda_midway_xgmac_fdt_node
},
422 {TYPE_VFIO_AMD_XGBE
, add_amd_xgbe_fdt_node
},
424 {"", NULL
}, /* last element */
430 * add_fdt_node - add the device tree node of a dynamic sysbus device
432 * @sbdev: handle to the sysbus device
433 * @opaque: handle to the PlatformBusFDTData
435 * Checks the sysbus type belongs to the list of device types that
436 * are dynamically instantiable and if so call the node creation
439 static void add_fdt_node(SysBusDevice
*sbdev
, void *opaque
)
443 for (i
= 0; i
< ARRAY_SIZE(add_fdt_node_functions
); i
++) {
444 if (!strcmp(object_get_typename(OBJECT(sbdev
)),
445 add_fdt_node_functions
[i
].typename
)) {
446 ret
= add_fdt_node_functions
[i
].add_fdt_node_fn(sbdev
, opaque
);
451 error_report("Device %s can not be dynamically instantiated",
452 qdev_fw_name(DEVICE(sbdev
)));
457 * add_all_platform_bus_fdt_nodes - create all the platform bus nodes
459 * builds the parent platform bus node and all the nodes of dynamic
460 * sysbus devices attached to it.
462 static void add_all_platform_bus_fdt_nodes(ARMPlatformBusFDTParams
*fdt_params
)
464 const char platcomp
[] = "qemu,platform\0simple-bus";
465 PlatformBusDevice
*pbus
;
469 int irq_start
, dtb_size
;
470 struct arm_boot_info
*info
= fdt_params
->binfo
;
471 const ARMPlatformBusSystemParams
*params
= fdt_params
->system_params
;
472 const char *intc
= fdt_params
->intc
;
473 void *fdt
= info
->get_dtb(info
, &dtb_size
);
476 * If the user provided a dtb, we assume the dynamic sysbus nodes
477 * already are integrated there. This corresponds to a use case where
478 * the dynamic sysbus nodes are complex and their generation is not yet
479 * supported. In that case the user can take charge of the guest dt
480 * while qemu takes charge of the qom stuff.
482 if (info
->dtb_filename
) {
488 node
= g_strdup_printf("/platform@%"PRIx64
, params
->platform_bus_base
);
489 addr
= params
->platform_bus_base
;
490 size
= params
->platform_bus_size
;
491 irq_start
= params
->platform_bus_first_irq
;
493 /* Create a /platform node that we can put all devices into */
494 qemu_fdt_add_subnode(fdt
, node
);
495 qemu_fdt_setprop(fdt
, node
, "compatible", platcomp
, sizeof(platcomp
));
497 /* Our platform bus region is less than 32bits, so 1 cell is enough for
500 qemu_fdt_setprop_cells(fdt
, node
, "#size-cells", 1);
501 qemu_fdt_setprop_cells(fdt
, node
, "#address-cells", 1);
502 qemu_fdt_setprop_cells(fdt
, node
, "ranges", 0, addr
>> 32, addr
, size
);
504 qemu_fdt_setprop_phandle(fdt
, node
, "interrupt-parent", intc
);
506 dev
= qdev_find_recursive(sysbus_get_default(), TYPE_PLATFORM_BUS_DEVICE
);
507 pbus
= PLATFORM_BUS_DEVICE(dev
);
509 /* We can only create dt nodes for dynamic devices when they're ready */
510 assert(pbus
->done_gathering
);
512 PlatformBusFDTData data
= {
514 .irq_start
= irq_start
,
515 .pbus_node_name
= node
,
519 /* Loop through all dynamic sysbus devices and create their node */
520 foreach_dynamic_sysbus_device(add_fdt_node
, &data
);
525 static void platform_bus_fdt_notify(Notifier
*notifier
, void *data
)
527 PlatformBusFDTNotifierParams
*p
= DO_UPCAST(PlatformBusFDTNotifierParams
,
530 add_all_platform_bus_fdt_nodes(p
->fdt_params
);
531 g_free(p
->fdt_params
);
535 void arm_register_platform_bus_fdt_creator(ARMPlatformBusFDTParams
*fdt_params
)
537 PlatformBusFDTNotifierParams
*p
= g_new(PlatformBusFDTNotifierParams
, 1);
539 p
->fdt_params
= fdt_params
;
540 p
->notifier
.notify
= platform_bus_fdt_notify
;
541 qemu_add_machine_init_done_notifier(&p
->notifier
);