altos: ADS124S0X driver compiles now
[fw/altos] / src / cortexelf-v1 / ao_scheme_os_save.c
1 /*
2  * Copyright © 2016 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  */
14
15 #include <ao.h>
16 #include <ao_scheme.h>
17 #include <ao_flash.h>
18
19 extern uint8_t  __flash__[];
20
21 /* saved variables to rebuild the heap
22
23    ao_scheme_atoms
24    ao_scheme_frame_global
25  */
26
27 int
28 ao_scheme_os_save(void)
29 {
30         int i;
31
32         for (i = 0; i < AO_SCHEME_POOL_TOTAL; i += 256) {
33                 uint32_t        *dst = (uint32_t *) (void *) &__flash__[i];
34                 uint32_t        *src = (uint32_t *) (void *) &ao_scheme_pool[i];
35
36                 ao_flash_page(dst, src);
37         }
38         return 1;
39 }
40
41 int
42 ao_scheme_os_restore_save(struct ao_scheme_os_save *save, int offset)
43 {
44         memcpy(save, &__flash__[offset], sizeof (struct ao_scheme_os_save));
45         return 1;
46 }
47
48 int
49 ao_scheme_os_restore(void)
50 {
51         memcpy(ao_scheme_pool, __flash__, AO_SCHEME_POOL_TOTAL);
52         return 1;
53 }