p54spi.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*
  2. * Copyright (C) 2008 Christian Lamparter <chunkeey@web.de>
  3. *
  4. * This driver is a port from stlc45xx:
  5. * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * version 2 as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  19. * 02110-1301 USA
  20. */
  21. #ifndef P54SPI_H
  22. #define P54SPI_H
  23. #include <linux/mutex.h>
  24. #include <linux/list.h>
  25. #include <net/mac80211.h>
  26. #include "p54.h"
  27. /* Bit 15 is read/write bit; ON = READ, OFF = WRITE */
  28. #define SPI_ADRS_READ_BIT_15 0x8000
  29. #define SPI_ADRS_ARM_INTERRUPTS 0x00
  30. #define SPI_ADRS_ARM_INT_EN 0x04
  31. #define SPI_ADRS_HOST_INTERRUPTS 0x08
  32. #define SPI_ADRS_HOST_INT_EN 0x0c
  33. #define SPI_ADRS_HOST_INT_ACK 0x10
  34. #define SPI_ADRS_GEN_PURP_1 0x14
  35. #define SPI_ADRS_GEN_PURP_2 0x18
  36. #define SPI_ADRS_DEV_CTRL_STAT 0x26 /* high word */
  37. #define SPI_ADRS_DMA_DATA 0x28
  38. #define SPI_ADRS_DMA_WRITE_CTRL 0x2c
  39. #define SPI_ADRS_DMA_WRITE_LEN 0x2e
  40. #define SPI_ADRS_DMA_WRITE_BASE 0x30
  41. #define SPI_ADRS_DMA_READ_CTRL 0x34
  42. #define SPI_ADRS_DMA_READ_LEN 0x36
  43. #define SPI_ADRS_DMA_READ_BASE 0x38
  44. #define SPI_CTRL_STAT_HOST_OVERRIDE 0x8000
  45. #define SPI_CTRL_STAT_START_HALTED 0x4000
  46. #define SPI_CTRL_STAT_RAM_BOOT 0x2000
  47. #define SPI_CTRL_STAT_HOST_RESET 0x1000
  48. #define SPI_CTRL_STAT_HOST_CPU_EN 0x0800
  49. #define SPI_DMA_WRITE_CTRL_ENABLE 0x0001
  50. #define SPI_DMA_READ_CTRL_ENABLE 0x0001
  51. #define HOST_ALLOWED (1 << 7)
  52. #define SPI_TIMEOUT 100 /* msec */
  53. #define SPI_MAX_TX_PACKETS 32
  54. #define SPI_MAX_PACKET_SIZE 32767
  55. #define SPI_TARGET_INT_WAKEUP 0x00000001
  56. #define SPI_TARGET_INT_SLEEP 0x00000002
  57. #define SPI_TARGET_INT_RDDONE 0x00000004
  58. #define SPI_TARGET_INT_CTS 0x00004000
  59. #define SPI_TARGET_INT_DR 0x00008000
  60. #define SPI_HOST_INT_READY 0x00000001
  61. #define SPI_HOST_INT_WR_READY 0x00000002
  62. #define SPI_HOST_INT_SW_UPDATE 0x00000004
  63. #define SPI_HOST_INT_UPDATE 0x10000000
  64. /* clear to send */
  65. #define SPI_HOST_INT_CR 0x00004000
  66. /* data ready */
  67. #define SPI_HOST_INT_DR 0x00008000
  68. #define SPI_HOST_INTS_DEFAULT \
  69. (SPI_HOST_INT_READY | SPI_HOST_INT_UPDATE | SPI_HOST_INT_SW_UPDATE)
  70. #define TARGET_BOOT_SLEEP 50
  71. struct p54s_dma_regs {
  72. __le16 cmd;
  73. __le16 len;
  74. __le32 addr;
  75. } __packed;
  76. struct p54s_tx_info {
  77. struct list_head tx_list;
  78. };
  79. struct p54s_priv {
  80. /* p54_common has to be the first entry */
  81. struct p54_common common;
  82. struct ieee80211_hw *hw;
  83. struct spi_device *spi;
  84. struct work_struct work;
  85. struct mutex mutex;
  86. struct completion fw_comp;
  87. spinlock_t tx_lock;
  88. /* protected by tx_lock */
  89. struct list_head tx_pending;
  90. enum fw_state fw_state;
  91. const struct firmware *firmware;
  92. };
  93. #endif /* P54SPI_H */