spi_flash.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. #include <spi.h>
  26. #include <linux/types.h>
  27. #include <linux/compiler.h>
  28. struct spi_flash {
  29. struct spi_slave *spi;
  30. const char *name;
  31. /* Total flash size */
  32. u32 size;
  33. /* Write (page) size */
  34. u32 page_size;
  35. /* Erase (sector) size */
  36. u32 sector_size;
  37. #ifdef CONFIG_SPI_FLASH_BAR
  38. /* Bank read cmd */
  39. u8 bank_read_cmd;
  40. /* Bank write cmd */
  41. u8 bank_write_cmd;
  42. /* Current flash bank */
  43. u8 bank_curr;
  44. #endif
  45. /* Poll cmd - for flash erase/program */
  46. u8 poll_cmd;
  47. void *memory_map; /* Address of read-only SPI flash access */
  48. int (*read)(struct spi_flash *flash, u32 offset,
  49. size_t len, void *buf);
  50. int (*write)(struct spi_flash *flash, u32 offset,
  51. size_t len, const void *buf);
  52. int (*erase)(struct spi_flash *flash, u32 offset,
  53. size_t len);
  54. };
  55. /**
  56. * spi_flash_do_alloc - Allocate a new spi flash structure
  57. *
  58. * The structure is allocated and cleared with default values for
  59. * read, write and erase, which the caller can modify. The caller must set
  60. * up size, page_size and sector_size.
  61. *
  62. * Use the helper macro spi_flash_alloc() to call this.
  63. *
  64. * @offset: Offset of struct spi_slave within slave structure
  65. * @size: Size of slave structure
  66. * @spi: SPI slave
  67. * @name: Name of SPI flash device
  68. */
  69. void *spi_flash_do_alloc(int offset, int size, struct spi_slave *spi,
  70. const char *name);
  71. /**
  72. * spi_flash_alloc - Allocate a new SPI flash structure
  73. *
  74. * @_struct: Name of structure to allocate (e.g. struct ramtron_spi_fram). This
  75. * structure must contain a member 'struct spi_flash *flash'.
  76. * @spi: SPI slave
  77. * @name: Name of SPI flash device
  78. */
  79. #define spi_flash_alloc(_struct, spi, name) \
  80. spi_flash_do_alloc(offsetof(_struct, flash), sizeof(_struct), \
  81. spi, name)
  82. /**
  83. * spi_flash_alloc_base - Allocate a new SPI flash structure with no private data
  84. *
  85. * @spi: SPI slave
  86. * @name: Name of SPI flash device
  87. */
  88. #define spi_flash_alloc_base(spi, name) \
  89. spi_flash_do_alloc(0, sizeof(struct spi_flash), spi, name)
  90. struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
  91. unsigned int max_hz, unsigned int spi_mode);
  92. void spi_flash_free(struct spi_flash *flash);
  93. static inline int spi_flash_read(struct spi_flash *flash, u32 offset,
  94. size_t len, void *buf)
  95. {
  96. return flash->read(flash, offset, len, buf);
  97. }
  98. static inline int spi_flash_write(struct spi_flash *flash, u32 offset,
  99. size_t len, const void *buf)
  100. {
  101. return flash->write(flash, offset, len, buf);
  102. }
  103. static inline int spi_flash_erase(struct spi_flash *flash, u32 offset,
  104. size_t len)
  105. {
  106. return flash->erase(flash, offset, len);
  107. }
  108. void spi_boot(void) __noreturn;
  109. #endif /* _SPI_FLASH_H_ */