spi.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * (C) Copyright 2009
  3. * Marvell Semiconductor <www.marvell.com>
  4. * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  5. *
  6. * Derived from drivers/spi/mpc8xxx_spi.c
  7. *
  8. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. #ifndef __KW_SPI_H__
  11. #define __KW_SPI_H__
  12. /* SPI Registers on kirkwood SOC */
  13. struct kwspi_registers {
  14. u32 ctrl; /* 0x10600 */
  15. u32 cfg; /* 0x10604 */
  16. u32 dout; /* 0x10608 */
  17. u32 din; /* 0x1060c */
  18. u32 irq_cause; /* 0x10610 */
  19. u32 irq_mask; /* 0x10614 */
  20. };
  21. /* They are used to define CONFIG_SYS_KW_SPI_MPP
  22. * each of the below #defines selects which mpp is
  23. * configured for each SPI signal in spi_claim_bus
  24. * bit 0: selects pin for MOSI (MPP1 if 0, MPP6 if 1)
  25. * bit 1: selects pin for SCK (MPP2 if 0, MPP10 if 1)
  26. * bit 2: selects pin for MISO (MPP3 if 0, MPP11 if 1)
  27. */
  28. #define MOSI_MPP6 (1 << 0)
  29. #define SCK_MPP10 (1 << 1)
  30. #define MISO_MPP11 (1 << 2)
  31. #define KWSPI_CLKPRESCL_MASK 0x1f
  32. #define KWSPI_CLKPRESCL_MIN 0x12
  33. #define KWSPI_CSN_ACT 1 /* Activates serial memory interface */
  34. #define KWSPI_SMEMRDY (1 << 1) /* SerMem Data xfer ready */
  35. #define KWSPI_IRQUNMASK 1 /* unmask SPI interrupt */
  36. #define KWSPI_IRQMASK 0 /* mask SPI interrupt */
  37. #define KWSPI_SMEMRDIRQ 1 /* SerMem data xfer ready irq */
  38. #define KWSPI_XFERLEN_1BYTE 0
  39. #define KWSPI_XFERLEN_2BYTE (1 << 5)
  40. #define KWSPI_XFERLEN_MASK (1 << 5)
  41. #define KWSPI_ADRLEN_1BYTE 0
  42. #define KWSPI_ADRLEN_2BYTE (1 << 8)
  43. #define KWSPI_ADRLEN_3BYTE (2 << 8)
  44. #define KWSPI_ADRLEN_4BYTE (3 << 8)
  45. #define KWSPI_ADRLEN_MASK (3 << 8)
  46. #define KWSPI_TIMEOUT 10000
  47. #endif /* __KW_SPI_H__ */