altos: Change default time type to 32-bits
[fw/altos] / src / attiny / ao_eeprom_tiny.c
1 /*
2  * Copyright © 2012 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  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 #include <ao.h>
20
21 static void
22 ao_eeprom_wait(void)
23 {
24         /* Wait for previous write to complete */
25         while (EECR & (1 << EEPE))
26                 ;
27 }
28
29 static uint8_t
30 ao_eeprom_read_byte(uint16_t addr)
31 {
32         uint8_t v;
33
34         ao_eeprom_wait();
35         EEAR = addr;
36         cli();
37         EECR |= (1 << EERE);
38         v = EEDR;
39         sei();
40         return v;
41 }
42
43 static void
44 ao_eeprom_write_byte(uint16_t addr, uint8_t v)
45 {
46         ao_eeprom_wait();
47         EECR = (0 << EEPM1) | (0 << EEPM0);
48         EEAR = addr;
49         EEDR = v;
50         cli();
51         EECR |= (1 << EEMPE);
52         EECR |= (1 << EEPE);
53         sei();
54 }
55
56 void
57 ao_eeprom_read(uint16_t addr, void *buf, uint16_t len)
58 {
59         uint8_t *b = buf;
60
61         while (len--)
62                 *b++ = ao_eeprom_read_byte(addr++);
63 }
64
65 void
66 ao_eeprom_write(uint16_t addr, void *buf, uint16_t len)
67 {
68         uint8_t *b = buf;
69
70         while (len--)
71                 ao_eeprom_write_byte(addr++, *b++);
72 }