-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.c
163 lines (145 loc) · 4.46 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
/* Версия Загрузчик */
#include <string.h>
#include <stdio.h>
#include <time.h>
#include <bfrom.h>
#include "globdefs.h"
#include "timer0.h"
#include "xpander.h"
#include "ports.h"
#include "flash.h"
#include "rele.h"
#include "led.h"
#include "rsi.h"
#include "pll.h"
#include "ff.h"
#define LOADER_RAM_NAME "loader.ram"
#define LOADER_ROM_NAME "loader.rom"
#define BOOT_LOG_NAME "boot.log"
#define BUFFER_SIZE 512
#define LOADER_RAM_ADDRESS 0x20010000
#define LOADER_ROM_ADDRESS 0x20020000
static u8 buf[BUFFER_SIZE]; // читаем сюда файл
static FIL loader_ram;
static FIL loader_rom;
static FIL boot_log;
static FATFS fatfs; /* File system object */
static char *str[] = {
"Warning: loader.ram doesn't exist. Continue booting\n", //0
"Warning: loader.rom doesn't exist\n", //1
"Error : can't to erase FLASH\n", //2
"Info : %d bytes written to flash\n", //3
"Success: load loader.ram\n", //4
"Success: load loader.rom\n", //5
"Info: Continue booting\n\n" //6
};
/* Ф-ция main() */
int main(void)
{
int res;
UINT bw, num;
u16 word;
int i;
PLL_init(); /* Иниц. PLL от кварца 19.2 МГц с самого начала! */
init_bf_ports();
init_atmega_ports();
select_sdcard_to_bf();
delay_ms(10);
LED_on(LED_YELLOW);
delay_ms(100);
/* Монтируем ФС */
do {
// 1
res = f_mount(&fatfs, "", 0);
if (res != 0) { // не монитируеца-передаем управление
break;
}
//2
/* Если все ОК - открыли boot_log */
res = f_open(&boot_log, BOOT_LOG_NAME, FA_WRITE | FA_READ | FA_OPEN_ALWAYS);
if (res) {
break;
}
// Определим размер
i = f_size(&boot_log);
if (i > 0x7F000000) {
f_truncate(&boot_log);
i = 0;
}
// Переставим указатель файла
f_lseek(&boot_log, i);
// 3
/* Открываем существующий файл для RAM */
res = f_open(&loader_ram, LOADER_RAM_NAME, FA_READ | FA_OPEN_EXISTING);
if (res) {
f_write(&boot_log, str[0], strlen(str[0]), &bw);
f_close(&boot_log);
break;
}
// 4
/* Открываем существующий файл */
res = f_open(&loader_rom, LOADER_ROM_NAME, FA_READ | FA_OPEN_EXISTING);
if (res) {
f_write(&boot_log, str[1], strlen(str[1]), &bw);
f_close(&boot_log);
break;
}
// если файлы у нас есть
RELE_on(RELEPOW); // Передаем управление
LED_on(LED_GREEN);
delay_ms(10);
// 5
/* 2 файла у нас есть - стираем 5 первых секторов */
FLASH_init();
for (i = 0; i < 5; i++) {
res = FLASH_erase_page(LOADER_RAM_ADDRESS + i * 0x10000);
if (res) {
f_write(&boot_log, str[2], strlen(str[2]), &bw);
f_close(&boot_log);
break;
}
LED_toggle(LED_YELLOW);
}
LED_off(LED_YELLOW);
// 6 - стерли сектор, пишем в него
i = 0;
while (1) {
res = f_read(&loader_ram, buf, BUFFER_SIZE, &num);
LED_toggle(LED_GREEN);
FLASH_write_buf(LOADER_RAM_ADDRESS + i, buf, num);
i += num; // Увеличим адрес на прочитаное число байт
if (num < BUFFER_SIZE) {
//sprintf((char *) buf, str[3], i);
//f_write(&boot_log, buf, strlen((char *) buf), &bw);
f_printf(&boot_log, str[3], i);
break;
}
}
f_write(&boot_log, str[4], strlen((char *) str[4]), &bw);
// 7 - стерли сектор, пишем в него
i = 0;
while (1) {
res = f_read(&loader_rom, buf, BUFFER_SIZE, &num);
LED_toggle(LED_GREEN);
FLASH_write_buf(LOADER_ROM_ADDRESS + i, buf, num);
i += num; // Увеличим адрес на прочитаное число байт
if (num < BUFFER_SIZE) {
//sprintf((char *) buf, str[3], i);
//f_write(&boot_log, buf, strlen((char *) buf), &bw);
f_printf(&boot_log, str[3], i);
break;
}
}
f_write(&boot_log, str[5], strlen((char *) str[5]), &bw);
// 8 Все записали-закрываем файл и удаляем их
f_write(&boot_log, str[6], strlen((char *) str[6]), &bw);
f_close(&boot_log);
f_unlink(LOADER_RAM_NAME);
f_unlink(LOADER_ROM_NAME);
// f_mount(0,"", 0);
LED_all_off();
} while (0);
// Грузим основную программу
bfrom_MemBoot((void *) 0x20010000, 0, 0, NULL);
return 0;
}