blob: e80785f55ef578ac989ceef262391bb602abdcec [file] [log] [blame]
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +02001/*
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
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * 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 <spi.h>
Mike Frysingere06ab652009-11-03 11:36:39 -050027#include <linux/types.h>
Christian Riesch32b11272011-12-09 09:47:35 +000028#include <linux/compiler.h>
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +020029
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +020030struct spi_flash {
31 struct spi_slave *spi;
32
33 const char *name;
34
Mike Frysingerd4aa5002011-04-25 06:58:29 +000035 /* Total flash size */
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +020036 u32 size;
Mike Frysingerd4aa5002011-04-25 06:58:29 +000037 /* Write (page) size */
38 u32 page_size;
39 /* Erase (sector) size */
Richard Retanubun4e6a5152011-02-16 16:37:22 -050040 u32 sector_size;
Jagannadha Sutradharudu Teki1dcd6d02013-06-19 15:33:58 +053041#ifdef CONFIG_SPI_FLASH_BAR
Jagannadha Sutradharudu Tekicf6b11d2013-06-19 15:31:23 +053042 /* Bank read cmd */
43 u8 bank_read_cmd;
44 /* Bank write cmd */
45 u8 bank_write_cmd;
Jagannadha Sutradharudu Tekie612ddf2013-06-19 15:37:09 +053046 /* Current flash bank */
47 u8 bank_curr;
Jagannadha Sutradharudu Teki1dcd6d02013-06-19 15:33:58 +053048#endif
Jagannadha Sutradharudu Teki615a1562013-06-21 15:56:30 +053049 /* Poll cmd - for flash erase/program */
50 u8 poll_cmd;
51
Simon Glassbb8215f2013-03-11 06:08:08 +000052 void *memory_map; /* Address of read-only SPI flash access */
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +020053 int (*read)(struct spi_flash *flash, u32 offset,
54 size_t len, void *buf);
55 int (*write)(struct spi_flash *flash, u32 offset,
56 size_t len, const void *buf);
57 int (*erase)(struct spi_flash *flash, u32 offset,
58 size_t len);
59};
60
Simon Glassb5aec142013-03-11 06:08:02 +000061/**
62 * spi_flash_do_alloc - Allocate a new spi flash structure
63 *
64 * The structure is allocated and cleared with default values for
65 * read, write and erase, which the caller can modify. The caller must set
66 * up size, page_size and sector_size.
67 *
68 * Use the helper macro spi_flash_alloc() to call this.
69 *
70 * @offset: Offset of struct spi_slave within slave structure
71 * @size: Size of slave structure
72 * @spi: SPI slave
73 * @name: Name of SPI flash device
74 */
75void *spi_flash_do_alloc(int offset, int size, struct spi_slave *spi,
76 const char *name);
77
78/**
79 * spi_flash_alloc - Allocate a new SPI flash structure
80 *
81 * @_struct: Name of structure to allocate (e.g. struct ramtron_spi_fram). This
82 * structure must contain a member 'struct spi_flash *flash'.
83 * @spi: SPI slave
84 * @name: Name of SPI flash device
85 */
86#define spi_flash_alloc(_struct, spi, name) \
87 spi_flash_do_alloc(offsetof(_struct, flash), sizeof(_struct), \
88 spi, name)
89
90/**
91 * spi_flash_alloc_base - Allocate a new SPI flash structure with no private data
92 *
93 * @spi: SPI slave
94 * @name: Name of SPI flash device
95 */
96#define spi_flash_alloc_base(spi, name) \
97 spi_flash_do_alloc(0, sizeof(struct spi_flash), spi, name)
98
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +020099struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
100 unsigned int max_hz, unsigned int spi_mode);
101void spi_flash_free(struct spi_flash *flash);
102
103static inline int spi_flash_read(struct spi_flash *flash, u32 offset,
104 size_t len, void *buf)
105{
106 return flash->read(flash, offset, len, buf);
107}
108
109static inline int spi_flash_write(struct spi_flash *flash, u32 offset,
110 size_t len, const void *buf)
111{
112 return flash->write(flash, offset, len, buf);
113}
114
115static inline int spi_flash_erase(struct spi_flash *flash, u32 offset,
116 size_t len)
117{
118 return flash->erase(flash, offset, len);
119}
120
Christian Riesch32b11272011-12-09 09:47:35 +0000121void spi_boot(void) __noreturn;
122
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200123#endif /* _SPI_FLASH_H_ */