Haavard Skinnemoen | d25ce7d | 2008-05-16 11:10:33 +0200 | [diff] [blame] | 1 | /* |
| 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 Frysinger | e06ab65 | 2009-11-03 11:36:39 -0500 | [diff] [blame] | 27 | #include <linux/types.h> |
Christian Riesch | 32b1127 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 28 | #include <linux/compiler.h> |
Haavard Skinnemoen | d25ce7d | 2008-05-16 11:10:33 +0200 | [diff] [blame] | 29 | |
Haavard Skinnemoen | d25ce7d | 2008-05-16 11:10:33 +0200 | [diff] [blame] | 30 | struct spi_flash { |
| 31 | struct spi_slave *spi; |
| 32 | |
| 33 | const char *name; |
| 34 | |
Mike Frysinger | d4aa500 | 2011-04-25 06:58:29 +0000 | [diff] [blame] | 35 | /* Total flash size */ |
Haavard Skinnemoen | d25ce7d | 2008-05-16 11:10:33 +0200 | [diff] [blame] | 36 | u32 size; |
Mike Frysinger | d4aa500 | 2011-04-25 06:58:29 +0000 | [diff] [blame] | 37 | /* Write (page) size */ |
| 38 | u32 page_size; |
| 39 | /* Erase (sector) size */ |
Richard Retanubun | 4e6a515 | 2011-02-16 16:37:22 -0500 | [diff] [blame] | 40 | u32 sector_size; |
Jagannadha Sutradharudu Teki | 1dcd6d0 | 2013-06-19 15:33:58 +0530 | [diff] [blame^] | 41 | #ifdef CONFIG_SPI_FLASH_BAR |
Jagannadha Sutradharudu Teki | cf6b11d | 2013-06-19 15:31:23 +0530 | [diff] [blame] | 42 | /* Bank read cmd */ |
| 43 | u8 bank_read_cmd; |
| 44 | /* Bank write cmd */ |
| 45 | u8 bank_write_cmd; |
Jagannadha Sutradharudu Teki | e612ddf | 2013-06-19 15:37:09 +0530 | [diff] [blame] | 46 | /* Current flash bank */ |
| 47 | u8 bank_curr; |
Jagannadha Sutradharudu Teki | 1dcd6d0 | 2013-06-19 15:33:58 +0530 | [diff] [blame^] | 48 | #endif |
Simon Glass | bb8215f | 2013-03-11 06:08:08 +0000 | [diff] [blame] | 49 | void *memory_map; /* Address of read-only SPI flash access */ |
Haavard Skinnemoen | d25ce7d | 2008-05-16 11:10:33 +0200 | [diff] [blame] | 50 | int (*read)(struct spi_flash *flash, u32 offset, |
| 51 | size_t len, void *buf); |
| 52 | int (*write)(struct spi_flash *flash, u32 offset, |
| 53 | size_t len, const void *buf); |
| 54 | int (*erase)(struct spi_flash *flash, u32 offset, |
| 55 | size_t len); |
| 56 | }; |
| 57 | |
Simon Glass | b5aec14 | 2013-03-11 06:08:02 +0000 | [diff] [blame] | 58 | /** |
| 59 | * spi_flash_do_alloc - Allocate a new spi flash structure |
| 60 | * |
| 61 | * The structure is allocated and cleared with default values for |
| 62 | * read, write and erase, which the caller can modify. The caller must set |
| 63 | * up size, page_size and sector_size. |
| 64 | * |
| 65 | * Use the helper macro spi_flash_alloc() to call this. |
| 66 | * |
| 67 | * @offset: Offset of struct spi_slave within slave structure |
| 68 | * @size: Size of slave structure |
| 69 | * @spi: SPI slave |
| 70 | * @name: Name of SPI flash device |
| 71 | */ |
| 72 | void *spi_flash_do_alloc(int offset, int size, struct spi_slave *spi, |
| 73 | const char *name); |
| 74 | |
| 75 | /** |
| 76 | * spi_flash_alloc - Allocate a new SPI flash structure |
| 77 | * |
| 78 | * @_struct: Name of structure to allocate (e.g. struct ramtron_spi_fram). This |
| 79 | * structure must contain a member 'struct spi_flash *flash'. |
| 80 | * @spi: SPI slave |
| 81 | * @name: Name of SPI flash device |
| 82 | */ |
| 83 | #define spi_flash_alloc(_struct, spi, name) \ |
| 84 | spi_flash_do_alloc(offsetof(_struct, flash), sizeof(_struct), \ |
| 85 | spi, name) |
| 86 | |
| 87 | /** |
| 88 | * spi_flash_alloc_base - Allocate a new SPI flash structure with no private data |
| 89 | * |
| 90 | * @spi: SPI slave |
| 91 | * @name: Name of SPI flash device |
| 92 | */ |
| 93 | #define spi_flash_alloc_base(spi, name) \ |
| 94 | spi_flash_do_alloc(0, sizeof(struct spi_flash), spi, name) |
| 95 | |
Haavard Skinnemoen | d25ce7d | 2008-05-16 11:10:33 +0200 | [diff] [blame] | 96 | struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs, |
| 97 | unsigned int max_hz, unsigned int spi_mode); |
| 98 | void spi_flash_free(struct spi_flash *flash); |
| 99 | |
| 100 | static inline int spi_flash_read(struct spi_flash *flash, u32 offset, |
| 101 | size_t len, void *buf) |
| 102 | { |
| 103 | return flash->read(flash, offset, len, buf); |
| 104 | } |
| 105 | |
| 106 | static inline int spi_flash_write(struct spi_flash *flash, u32 offset, |
| 107 | size_t len, const void *buf) |
| 108 | { |
| 109 | return flash->write(flash, offset, len, buf); |
| 110 | } |
| 111 | |
| 112 | static inline int spi_flash_erase(struct spi_flash *flash, u32 offset, |
| 113 | size_t len) |
| 114 | { |
| 115 | return flash->erase(flash, offset, len); |
| 116 | } |
| 117 | |
Christian Riesch | 32b1127 | 2011-12-09 09:47:35 +0000 | [diff] [blame] | 118 | void spi_boot(void) __noreturn; |
| 119 | |
Haavard Skinnemoen | d25ce7d | 2008-05-16 11:10:33 +0200 | [diff] [blame] | 120 | #endif /* _SPI_FLASH_H_ */ |