bootloader: Reimplement flash::run_command() in C.
[gps-watch.git] / src / common / flash.c
1 /*
2  * Copyright (c) 2019 Tilman Sauerbeck (tilman at code-monkey de)
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining
5  * a copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sublicense, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be
13  * included in all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22  */
23
24 #include <stdint.h>
25
26 static const uint32_t FTFA_FSTAT = 0x40020000;
27
28 static const uint8_t FTFA_FSTAT_CCIF = 1 << 7;
29
30 __attribute__((section(".data")))
31 static uint8_t
32 run_command(void)
33 {
34     volatile uint8_t *fstat = (uint8_t *) FTFA_FSTAT;
35
36     /* Start command. */
37     *fstat = FTFA_FSTAT_CCIF;
38
39     /* Wait for it to finish. */
40     for (;;) {
41         uint8_t v = *fstat;
42
43         if ((v & FTFA_FSTAT_CCIF) != 0) {
44             return v;
45         }
46     }
47 }
48
49 uint8_t
50 flash_run_command(void)
51 {
52     asm volatile ("cpsid i");
53
54     uint8_t status = run_command();
55
56     asm volatile ("cpsie i");
57
58     return status;
59 }