blob: 8b8b0c54fe0d8464a294a1db3648fe17e451d1a8 [file] [log] [blame]
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -07001/*
2 * Interface to SPI flash
3 *
4 * Copyright (C) 2008 Atmel Corporation
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Paul Menzela8ae1c62013-02-20 13:21:20 +010015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070016 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23#ifndef _SPI_FLASH_H_
24#define _SPI_FLASH_H_
25
26#include <stdint.h>
27#include <stddef.h>
28#include <console/console.h>
Zheng Bao600784e2013-02-07 17:30:23 +080029#include <spi-generic.h>
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070030
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070031struct spi_flash {
32 struct spi_slave *spi;
33
34 const char *name;
35
36 u32 size;
37
38 u32 sector_size;
39
40 int (*read)(struct spi_flash *flash, u32 offset,
41 size_t len, void *buf);
42 int (*write)(struct spi_flash *flash, u32 offset,
43 size_t len, const void *buf);
44 int (*erase)(struct spi_flash *flash, u32 offset,
45 size_t len);
46};
47
Gabe Black1e187352014-03-27 20:37:03 -070048struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070049
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070050#endif /* _SPI_FLASH_H_ */