2 * QEMU EEPROM 93xx emulation
4 * Copyright (c) 2006-2007 Stefan Weil
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 /* Emulation for serial EEPROMs:
21 * NMC93C06 256-Bit (16 x 16)
22 * NMC93C46 1024-Bit (64 x 16)
23 * NMC93C56 2028 Bit (128 x 16)
24 * NMC93C66 4096 Bit (256 x 16)
25 * Compatible devices include FM93C46 and others.
27 * Other drivers use these interface functions:
28 * eeprom93xx_new - add a new EEPROM (with 16, 64 or 256 words)
29 * eeprom93xx_free - destroy EEPROM
30 * eeprom93xx_read - read data from the EEPROM
31 * eeprom93xx_write - write data to the EEPROM
32 * eeprom93xx_data - get EEPROM data array for external manipulation
35 * - No emulation of EEPROM timings.
38 #include "qemu/osdep.h"
39 #include "hw/nvram/eeprom93xx.h"
40 #include "migration/qemu-file-types.h"
41 #include "migration/vmstate.h"
43 /* Debug EEPROM emulation. */
44 //~ #define DEBUG_EEPROM
47 #define logout(fmt, ...) fprintf(stderr, "EEPROM\t%-24s" fmt, __func__, ## __VA_ARGS__)
49 #define logout(fmt, ...) ((void)0)
52 #define EEPROM_INSTANCE 0
53 #define OLD_EEPROM_VERSION 20061112
54 #define EEPROM_VERSION (OLD_EEPROM_VERSION + 1)
58 eeprom_read
= 0x80, /* read register xx */
59 eeprom_write
= 0x40, /* write register xx */
60 eeprom_erase
= 0xc0, /* erase register xx */
61 eeprom_ewen
= 0x30, /* erase / write enable */
62 eeprom_ewds
= 0x00, /* erase / write disable */
63 eeprom_eral
= 0x20, /* erase all registers */
64 eeprom_wral
= 0x10, /* write all registers */
67 } eeprom_instruction_t
;
71 static const char *opstring
[] = {
72 "extended", "write", "read", "erase"
92 /* Code for saving and restoring of EEPROM state. */
94 /* Restore an uint16_t from an uint8_t
95 This is a Big hack, but it is how the old state did it.
98 static int get_uint16_from_uint8(QEMUFile
*f
, void *pv
, size_t size
,
99 const VMStateField
*field
)
102 *v
= qemu_get_ubyte(f
);
106 static int put_unused(QEMUFile
*f
, void *pv
, size_t size
,
107 const VMStateField
*field
, JSONWriter
*vmdesc
)
109 fprintf(stderr
, "uint16_from_uint8 is used only for backwards compatibility.\n");
110 fprintf(stderr
, "Never should be used to write a new state.\n");
116 static const VMStateInfo vmstate_hack_uint16_from_uint8
= {
117 .name
= "uint16_from_uint8",
118 .get
= get_uint16_from_uint8
,
122 #define VMSTATE_UINT16_HACK_TEST(_f, _s, _t) \
123 VMSTATE_SINGLE_TEST(_f, _s, _t, 0, vmstate_hack_uint16_from_uint8, uint16_t)
125 static bool is_old_eeprom_version(void *opaque
, int version_id
)
127 return version_id
== OLD_EEPROM_VERSION
;
130 static const VMStateDescription vmstate_eeprom
= {
132 .version_id
= EEPROM_VERSION
,
133 .minimum_version_id
= OLD_EEPROM_VERSION
,
134 .fields
= (VMStateField
[]) {
135 VMSTATE_UINT8(tick
, eeprom_t
),
136 VMSTATE_UINT8(address
, eeprom_t
),
137 VMSTATE_UINT8(command
, eeprom_t
),
138 VMSTATE_UINT8(writable
, eeprom_t
),
140 VMSTATE_UINT8(eecs
, eeprom_t
),
141 VMSTATE_UINT8(eesk
, eeprom_t
),
142 VMSTATE_UINT8(eedo
, eeprom_t
),
144 VMSTATE_UINT8(addrbits
, eeprom_t
),
145 VMSTATE_UINT16_HACK_TEST(size
, eeprom_t
, is_old_eeprom_version
),
146 VMSTATE_UNUSED_TEST(is_old_eeprom_version
, 1),
147 VMSTATE_UINT16_EQUAL_V(size
, eeprom_t
, EEPROM_VERSION
, NULL
),
148 VMSTATE_UINT16(data
, eeprom_t
),
149 VMSTATE_VARRAY_UINT16_UNSAFE(contents
, eeprom_t
, size
, 0,
150 vmstate_info_uint16
, uint16_t),
151 VMSTATE_END_OF_LIST()
155 void eeprom93xx_write(eeprom_t
*eeprom
, int eecs
, int eesk
, int eedi
)
157 uint8_t tick
= eeprom
->tick
;
158 uint8_t eedo
= eeprom
->eedo
;
159 uint16_t address
= eeprom
->address
;
160 uint8_t command
= eeprom
->command
;
162 logout("CS=%u SK=%u DI=%u DO=%u, tick = %u\n",
163 eecs
, eesk
, eedi
, eedo
, tick
);
165 if (!eeprom
->eecs
&& eecs
) {
166 /* Start chip select cycle. */
167 logout("Cycle start, waiting for 1st start bit (0)\n");
171 } else if (eeprom
->eecs
&& !eecs
) {
172 /* End chip select cycle. This triggers write / erase. */
173 if (eeprom
->writable
) {
174 uint8_t subcommand
= address
>> (eeprom
->addrbits
- 2);
175 if (command
== 0 && subcommand
== 2) {
177 for (address
= 0; address
< eeprom
->size
; address
++) {
178 eeprom
->contents
[address
] = 0xffff;
180 } else if (command
== 3) {
182 eeprom
->contents
[address
] = 0xffff;
183 } else if (tick
>= 2 + 2 + eeprom
->addrbits
+ 16) {
186 eeprom
->contents
[address
] &= eeprom
->data
;
187 } else if (command
== 0 && subcommand
== 1) {
189 for (address
= 0; address
< eeprom
->size
; address
++) {
190 eeprom
->contents
[address
] &= eeprom
->data
;
195 /* Output DO is tristate, read results in 1. */
197 } else if (eecs
&& !eeprom
->eesk
&& eesk
) {
198 /* Raising edge of clock shifts data in. */
200 /* Wait for 1st start bit. */
202 logout("Got correct 1st start bit, waiting for 2nd start bit (1)\n");
205 logout("wrong 1st start bit (is 1, should be 0)\n");
207 //~ assert(!"wrong start bit");
209 } else if (tick
== 1) {
210 /* Wait for 2nd start bit. */
212 logout("Got correct 2nd start bit, getting command + address\n");
215 logout("1st start bit is longer than needed\n");
217 } else if (tick
< 2 + 2) {
218 /* Got 2 start bits, transfer 2 opcode bits. */
224 } else if (tick
< 2 + 2 + eeprom
->addrbits
) {
225 /* Got 2 start bits and 2 opcode bits, transfer all address bits. */
227 address
= ((address
<< 1) | eedi
);
228 if (tick
== 2 + 2 + eeprom
->addrbits
) {
229 logout("%s command, address = 0x%02x (value 0x%04x)\n",
230 opstring
[command
], address
, eeprom
->contents
[address
]);
234 address
= address
% eeprom
->size
;
236 /* Command code in upper 2 bits of address. */
237 switch (address
>> (eeprom
->addrbits
- 2)) {
239 logout("write disable command\n");
240 eeprom
->writable
= 0;
243 logout("write all command\n");
246 logout("erase all command\n");
249 logout("write enable command\n");
250 eeprom
->writable
= 1;
254 /* Read, write or erase word. */
255 eeprom
->data
= eeprom
->contents
[address
];
258 } else if (tick
< 2 + 2 + eeprom
->addrbits
+ 16) {
259 /* Transfer 16 data bits. */
263 eedo
= ((eeprom
->data
& 0x8000) != 0);
266 eeprom
->data
+= eedi
;
268 logout("additional unneeded tick, not processed\n");
271 /* Save status of EEPROM. */
276 eeprom
->address
= address
;
277 eeprom
->command
= command
;
280 uint16_t eeprom93xx_read(eeprom_t
*eeprom
)
282 /* Return status of pin DO (0 or 1). */
283 logout("CS=%u DO=%u\n", eeprom
->eecs
, eeprom
->eedo
);
288 void eeprom93xx_reset(eeprom_t
*eeprom
)
291 logout("eeprom = 0x%p\n", eeprom
);
297 eeprom_t
*eeprom93xx_new(DeviceState
*dev
, uint16_t nwords
)
299 /* Add a new EEPROM (with 16, 64 or 256 words). */
313 assert(!"Unsupported EEPROM size, fallback to 64 words!");
318 eeprom
= g_malloc0(sizeof(*eeprom
) + nwords
* 2);
319 eeprom
->size
= nwords
;
320 eeprom
->addrbits
= addrbits
;
321 /* Output DO is tristate, read results in 1. */
323 logout("eeprom = 0x%p, nwords = %u\n", eeprom
, nwords
);
324 vmstate_register(VMSTATE_IF(dev
), 0, &vmstate_eeprom
, eeprom
);
328 void eeprom93xx_free(DeviceState
*dev
, eeprom_t
*eeprom
)
330 /* Destroy EEPROM. */
331 logout("eeprom = 0x%p\n", eeprom
);
332 vmstate_unregister(VMSTATE_IF(dev
), &vmstate_eeprom
, eeprom
);
336 uint16_t *eeprom93xx_data(eeprom_t
*eeprom
)
338 /* Get EEPROM data array. */
339 return &eeprom
->contents
[0];