spi_flash.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. #ifndef _SPI_FLASH_H_
  14. #define _SPI_FLASH_H_
  15. #include <spi.h>
  16. #include <linux/types.h>
  17. #include <linux/compiler.h>
  18. /* SECT flags */
  19. #define SECT_4K (1 << 1)
  20. #define SECT_32K (1 << 2)
  21. /* SST specific macros */
  22. #ifdef CONFIG_SPI_FLASH_SST
  23. # define SST_WP 0x01 /* Supports AAI word program */
  24. # define CMD_SST_BP 0x02 /* Byte Program */
  25. # define CMD_SST_AAI_WP 0xAD /* Auto Address Incr Word Program */
  26. #endif
  27. struct spi_flash {
  28. struct spi_slave *spi;
  29. const char *name;
  30. /* Total flash size */
  31. u32 size;
  32. /* Write (page) size */
  33. u32 page_size;
  34. /* Sector size */
  35. u32 sector_size;
  36. /* Erase size */
  37. u32 erase_size;
  38. #ifdef CONFIG_SPI_FLASH_BAR
  39. /* Bank read cmd */
  40. u8 bank_read_cmd;
  41. /* Bank write cmd */
  42. u8 bank_write_cmd;
  43. /* Current flash bank */
  44. u8 bank_curr;
  45. #endif
  46. /* Poll cmd - for flash erase/program */
  47. u8 poll_cmd;
  48. /* Erase cmd 4K, 32K, 64K */
  49. u8 erase_cmd;
  50. void *memory_map; /* Address of read-only SPI flash access */
  51. int (*read)(struct spi_flash *flash, u32 offset,
  52. size_t len, void *buf);
  53. int (*write)(struct spi_flash *flash, u32 offset,
  54. size_t len, const void *buf);
  55. int (*erase)(struct spi_flash *flash, u32 offset,
  56. size_t len);
  57. };
  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. * spi_flash_alloc - Allocate a new SPI flash structure
  76. *
  77. * @_struct: Name of structure to allocate (e.g. struct ramtron_spi_fram). This
  78. * structure must contain a member 'struct spi_flash *flash'.
  79. * @spi: SPI slave
  80. * @name: Name of SPI flash device
  81. */
  82. #define spi_flash_alloc(_struct, spi, name) \
  83. spi_flash_do_alloc(offsetof(_struct, flash), sizeof(_struct), \
  84. spi, name)
  85. /**
  86. * spi_flash_alloc_base - Allocate a new SPI flash structure with no private data
  87. *
  88. * @spi: SPI slave
  89. * @name: Name of SPI flash device
  90. */
  91. #define spi_flash_alloc_base(spi, name) \
  92. spi_flash_do_alloc(0, sizeof(struct spi_flash), spi, name)
  93. struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
  94. unsigned int max_hz, unsigned int spi_mode);
  95. void spi_flash_free(struct spi_flash *flash);
  96. static inline int spi_flash_read(struct spi_flash *flash, u32 offset,
  97. size_t len, void *buf)
  98. {
  99. return flash->read(flash, offset, len, buf);
  100. }
  101. static inline int spi_flash_write(struct spi_flash *flash, u32 offset,
  102. size_t len, const void *buf)
  103. {
  104. return flash->write(flash, offset, len, buf);
  105. }
  106. static inline int spi_flash_erase(struct spi_flash *flash, u32 offset,
  107. size_t len)
  108. {
  109. return flash->erase(flash, offset, len);
  110. }
  111. void spi_boot(void) __noreturn;
  112. #endif /* _SPI_FLASH_H_ */