mwavedd.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /*
  2. *
  3. * mwavedd.h -- declarations for mwave device driver
  4. *
  5. *
  6. * Written By: Mike Sullivan IBM Corporation
  7. *
  8. * Copyright (C) 1999 IBM Corporation
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * NO WARRANTY
  21. * THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR
  22. * CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
  23. * LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
  24. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
  25. * solely responsible for determining the appropriateness of using and
  26. * distributing the Program and assumes all risks associated with its
  27. * exercise of rights under this Agreement, including but not limited to
  28. * the risks and costs of program errors, damage to or loss of data,
  29. * programs or equipment, and unavailability or interruption of operations.
  30. *
  31. * DISCLAIMER OF LIABILITY
  32. * NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY
  33. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  34. * DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
  35. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  36. * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  37. * USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
  38. * HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
  39. *
  40. * You should have received a copy of the GNU General Public License
  41. * along with this program; if not, write to the Free Software
  42. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  43. *
  44. *
  45. * 10/23/2000 - Alpha Release
  46. * First release to the public
  47. */
  48. #ifndef _LINUX_MWAVEDD_H
  49. #define _LINUX_MWAVEDD_H
  50. #include "3780i.h"
  51. #include "tp3780i.h"
  52. #include "smapi.h"
  53. #include "mwavepub.h"
  54. #include <linux/ioctl.h>
  55. #include <asm/uaccess.h>
  56. #include <linux/wait.h>
  57. extern int mwave_debug;
  58. extern int mwave_3780i_irq;
  59. extern int mwave_3780i_io;
  60. extern int mwave_uart_irq;
  61. extern int mwave_uart_io;
  62. #define PRINTK_ERROR printk
  63. #define KERN_ERR_MWAVE KERN_ERR "mwave: "
  64. #define TRACE_MWAVE 0x0001
  65. #define TRACE_SMAPI 0x0002
  66. #define TRACE_3780I 0x0004
  67. #define TRACE_TP3780I 0x0008
  68. #ifdef MW_TRACE
  69. #define PRINTK_1(f,s) \
  70. if (f & (mwave_debug)) { \
  71. printk(s); \
  72. }
  73. #define PRINTK_2(f,s,v1) \
  74. if (f & (mwave_debug)) { \
  75. printk(s,v1); \
  76. }
  77. #define PRINTK_3(f,s,v1,v2) \
  78. if (f & (mwave_debug)) { \
  79. printk(s,v1,v2); \
  80. }
  81. #define PRINTK_4(f,s,v1,v2,v3) \
  82. if (f & (mwave_debug)) { \
  83. printk(s,v1,v2,v3); \
  84. }
  85. #define PRINTK_5(f,s,v1,v2,v3,v4) \
  86. if (f & (mwave_debug)) { \
  87. printk(s,v1,v2,v3,v4); \
  88. }
  89. #define PRINTK_6(f,s,v1,v2,v3,v4,v5) \
  90. if (f & (mwave_debug)) { \
  91. printk(s,v1,v2,v3,v4,v5); \
  92. }
  93. #define PRINTK_7(f,s,v1,v2,v3,v4,v5,v6) \
  94. if (f & (mwave_debug)) { \
  95. printk(s,v1,v2,v3,v4,v5,v6); \
  96. }
  97. #define PRINTK_8(f,s,v1,v2,v3,v4,v5,v6,v7) \
  98. if (f & (mwave_debug)) { \
  99. printk(s,v1,v2,v3,v4,v5,v6,v7); \
  100. }
  101. #else
  102. #define PRINTK_1(f,s)
  103. #define PRINTK_2(f,s,v1)
  104. #define PRINTK_3(f,s,v1,v2)
  105. #define PRINTK_4(f,s,v1,v2,v3)
  106. #define PRINTK_5(f,s,v1,v2,v3,v4)
  107. #define PRINTK_6(f,s,v1,v2,v3,v4,v5)
  108. #define PRINTK_7(f,s,v1,v2,v3,v4,v5,v6)
  109. #define PRINTK_8(f,s,v1,v2,v3,v4,v5,v6,v7)
  110. #endif
  111. typedef struct _MWAVE_IPC {
  112. unsigned short usIntCount; /* 0=none, 1=first, 2=greater than 1st */
  113. BOOLEAN bIsEnabled;
  114. BOOLEAN bIsHere;
  115. /* entry spin lock */
  116. wait_queue_head_t ipc_wait_queue;
  117. } MWAVE_IPC;
  118. typedef struct _MWAVE_DEVICE_DATA {
  119. THINKPAD_BD_DATA rBDData; /* board driver's data area */
  120. unsigned long ulIPCSource_ISR; /* IPC source bits for recently processed intr, set during ISR processing */
  121. unsigned long ulIPCSource_DPC; /* IPC source bits for recently processed intr, set during DPC processing */
  122. BOOLEAN bBDInitialized;
  123. BOOLEAN bResourcesClaimed;
  124. BOOLEAN bDSPEnabled;
  125. BOOLEAN bDSPReset;
  126. MWAVE_IPC IPCs[16];
  127. BOOLEAN bMwaveDevRegistered;
  128. short sLine;
  129. int nr_registered_attrs;
  130. int device_registered;
  131. } MWAVE_DEVICE_DATA, *pMWAVE_DEVICE_DATA;
  132. extern MWAVE_DEVICE_DATA mwave_s_mdd;
  133. #endif