hw/elf_ops: Fix a typo
[qemu/ar7.git] / hw / nvram / npcm7xx_otp.c
blobc61f2fc1aa2a88ed12d989c8cf65340e43746fc1
1 /*
2 * Nuvoton NPCM7xx OTP (Fuse Array) Interface
4 * Copyright 2020 Google LLC
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * 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, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
17 #include "qemu/osdep.h"
19 #include "hw/nvram/npcm7xx_otp.h"
20 #include "migration/vmstate.h"
21 #include "qapi/error.h"
22 #include "qemu/bitops.h"
23 #include "qemu/log.h"
24 #include "qemu/module.h"
25 #include "qemu/units.h"
27 /* Each module has 4 KiB of register space. Only a fraction of it is used. */
28 #define NPCM7XX_OTP_REGS_SIZE (4 * KiB)
30 /* 32-bit register indices. */
31 typedef enum NPCM7xxOTPRegister {
32 NPCM7XX_OTP_FST,
33 NPCM7XX_OTP_FADDR,
34 NPCM7XX_OTP_FDATA,
35 NPCM7XX_OTP_FCFG,
36 /* Offset 0x10 is FKEYIND in OTP1, FUSTRAP in OTP2 */
37 NPCM7XX_OTP_FKEYIND = 0x0010 / sizeof(uint32_t),
38 NPCM7XX_OTP_FUSTRAP = 0x0010 / sizeof(uint32_t),
39 NPCM7XX_OTP_FCTL,
40 NPCM7XX_OTP_REGS_END,
41 } NPCM7xxOTPRegister;
43 /* Register field definitions. */
44 #define FST_RIEN BIT(2)
45 #define FST_RDST BIT(1)
46 #define FST_RDY BIT(0)
47 #define FST_RO_MASK (FST_RDST | FST_RDY)
49 #define FADDR_BYTEADDR(rv) extract32((rv), 0, 10)
50 #define FADDR_BITPOS(rv) extract32((rv), 10, 3)
52 #define FDATA_CLEAR 0x00000001
54 #define FCFG_FDIS BIT(31)
55 #define FCFG_FCFGLK_MASK 0x00ff0000
57 #define FCTL_PROG_CMD1 0x00000001
58 #define FCTL_PROG_CMD2 0xbf79e5d0
59 #define FCTL_READ_CMD 0x00000002
61 /**
62 * struct NPCM7xxOTPClass - OTP module class.
63 * @parent: System bus device class.
64 * @mmio_ops: MMIO register operations for this type of module.
66 * The two OTP modules (key-storage and fuse-array) have slightly different
67 * behavior, so we give them different MMIO register operations.
69 struct NPCM7xxOTPClass {
70 SysBusDeviceClass parent;
72 const MemoryRegionOps *mmio_ops;
75 #define NPCM7XX_OTP_CLASS(klass) \
76 OBJECT_CLASS_CHECK(NPCM7xxOTPClass, (klass), TYPE_NPCM7XX_OTP)
77 #define NPCM7XX_OTP_GET_CLASS(obj) \
78 OBJECT_GET_CLASS(NPCM7xxOTPClass, (obj), TYPE_NPCM7XX_OTP)
80 static uint8_t ecc_encode_nibble(uint8_t n)
82 uint8_t result = n;
84 result |= (((n >> 0) & 1) ^ ((n >> 1) & 1)) << 4;
85 result |= (((n >> 2) & 1) ^ ((n >> 3) & 1)) << 5;
86 result |= (((n >> 0) & 1) ^ ((n >> 2) & 1)) << 6;
87 result |= (((n >> 1) & 1) ^ ((n >> 3) & 1)) << 7;
89 return result;
92 void npcm7xx_otp_array_write(NPCM7xxOTPState *s, const void *data,
93 unsigned int offset, unsigned int len)
95 const uint8_t *src = data;
96 uint8_t *dst = &s->array[offset];
98 while (len-- > 0) {
99 uint8_t c = *src++;
101 *dst++ = ecc_encode_nibble(extract8(c, 0, 4));
102 *dst++ = ecc_encode_nibble(extract8(c, 4, 4));
106 /* Common register read handler for both OTP classes. */
107 static uint64_t npcm7xx_otp_read(NPCM7xxOTPState *s, NPCM7xxOTPRegister reg)
109 uint32_t value = 0;
111 switch (reg) {
112 case NPCM7XX_OTP_FST:
113 case NPCM7XX_OTP_FADDR:
114 case NPCM7XX_OTP_FDATA:
115 case NPCM7XX_OTP_FCFG:
116 value = s->regs[reg];
117 break;
119 case NPCM7XX_OTP_FCTL:
120 qemu_log_mask(LOG_GUEST_ERROR,
121 "%s: read from write-only FCTL register\n",
122 DEVICE(s)->canonical_path);
123 break;
125 default:
126 qemu_log_mask(LOG_GUEST_ERROR, "%s: read from invalid offset 0x%zx\n",
127 DEVICE(s)->canonical_path, reg * sizeof(uint32_t));
128 break;
131 return value;
134 /* Read a byte from the OTP array into the data register. */
135 static void npcm7xx_otp_read_array(NPCM7xxOTPState *s)
137 uint32_t faddr = s->regs[NPCM7XX_OTP_FADDR];
139 s->regs[NPCM7XX_OTP_FDATA] = s->array[FADDR_BYTEADDR(faddr)];
140 s->regs[NPCM7XX_OTP_FST] |= FST_RDST | FST_RDY;
143 /* Program a byte from the data register into the OTP array. */
144 static void npcm7xx_otp_program_array(NPCM7xxOTPState *s)
146 uint32_t faddr = s->regs[NPCM7XX_OTP_FADDR];
148 /* Bits can only go 0->1, never 1->0. */
149 s->array[FADDR_BYTEADDR(faddr)] |= (1U << FADDR_BITPOS(faddr));
150 s->regs[NPCM7XX_OTP_FST] |= FST_RDST | FST_RDY;
153 /* Compute the next value of the FCFG register. */
154 static uint32_t npcm7xx_otp_compute_fcfg(uint32_t cur_value, uint32_t new_value)
156 uint32_t lock_mask;
157 uint32_t value;
160 * FCFGLK holds sticky bits 16..23, indicating which bits in FPRGLK (8..15)
161 * and FRDLK (0..7) that are read-only.
163 lock_mask = (cur_value & FCFG_FCFGLK_MASK) >> 8;
164 lock_mask |= lock_mask >> 8;
165 /* FDIS and FCFGLK bits are sticky (write 1 to set; can't clear). */
166 value = cur_value & (FCFG_FDIS | FCFG_FCFGLK_MASK);
167 /* Preserve read-only bits in FPRGLK and FRDLK */
168 value |= cur_value & lock_mask;
169 /* Set all bits that aren't read-only. */
170 value |= new_value & ~lock_mask;
172 return value;
175 /* Common register write handler for both OTP classes. */
176 static void npcm7xx_otp_write(NPCM7xxOTPState *s, NPCM7xxOTPRegister reg,
177 uint32_t value)
179 switch (reg) {
180 case NPCM7XX_OTP_FST:
181 /* RDST is cleared by writing 1 to it. */
182 if (value & FST_RDST) {
183 s->regs[NPCM7XX_OTP_FST] &= ~FST_RDST;
185 /* Preserve read-only and write-one-to-clear bits */
186 value &= ~FST_RO_MASK;
187 value |= s->regs[NPCM7XX_OTP_FST] & FST_RO_MASK;
188 break;
190 case NPCM7XX_OTP_FADDR:
191 break;
193 case NPCM7XX_OTP_FDATA:
195 * This register is cleared by writing a magic value to it; no other
196 * values can be written.
198 if (value == FDATA_CLEAR) {
199 value = 0;
200 } else {
201 value = s->regs[NPCM7XX_OTP_FDATA];
203 break;
205 case NPCM7XX_OTP_FCFG:
206 value = npcm7xx_otp_compute_fcfg(s->regs[NPCM7XX_OTP_FCFG], value);
207 break;
209 case NPCM7XX_OTP_FCTL:
210 switch (value) {
211 case FCTL_READ_CMD:
212 npcm7xx_otp_read_array(s);
213 break;
215 case FCTL_PROG_CMD1:
217 * Programming requires writing two separate magic values to this
218 * register; this is the first one. Just store it so it can be
219 * verified later when the second magic value is received.
221 break;
223 case FCTL_PROG_CMD2:
225 * Only initiate programming if we received the first half of the
226 * command immediately before this one.
228 if (s->regs[NPCM7XX_OTP_FCTL] == FCTL_PROG_CMD1) {
229 npcm7xx_otp_program_array(s);
231 break;
233 default:
234 qemu_log_mask(LOG_GUEST_ERROR,
235 "%s: unrecognized FCNTL value 0x%" PRIx32 "\n",
236 DEVICE(s)->canonical_path, value);
237 break;
239 if (value != FCTL_PROG_CMD1) {
240 value = 0;
242 break;
244 default:
245 qemu_log_mask(LOG_GUEST_ERROR, "%s: write to invalid offset 0x%zx\n",
246 DEVICE(s)->canonical_path, reg * sizeof(uint32_t));
247 return;
250 s->regs[reg] = value;
253 /* Register read handler specific to the fuse array OTP module. */
254 static uint64_t npcm7xx_fuse_array_read(void *opaque, hwaddr addr,
255 unsigned int size)
257 NPCM7xxOTPRegister reg = addr / sizeof(uint32_t);
258 NPCM7xxOTPState *s = opaque;
259 uint32_t value;
262 * Only the Fuse Strap register needs special handling; all other registers
263 * work the same way for both kinds of OTP modules.
265 if (reg != NPCM7XX_OTP_FUSTRAP) {
266 value = npcm7xx_otp_read(s, reg);
267 } else {
268 /* FUSTRAP is stored as three copies in the OTP array. */
269 uint32_t fustrap[3];
271 memcpy(fustrap, &s->array[0], sizeof(fustrap));
273 /* Determine value by a majority vote on each bit. */
274 value = (fustrap[0] & fustrap[1]) | (fustrap[0] & fustrap[2]) |
275 (fustrap[1] & fustrap[2]);
278 return value;
281 /* Register write handler specific to the fuse array OTP module. */
282 static void npcm7xx_fuse_array_write(void *opaque, hwaddr addr, uint64_t v,
283 unsigned int size)
285 NPCM7xxOTPRegister reg = addr / sizeof(uint32_t);
286 NPCM7xxOTPState *s = opaque;
289 * The Fuse Strap register is read-only. Other registers are handled by
290 * common code.
292 if (reg != NPCM7XX_OTP_FUSTRAP) {
293 npcm7xx_otp_write(s, reg, v);
297 static const MemoryRegionOps npcm7xx_fuse_array_ops = {
298 .read = npcm7xx_fuse_array_read,
299 .write = npcm7xx_fuse_array_write,
300 .endianness = DEVICE_LITTLE_ENDIAN,
301 .valid = {
302 .min_access_size = 4,
303 .max_access_size = 4,
304 .unaligned = false,
308 /* Register read handler specific to the key storage OTP module. */
309 static uint64_t npcm7xx_key_storage_read(void *opaque, hwaddr addr,
310 unsigned int size)
312 NPCM7xxOTPRegister reg = addr / sizeof(uint32_t);
313 NPCM7xxOTPState *s = opaque;
316 * Only the Fuse Key Index register needs special handling; all other
317 * registers work the same way for both kinds of OTP modules.
319 if (reg != NPCM7XX_OTP_FKEYIND) {
320 return npcm7xx_otp_read(s, reg);
323 qemu_log_mask(LOG_UNIMP, "%s: FKEYIND is not implemented\n", __func__);
325 return s->regs[NPCM7XX_OTP_FKEYIND];
328 /* Register write handler specific to the key storage OTP module. */
329 static void npcm7xx_key_storage_write(void *opaque, hwaddr addr, uint64_t v,
330 unsigned int size)
332 NPCM7xxOTPRegister reg = addr / sizeof(uint32_t);
333 NPCM7xxOTPState *s = opaque;
336 * Only the Fuse Key Index register needs special handling; all other
337 * registers work the same way for both kinds of OTP modules.
339 if (reg != NPCM7XX_OTP_FKEYIND) {
340 npcm7xx_otp_write(s, reg, v);
341 return;
344 qemu_log_mask(LOG_UNIMP, "%s: FKEYIND is not implemented\n", __func__);
346 s->regs[NPCM7XX_OTP_FKEYIND] = v;
349 static const MemoryRegionOps npcm7xx_key_storage_ops = {
350 .read = npcm7xx_key_storage_read,
351 .write = npcm7xx_key_storage_write,
352 .endianness = DEVICE_LITTLE_ENDIAN,
353 .valid = {
354 .min_access_size = 4,
355 .max_access_size = 4,
356 .unaligned = false,
360 static void npcm7xx_otp_enter_reset(Object *obj, ResetType type)
362 NPCM7xxOTPState *s = NPCM7XX_OTP(obj);
364 memset(s->regs, 0, sizeof(s->regs));
366 s->regs[NPCM7XX_OTP_FST] = 0x00000001;
367 s->regs[NPCM7XX_OTP_FCFG] = 0x20000000;
370 static void npcm7xx_otp_realize(DeviceState *dev, Error **errp)
372 NPCM7xxOTPClass *oc = NPCM7XX_OTP_GET_CLASS(dev);
373 NPCM7xxOTPState *s = NPCM7XX_OTP(dev);
374 SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
376 memset(s->array, 0, sizeof(s->array));
378 memory_region_init_io(&s->mmio, OBJECT(s), oc->mmio_ops, s, "regs",
379 NPCM7XX_OTP_REGS_SIZE);
380 sysbus_init_mmio(sbd, &s->mmio);
383 static const VMStateDescription vmstate_npcm7xx_otp = {
384 .name = "npcm7xx-otp",
385 .version_id = 0,
386 .minimum_version_id = 0,
387 .fields = (VMStateField[]) {
388 VMSTATE_UINT32_ARRAY(regs, NPCM7xxOTPState, NPCM7XX_OTP_NR_REGS),
389 VMSTATE_UINT8_ARRAY(array, NPCM7xxOTPState, NPCM7XX_OTP_ARRAY_BYTES),
390 VMSTATE_END_OF_LIST(),
394 static void npcm7xx_otp_class_init(ObjectClass *klass, void *data)
396 ResettableClass *rc = RESETTABLE_CLASS(klass);
397 DeviceClass *dc = DEVICE_CLASS(klass);
399 QEMU_BUILD_BUG_ON(NPCM7XX_OTP_REGS_END > NPCM7XX_OTP_NR_REGS);
401 dc->realize = npcm7xx_otp_realize;
402 dc->vmsd = &vmstate_npcm7xx_otp;
403 rc->phases.enter = npcm7xx_otp_enter_reset;
406 static void npcm7xx_key_storage_class_init(ObjectClass *klass, void *data)
408 NPCM7xxOTPClass *oc = NPCM7XX_OTP_CLASS(klass);
410 oc->mmio_ops = &npcm7xx_key_storage_ops;
413 static void npcm7xx_fuse_array_class_init(ObjectClass *klass, void *data)
415 NPCM7xxOTPClass *oc = NPCM7XX_OTP_CLASS(klass);
417 oc->mmio_ops = &npcm7xx_fuse_array_ops;
420 static const TypeInfo npcm7xx_otp_types[] = {
422 .name = TYPE_NPCM7XX_OTP,
423 .parent = TYPE_SYS_BUS_DEVICE,
424 .instance_size = sizeof(NPCM7xxOTPState),
425 .class_size = sizeof(NPCM7xxOTPClass),
426 .class_init = npcm7xx_otp_class_init,
427 .abstract = true,
430 .name = TYPE_NPCM7XX_KEY_STORAGE,
431 .parent = TYPE_NPCM7XX_OTP,
432 .class_init = npcm7xx_key_storage_class_init,
435 .name = TYPE_NPCM7XX_FUSE_ARRAY,
436 .parent = TYPE_NPCM7XX_OTP,
437 .class_init = npcm7xx_fuse_array_class_init,
440 DEFINE_TYPES(npcm7xx_otp_types);