-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathUSBMultiSerial.cpp
235 lines (201 loc) · 6.32 KB
/
USBMultiSerial.cpp
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
/* Copyright (c) 2011, Peter Barrett and 2019, Alexander Pruss
**
** Permission to use, copy, modify, and/or distribute this software for
** any purpose with or without fee is hereby granted, provided that the
** above copyright notice and this permission notice appear in all copies.
**
** THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
** WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
** WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
** BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
** OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
** WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
** ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
** SOFTWARE.
*/
#include "USBComposite.h"
#include <string.h>
#include <stdint.h>
#include <libmaple/nvic.h>
#include <libmaple/usb.h>
#include <string.h>
#include <libmaple/iwdg.h>
#include "usb_composite_serial.h"
size_t USBSerialPort::write(uint8 ch) {
size_t n = 0;
this->write(&ch, 1);
return n;
}
size_t USBSerialPort::write(const char *str) {
size_t n = 0;
this->write((const uint8*)str, strlen(str));
return n;
}
size_t USBSerialPort::write(const uint8 *buf, uint32 len)
{
size_t n = 0;
if (!this->isConnected() || !buf) {
return 0;
}
uint32 txed = 0;
while (txed < len) {
txed += multi_serial_tx(port, (const uint8*)buf + txed, len - txed);
}
return n;
}
int USBSerialPort::available(void) {
return multi_serial_data_available(port);
}
int USBSerialPort::peek(void)
{
uint8 b;
if (multi_serial_peek(port, &b, 1)==1)
{
return b;
}
else
{
return -1;
}
}
void USBSerialPort::flush(void)
{
/*Roger Clark. Rather slow method. Need to improve this */
uint8 b;
while(multi_serial_data_available(port))
{
this->read(&b, 1);
}
return;
}
uint32 USBSerialPort::read(uint8 * buf, uint32 len) {
uint32 rxed = 0;
while (rxed < len) {
rxed += multi_serial_rx(port, buf + rxed, len - rxed);
}
return rxed;
}
/* Blocks forever until 1 byte is received */
int USBSerialPort::read(void) {
uint8 b;
/*
this->read(&b, 1);
return b;
*/
if (multi_serial_rx(port, &b, 1)==0)
{
return -1;
}
else
{
return b;
}
}
uint8 USBSerialPort::pending(void) {
return multi_serial_get_pending(port);
}
uint8 USBSerialPort::isConnected(void) {
return usb_is_connected(USBLIB) && usb_is_configured(USBLIB) && multi_serial_get_dtr(port);
}
uint8 USBSerialPort::getDTR(void) {
return multi_serial_get_dtr(port);
}
uint8 USBSerialPort::getRTS(void) {
return multi_serial_get_rts(port);
}
#if defined(SERIAL_USB)
enum reset_state_t {
DTR_UNSET,
DTR_HIGH,
DTR_NEGEDGE,
DTR_LOW
};
static reset_state_t reset_state = DTR_UNSET;
void usb_multi_serial_ifaceSetupHook0(unsigned hook, void *requestvp) {
(void)hook;
const uint8 port = 0;
uint8 request = *(uint8*)requestvp;
// Ignore requests we're not interested in.
if (request != USBHID_CDCACM_SET_CONTROL_LINE_STATE) {
return;
}
// We need to see a negative edge on DTR before we start looking
// for the in-band magic reset byte sequence.
uint8 dtr = multi_serial_get_dtr(port);
switch (reset_state) {
case DTR_UNSET:
reset_state = dtr ? DTR_HIGH : DTR_LOW;
break;
case DTR_HIGH:
reset_state = dtr ? DTR_HIGH : DTR_NEGEDGE;
break;
case DTR_NEGEDGE:
reset_state = dtr ? DTR_HIGH : DTR_LOW;
break;
case DTR_LOW:
reset_state = dtr ? DTR_HIGH : DTR_LOW;
break;
}
if ((multi_serial_get_baud(port) == 1200) && (reset_state == DTR_NEGEDGE)) {
iwdg_init(IWDG_PRE_4, 10);
while (1);
}
}
#define RESET_DELAY 100000
static void wait_reset(void) {
delay_us(RESET_DELAY);
nvic_sys_reset();
}
#define STACK_TOP 0x20000800
#define EXC_RETURN 0xFFFFFFF9
#define DEFAULT_CPSR 0x61000000
void usb_multi_serial_rxHook0(unsigned hook, void *ignored) {
(void)hook;
(void)ignored;
const uint8 port = 0;
/* FIXME this is mad buggy; we need a new reset sequence. E.g. NAK
* after each RX means you can't reset if any bytes are waiting. */
if (reset_state == DTR_NEGEDGE) {
reset_state = DTR_LOW;
if (multi_serial_data_available(port) >= 4) {
// The magic reset sequence is "1EAF".
static const uint8 magic[4] = {'1', 'E', 'A', 'F'};
uint8 chkBuf[4];
// Peek at the waiting bytes, looking for reset sequence,
// bailing on mismatch.
multi_serial_peek_ex(port, chkBuf, multi_serial_data_available(port) - 4, 4);
for (unsigned i = 0; i < sizeof(magic); i++) {
if (chkBuf[i] != magic[i]) {
return;
}
}
// Got the magic sequence -> reset, presumably into the bootloader.
// Return address is wait_reset, but we must set the thumb bit.
uintptr_t target = (uintptr_t)wait_reset | 0x1;
asm volatile("mov r0, %[stack_top] \n\t" // Reset stack
"mov sp, r0 \n\t"
"mov r0, #1 \n\t"
"mov r1, %[target_addr] \n\t"
"mov r2, %[cpsr] \n\t"
"push {r2} \n\t" // Fake xPSR
"push {r1} \n\t" // PC target addr
"push {r0} \n\t" // Fake LR
"push {r0} \n\t" // Fake R12
"push {r0} \n\t" // Fake R3
"push {r0} \n\t" // Fake R2
"push {r0} \n\t" // Fake R1
"push {r0} \n\t" // Fake R0
"mov lr, %[exc_return] \n\t"
"bx lr"
:
: [stack_top] "r" (STACK_TOP),
[target_addr] "r" (target),
[exc_return] "r" (EXC_RETURN),
[cpsr] "r" (DEFAULT_CPSR)
: "r0", "r1", "r2");
/* Can't happen. */
ASSERT_FAULT(0);
}
}
}
#endif