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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
|
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include "board.h"
#include "sys.h"
const uint8_t sys_version[8] = {
3*2+2, /* bLength */
0x03, /* bDescriptorType = USB_STRING_DESCRIPTOR_TYPE */
/* sys version: "3.0" */
'3', 0, '.', 0, '0', 0,
};
#if defined(USE_SYS3) || defined(USE_SYS_BOARD_ID)
const uint32_t sys_board_id = BOARD_ID;
const uint8_t sys_board_name[] = BOARD_NAME;
#endif
int debug;
void
set_led (int on)
{
if ((debug & DEBUG_LED))
puts (on ? "*": "");
}
static const char *flash_path;
static size_t flash_size;
static void * flash_addr;
static int flash_fd;
uintptr_t
flash_init (const char *f_name)
{
int fd;
struct stat sb;
void *addr;
fd = open (f_name, O_RDONLY);
if (fd < 0)
{
perror ("flash_init: open");
exit (1);
}
if (fstat (fd, &sb) < 0)
{
perror ("flash_init: fstat");
exit (1);
}
addr = mmap (NULL, sb.st_size, PROT_READ, MAP_SHARED, fd, 0);
if (addr == MAP_FAILED)
{
perror ("flash_init: mmap");
exit (1);
}
if (close (fd) < 0)
{
perror ("flash_init: close");
exit (1);
}
flash_path = f_name;
flash_addr = addr;
flash_size = sb.st_size;
return (uintptr_t)addr;
}
void
flash_unlock (void)
{
int fd;
fd = open (flash_path, O_WRONLY);
if (fd < 0)
{
perror ("flash_unlock: open");
exit (1);
}
flash_fd = fd;
}
int
flash_program_halfword (uintptr_t addr, uint16_t data)
{
off_t offset;
char buf[2];
if ((debug & DEBUG_FLASH))
fprintf (stderr, "flash_program_halfword: addr=%016lx, data=%04x\n",
addr, data);
offset = (off_t)(addr - (uintptr_t)flash_addr);
if (offset < 0 || offset >= (off_t)flash_size)
{
perror ("flash_program_halfword");
return 1;
}
offset = lseek (flash_fd, offset, SEEK_SET);
if (offset == (off_t)-1)
{
perror ("flash_program_halfword");
return 1;
}
buf[0] = (data & 0xff);
buf[1] = (data >> 8);
if (write (flash_fd, buf, 2) != 2)
{
perror ("flash_program_halfword");
return 2;
}
return 0;
}
static const uint8_t erased[] = { [0 ... 1023 ] = 0xff };
int
flash_erase_page (uintptr_t addr)
{
off_t offset;
if ((debug & DEBUG_FLASH))
fprintf (stderr, "flash_erase_page: addr=%016lx\n", addr);
offset = (off_t)(addr - (uintptr_t)flash_addr);
if (offset < 0 || offset >= (off_t)flash_size)
{
perror ("flash_erase_page");
return 1;
}
offset = lseek (flash_fd, offset, SEEK_SET);
if (offset == (off_t)-1)
{
perror ("flash_erase_page");
return 1;
}
if (write (flash_fd, erased, sizeof (erased)) != sizeof (erased))
{
perror ("flash_erase_page");
return 2;
}
return 0;
}
int
flash_check_blank (const uint8_t *p_start, size_t size)
{
const uint8_t *p;
if (p_start < (const uint8_t *)flash_addr
|| p_start + size > (const uint8_t *)flash_addr + flash_size)
{
perror ("flash_check_blank");
return 0;
}
for (p = p_start; p < p_start + size; p++)
if (*p != 0xff)
return 0;
return 1;
}
int
flash_write (uintptr_t dst_addr, const uint8_t *src, size_t len)
{
off_t offset;
if ((debug & DEBUG_FLASH))
fprintf (stderr, "flash_write: addr=%016lx, %p, %zd\n",
dst_addr, src, len);
offset = (off_t)(dst_addr - (uintptr_t)flash_addr);
if (offset < 0 || offset >= (off_t)flash_size)
{
perror ("flash_write");
return 1;
}
offset = lseek (flash_fd, offset, SEEK_SET);
if (offset == (off_t)-1)
{
perror ("flash_write");
return 1;
}
if (write (flash_fd, src, len) != (ssize_t)len)
{
perror ("flash_write");
return 2;
}
return 0;
}
int
flash_protect (void)
{
if ((debug & DEBUG_FLASH))
fprintf (stderr, "flash_protect\n");
return 0;
}
void __attribute__((noreturn))
flash_erase_all_and_exec (void (*entry)(void))
{
(void)entry;
exit (1);
}
void
usb_lld_sys_init (void)
{
}
void
usb_lld_sys_shutdown (void)
{
}
void __attribute__((noreturn))
nvic_system_reset (void)
{
exit (0);
}
void
clock_init (void)
{
}
void
gpio_init (void)
{
}
|