3780i.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:21k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2. *
  3. * 3780i.c -- helper routines for the 3780i DSP
  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. #include <linux/version.h>
  49. #include <linux/config.h>
  50. #include <linux/kernel.h>
  51. #include <linux/unistd.h>
  52. #include <linux/delay.h>
  53. #include <linux/ioport.h>
  54. #include <linux/init.h>
  55. #include <asm/io.h>
  56. #include <asm/uaccess.h>
  57. #include <asm/system.h>
  58. #include <asm/irq.h>
  59. #include <asm/bitops.h>
  60. #include "smapi.h"
  61. #include "mwavedd.h"
  62. #include "3780i.h"
  63. static spinlock_t dsp_lock = SPIN_LOCK_UNLOCKED;
  64. static unsigned long flags;
  65. static void PaceMsaAccess(unsigned short usDspBaseIO)
  66. {
  67. if(current->need_resched)
  68. schedule();
  69. udelay(100);
  70. if(current->need_resched)
  71. schedule();
  72. }
  73. unsigned short dsp3780I_ReadMsaCfg(unsigned short usDspBaseIO,
  74.                                    unsigned long ulMsaAddr)
  75. {
  76. unsigned short val;
  77. PRINTK_3(TRACE_3780I,
  78. "3780i::dsp3780I_ReadMsaCfg entry usDspBaseIO %x ulMsaAddr %lxn",
  79. usDspBaseIO, ulMsaAddr);
  80. spin_lock_irqsave(&dsp_lock, flags);
  81. OutWordDsp(DSP_MsaAddrLow, (unsigned short) ulMsaAddr);
  82. OutWordDsp(DSP_MsaAddrHigh, (unsigned short) (ulMsaAddr >> 16));
  83. val = InWordDsp(DSP_MsaDataDSISHigh);
  84. spin_unlock_irqrestore(&dsp_lock, flags);
  85. PRINTK_2(TRACE_3780I, "3780i::dsp3780I_ReadMsaCfg exit val %xn", val);
  86. return val;
  87. }
  88. void dsp3780I_WriteMsaCfg(unsigned short usDspBaseIO,
  89.                           unsigned long ulMsaAddr, unsigned short usValue)
  90. {
  91. PRINTK_4(TRACE_3780I,
  92. "3780i::dsp3780i_WriteMsaCfg entry usDspBaseIO %x ulMsaAddr %lx usValue %xn",
  93. usDspBaseIO, ulMsaAddr, usValue);
  94. spin_lock_irqsave(&dsp_lock, flags);
  95. OutWordDsp(DSP_MsaAddrLow, (unsigned short) ulMsaAddr);
  96. OutWordDsp(DSP_MsaAddrHigh, (unsigned short) (ulMsaAddr >> 16));
  97. OutWordDsp(DSP_MsaDataDSISHigh, usValue);
  98. spin_unlock_irqrestore(&dsp_lock, flags);
  99. }
  100. void dsp3780I_WriteGenCfg(unsigned short usDspBaseIO, unsigned uIndex,
  101.                           unsigned char ucValue)
  102. {
  103. DSP_ISA_SLAVE_CONTROL rSlaveControl;
  104. DSP_ISA_SLAVE_CONTROL rSlaveControl_Save;
  105. PRINTK_4(TRACE_3780I,
  106. "3780i::dsp3780i_WriteGenCfg entry usDspBaseIO %x uIndex %x ucValue %xn",
  107. usDspBaseIO, uIndex, ucValue);
  108. MKBYTE(rSlaveControl) = InByteDsp(DSP_IsaSlaveControl);
  109. PRINTK_2(TRACE_3780I,
  110. "3780i::dsp3780i_WriteGenCfg rSlaveControl %xn",
  111. MKBYTE(rSlaveControl));
  112. rSlaveControl_Save = rSlaveControl;
  113. rSlaveControl.ConfigMode = TRUE;
  114. PRINTK_2(TRACE_3780I,
  115. "3780i::dsp3780i_WriteGenCfg entry rSlaveControl+ConfigMode %xn",
  116. MKBYTE(rSlaveControl));
  117. OutByteDsp(DSP_IsaSlaveControl, MKBYTE(rSlaveControl));
  118. OutByteDsp(DSP_ConfigAddress, (unsigned char) uIndex);
  119. OutByteDsp(DSP_ConfigData, ucValue);
  120. OutByteDsp(DSP_IsaSlaveControl, MKBYTE(rSlaveControl_Save));
  121. PRINTK_1(TRACE_3780I, "3780i::dsp3780i_WriteGenCfg exitn");
  122. }
  123. unsigned char dsp3780I_ReadGenCfg(unsigned short usDspBaseIO,
  124.                                   unsigned uIndex)
  125. {
  126. DSP_ISA_SLAVE_CONTROL rSlaveControl;
  127. DSP_ISA_SLAVE_CONTROL rSlaveControl_Save;
  128. unsigned char ucValue;
  129. PRINTK_3(TRACE_3780I,
  130. "3780i::dsp3780i_ReadGenCfg entry usDspBaseIO %x uIndex %xn",
  131. usDspBaseIO, uIndex);
  132. MKBYTE(rSlaveControl) = InByteDsp(DSP_IsaSlaveControl);
  133. rSlaveControl_Save = rSlaveControl;
  134. rSlaveControl.ConfigMode = TRUE;
  135. OutByteDsp(DSP_IsaSlaveControl, MKBYTE(rSlaveControl));
  136. OutByteDsp(DSP_ConfigAddress, (unsigned char) uIndex);
  137. ucValue = InByteDsp(DSP_ConfigData);
  138. OutByteDsp(DSP_IsaSlaveControl, MKBYTE(rSlaveControl_Save));
  139. PRINTK_2(TRACE_3780I,
  140. "3780i::dsp3780i_ReadGenCfg exit ucValue %xn", ucValue);
  141. return ucValue;
  142. }
  143. int dsp3780I_EnableDSP(DSP_3780I_CONFIG_SETTINGS * pSettings,
  144.                        unsigned short *pIrqMap,
  145.                        unsigned short *pDmaMap)
  146. {
  147. unsigned short usDspBaseIO = pSettings->usDspBaseIO;
  148. int i;
  149. DSP_UART_CFG_1 rUartCfg1;
  150. DSP_UART_CFG_2 rUartCfg2;
  151. DSP_HBRIDGE_CFG_1 rHBridgeCfg1;
  152. DSP_HBRIDGE_CFG_2 rHBridgeCfg2;
  153. DSP_BUSMASTER_CFG_1 rBusmasterCfg1;
  154. DSP_BUSMASTER_CFG_2 rBusmasterCfg2;
  155. DSP_ISA_PROT_CFG rIsaProtCfg;
  156. DSP_POWER_MGMT_CFG rPowerMgmtCfg;
  157. DSP_HBUS_TIMER_CFG rHBusTimerCfg;
  158. DSP_LBUS_TIMEOUT_DISABLE rLBusTimeoutDisable;
  159. DSP_CHIP_RESET rChipReset;
  160. DSP_CLOCK_CONTROL_1 rClockControl1;
  161. DSP_CLOCK_CONTROL_2 rClockControl2;
  162. DSP_ISA_SLAVE_CONTROL rSlaveControl;
  163. DSP_HBRIDGE_CONTROL rHBridgeControl;
  164. unsigned short ChipID = 0;
  165. unsigned short tval;
  166. PRINTK_2(TRACE_3780I,
  167. "3780i::dsp3780I_EnableDSP entry pSettings->bDSPEnabled %xn",
  168. pSettings->bDSPEnabled);
  169. if (!pSettings->bDSPEnabled) {
  170. PRINTK_ERROR( KERN_ERR "3780i::dsp3780I_EnableDSP: Error: DSP not enabled. Aborting.n" );
  171. return -EIO;
  172. }
  173. PRINTK_2(TRACE_3780I,
  174. "3780i::dsp3780i_EnableDSP entry pSettings->bModemEnabled %xn",
  175. pSettings->bModemEnabled);
  176. if (pSettings->bModemEnabled) {
  177. rUartCfg1.Reserved = rUartCfg2.Reserved = 0;
  178. rUartCfg1.IrqActiveLow = pSettings->bUartIrqActiveLow;
  179. rUartCfg1.IrqPulse = pSettings->bUartIrqPulse;
  180. rUartCfg1.Irq =
  181. (unsigned char) pIrqMap[pSettings->usUartIrq];
  182. switch (pSettings->usUartBaseIO) {
  183. case 0x03F8:
  184. rUartCfg1.BaseIO = 0;
  185. break;
  186. case 0x02F8:
  187. rUartCfg1.BaseIO = 1;
  188. break;
  189. case 0x03E8:
  190. rUartCfg1.BaseIO = 2;
  191. break;
  192. case 0x02E8:
  193. rUartCfg1.BaseIO = 3;
  194. break;
  195. }
  196. rUartCfg2.Enable = TRUE;
  197. }
  198. rHBridgeCfg1.Reserved = rHBridgeCfg2.Reserved = 0;
  199. rHBridgeCfg1.IrqActiveLow = pSettings->bDspIrqActiveLow;
  200. rHBridgeCfg1.IrqPulse = pSettings->bDspIrqPulse;
  201. rHBridgeCfg1.Irq = (unsigned char) pIrqMap[pSettings->usDspIrq];
  202. rHBridgeCfg1.AccessMode = 1;
  203. rHBridgeCfg2.Enable = TRUE;
  204. rBusmasterCfg2.Reserved = 0;
  205. rBusmasterCfg1.Dma = (unsigned char) pDmaMap[pSettings->usDspDma];
  206. rBusmasterCfg1.NumTransfers =
  207. (unsigned char) pSettings->usNumTransfers;
  208. rBusmasterCfg1.ReRequest = (unsigned char) pSettings->usReRequest;
  209. rBusmasterCfg1.MEMCS16 = pSettings->bEnableMEMCS16;
  210. rBusmasterCfg2.IsaMemCmdWidth =
  211. (unsigned char) pSettings->usIsaMemCmdWidth;
  212. rIsaProtCfg.Reserved = 0;
  213. rIsaProtCfg.GateIOCHRDY = pSettings->bGateIOCHRDY;
  214. rPowerMgmtCfg.Reserved = 0;
  215. rPowerMgmtCfg.Enable = pSettings->bEnablePwrMgmt;
  216. rHBusTimerCfg.LoadValue =
  217. (unsigned char) pSettings->usHBusTimerLoadValue;
  218. rLBusTimeoutDisable.Reserved = 0;
  219. rLBusTimeoutDisable.DisableTimeout =
  220. pSettings->bDisableLBusTimeout;
  221. MKWORD(rChipReset) = ~pSettings->usChipletEnable;
  222. rClockControl1.Reserved1 = rClockControl1.Reserved2 = 0;
  223. rClockControl1.N_Divisor = pSettings->usN_Divisor;
  224. rClockControl1.M_Multiplier = pSettings->usM_Multiplier;
  225. rClockControl2.Reserved = 0;
  226. rClockControl2.PllBypass = pSettings->bPllBypass;
  227. /* Issue a soft reset to the chip */
  228. /* Note: Since we may be coming in with 3780i clocks suspended, we must keep
  229. * soft-reset active for 10ms.
  230. */
  231. rSlaveControl.ClockControl = 0;
  232. rSlaveControl.SoftReset = TRUE;
  233. rSlaveControl.ConfigMode = FALSE;
  234. rSlaveControl.Reserved = 0;
  235. PRINTK_4(TRACE_3780I,
  236. "3780i::dsp3780i_EnableDSP usDspBaseIO %x index %x taddr %xn",
  237. usDspBaseIO, DSP_IsaSlaveControl,
  238. usDspBaseIO + DSP_IsaSlaveControl);
  239. PRINTK_2(TRACE_3780I,
  240. "3780i::dsp3780i_EnableDSP rSlaveContrl %xn",
  241. MKWORD(rSlaveControl));
  242. spin_lock_irqsave(&dsp_lock, flags);
  243. OutWordDsp(DSP_IsaSlaveControl, MKWORD(rSlaveControl));
  244. MKWORD(tval) = InWordDsp(DSP_IsaSlaveControl);
  245. PRINTK_2(TRACE_3780I,
  246. "3780i::dsp3780i_EnableDSP rSlaveControl 2 %xn", tval);
  247. for (i = 0; i < 11; i++)
  248. udelay(2000);
  249. rSlaveControl.SoftReset = FALSE;
  250. OutWordDsp(DSP_IsaSlaveControl, MKWORD(rSlaveControl));
  251. MKWORD(tval) = InWordDsp(DSP_IsaSlaveControl);
  252. PRINTK_2(TRACE_3780I,
  253. "3780i::dsp3780i_EnableDSP rSlaveControl 3 %xn", tval);
  254. /* Program our general configuration registers */
  255. WriteGenCfg(DSP_HBridgeCfg1Index, MKBYTE(rHBridgeCfg1));
  256. WriteGenCfg(DSP_HBridgeCfg2Index, MKBYTE(rHBridgeCfg2));
  257. WriteGenCfg(DSP_BusMasterCfg1Index, MKBYTE(rBusmasterCfg1));
  258. WriteGenCfg(DSP_BusMasterCfg2Index, MKBYTE(rBusmasterCfg2));
  259. WriteGenCfg(DSP_IsaProtCfgIndex, MKBYTE(rIsaProtCfg));
  260. WriteGenCfg(DSP_PowerMgCfgIndex, MKBYTE(rPowerMgmtCfg));
  261. WriteGenCfg(DSP_HBusTimerCfgIndex, MKBYTE(rHBusTimerCfg));
  262. if (pSettings->bModemEnabled) {
  263. WriteGenCfg(DSP_UartCfg1Index, MKBYTE(rUartCfg1));
  264. WriteGenCfg(DSP_UartCfg2Index, MKBYTE(rUartCfg2));
  265. }
  266. rHBridgeControl.EnableDspInt = FALSE;
  267. rHBridgeControl.MemAutoInc = TRUE;
  268. rHBridgeControl.IoAutoInc = FALSE;
  269. rHBridgeControl.DiagnosticMode = FALSE;
  270. PRINTK_3(TRACE_3780I,
  271. "3780i::dsp3780i_EnableDSP DSP_HBridgeControl %x rHBridgeControl %xn",
  272. DSP_HBridgeControl, MKWORD(rHBridgeControl));
  273. OutWordDsp(DSP_HBridgeControl, MKWORD(rHBridgeControl));
  274. spin_unlock_irqrestore(&dsp_lock, flags);
  275. WriteMsaCfg(DSP_LBusTimeoutDisable, MKWORD(rLBusTimeoutDisable));
  276. WriteMsaCfg(DSP_ClockControl_1, MKWORD(rClockControl1));
  277. WriteMsaCfg(DSP_ClockControl_2, MKWORD(rClockControl2));
  278. WriteMsaCfg(DSP_ChipReset, MKWORD(rChipReset));
  279. ChipID = ReadMsaCfg(DSP_ChipID);
  280. PRINTK_2(TRACE_3780I,
  281. "3780i::dsp3780I_EnableDSP exiting bRC=TRUE, ChipID %xn",
  282. ChipID);
  283. return 0;
  284. }
  285. int dsp3780I_DisableDSP(DSP_3780I_CONFIG_SETTINGS * pSettings)
  286. {
  287. unsigned short usDspBaseIO = pSettings->usDspBaseIO;
  288. DSP_ISA_SLAVE_CONTROL rSlaveControl;
  289. PRINTK_1(TRACE_3780I, "3780i::dsp3780i_DisableDSP entryn");
  290. rSlaveControl.ClockControl = 0;
  291. rSlaveControl.SoftReset = TRUE;
  292. rSlaveControl.ConfigMode = FALSE;
  293. rSlaveControl.Reserved = 0;
  294. spin_lock_irqsave(&dsp_lock, flags);
  295. OutWordDsp(DSP_IsaSlaveControl, MKWORD(rSlaveControl));
  296. udelay(5);
  297. rSlaveControl.ClockControl = 1;
  298. OutWordDsp(DSP_IsaSlaveControl, MKWORD(rSlaveControl));
  299. spin_unlock_irqrestore(&dsp_lock, flags);
  300. udelay(5);
  301. PRINTK_1(TRACE_3780I, "3780i::dsp3780i_DisableDSP exitn");
  302. return 0;
  303. }
  304. int dsp3780I_Reset(DSP_3780I_CONFIG_SETTINGS * pSettings)
  305. {
  306. unsigned short usDspBaseIO = pSettings->usDspBaseIO;
  307. DSP_BOOT_DOMAIN rBootDomain;
  308. DSP_HBRIDGE_CONTROL rHBridgeControl;
  309. PRINTK_1(TRACE_3780I, "3780i::dsp3780i_Reset entryn");
  310. spin_lock_irqsave(&dsp_lock, flags);
  311. /* Mask DSP to PC interrupt */
  312. MKWORD(rHBridgeControl) = InWordDsp(DSP_HBridgeControl);
  313. PRINTK_2(TRACE_3780I, "3780i::dsp3780i_Reset rHBridgeControl %xn",
  314. MKWORD(rHBridgeControl));
  315. rHBridgeControl.EnableDspInt = FALSE;
  316. OutWordDsp(DSP_HBridgeControl, MKWORD(rHBridgeControl));
  317. spin_unlock_irqrestore(&dsp_lock, flags);
  318. /* Reset the core via the boot domain register */
  319. rBootDomain.ResetCore = TRUE;
  320. rBootDomain.Halt = TRUE;
  321. rBootDomain.NMI = TRUE;
  322. rBootDomain.Reserved = 0;
  323. PRINTK_2(TRACE_3780I, "3780i::dsp3780i_Reset rBootDomain %xn",
  324. MKWORD(rBootDomain));
  325. WriteMsaCfg(DSP_MspBootDomain, MKWORD(rBootDomain));
  326. /* Reset all the chiplets and then reactivate them */
  327. WriteMsaCfg(DSP_ChipReset, 0xFFFF);
  328. udelay(5);
  329. WriteMsaCfg(DSP_ChipReset,
  330. (unsigned short) (~pSettings->usChipletEnable));
  331. PRINTK_1(TRACE_3780I, "3780i::dsp3780i_Reset exit bRC=0n");
  332. return 0;
  333. }
  334. int dsp3780I_Run(DSP_3780I_CONFIG_SETTINGS * pSettings)
  335. {
  336. unsigned short usDspBaseIO = pSettings->usDspBaseIO;
  337. DSP_BOOT_DOMAIN rBootDomain;
  338. DSP_HBRIDGE_CONTROL rHBridgeControl;
  339. PRINTK_1(TRACE_3780I, "3780i::dsp3780i_Run entryn");
  340. /* Transition the core to a running state */
  341. rBootDomain.ResetCore = TRUE;
  342. rBootDomain.Halt = FALSE;
  343. rBootDomain.NMI = TRUE;
  344. rBootDomain.Reserved = 0;
  345. WriteMsaCfg(DSP_MspBootDomain, MKWORD(rBootDomain));
  346. udelay(5);
  347. rBootDomain.ResetCore = FALSE;
  348. WriteMsaCfg(DSP_MspBootDomain, MKWORD(rBootDomain));
  349. udelay(5);
  350. rBootDomain.NMI = FALSE;
  351. WriteMsaCfg(DSP_MspBootDomain, MKWORD(rBootDomain));
  352. udelay(5);
  353. /* Enable DSP to PC interrupt */
  354. spin_lock_irqsave(&dsp_lock, flags);
  355. MKWORD(rHBridgeControl) = InWordDsp(DSP_HBridgeControl);
  356. rHBridgeControl.EnableDspInt = TRUE;
  357. PRINTK_2(TRACE_3780I, "3780i::dsp3780i_Run rHBridgeControl %xn",
  358. MKWORD(rHBridgeControl));
  359. OutWordDsp(DSP_HBridgeControl, MKWORD(rHBridgeControl));
  360. spin_unlock_irqrestore(&dsp_lock, flags);
  361. PRINTK_1(TRACE_3780I, "3780i::dsp3780i_Run exit bRC=TRUEn");
  362. return 0;
  363. }
  364. int dsp3780I_ReadDStore(unsigned short usDspBaseIO, void *pvBuffer,
  365.                         unsigned uCount, unsigned long ulDSPAddr)
  366. {
  367. unsigned short *pusBuffer = pvBuffer;
  368. unsigned short val;
  369. PRINTK_5(TRACE_3780I,
  370. "3780i::dsp3780I_ReadDStore entry usDspBaseIO %x, pusBuffer %p, uCount %x, ulDSPAddr %lxn",
  371. usDspBaseIO, pusBuffer, uCount, ulDSPAddr);
  372. /* Set the initial MSA address. No adjustments need to be made to data store addresses */
  373. spin_lock_irqsave(&dsp_lock, flags);
  374. OutWordDsp(DSP_MsaAddrLow, (unsigned short) ulDSPAddr);
  375. OutWordDsp(DSP_MsaAddrHigh, (unsigned short) (ulDSPAddr >> 16));
  376. spin_unlock_irqrestore(&dsp_lock, flags);
  377. /* Transfer the memory block */
  378. while (uCount-- != 0) {
  379. spin_lock_irqsave(&dsp_lock, flags);
  380. val = InWordDsp(DSP_MsaDataDSISHigh);
  381. spin_unlock_irqrestore(&dsp_lock, flags);
  382. if(put_user(val, pusBuffer++))
  383. return -EFAULT;
  384. PRINTK_3(TRACE_3780I,
  385. "3780I::dsp3780I_ReadDStore uCount %x val %xn",
  386. uCount, val);
  387. PaceMsaAccess(usDspBaseIO);
  388. }
  389. PRINTK_1(TRACE_3780I,
  390. "3780I::dsp3780I_ReadDStore exit bRC=TRUEn");
  391. return 0;
  392. }
  393. int dsp3780I_ReadAndClearDStore(unsigned short usDspBaseIO,
  394.                                 void *pvBuffer, unsigned uCount,
  395.                                 unsigned long ulDSPAddr)
  396. {
  397. unsigned short *pusBuffer = pvBuffer;
  398. unsigned short val;
  399. PRINTK_5(TRACE_3780I,
  400. "3780i::dsp3780I_ReadAndDStore entry usDspBaseIO %x, pusBuffer %p, uCount %x, ulDSPAddr %lxn",
  401. usDspBaseIO, pusBuffer, uCount, ulDSPAddr);
  402. /* Set the initial MSA address. No adjustments need to be made to data store addresses */
  403. spin_lock_irqsave(&dsp_lock, flags);
  404. OutWordDsp(DSP_MsaAddrLow, (unsigned short) ulDSPAddr);
  405. OutWordDsp(DSP_MsaAddrHigh, (unsigned short) (ulDSPAddr >> 16));
  406. spin_unlock_irqrestore(&dsp_lock, flags);
  407. /* Transfer the memory block */
  408. while (uCount-- != 0) {
  409. spin_lock_irqsave(&dsp_lock, flags);
  410. val = InWordDsp(DSP_ReadAndClear);
  411. spin_unlock_irqrestore(&dsp_lock, flags);
  412. if(put_user(val, pusBuffer++))
  413. return -EFAULT;
  414. PRINTK_3(TRACE_3780I,
  415. "3780I::dsp3780I_ReadAndCleanDStore uCount %x val %xn",
  416. uCount, val);
  417. PaceMsaAccess(usDspBaseIO);
  418. }
  419. PRINTK_1(TRACE_3780I,
  420. "3780I::dsp3780I_ReadAndClearDStore exit bRC=TRUEn");
  421. return 0;
  422. }
  423. int dsp3780I_WriteDStore(unsigned short usDspBaseIO, void *pvBuffer,
  424.                          unsigned uCount, unsigned long ulDSPAddr)
  425. {
  426. unsigned short *pusBuffer = pvBuffer;
  427. PRINTK_5(TRACE_3780I,
  428. "3780i::dsp3780D_WriteDStore entry usDspBaseIO %x, pusBuffer %p, uCount %x, ulDSPAddr %lxn",
  429. usDspBaseIO, pusBuffer, uCount, ulDSPAddr);
  430. /* Set the initial MSA address. No adjustments need to be made to data store addresses */
  431. spin_lock_irqsave(&dsp_lock, flags);
  432. OutWordDsp(DSP_MsaAddrLow, (unsigned short) ulDSPAddr);
  433. OutWordDsp(DSP_MsaAddrHigh, (unsigned short) (ulDSPAddr >> 16));
  434. spin_unlock_irqrestore(&dsp_lock, flags);
  435. /* Transfer the memory block */
  436. while (uCount-- != 0) {
  437. unsigned short val;
  438. if(get_user(val, pusBuffer++))
  439. return -EFAULT;
  440. spin_lock_irqsave(&dsp_lock, flags);
  441. OutWordDsp(DSP_MsaDataDSISHigh, val);
  442. spin_unlock_irqrestore(&dsp_lock, flags);
  443. PRINTK_3(TRACE_3780I,
  444. "3780I::dsp3780I_WriteDStore uCount %x val %xn",
  445. uCount, val);
  446. PaceMsaAccess(usDspBaseIO);
  447. }
  448. PRINTK_1(TRACE_3780I,
  449. "3780I::dsp3780D_WriteDStore exit bRC=TRUEn");
  450. return 0;
  451. }
  452. int dsp3780I_ReadIStore(unsigned short usDspBaseIO, void *pvBuffer,
  453.                         unsigned uCount, unsigned long ulDSPAddr)
  454. {
  455. unsigned short *pusBuffer = pvBuffer;
  456. PRINTK_5(TRACE_3780I,
  457. "3780i::dsp3780I_ReadIStore entry usDspBaseIO %x, pusBuffer %p, uCount %x, ulDSPAddr %lxn",
  458. usDspBaseIO, pusBuffer, uCount, ulDSPAddr);
  459. /*
  460. * Set the initial MSA address. To convert from an instruction store
  461. * address to an MSA address
  462. * shift the address two bits to the left and set bit 22
  463. */
  464. ulDSPAddr = (ulDSPAddr << 2) | (1 << 22);
  465. spin_lock_irqsave(&dsp_lock, flags);
  466. OutWordDsp(DSP_MsaAddrLow, (unsigned short) ulDSPAddr);
  467. OutWordDsp(DSP_MsaAddrHigh, (unsigned short) (ulDSPAddr >> 16));
  468. spin_unlock_irqrestore(&dsp_lock, flags);
  469. /* Transfer the memory block */
  470. while (uCount-- != 0) {
  471. unsigned short val_lo, val_hi;
  472. spin_lock_irqsave(&dsp_lock, flags);
  473. val_lo = InWordDsp(DSP_MsaDataISLow);
  474. val_hi = InWordDsp(DSP_MsaDataDSISHigh);
  475. spin_unlock_irqrestore(&dsp_lock, flags);
  476. if(put_user(val_lo, pusBuffer++))
  477. return -EFAULT;
  478. if(put_user(val_hi, pusBuffer++))
  479. return -EFAULT;
  480. PRINTK_4(TRACE_3780I,
  481. "3780I::dsp3780I_ReadIStore uCount %x val_lo %x val_hi %xn",
  482. uCount, val_lo, val_hi);
  483. PaceMsaAccess(usDspBaseIO);
  484. }
  485. PRINTK_1(TRACE_3780I,
  486. "3780I::dsp3780I_ReadIStore exit bRC=TRUEn");
  487. return 0;
  488. }
  489. int dsp3780I_WriteIStore(unsigned short usDspBaseIO, void *pvBuffer,
  490.                          unsigned uCount, unsigned long ulDSPAddr)
  491. {
  492. unsigned short *pusBuffer = pvBuffer;
  493. PRINTK_5(TRACE_3780I,
  494. "3780i::dsp3780I_WriteIStore entry usDspBaseIO %x, pusBuffer %p, uCount %x, ulDSPAddr %lxn",
  495. usDspBaseIO, pusBuffer, uCount, ulDSPAddr);
  496. /*
  497. * Set the initial MSA address. To convert from an instruction store
  498. * address to an MSA address
  499. * shift the address two bits to the left and set bit 22
  500. */
  501. ulDSPAddr = (ulDSPAddr << 2) | (1 << 22);
  502. spin_lock_irqsave(&dsp_lock, flags);
  503. OutWordDsp(DSP_MsaAddrLow, (unsigned short) ulDSPAddr);
  504. OutWordDsp(DSP_MsaAddrHigh, (unsigned short) (ulDSPAddr >> 16));
  505. spin_unlock_irqrestore(&dsp_lock, flags);
  506. /* Transfer the memory block */
  507. while (uCount-- != 0) {
  508. unsigned short val_lo, val_hi;
  509. if(get_user(val_lo, pusBuffer++))
  510. return -EFAULT;
  511. if(get_user(val_hi, pusBuffer++))
  512. return -EFAULT;
  513. spin_lock_irqsave(&dsp_lock, flags);
  514. OutWordDsp(DSP_MsaDataISLow, val_lo);
  515. OutWordDsp(DSP_MsaDataDSISHigh, val_hi);
  516. spin_unlock_irqrestore(&dsp_lock, flags);
  517. PRINTK_4(TRACE_3780I,
  518. "3780I::dsp3780I_WriteIStore uCount %x val_lo %x val_hi %xn",
  519. uCount, val_lo, val_hi);
  520. PaceMsaAccess(usDspBaseIO);
  521. }
  522. PRINTK_1(TRACE_3780I,
  523. "3780I::dsp3780I_WriteIStore exit bRC=TRUEn");
  524. return 0;
  525. }
  526. int dsp3780I_GetIPCSource(unsigned short usDspBaseIO,
  527.                           unsigned short *pusIPCSource)
  528. {
  529. DSP_HBRIDGE_CONTROL rHBridgeControl;
  530. unsigned short temp;
  531. PRINTK_3(TRACE_3780I,
  532. "3780i::dsp3780I_GetIPCSource entry usDspBaseIO %x pusIPCSource %pn",
  533. usDspBaseIO, pusIPCSource);
  534. /*
  535. * Disable DSP to PC interrupts, read the interupt register,
  536. * clear the pending IPC bits, and reenable DSP to PC interrupts
  537. */
  538. spin_lock_irqsave(&dsp_lock, flags);
  539. MKWORD(rHBridgeControl) = InWordDsp(DSP_HBridgeControl);
  540. rHBridgeControl.EnableDspInt = FALSE;
  541. OutWordDsp(DSP_HBridgeControl, MKWORD(rHBridgeControl));
  542. *pusIPCSource = InWordDsp(DSP_Interrupt);
  543. temp = (unsigned short) ~(*pusIPCSource);
  544. PRINTK_3(TRACE_3780I,
  545. "3780i::dsp3780I_GetIPCSource, usIPCSource %x ~ %xn",
  546. *pusIPCSource, temp);
  547. OutWordDsp(DSP_Interrupt, (unsigned short) ~(*pusIPCSource));
  548. rHBridgeControl.EnableDspInt = TRUE;
  549. OutWordDsp(DSP_HBridgeControl, MKWORD(rHBridgeControl));
  550. spin_unlock_irqrestore(&dsp_lock, flags);
  551. PRINTK_2(TRACE_3780I,
  552. "3780i::dsp3780I_GetIPCSource exit usIPCSource %xn",
  553. *pusIPCSource);
  554. return 0;
  555. }