Add eeprom driver and command loop
[fw/altos] / 25lc1024.h
1 /*
2  * Copyright © 2009 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 /* Defines for the 25LC1024 1Mbit SPI Bus Serial EEPROM */
20
21 #ifndef _25LC1024_H_
22 #define _25LC1024_H_
23
24 #define EE_READ         0x03
25 #define EE_WRITE        0x02
26 #define EE_WREN         0x06
27 #define EE_WRDI         0x04
28 #define EE_RDSR         0x05
29 #define EE_WRSR         0x01
30 #define EE_PE           0x42
31 #define EE_SE           0xd8
32 #define EE_CE           0xc7
33 #define EE_RDID         0xab
34 #define EE_DPD          0xb9
35
36 #define EE_STATUS_WIP   (1 << 0)
37 #define EE_STATUS_WEL   (1 << 1)
38 #define EE_STATUS_BP0   (1 << 2)
39 #define EE_STATUS_BP1   (1 << 3)
40 #define EE_STATUS_WPEN  (1 << 7)
41
42 #endif /* _25LC1024_H_ */