-
Notifications
You must be signed in to change notification settings - Fork 8
/
hw_accelerator_driver_ipecc_platform.c
202 lines (187 loc) · 5.94 KB
/
hw_accelerator_driver_ipecc_platform.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/*
* Copyright (C) 2023 - This file is part of IPECC project
*
* Authors:
* Karim KHALFALLAH <[email protected]>
* Ryad BENADJILA <[email protected]>
*
* Contributors:
* Adrian THILLARD
* Emmanuel PROUFF
*
* This software is licensed under GPL v2 license.
* See LICENSE file at the root folder of the project.
*/
#include "hw_accelerator_driver_ipecc_platform.h"
#include <stdint.h>
#if defined(WITH_EC_HW_ACCELERATOR) && !defined(WITH_EC_HW_SOCKET_EMUL)
/* The IP "physical" address in RAM.
*
* This address should only be used for direct access in standalone
* mode or using a physical memory access (e.g. through /dev/mem).
*/
#ifdef WITH_EC_HW_STANDALONE_XILINX
#include <xparameters.h>
#define IPECC_PHYS_BADDR (XPAR_ECC_0_BASEADDR)
#ifdef XPAR_PSEUDO_TRNG_0_BASEADDR
#define IPECC_PHYS_PSEUDO_TRNG_BADDR (XPAR_PSEUDO_TRNG_0_BASEADDR)
#else
#define IPECC_PHYS_PSEUDO_TRNG_BADDR (NULL)
#endif
#else
#define IPECC_PHYS_BADDR 0x40000000
#define IPECC_PHYS_PSEUDO_TRNG_BADDR 0x40001000
#endif
#define IPECC_PHYS_SZ (4096) /* One page size */
#define IPECC_DEV_UIO_IPECC "/dev/uio0"
#define IPECC_DEV_UIO_PSEUDOTRNG "/dev/uio1"
/* Setup the driver depending on the environment.
*
* If 'pseudotrng_base_addr_p' is not NULL then the setup will also try
* to open a device for the pseudo TRNG function, and return the mapped
* address for this device in *pseudotrng_base_addr_p.
*
* Thus if the pseudo TRNG function is not needed, simply set NULL value
* for 'pseudotrng_base_addr_p' argument and the setup won't try to acquire
* nor map a corresponding hardware device.
*
* Now if the IP was synthesized in production (secure) mode, then the pseudo
* TRNG function naturally does NOT exist and, in case the value passed for
* parameter 'pseudotrng_base_addr_p' is not NULL, then *pseudotrng_base_addr_p
* will be set with value NULL.
*/
int hw_driver_setup(volatile uint8_t **base_addr_p, volatile uint8_t **pseudotrng_base_addr_p)
{
int ret = -1;
if (base_addr_p == NULL) {
ret = -1;
goto err;
}
#if defined(WITH_EC_HW_STANDALONE)
{
log_print("hw_driver_setup in standalone mode\n\r");
/* In standalone mode, the base address
* is the physical one.
*/
(*base_addr_p) = (volatile uint8_t*)IPECC_PHYS_BADDR;
if (pseudotrng_base_addr_p != NULL) {
(*pseudotrng_base_addr_p) = (volatile uint8_t*)IPECC_PHYS_PSEUDO_TRNG_BADDR;
}
}
#elif defined(WITH_EC_HW_UIO)
{
int uio_fd0, uio_fd1;
uint32_t uio_size;
void *base_address;
log_print("Driver in UIO mode\n\r");
/* Handle the main ECC IP */
/* Open our UIO device
* NOTE: O_SYNC here to avoid caching
*/
uio_fd0 = open(IPECC_DEV_UIO_IPECC, O_RDWR | O_SYNC);
if(uio_fd0 == -1){
printf("Error when opening %s\n\r", IPECC_DEV_UIO_IPECC);
perror("open uio");
ret = -1;
goto err;
}
uio_size = IPECC_PHYS_SZ;
base_address = mmap(NULL, uio_size, PROT_READ | PROT_WRITE, MAP_SHARED, uio_fd0, 0);
if(base_address == MAP_FAILED){
printf("Error during mmap!\n\r");
perror("mmap uio");
ret = -1;
goto err;
}
(*base_addr_p) = base_address;
if (pseudotrng_base_addr_p != NULL) {
/* Now handle the pseudo-TRNG device. If the device does not exist (e.g the IP
* was not synthesized in debug mode, then the device simply won't exist, in which
* case we set *pseudotrng_base_addr_p = NULL.
*/
/* Open our UIO device
* NOTE: O_SYNC here to avoid caching
*/
uio_fd1 = open(IPECC_DEV_UIO_PSEUDOTRNG, O_RDWR | O_SYNC);
if(uio_fd1 == -1){
printf("Error when opening %s\n\r", IPECC_DEV_UIO_PSEUDOTRNG);
perror("open uio");
*pseudotrng_base_addr_p = NULL;
ret = -1;
goto err;
}
uio_size = IPECC_PHYS_SZ;
base_address = mmap(NULL, uio_size, PROT_READ | PROT_WRITE, MAP_SHARED, uio_fd1, 0);
if(base_address == MAP_FAILED){
printf("Error during mmap!\n\r");
perror("mmap uio");
*pseudotrng_base_addr_p = NULL;
ret = -1;
goto err;
}
(*pseudotrng_base_addr_p) = base_address;
}
}
#elif defined(WITH_EC_HW_DEVMEM)
{
int devmem_fd;
uint32_t devmem_size;
void *base_address;
log_print("Driver in /dev/mem mode\n\r");
/* Open our /dev/mem device
* NOTE: O_SYNC here to avoid caching
*/
devmem_fd = open("/dev/mem", O_RDWR | O_SYNC);
if(devmem_fd == -1){
printf("Error when opening /dev/mem\n\r");
perror("open devmem");
ret = -1;
goto err;
}
devmem_size = IPECC_PHYS_SZ;
/* Map the main ECC IP */
base_address = mmap(NULL, devmem_size, PROT_READ | PROT_WRITE, MAP_SHARED, devmem_fd, IPECC_PHYS_BADDR);
if(base_address == MAP_FAILED){
printf("Error during ECC IP mmap!\n\r");
perror("mmap devmem ECC IP");
ret = -1;
goto err;
}
(*base_addr_p) = base_address;
if (pseudotrng_base_addr_p != NULL) {
/* Now handle the pseudo-TRNG device. If the device does not exist (e.g the IP
* was not synthesized in debug mode, then the device simply won't exist, in which
* case we set *pseudotrng_base_addr_p = NULL.
*/
devmem_size = IPECC_PHYS_SZ;
/* Map the pseudo TRNG source device */
base_address = mmap(NULL, devmem_size, PROT_READ | PROT_WRITE, MAP_SHARED, devmem_fd, IPECC_PHYS_PSEUDO_TRNG_BADDR);
if(base_address == MAP_FAILED){
printf("Error during pseudo TRNG device mmap!\n\r");
perror("mmap devmem pseudo TRNG dev");
*pseudotrng_base_addr_p = NULL;
ret = -1;
goto err;
}
(*pseudotrng_base_addr_p) = base_address;
}
}
#endif
/* Log print in case of success */
if (pseudotrng_base_addr_p != NULL) {
if (*pseudotrng_base_addr_p != NULL) {
log_print("OK, loaded IP @%p and Pseudo TRNG source @%p\n\r", (*base_addr_p), (*pseudotrng_base_addr_p));
} else {
log_print("OK, loaded IP @%p\n\r", (*base_addr_p));
}
}
ret = 0;
err:
return ret;
}
#else
/*
* Dummy definition to avoid the empty translation unit ISO C warning
*/
typedef int dummy;
#endif /* WITH_EC_HW_ACCELERATOR */