2 * Copyright © 2010 Keith Packard <keithp@keithp.com>
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; version 2 of the License.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
18 /* Defines for the Atmel AT45DB161D 16Mbit SPI Bus DataFlash® */
20 #ifndef _AT45DB161D_H_
21 #define _AT45DB161D_H_
24 * We reserve the last block on the device for
25 * configuration space. Writes and reads in this
30 #define FLASH_READ 0x03
31 #define FLASH_WRITE 0x82
32 #define FLASH_PAGE_ERASE 0x81
33 #define FLASH_READ_STATUS 0xd7
34 #define FLASH_SET_CONFIG 0x3d
36 #define FLASH_SET_512_BYTE_0 0x2a
37 #define FLASH_SET_512_BYTE_1 0x80
38 #define FLASH_SET_512_BYTE_2 0xa6
40 #define FLASH_STATUS_RDY (1 << 7)
41 #define FLASH_STATUS_COMP (1 << 6)
42 #define FLASH_STATUS_PROTECT (1 << 1)
43 #define FLASH_STATUS_PAGESIZE_512 (1 << 0)
45 #endif /* _AT45DB161D_H_ */