-
Notifications
You must be signed in to change notification settings - Fork 12
/
main.c
277 lines (256 loc) · 5.79 KB
/
main.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
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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
* Copyright (c) 2015-2019, Renesas Electronics Corporation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* - Neither the name of Renesas nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "common.h"
#include "main.h"
#include "dgtable.h"
#include "bit.h"
#include "cpudrv.h"
#if EMMC == 1
#include "dgemmc.h"
#endif /* EMMC == 1 */
#include "scifdrv.h"
#include "devdrv.h"
#include "boardid.h"
#include "reg_rzg2.h"
#if USB_ENABLE == 1
#include "usb_lib.h"
#endif /* USB_ENABLE == 1 */
#define WRITER_VERSION " V1.05" /* Software Version */
#define WRITER_DATE " Aug.16,2021" /* Release date */
/* This definition sets the delay time in 10 milliseconds unit from */
/* USB enumeration completion until the message is displayed. */
#define USB_BANNER_DELAY_TIME (10 * 50) /* 5000ms */
extern const com_menu MonCom[COMMAND_UNIT];
extern uint8_t gCOMMAND_Area[COMMAND_BUFFER_SIZE];
char gKeyBuf[64];
int32_t gComNo;
void Main(void)
{
CheckBoard();
InitMain();
StartMess();
DecCom();
}
void InitMain(void)
{
#if EMMC == 1
dg_init_emmc();
#endif /* EMMC == 1 */
#if USB_ENABLE == 1
USB_Init();
#endif /* USB_ENABLE == 1 */
}
void StartMess( void )
{
uint32_t product;
product = *((volatile uint32_t*)PRR) & PRR_PRODUCT_MASK;
PutStr(" ",1);
PutStr("Flash writer for ",0);
switch (product)
{
case PRR_PRODUCT_G2H:
PutStr("RZ/G2H", 0);
break;
case PRR_PRODUCT_G2M:
PutStr("RZ/G2M", 0);
break;
case PRR_PRODUCT_G2N:
PutStr("RZ/G2N", 0);
break;
case PRR_PRODUCT_G2E:
PutStr("RZ/G2E", 0);
break;
default:
break;
}
PutStr(WRITER_VERSION, 0);
PutStr(WRITER_DATE,1);
PutStr(">", 0);
}
#if USB_ENABLE == 1
void StartMessUSB( void )
{
uint32_t product;
product = *((volatile uint32_t*)PRR) & PRR_PRODUCT_MASK;
PutStrUSB("Flash writer for ",0);
switch (product)
{
case PRR_PRODUCT_G2H:
PutStrUSB("RZ/G2H", 0);
break;
case PRR_PRODUCT_G2M:
PutStrUSB("RZ/G2M", 0);
break;
case PRR_PRODUCT_G2N:
PutStrUSB("RZ/G2N", 0);
break;
case PRR_PRODUCT_G2E:
PutStrUSB("RZ/G2E", 0);
break;
default:
break;
}
PutStrUSB(WRITER_VERSION, 0);
PutStrUSB(WRITER_DATE,1);
}
#endif
void DecCom(void)
{
char tmp[64], chCnt, chPtr;
uint32_t rtn = 0;
uint32_t res;
chCnt = 1;
#if USB_ENABLE == 1
State usb_state; /* current USB state */
State usb_state_before; /* lase USB state */
int USB_banner = 0; /* 0:no display 1:display 2:displayed */
int cnt;
usb_state = USB_Get_Status();
usb_state_before = usb_state;
#endif /* USB_ENABLE == 1 */
while (rtn == 0)
{
#if USB_ENABLE == 1
/* Display the boot message for USB connection */
usb_state = USB_Get_Status();
if (usb_state != usb_state_before)
{
usb_state_before = usb_state;
if (usb_state == CONFIGURED)
{
if (USB_banner == 0)
{
USB_banner = 1;
}
}
}
else if (usb_state == CONFIGURED)
{
if (USB_banner == 1)
{
StartTMU0(1); /* 10msec delay */
cnt++;
/* Wait for specified time after USB connection is detected */
if (cnt >= USB_BANNER_DELAY_TIME)
{
USB_banner = 2;
PutStrUSB(" ",1);
StartMessUSB();
PutStrUSB(">", 0);
}
}
}
/* Confirm key input from USB */
rtn = USB_TerminalInputCheck(gCOMMAND_Area);
if (rtn > 0)
{
gTerminal = USB_TERMINAL;
gKeyBuf[0] = gCOMMAND_Area[0];
if (USB_banner == 1)
{
USB_banner = 2;
PutStrUSB(" ",1);
StartMessUSB();
PutStrUSB(">", 0);
}
}
USB_IntCheck();
#endif /* USB_ENABLE == 1 */
if (rtn == 0)
{
rtn = SCIF_TerminalInputCheck(gKeyBuf);
}
if (0 < rtn)
{
if (gKeyBuf[0] == CR_CODE)
{
PutChar(LF_CODE);
PutChar(CR_CODE);
PutStr(">", 0);
chCnt = 0;
}
else if (gKeyBuf[0] != LF_CODE)
{
PutChar(gKeyBuf[0]);
}
}
}
while(1)
{
GetStr(gKeyBuf+chCnt,&chCnt);
chPtr=0;
GetStrBlk(gKeyBuf,tmp,&chPtr,0);
if (chPtr!=1)
{
ChgLtl2Lrg(tmp);
if(!CmpCom(tmp))
{
(MonCom[gComNo].comProg)();
}
else
{
PutStr("command not found",1);
}
}
PutStr(">",0);
chCnt=0;
#if USB_ENABLE == 1
USB_IntCheck();
#endif /* USB_ENABLE == 1 */
}
}
long CmpCom(char *str)
{
char *cmpStr,*tmpStr,err;
gComNo = 0;
while(TBL_END!=MonCom[gComNo].comStr)
{
err=0; tmpStr = str;
cmpStr = MonCom[gComNo].comStr;
while(*tmpStr!=0)
{
if (*tmpStr == *cmpStr)
{
tmpStr++; cmpStr++;
}
else
{
err=1; break;
}
}
if ((!err)&&(*cmpStr==0))
{
return(0);
}
gComNo++;
}
return(1);
}