2 * QEMU PowerNV, BMC related functions
4 * Copyright (c) 2016-2017, IBM Corporation.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2, as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include "qemu/osdep.h"
21 #include "sysemu/sysemu.h"
22 #include "target/ppc/cpu.h"
23 #include "qapi/error.h"
25 #include "hw/ipmi/ipmi.h"
26 #include "hw/ppc/fdt.h"
28 #include "hw/ppc/pnv.h"
32 /* TODO: include definition in ipmi.h */
33 #define IPMI_SDR_FULL_TYPE 1
35 void pnv_bmc_populate_sensors(IPMIBmc
*bmc
, void *fdt
)
39 const struct ipmi_sdr_compact
*sdr
;
42 offset
= fdt_add_subnode(fdt
, 0, "/bmc");
45 _FDT((fdt_setprop_string(fdt
, offset
, "name", "bmc")));
46 _FDT((fdt_setprop_cell(fdt
, offset
, "#address-cells", 0x1)));
47 _FDT((fdt_setprop_cell(fdt
, offset
, "#size-cells", 0x0)));
49 offset
= fdt_add_subnode(fdt
, offset
, "sensors");
52 _FDT((fdt_setprop_cell(fdt
, offset
, "#address-cells", 0x1)));
53 _FDT((fdt_setprop_cell(fdt
, offset
, "#size-cells", 0x0)));
55 for (i
= 0; !ipmi_bmc_sdr_find(bmc
, i
, &sdr
, &nextrec
); i
++) {
59 if (sdr
->header
.rec_type
!= IPMI_SDR_COMPACT_TYPE
&&
60 sdr
->header
.rec_type
!= IPMI_SDR_FULL_TYPE
) {
64 name
= g_strdup_printf("sensor@%x", sdr
->sensor_owner_number
);
65 off
= fdt_add_subnode(fdt
, offset
, name
);
69 _FDT((fdt_setprop_cell(fdt
, off
, "reg", sdr
->sensor_owner_number
)));
70 _FDT((fdt_setprop_string(fdt
, off
, "name", "sensor")));
71 _FDT((fdt_setprop_string(fdt
, off
, "compatible", "ibm,ipmi-sensor")));
72 _FDT((fdt_setprop_cell(fdt
, off
, "ipmi-sensor-reading-type",
74 _FDT((fdt_setprop_cell(fdt
, off
, "ipmi-entity-id",
76 _FDT((fdt_setprop_cell(fdt
, off
, "ipmi-entity-instance",
77 sdr
->entity_instance
)));
78 _FDT((fdt_setprop_cell(fdt
, off
, "ipmi-sensor-type",