spi_flash.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. struct spi_flash_region {
  27. unsigned int count;
  28. unsigned int size;
  29. };
  30. struct spi_flash {
  31. struct spi_slave *spi;
  32. const char *name;
  33. u32 size;
  34. int (*read)(struct spi_flash *flash, u32 offset,
  35. size_t len, void *buf);
  36. int (*write)(struct spi_flash *flash, u32 offset,
  37. size_t len, const void *buf);
  38. int (*erase)(struct spi_flash *flash, u32 offset,
  39. size_t len);
  40. };
  41. struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
  42. unsigned int max_hz, unsigned int spi_mode);
  43. void spi_flash_free(struct spi_flash *flash);
  44. static inline int spi_flash_read(struct spi_flash *flash, u32 offset,
  45. size_t len, void *buf)
  46. {
  47. return flash->read(flash, offset, len, buf);
  48. }
  49. static inline int spi_flash_write(struct spi_flash *flash, u32 offset,
  50. size_t len, const void *buf)
  51. {
  52. return flash->write(flash, offset, len, buf);
  53. }
  54. static inline int spi_flash_erase(struct spi_flash *flash, u32 offset,
  55. size_t len)
  56. {
  57. return flash->erase(flash, offset, len);
  58. }
  59. #endif /* _SPI_FLASH_H_ */