spi.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /****************************************************************************
  2. * Driver for Solarflare Solarstorm network controllers and boards
  3. * Copyright 2005 Fen Systems Ltd.
  4. * Copyright 2006 Solarflare Communications Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published
  8. * by the Free Software Foundation, incorporated herein by reference.
  9. */
  10. #ifndef EFX_SPI_H
  11. #define EFX_SPI_H
  12. #include "net_driver.h"
  13. /**************************************************************************
  14. *
  15. * Basic SPI command set and bit definitions
  16. *
  17. *************************************************************************/
  18. #define SPI_WRSR 0x01 /* Write status register */
  19. #define SPI_WRITE 0x02 /* Write data to memory array */
  20. #define SPI_READ 0x03 /* Read data from memory array */
  21. #define SPI_WRDI 0x04 /* Reset write enable latch */
  22. #define SPI_RDSR 0x05 /* Read status register */
  23. #define SPI_WREN 0x06 /* Set write enable latch */
  24. #define SPI_SST_EWSR 0x50 /* SST: Enable write to status register */
  25. #define SPI_STATUS_WPEN 0x80 /* Write-protect pin enabled */
  26. #define SPI_STATUS_BP2 0x10 /* Block protection bit 2 */
  27. #define SPI_STATUS_BP1 0x08 /* Block protection bit 1 */
  28. #define SPI_STATUS_BP0 0x04 /* Block protection bit 0 */
  29. #define SPI_STATUS_WEN 0x02 /* State of the write enable latch */
  30. #define SPI_STATUS_NRDY 0x01 /* Device busy flag */
  31. /**
  32. * struct efx_spi_device - an Efx SPI (Serial Peripheral Interface) device
  33. * @efx: The Efx controller that owns this device
  34. * @mtd: MTD state
  35. * @device_id: Controller's id for the device
  36. * @size: Size (in bytes)
  37. * @addr_len: Number of address bytes in read/write commands
  38. * @munge_address: Flag whether addresses should be munged.
  39. * Some devices with 9-bit addresses (e.g. AT25040A EEPROM)
  40. * use bit 3 of the command byte as address bit A8, rather
  41. * than having a two-byte address. If this flag is set, then
  42. * commands should be munged in this way.
  43. * @erase_command: Erase command (or 0 if sector erase not needed).
  44. * @erase_size: Erase sector size (in bytes)
  45. * Erase commands affect sectors with this size and alignment.
  46. * This must be a power of two.
  47. * @block_size: Write block size (in bytes).
  48. * Write commands are limited to blocks with this size and alignment.
  49. */
  50. struct efx_spi_device {
  51. struct efx_nic *efx;
  52. #ifdef CONFIG_SFC_MTD
  53. void *mtd;
  54. #endif
  55. int device_id;
  56. unsigned int size;
  57. unsigned int addr_len;
  58. unsigned int munge_address:1;
  59. u8 erase_command;
  60. unsigned int erase_size;
  61. unsigned int block_size;
  62. };
  63. int falcon_spi_cmd(const struct efx_spi_device *spi, unsigned int command,
  64. int address, const void* in, void *out, size_t len);
  65. int falcon_spi_wait_write(const struct efx_spi_device *spi);
  66. int falcon_spi_read(const struct efx_spi_device *spi, loff_t start,
  67. size_t len, size_t *retlen, u8 *buffer);
  68. int falcon_spi_write(const struct efx_spi_device *spi, loff_t start,
  69. size_t len, size_t *retlen, const u8 *buffer);
  70. /*
  71. * SFC4000 flash is partitioned into:
  72. * 0-0x400 chip and board config (see falcon_hwdefs.h)
  73. * 0x400-0x8000 unused (or may contain VPD if EEPROM not present)
  74. * 0x8000-end boot code (mapped to PCI expansion ROM)
  75. * SFC4000 small EEPROM (size < 0x400) is used for VPD only.
  76. * SFC4000 large EEPROM (size >= 0x400) is partitioned into:
  77. * 0-0x400 chip and board config
  78. * configurable VPD
  79. * 0x800-0x1800 boot config
  80. * Aside from the chip and board config, all of these are optional and may
  81. * be absent or truncated depending on the devices used.
  82. */
  83. #define FALCON_NVCONFIG_END 0x400U
  84. #define FALCON_FLASH_BOOTCODE_START 0x8000U
  85. #define EFX_EEPROM_BOOTCONFIG_START 0x800U
  86. #define EFX_EEPROM_BOOTCONFIG_END 0x1800U
  87. #endif /* EFX_SPI_H */