summaryrefslogtreecommitdiff
path: root/include/hw/ppc/fdt.h
blob: bd5b0a8c3d5f4d2071cccfe474bae0b0092b79ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * QEMU PowerPC helper routines for the device tree.
 *
 * Copyright (C) 2016 IBM Corp.
 *
 * This code is licensed under the GPL version 2 or later. See the
 * COPYING file in the top-level directory.
 */

#ifndef PPC_FDT_H
#define PPC_FDT_H

#include "qemu/error-report.h"
#include "target/ppc/cpu-qom.h"

#define _FDT(exp)                                                  \
    do {                                                           \
        int ret = (exp);                                           \
        if (ret < 0) {                                             \
            error_report("error creating device tree: %s: %s",   \
                    #exp, fdt_strerror(ret));                      \
            exit(1);                                               \
        }                                                          \
    } while (0)

size_t ppc_create_page_sizes_prop(CPUPPCState *env, uint32_t *prop,
                                  size_t maxsize);

#endif /* PPC_FDT_H */