2 * QEMU NVRAM emulation for DS1225Y chip
4 * Copyright (c) 2007-2008 Hervé Poussineau
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
36 static uint32_t nvram_readb (void *opaque
, target_phys_addr_t addr
)
38 NvRamState
*s
= opaque
;
41 val
= s
->contents
[addr
];
42 trace_nvram_read(addr
, val
);
46 static uint32_t nvram_readw (void *opaque
, target_phys_addr_t addr
)
49 v
= nvram_readb(opaque
, addr
);
50 v
|= nvram_readb(opaque
, addr
+ 1) << 8;
54 static uint32_t nvram_readl (void *opaque
, target_phys_addr_t addr
)
57 v
= nvram_readb(opaque
, addr
);
58 v
|= nvram_readb(opaque
, addr
+ 1) << 8;
59 v
|= nvram_readb(opaque
, addr
+ 2) << 16;
60 v
|= nvram_readb(opaque
, addr
+ 3) << 24;
64 static void nvram_writeb (void *opaque
, target_phys_addr_t addr
, uint32_t val
)
66 NvRamState
*s
= opaque
;
69 trace_nvram_write(addr
, s
->contents
[addr
], val
);
71 s
->contents
[addr
] = val
;
73 fseek(s
->file
, addr
, SEEK_SET
);
79 static void nvram_writew (void *opaque
, target_phys_addr_t addr
, uint32_t val
)
81 nvram_writeb(opaque
, addr
, val
& 0xff);
82 nvram_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
85 static void nvram_writel (void *opaque
, target_phys_addr_t addr
, uint32_t val
)
87 nvram_writeb(opaque
, addr
, val
& 0xff);
88 nvram_writeb(opaque
, addr
+ 1, (val
>> 8) & 0xff);
89 nvram_writeb(opaque
, addr
+ 2, (val
>> 16) & 0xff);
90 nvram_writeb(opaque
, addr
+ 3, (val
>> 24) & 0xff);
93 static CPUReadMemoryFunc
* const nvram_read
[] = {
99 static CPUWriteMemoryFunc
* const nvram_write
[] = {
105 static int nvram_post_load(void *opaque
, int version_id
)
107 NvRamState
*s
= opaque
;
109 /* Close file, as filename may has changed in load/store process */
114 /* Write back nvram contents */
115 s
->file
= fopen(s
->filename
, "wb");
117 /* Write back contents, as 'wb' mode cleaned the file */
118 if (fwrite(s
->contents
, s
->chip_size
, 1, s
->file
) != 1) {
119 printf("nvram_post_load: short write\n");
127 static const VMStateDescription vmstate_nvram
= {
130 .minimum_version_id
= 0,
131 .minimum_version_id_old
= 0,
132 .post_load
= nvram_post_load
,
133 .fields
= (VMStateField
[]) {
134 VMSTATE_VARRAY_UINT32(contents
, NvRamState
, chip_size
, 0,
135 vmstate_info_uint8
, uint8_t),
136 VMSTATE_END_OF_LIST()
145 static int nvram_sysbus_initfn(SysBusDevice
*dev
)
147 NvRamState
*s
= &FROM_SYSBUS(SysBusNvRamState
, dev
)->nvram
;
151 s
->contents
= g_malloc0(s
->chip_size
);
153 s_io
= cpu_register_io_memory(nvram_read
, nvram_write
, s
,
154 DEVICE_NATIVE_ENDIAN
);
155 sysbus_init_mmio(dev
, s
->chip_size
, s_io
);
157 /* Read current file */
158 file
= fopen(s
->filename
, "rb");
160 /* Read nvram contents */
161 if (fread(s
->contents
, s
->chip_size
, 1, file
) != 1) {
162 printf("nvram_sysbus_initfn: short read\n");
166 nvram_post_load(s
, 0);
171 static SysBusDeviceInfo nvram_sysbus_info
= {
172 .qdev
.name
= "ds1225y",
173 .qdev
.size
= sizeof(SysBusNvRamState
),
174 .qdev
.vmsd
= &vmstate_nvram
,
175 .init
= nvram_sysbus_initfn
,
176 .qdev
.props
= (Property
[]) {
177 DEFINE_PROP_UINT32("size", SysBusNvRamState
, nvram
.chip_size
, 0x2000),
178 DEFINE_PROP_STRING("filename", SysBusNvRamState
, nvram
.filename
),
179 DEFINE_PROP_END_OF_LIST(),
183 static void nvram_register(void)
185 sysbus_register_withprop(&nvram_sysbus_info
);
188 device_init(nvram_register
)