spi.h 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) 2014 Google Inc.
  4. *
  5. * This file is from coreboot soc/intel/broadwell/include/soc/spi.h
  6. */
  7. #ifndef _BROADWELL_SPI_H_
  8. #define _BROADWELL_SPI_H_
  9. /*
  10. * SPI Opcode Menu setup for SPIBAR lockdown
  11. * should support most common flash chips.
  12. */
  13. #define SPIBAR_OFFSET 0x3800
  14. #define SPI_REG(x) (RCB_REG(SPIBAR_OFFSET + (x)))
  15. /* Reigsters within the SPIBAR */
  16. #define SPIBAR_SSFC 0x91
  17. #define SPIBAR_FDOC 0xb0
  18. #define SPIBAR_FDOD 0xb4
  19. #define SPIBAR_PREOP 0x94
  20. #define SPIBAR_OPTYPE 0x96
  21. #define SPIBAR_OPMENU_LOWER 0x98
  22. #define SPIBAR_OPMENU_UPPER 0x9c
  23. #define SPI_OPMENU_0 0x01 /* WRSR: Write Status Register */
  24. #define SPI_OPTYPE_0 0x01 /* Write, no address */
  25. #define SPI_OPMENU_1 0x02 /* BYPR: Byte Program */
  26. #define SPI_OPTYPE_1 0x03 /* Write, address required */
  27. #define SPI_OPMENU_2 0x03 /* READ: Read Data */
  28. #define SPI_OPTYPE_2 0x02 /* Read, address required */
  29. #define SPI_OPMENU_3 0x05 /* RDSR: Read Status Register */
  30. #define SPI_OPTYPE_3 0x00 /* Read, no address */
  31. #define SPI_OPMENU_4 0x20 /* SE20: Sector Erase 0x20 */
  32. #define SPI_OPTYPE_4 0x03 /* Write, address required */
  33. #define SPI_OPMENU_5 0x9f /* RDID: Read ID */
  34. #define SPI_OPTYPE_5 0x00 /* Read, no address */
  35. #define SPI_OPMENU_6 0xd8 /* BED8: Block Erase 0xd8 */
  36. #define SPI_OPTYPE_6 0x03 /* Write, address required */
  37. #define SPI_OPMENU_7 0x0b /* FAST: Fast Read */
  38. #define SPI_OPTYPE_7 0x02 /* Read, address required */
  39. #define SPI_OPMENU_UPPER ((SPI_OPMENU_7 << 24) | (SPI_OPMENU_6 << 16) | \
  40. (SPI_OPMENU_5 << 8) | SPI_OPMENU_4)
  41. #define SPI_OPMENU_LOWER ((SPI_OPMENU_3 << 24) | (SPI_OPMENU_2 << 16) | \
  42. (SPI_OPMENU_1 << 8) | SPI_OPMENU_0)
  43. #define SPI_OPTYPE ((SPI_OPTYPE_7 << 14) | (SPI_OPTYPE_6 << 12) | \
  44. (SPI_OPTYPE_5 << 10) | (SPI_OPTYPE_4 << 8) | \
  45. (SPI_OPTYPE_3 << 6) | (SPI_OPTYPE_2 << 4) | \
  46. (SPI_OPTYPE_1 << 2) | (SPI_OPTYPE_0))
  47. #define SPI_OPPREFIX ((0x50 << 8) | 0x06) /* EWSR and WREN */
  48. #define SPIBAR_HSFS 0x04 /* SPI hardware sequence status */
  49. #define SPIBAR_HSFS_FLOCKDN (1 << 15)/* Flash Configuration Lock-Down */
  50. #define SPIBAR_HSFS_SCIP (1 << 5) /* SPI Cycle In Progress */
  51. #define SPIBAR_HSFS_AEL (1 << 2) /* SPI Access Error Log */
  52. #define SPIBAR_HSFS_FCERR (1 << 1) /* SPI Flash Cycle Error */
  53. #define SPIBAR_HSFS_FDONE (1 << 0) /* SPI Flash Cycle Done */
  54. #define SPIBAR_HSFC 0x06 /* SPI hardware sequence control */
  55. #define SPIBAR_HSFC_BYTE_COUNT(c) (((c - 1) & 0x3f) << 8)
  56. #define SPIBAR_HSFC_CYCLE_READ (0 << 1) /* Read cycle */
  57. #define SPIBAR_HSFC_CYCLE_WRITE (2 << 1) /* Write cycle */
  58. #define SPIBAR_HSFC_CYCLE_ERASE (3 << 1) /* Erase cycle */
  59. #define SPIBAR_HSFC_GO (1 << 0) /* GO: start SPI transaction */
  60. #define SPIBAR_FADDR 0x08 /* SPI flash address */
  61. #define SPIBAR_FDATA(n) (0x10 + (4 * n)) /* SPI flash data */
  62. #define SPIBAR_SSFS 0x90
  63. #define SPIBAR_SSFS_ERROR (1 << 3)
  64. #define SPIBAR_SSFS_DONE (1 << 2)
  65. #define SPIBAR_SSFC 0x91
  66. #define SPIBAR_SSFC_DATA (1 << 14)
  67. #define SPIBAR_SSFC_GO (1 << 1)
  68. #endif