2 * QEMU sPAPR NVRAM emulation
4 * Copyright (C) 2012 David Gibson, IBM Corporation.
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 #include "sysemu/device_tree.h"
28 #include "hw/sysbus.h"
29 #include "hw/ppc/spapr.h"
30 #include "hw/ppc/spapr_vio.h"
32 typedef struct sPAPRNVRAM
{
36 BlockDriverState
*drive
;
39 #define TYPE_VIO_SPAPR_NVRAM "spapr-nvram"
40 #define VIO_SPAPR_NVRAM(obj) \
41 OBJECT_CHECK(sPAPRNVRAM, (obj), TYPE_VIO_SPAPR_NVRAM)
43 #define MIN_NVRAM_SIZE 8192
44 #define DEFAULT_NVRAM_SIZE 65536
45 #define MAX_NVRAM_SIZE (UINT16_MAX * 16)
47 static void rtas_nvram_fetch(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
48 uint32_t token
, uint32_t nargs
,
50 uint32_t nret
, target_ulong rets
)
52 sPAPRNVRAM
*nvram
= spapr
->nvram
;
53 hwaddr offset
, buffer
, len
;
57 if ((nargs
!= 3) || (nret
!= 2)) {
58 rtas_st(rets
, 0, RTAS_OUT_PARAM_ERROR
);
63 rtas_st(rets
, 0, RTAS_OUT_HW_ERROR
);
68 offset
= rtas_ld(args
, 0);
69 buffer
= rtas_ld(args
, 1);
70 len
= rtas_ld(args
, 2);
72 if (((offset
+ len
) < offset
)
73 || ((offset
+ len
) > nvram
->size
)) {
74 rtas_st(rets
, 0, RTAS_OUT_PARAM_ERROR
);
79 membuf
= cpu_physical_memory_map(buffer
, &len
, 1);
81 alen
= bdrv_pread(nvram
->drive
, offset
, membuf
, len
);
85 memcpy(membuf
, nvram
->buf
+ offset
, len
);
88 cpu_physical_memory_unmap(membuf
, len
, 1, len
);
90 rtas_st(rets
, 0, (alen
< len
) ? RTAS_OUT_HW_ERROR
: RTAS_OUT_SUCCESS
);
91 rtas_st(rets
, 1, (alen
< 0) ? 0 : alen
);
94 static void rtas_nvram_store(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
95 uint32_t token
, uint32_t nargs
,
97 uint32_t nret
, target_ulong rets
)
99 sPAPRNVRAM
*nvram
= spapr
->nvram
;
100 hwaddr offset
, buffer
, len
;
104 if ((nargs
!= 3) || (nret
!= 2)) {
105 rtas_st(rets
, 0, RTAS_OUT_PARAM_ERROR
);
110 rtas_st(rets
, 0, RTAS_OUT_HW_ERROR
);
114 offset
= rtas_ld(args
, 0);
115 buffer
= rtas_ld(args
, 1);
116 len
= rtas_ld(args
, 2);
118 if (((offset
+ len
) < offset
)
119 || ((offset
+ len
) > nvram
->size
)) {
120 rtas_st(rets
, 0, RTAS_OUT_PARAM_ERROR
);
124 membuf
= cpu_physical_memory_map(buffer
, &len
, 0);
126 alen
= bdrv_pwrite(nvram
->drive
, offset
, membuf
, len
);
130 memcpy(nvram
->buf
+ offset
, membuf
, len
);
133 cpu_physical_memory_unmap(membuf
, len
, 0, len
);
135 rtas_st(rets
, 0, (alen
< len
) ? RTAS_OUT_HW_ERROR
: RTAS_OUT_SUCCESS
);
136 rtas_st(rets
, 1, (alen
< 0) ? 0 : alen
);
139 static int spapr_nvram_init(VIOsPAPRDevice
*dev
)
141 sPAPRNVRAM
*nvram
= VIO_SPAPR_NVRAM(dev
);
144 nvram
->size
= bdrv_getlength(nvram
->drive
);
146 nvram
->size
= DEFAULT_NVRAM_SIZE
;
147 nvram
->buf
= g_malloc0(nvram
->size
);
150 if ((nvram
->size
< MIN_NVRAM_SIZE
) || (nvram
->size
> MAX_NVRAM_SIZE
)) {
151 fprintf(stderr
, "spapr-nvram must be between %d and %d bytes in size\n",
152 MIN_NVRAM_SIZE
, MAX_NVRAM_SIZE
);
156 spapr_rtas_register("nvram-fetch", rtas_nvram_fetch
);
157 spapr_rtas_register("nvram-store", rtas_nvram_store
);
162 static int spapr_nvram_devnode(VIOsPAPRDevice
*dev
, void *fdt
, int node_off
)
164 sPAPRNVRAM
*nvram
= VIO_SPAPR_NVRAM(dev
);
166 return fdt_setprop_cell(fdt
, node_off
, "#bytes", nvram
->size
);
169 static Property spapr_nvram_properties
[] = {
170 DEFINE_SPAPR_PROPERTIES(sPAPRNVRAM
, sdev
),
171 DEFINE_PROP_DRIVE("drive", sPAPRNVRAM
, drive
),
172 DEFINE_PROP_END_OF_LIST(),
175 static void spapr_nvram_class_init(ObjectClass
*klass
, void *data
)
177 DeviceClass
*dc
= DEVICE_CLASS(klass
);
178 VIOsPAPRDeviceClass
*k
= VIO_SPAPR_DEVICE_CLASS(klass
);
180 k
->init
= spapr_nvram_init
;
181 k
->devnode
= spapr_nvram_devnode
;
182 k
->dt_name
= "nvram";
183 k
->dt_type
= "nvram";
184 k
->dt_compatible
= "qemu,spapr-nvram";
185 set_bit(DEVICE_CATEGORY_MISC
, dc
->categories
);
186 dc
->props
= spapr_nvram_properties
;
189 static const TypeInfo spapr_nvram_type_info
= {
190 .name
= TYPE_VIO_SPAPR_NVRAM
,
191 .parent
= TYPE_VIO_SPAPR_DEVICE
,
192 .instance_size
= sizeof(sPAPRNVRAM
),
193 .class_init
= spapr_nvram_class_init
,
196 static void spapr_nvram_register_types(void)
198 type_register_static(&spapr_nvram_type_info
);
201 type_init(spapr_nvram_register_types
)