hw/misc: implement ESP32-C3 Digital Signature

This commit is contained in:
harshal.patil
2023-09-08 12:59:49 +05:30
committed by Ivan Grokhotkov
parent 4479e366fb
commit 9f1a4bbec8
3 changed files with 75 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
/*
* ESP32-C3 Digital Signature emulation
*
* Copyright (c) 2023 Espressif Systems (Shanghai) Co. Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 or
* (at your option) any later version.
*/
#include "qemu/osdep.h"
#include "hw/misc/esp32c3_ds.h"
static void esp32c3_ds_class_init(ObjectClass *klass, void *data)
{
ESPDsClass* class = ESP_DS_CLASS(klass);
class->mem_blk_size = ESP32C3_DS_MEM_BLK_SIZE;
class->date = ESP32C3_DS_DATE_REG_VALUE;
}
static const TypeInfo esp32c3_ds_info = {
.name = TYPE_ESP32C3_DS,
.parent = TYPE_ESP_DS,
.instance_size = sizeof(ESP32C3DsState),
.class_init = esp32c3_ds_class_init,
.class_size = sizeof(ESP32C3DsClass)
};
static void esp32c3_ds_register_types(void)
{
type_register_static(&esp32c3_ds_info);
}
type_init(esp32c3_ds_register_types)
+2
View File
@@ -166,6 +166,8 @@ if gcrypt.found()
'esp32c3_aes.c',
'esp_rsa.c',
'esp32c3_rsa.c',
'esp_ds.c',
'esp32c3_ds.c',
))
endif
+39
View File
@@ -0,0 +1,39 @@
/*
* ESP32-C3 Digital Signature accelerator
*
* Copyright (c) 2023 Espressif Systems (Shanghai) Co. Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 or
* (at your option) any later version.
*/
#pragma once
#include "hw/misc/esp_ds.h"
#define TYPE_ESP32C3_DS "misc.esp32c3.ds"
#define ESP32C3_DS(obj) OBJECT_CHECK(ESP32C3DsState, (obj), TYPE_ESP32C3_DS)
#define ESP32C3_DS_MEM_BLK_SIZE 384
#define ESP32C3_DS_DATE_REG_VALUE 0x20200618
#define ESP32C3_DS_CIPHERTEXT_SIZE (ESP32C3_DS_MEM_BLK_SIZE + \
ESP32C3_DS_MEM_BLK_SIZE + \
ESP32C3_DS_MEM_BLK_SIZE + \
ESP_DS_BOX_MEM_BLK_SIZE)
#define ESP32C3_DS_CALC_MD_SIZE (ESP32C3_DS_MEM_BLK_SIZE + \
ESP32C3_DS_MEM_BLK_SIZE + \
ESP32C3_DS_MEM_BLK_SIZE + \
ESP_DS_MPRIME_SIZE + \
ESP_DS_L_SIZE + \
ESP_DS_IV_SIZE)
typedef struct ESP32C3DsState {
ESPDsState parent;
} ESP32C3DsState;
typedef struct ESP32C3DsClass {
ESPDsClass parent_class;
} ESP32C3DsClass;