Merge tag 'v9.0.0-rc3'
[qemu/ar7.git] / hw / ppc / spapr_ovec.c
blob88e29536aa71591d77c62d6ce5db41674f1fa33f
1 /*
2 * QEMU SPAPR Architecture Option Vector Helper Functions
4 * Copyright IBM Corp. 2016
6 * Authors:
7 * Bharata B Rao <bharata@linux.vnet.ibm.com>
8 * Michael Roth <mdroth@linux.vnet.ibm.com>
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include "hw/ppc/spapr_ovec.h"
16 #include "migration/vmstate.h"
17 #include "qemu/bitmap.h"
18 #include "exec/address-spaces.h"
19 #include "qemu/error-report.h"
20 #include "trace.h"
21 #include <libfdt.h>
23 #define OV_MAXBYTES 256 /* not including length byte */
24 #define OV_MAXBITS (OV_MAXBYTES * BITS_PER_BYTE)
26 /* we *could* work with bitmaps directly, but handling the bitmap privately
27 * allows us to more safely make assumptions about the bitmap size and
28 * simplify the calling code somewhat
30 struct SpaprOptionVector {
31 unsigned long *bitmap;
32 int32_t bitmap_size; /* only used for migration */
35 const VMStateDescription vmstate_spapr_ovec = {
36 .name = "spapr_option_vector",
37 .version_id = 1,
38 .minimum_version_id = 1,
39 .fields = (const VMStateField[]) {
40 VMSTATE_BITMAP(bitmap, SpaprOptionVector, 1, bitmap_size),
41 VMSTATE_END_OF_LIST()
45 SpaprOptionVector *spapr_ovec_new(void)
47 SpaprOptionVector *ov;
49 ov = g_new0(SpaprOptionVector, 1);
50 ov->bitmap = bitmap_new(OV_MAXBITS);
51 ov->bitmap_size = OV_MAXBITS;
53 return ov;
56 SpaprOptionVector *spapr_ovec_clone(SpaprOptionVector *ov_orig)
58 SpaprOptionVector *ov;
60 g_assert(ov_orig);
62 ov = spapr_ovec_new();
63 bitmap_copy(ov->bitmap, ov_orig->bitmap, OV_MAXBITS);
65 return ov;
68 void spapr_ovec_intersect(SpaprOptionVector *ov,
69 SpaprOptionVector *ov1,
70 SpaprOptionVector *ov2)
72 g_assert(ov);
73 g_assert(ov1);
74 g_assert(ov2);
76 bitmap_and(ov->bitmap, ov1->bitmap, ov2->bitmap, OV_MAXBITS);
79 /* returns true if ov1 has a subset of bits in ov2 */
80 bool spapr_ovec_subset(SpaprOptionVector *ov1, SpaprOptionVector *ov2)
82 unsigned long *tmp = bitmap_new(OV_MAXBITS);
83 bool result;
85 g_assert(ov1);
86 g_assert(ov2);
88 bitmap_andnot(tmp, ov1->bitmap, ov2->bitmap, OV_MAXBITS);
89 result = bitmap_empty(tmp, OV_MAXBITS);
91 g_free(tmp);
93 return result;
96 void spapr_ovec_cleanup(SpaprOptionVector *ov)
98 if (ov) {
99 g_free(ov->bitmap);
100 g_free(ov);
104 void spapr_ovec_set(SpaprOptionVector *ov, long bitnr)
106 g_assert(ov);
107 g_assert(bitnr < OV_MAXBITS);
109 set_bit(bitnr, ov->bitmap);
112 void spapr_ovec_clear(SpaprOptionVector *ov, long bitnr)
114 g_assert(ov);
115 g_assert(bitnr < OV_MAXBITS);
117 clear_bit(bitnr, ov->bitmap);
120 bool spapr_ovec_test(SpaprOptionVector *ov, long bitnr)
122 g_assert(ov);
123 g_assert(bitnr < OV_MAXBITS);
125 return test_bit(bitnr, ov->bitmap) ? true : false;
128 bool spapr_ovec_empty(SpaprOptionVector *ov)
130 g_assert(ov);
132 return bitmap_empty(ov->bitmap, OV_MAXBITS);
135 static void guest_byte_to_bitmap(uint8_t entry, unsigned long *bitmap,
136 long bitmap_offset)
138 int i;
140 for (i = 0; i < BITS_PER_BYTE; i++) {
141 if (entry & (1 << (BITS_PER_BYTE - 1 - i))) {
142 bitmap_set(bitmap, bitmap_offset + i, 1);
147 static uint8_t guest_byte_from_bitmap(unsigned long *bitmap, long bitmap_offset)
149 uint8_t entry = 0;
150 int i;
152 for (i = 0; i < BITS_PER_BYTE; i++) {
153 if (test_bit(bitmap_offset + i, bitmap)) {
154 entry |= (1 << (BITS_PER_BYTE - 1 - i));
158 return entry;
161 static target_ulong vector_addr(target_ulong table_addr, int vector)
163 uint16_t vector_count, vector_len;
164 int i;
166 vector_count = ldub_phys(&address_space_memory, table_addr) + 1;
167 if (vector > vector_count) {
168 return 0;
170 table_addr++; /* skip nr option vectors */
172 for (i = 0; i < vector - 1; i++) {
173 vector_len = ldub_phys(&address_space_memory, table_addr) + 1;
174 table_addr += vector_len + 1; /* bit-vector + length byte */
176 return table_addr;
179 SpaprOptionVector *spapr_ovec_parse_vector(target_ulong table_addr, int vector)
181 SpaprOptionVector *ov;
182 target_ulong addr;
183 uint16_t vector_len;
184 int i;
186 g_assert(table_addr);
187 g_assert(vector >= 1); /* vector numbering starts at 1 */
189 addr = vector_addr(table_addr, vector);
190 if (!addr) {
191 /* specified vector isn't present */
192 return NULL;
195 vector_len = ldub_phys(&address_space_memory, addr++) + 1;
196 g_assert(vector_len <= OV_MAXBYTES);
197 ov = spapr_ovec_new();
199 for (i = 0; i < vector_len; i++) {
200 uint8_t entry = ldub_phys(&address_space_memory, addr + i);
201 if (entry) {
202 trace_spapr_ovec_parse_vector(vector, i + 1, vector_len, entry);
203 guest_byte_to_bitmap(entry, ov->bitmap, i * BITS_PER_BYTE);
207 return ov;
210 int spapr_dt_ovec(void *fdt, int fdt_offset,
211 SpaprOptionVector *ov, const char *name)
213 uint8_t vec[OV_MAXBYTES + 1];
214 uint16_t vec_len;
215 unsigned long lastbit;
216 int i;
218 g_assert(ov);
220 lastbit = find_last_bit(ov->bitmap, OV_MAXBITS);
221 /* if no bits are set, include at least 1 byte of the vector so we can
222 * still encoded this in the device tree while abiding by the same
223 * encoding/sizing expected in ibm,client-architecture-support
225 vec_len = (lastbit == OV_MAXBITS) ? 1 : lastbit / BITS_PER_BYTE + 1;
226 g_assert(vec_len <= OV_MAXBYTES);
227 /* guest expects vector len encoded as vec_len - 1, since the length byte
228 * is assumed and not included, and the first byte of the vector
229 * is assumed as well
231 vec[0] = vec_len - 1;
233 for (i = 1; i < vec_len + 1; i++) {
234 vec[i] = guest_byte_from_bitmap(ov->bitmap, (i - 1) * BITS_PER_BYTE);
235 if (vec[i]) {
236 trace_spapr_ovec_populate_dt(i, vec_len, vec[i]);
240 return fdt_setprop(fdt, fdt_offset, name, vec, vec_len + 1);