3 * 3780i.c -- helper routines for the 3780i DSP
6 * Written By: Mike Sullivan IBM Corporation
8 * Copyright (C) 1999 IBM Corporation
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.
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.
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.
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
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
45 * 10/23/2000 - Alpha Release
46 * First release to the public
49 #include <linux/kernel.h>
50 #include <linux/unistd.h>
51 #include <linux/delay.h>
52 #include <linux/ioport.h>
53 #include <linux/init.h>
54 #include <linux/bitops.h>
55 #include <linux/sched.h> /* cond_resched() */
58 #include <asm/uaccess.h>
59 #include <asm/system.h>
65 static DEFINE_SPINLOCK(dsp_lock
);
67 static void PaceMsaAccess(unsigned short usDspBaseIO
)
74 unsigned short dsp3780I_ReadMsaCfg(unsigned short usDspBaseIO
,
75 unsigned long ulMsaAddr
)
81 "3780i::dsp3780I_ReadMsaCfg entry usDspBaseIO %x ulMsaAddr %lx\n",
82 usDspBaseIO
, ulMsaAddr
);
84 spin_lock_irqsave(&dsp_lock
, flags
);
85 OutWordDsp(DSP_MsaAddrLow
, (unsigned short) ulMsaAddr
);
86 OutWordDsp(DSP_MsaAddrHigh
, (unsigned short) (ulMsaAddr
>> 16));
87 val
= InWordDsp(DSP_MsaDataDSISHigh
);
88 spin_unlock_irqrestore(&dsp_lock
, flags
);
90 PRINTK_2(TRACE_3780I
, "3780i::dsp3780I_ReadMsaCfg exit val %x\n", val
);
95 void dsp3780I_WriteMsaCfg(unsigned short usDspBaseIO
,
96 unsigned long ulMsaAddr
, unsigned short usValue
)
100 PRINTK_4(TRACE_3780I
,
101 "3780i::dsp3780i_WriteMsaCfg entry usDspBaseIO %x ulMsaAddr %lx usValue %x\n",
102 usDspBaseIO
, ulMsaAddr
, usValue
);
104 spin_lock_irqsave(&dsp_lock
, flags
);
105 OutWordDsp(DSP_MsaAddrLow
, (unsigned short) ulMsaAddr
);
106 OutWordDsp(DSP_MsaAddrHigh
, (unsigned short) (ulMsaAddr
>> 16));
107 OutWordDsp(DSP_MsaDataDSISHigh
, usValue
);
108 spin_unlock_irqrestore(&dsp_lock
, flags
);
111 static void dsp3780I_WriteGenCfg(unsigned short usDspBaseIO
, unsigned uIndex
,
112 unsigned char ucValue
)
114 DSP_ISA_SLAVE_CONTROL rSlaveControl
;
115 DSP_ISA_SLAVE_CONTROL rSlaveControl_Save
;
118 PRINTK_4(TRACE_3780I
,
119 "3780i::dsp3780i_WriteGenCfg entry usDspBaseIO %x uIndex %x ucValue %x\n",
120 usDspBaseIO
, uIndex
, ucValue
);
122 MKBYTE(rSlaveControl
) = InByteDsp(DSP_IsaSlaveControl
);
124 PRINTK_2(TRACE_3780I
,
125 "3780i::dsp3780i_WriteGenCfg rSlaveControl %x\n",
126 MKBYTE(rSlaveControl
));
128 rSlaveControl_Save
= rSlaveControl
;
129 rSlaveControl
.ConfigMode
= TRUE
;
131 PRINTK_2(TRACE_3780I
,
132 "3780i::dsp3780i_WriteGenCfg entry rSlaveControl+ConfigMode %x\n",
133 MKBYTE(rSlaveControl
));
135 OutByteDsp(DSP_IsaSlaveControl
, MKBYTE(rSlaveControl
));
136 OutByteDsp(DSP_ConfigAddress
, (unsigned char) uIndex
);
137 OutByteDsp(DSP_ConfigData
, ucValue
);
138 OutByteDsp(DSP_IsaSlaveControl
, MKBYTE(rSlaveControl_Save
));
140 PRINTK_1(TRACE_3780I
, "3780i::dsp3780i_WriteGenCfg exit\n");
146 unsigned char dsp3780I_ReadGenCfg(unsigned short usDspBaseIO
,
149 DSP_ISA_SLAVE_CONTROL rSlaveControl
;
150 DSP_ISA_SLAVE_CONTROL rSlaveControl_Save
;
151 unsigned char ucValue
;
154 PRINTK_3(TRACE_3780I
,
155 "3780i::dsp3780i_ReadGenCfg entry usDspBaseIO %x uIndex %x\n",
156 usDspBaseIO
, uIndex
);
158 MKBYTE(rSlaveControl
) = InByteDsp(DSP_IsaSlaveControl
);
159 rSlaveControl_Save
= rSlaveControl
;
160 rSlaveControl
.ConfigMode
= TRUE
;
161 OutByteDsp(DSP_IsaSlaveControl
, MKBYTE(rSlaveControl
));
162 OutByteDsp(DSP_ConfigAddress
, (unsigned char) uIndex
);
163 ucValue
= InByteDsp(DSP_ConfigData
);
164 OutByteDsp(DSP_IsaSlaveControl
, MKBYTE(rSlaveControl_Save
));
166 PRINTK_2(TRACE_3780I
,
167 "3780i::dsp3780i_ReadGenCfg exit ucValue %x\n", ucValue
);
174 int dsp3780I_EnableDSP(DSP_3780I_CONFIG_SETTINGS
* pSettings
,
175 unsigned short *pIrqMap
,
176 unsigned short *pDmaMap
)
179 unsigned short usDspBaseIO
= pSettings
->usDspBaseIO
;
181 DSP_UART_CFG_1 rUartCfg1
;
182 DSP_UART_CFG_2 rUartCfg2
;
183 DSP_HBRIDGE_CFG_1 rHBridgeCfg1
;
184 DSP_HBRIDGE_CFG_2 rHBridgeCfg2
;
185 DSP_BUSMASTER_CFG_1 rBusmasterCfg1
;
186 DSP_BUSMASTER_CFG_2 rBusmasterCfg2
;
187 DSP_ISA_PROT_CFG rIsaProtCfg
;
188 DSP_POWER_MGMT_CFG rPowerMgmtCfg
;
189 DSP_HBUS_TIMER_CFG rHBusTimerCfg
;
190 DSP_LBUS_TIMEOUT_DISABLE rLBusTimeoutDisable
;
191 DSP_CHIP_RESET rChipReset
;
192 DSP_CLOCK_CONTROL_1 rClockControl1
;
193 DSP_CLOCK_CONTROL_2 rClockControl2
;
194 DSP_ISA_SLAVE_CONTROL rSlaveControl
;
195 DSP_HBRIDGE_CONTROL rHBridgeControl
;
196 unsigned short ChipID
= 0;
200 PRINTK_2(TRACE_3780I
,
201 "3780i::dsp3780I_EnableDSP entry pSettings->bDSPEnabled %x\n",
202 pSettings
->bDSPEnabled
);
205 if (!pSettings
->bDSPEnabled
) {
206 PRINTK_ERROR( KERN_ERR
"3780i::dsp3780I_EnableDSP: Error: DSP not enabled. Aborting.\n" );
211 PRINTK_2(TRACE_3780I
,
212 "3780i::dsp3780i_EnableDSP entry pSettings->bModemEnabled %x\n",
213 pSettings
->bModemEnabled
);
215 if (pSettings
->bModemEnabled
) {
216 rUartCfg1
.Reserved
= rUartCfg2
.Reserved
= 0;
217 rUartCfg1
.IrqActiveLow
= pSettings
->bUartIrqActiveLow
;
218 rUartCfg1
.IrqPulse
= pSettings
->bUartIrqPulse
;
220 (unsigned char) pIrqMap
[pSettings
->usUartIrq
];
221 switch (pSettings
->usUartBaseIO
) {
223 rUartCfg1
.BaseIO
= 0;
226 rUartCfg1
.BaseIO
= 1;
229 rUartCfg1
.BaseIO
= 2;
232 rUartCfg1
.BaseIO
= 3;
235 rUartCfg2
.Enable
= TRUE
;
238 rHBridgeCfg1
.Reserved
= rHBridgeCfg2
.Reserved
= 0;
239 rHBridgeCfg1
.IrqActiveLow
= pSettings
->bDspIrqActiveLow
;
240 rHBridgeCfg1
.IrqPulse
= pSettings
->bDspIrqPulse
;
241 rHBridgeCfg1
.Irq
= (unsigned char) pIrqMap
[pSettings
->usDspIrq
];
242 rHBridgeCfg1
.AccessMode
= 1;
243 rHBridgeCfg2
.Enable
= TRUE
;
246 rBusmasterCfg2
.Reserved
= 0;
247 rBusmasterCfg1
.Dma
= (unsigned char) pDmaMap
[pSettings
->usDspDma
];
248 rBusmasterCfg1
.NumTransfers
=
249 (unsigned char) pSettings
->usNumTransfers
;
250 rBusmasterCfg1
.ReRequest
= (unsigned char) pSettings
->usReRequest
;
251 rBusmasterCfg1
.MEMCS16
= pSettings
->bEnableMEMCS16
;
252 rBusmasterCfg2
.IsaMemCmdWidth
=
253 (unsigned char) pSettings
->usIsaMemCmdWidth
;
256 rIsaProtCfg
.Reserved
= 0;
257 rIsaProtCfg
.GateIOCHRDY
= pSettings
->bGateIOCHRDY
;
259 rPowerMgmtCfg
.Reserved
= 0;
260 rPowerMgmtCfg
.Enable
= pSettings
->bEnablePwrMgmt
;
262 rHBusTimerCfg
.LoadValue
=
263 (unsigned char) pSettings
->usHBusTimerLoadValue
;
265 rLBusTimeoutDisable
.Reserved
= 0;
266 rLBusTimeoutDisable
.DisableTimeout
=
267 pSettings
->bDisableLBusTimeout
;
269 MKWORD(rChipReset
) = ~pSettings
->usChipletEnable
;
271 rClockControl1
.Reserved1
= rClockControl1
.Reserved2
= 0;
272 rClockControl1
.N_Divisor
= pSettings
->usN_Divisor
;
273 rClockControl1
.M_Multiplier
= pSettings
->usM_Multiplier
;
275 rClockControl2
.Reserved
= 0;
276 rClockControl2
.PllBypass
= pSettings
->bPllBypass
;
278 /* Issue a soft reset to the chip */
279 /* Note: Since we may be coming in with 3780i clocks suspended, we must keep
280 * soft-reset active for 10ms.
282 rSlaveControl
.ClockControl
= 0;
283 rSlaveControl
.SoftReset
= TRUE
;
284 rSlaveControl
.ConfigMode
= FALSE
;
285 rSlaveControl
.Reserved
= 0;
287 PRINTK_4(TRACE_3780I
,
288 "3780i::dsp3780i_EnableDSP usDspBaseIO %x index %x taddr %x\n",
289 usDspBaseIO
, DSP_IsaSlaveControl
,
290 usDspBaseIO
+ DSP_IsaSlaveControl
);
292 PRINTK_2(TRACE_3780I
,
293 "3780i::dsp3780i_EnableDSP rSlaveContrl %x\n",
294 MKWORD(rSlaveControl
));
296 spin_lock_irqsave(&dsp_lock
, flags
);
297 OutWordDsp(DSP_IsaSlaveControl
, MKWORD(rSlaveControl
));
298 MKWORD(tval
) = InWordDsp(DSP_IsaSlaveControl
);
300 PRINTK_2(TRACE_3780I
,
301 "3780i::dsp3780i_EnableDSP rSlaveControl 2 %x\n", tval
);
304 for (i
= 0; i
< 11; i
++)
307 rSlaveControl
.SoftReset
= FALSE
;
308 OutWordDsp(DSP_IsaSlaveControl
, MKWORD(rSlaveControl
));
310 MKWORD(tval
) = InWordDsp(DSP_IsaSlaveControl
);
312 PRINTK_2(TRACE_3780I
,
313 "3780i::dsp3780i_EnableDSP rSlaveControl 3 %x\n", tval
);
316 /* Program our general configuration registers */
317 WriteGenCfg(DSP_HBridgeCfg1Index
, MKBYTE(rHBridgeCfg1
));
318 WriteGenCfg(DSP_HBridgeCfg2Index
, MKBYTE(rHBridgeCfg2
));
319 WriteGenCfg(DSP_BusMasterCfg1Index
, MKBYTE(rBusmasterCfg1
));
320 WriteGenCfg(DSP_BusMasterCfg2Index
, MKBYTE(rBusmasterCfg2
));
321 WriteGenCfg(DSP_IsaProtCfgIndex
, MKBYTE(rIsaProtCfg
));
322 WriteGenCfg(DSP_PowerMgCfgIndex
, MKBYTE(rPowerMgmtCfg
));
323 WriteGenCfg(DSP_HBusTimerCfgIndex
, MKBYTE(rHBusTimerCfg
));
325 if (pSettings
->bModemEnabled
) {
326 WriteGenCfg(DSP_UartCfg1Index
, MKBYTE(rUartCfg1
));
327 WriteGenCfg(DSP_UartCfg2Index
, MKBYTE(rUartCfg2
));
331 rHBridgeControl
.EnableDspInt
= FALSE
;
332 rHBridgeControl
.MemAutoInc
= TRUE
;
333 rHBridgeControl
.IoAutoInc
= FALSE
;
334 rHBridgeControl
.DiagnosticMode
= FALSE
;
336 PRINTK_3(TRACE_3780I
,
337 "3780i::dsp3780i_EnableDSP DSP_HBridgeControl %x rHBridgeControl %x\n",
338 DSP_HBridgeControl
, MKWORD(rHBridgeControl
));
340 OutWordDsp(DSP_HBridgeControl
, MKWORD(rHBridgeControl
));
341 spin_unlock_irqrestore(&dsp_lock
, flags
);
342 WriteMsaCfg(DSP_LBusTimeoutDisable
, MKWORD(rLBusTimeoutDisable
));
343 WriteMsaCfg(DSP_ClockControl_1
, MKWORD(rClockControl1
));
344 WriteMsaCfg(DSP_ClockControl_2
, MKWORD(rClockControl2
));
345 WriteMsaCfg(DSP_ChipReset
, MKWORD(rChipReset
));
347 ChipID
= ReadMsaCfg(DSP_ChipID
);
349 PRINTK_2(TRACE_3780I
,
350 "3780i::dsp3780I_EnableDSP exiting bRC=TRUE, ChipID %x\n",
356 int dsp3780I_DisableDSP(DSP_3780I_CONFIG_SETTINGS
* pSettings
)
359 unsigned short usDspBaseIO
= pSettings
->usDspBaseIO
;
360 DSP_ISA_SLAVE_CONTROL rSlaveControl
;
363 PRINTK_1(TRACE_3780I
, "3780i::dsp3780i_DisableDSP entry\n");
365 rSlaveControl
.ClockControl
= 0;
366 rSlaveControl
.SoftReset
= TRUE
;
367 rSlaveControl
.ConfigMode
= FALSE
;
368 rSlaveControl
.Reserved
= 0;
369 spin_lock_irqsave(&dsp_lock
, flags
);
370 OutWordDsp(DSP_IsaSlaveControl
, MKWORD(rSlaveControl
));
374 rSlaveControl
.ClockControl
= 1;
375 OutWordDsp(DSP_IsaSlaveControl
, MKWORD(rSlaveControl
));
376 spin_unlock_irqrestore(&dsp_lock
, flags
);
381 PRINTK_1(TRACE_3780I
, "3780i::dsp3780i_DisableDSP exit\n");
386 int dsp3780I_Reset(DSP_3780I_CONFIG_SETTINGS
* pSettings
)
389 unsigned short usDspBaseIO
= pSettings
->usDspBaseIO
;
390 DSP_BOOT_DOMAIN rBootDomain
;
391 DSP_HBRIDGE_CONTROL rHBridgeControl
;
394 PRINTK_1(TRACE_3780I
, "3780i::dsp3780i_Reset entry\n");
396 spin_lock_irqsave(&dsp_lock
, flags
);
397 /* Mask DSP to PC interrupt */
398 MKWORD(rHBridgeControl
) = InWordDsp(DSP_HBridgeControl
);
400 PRINTK_2(TRACE_3780I
, "3780i::dsp3780i_Reset rHBridgeControl %x\n",
401 MKWORD(rHBridgeControl
));
403 rHBridgeControl
.EnableDspInt
= FALSE
;
404 OutWordDsp(DSP_HBridgeControl
, MKWORD(rHBridgeControl
));
405 spin_unlock_irqrestore(&dsp_lock
, flags
);
407 /* Reset the core via the boot domain register */
408 rBootDomain
.ResetCore
= TRUE
;
409 rBootDomain
.Halt
= TRUE
;
410 rBootDomain
.NMI
= TRUE
;
411 rBootDomain
.Reserved
= 0;
413 PRINTK_2(TRACE_3780I
, "3780i::dsp3780i_Reset rBootDomain %x\n",
414 MKWORD(rBootDomain
));
416 WriteMsaCfg(DSP_MspBootDomain
, MKWORD(rBootDomain
));
418 /* Reset all the chiplets and then reactivate them */
419 WriteMsaCfg(DSP_ChipReset
, 0xFFFF);
421 WriteMsaCfg(DSP_ChipReset
,
422 (unsigned short) (~pSettings
->usChipletEnable
));
425 PRINTK_1(TRACE_3780I
, "3780i::dsp3780i_Reset exit bRC=0\n");
431 int dsp3780I_Run(DSP_3780I_CONFIG_SETTINGS
* pSettings
)
434 unsigned short usDspBaseIO
= pSettings
->usDspBaseIO
;
435 DSP_BOOT_DOMAIN rBootDomain
;
436 DSP_HBRIDGE_CONTROL rHBridgeControl
;
439 PRINTK_1(TRACE_3780I
, "3780i::dsp3780i_Run entry\n");
442 /* Transition the core to a running state */
443 rBootDomain
.ResetCore
= TRUE
;
444 rBootDomain
.Halt
= FALSE
;
445 rBootDomain
.NMI
= TRUE
;
446 rBootDomain
.Reserved
= 0;
447 WriteMsaCfg(DSP_MspBootDomain
, MKWORD(rBootDomain
));
451 rBootDomain
.ResetCore
= FALSE
;
452 WriteMsaCfg(DSP_MspBootDomain
, MKWORD(rBootDomain
));
455 rBootDomain
.NMI
= FALSE
;
456 WriteMsaCfg(DSP_MspBootDomain
, MKWORD(rBootDomain
));
459 /* Enable DSP to PC interrupt */
460 spin_lock_irqsave(&dsp_lock
, flags
);
461 MKWORD(rHBridgeControl
) = InWordDsp(DSP_HBridgeControl
);
462 rHBridgeControl
.EnableDspInt
= TRUE
;
464 PRINTK_2(TRACE_3780I
, "3780i::dsp3780i_Run rHBridgeControl %x\n",
465 MKWORD(rHBridgeControl
));
467 OutWordDsp(DSP_HBridgeControl
, MKWORD(rHBridgeControl
));
468 spin_unlock_irqrestore(&dsp_lock
, flags
);
471 PRINTK_1(TRACE_3780I
, "3780i::dsp3780i_Run exit bRC=TRUE\n");
477 int dsp3780I_ReadDStore(unsigned short usDspBaseIO
, void __user
*pvBuffer
,
478 unsigned uCount
, unsigned long ulDSPAddr
)
481 unsigned short __user
*pusBuffer
= pvBuffer
;
485 PRINTK_5(TRACE_3780I
,
486 "3780i::dsp3780I_ReadDStore entry usDspBaseIO %x, pusBuffer %p, uCount %x, ulDSPAddr %lx\n",
487 usDspBaseIO
, pusBuffer
, uCount
, ulDSPAddr
);
490 /* Set the initial MSA address. No adjustments need to be made to data store addresses */
491 spin_lock_irqsave(&dsp_lock
, flags
);
492 OutWordDsp(DSP_MsaAddrLow
, (unsigned short) ulDSPAddr
);
493 OutWordDsp(DSP_MsaAddrHigh
, (unsigned short) (ulDSPAddr
>> 16));
494 spin_unlock_irqrestore(&dsp_lock
, flags
);
496 /* Transfer the memory block */
497 while (uCount
-- != 0) {
498 spin_lock_irqsave(&dsp_lock
, flags
);
499 val
= InWordDsp(DSP_MsaDataDSISHigh
);
500 spin_unlock_irqrestore(&dsp_lock
, flags
);
501 if(put_user(val
, pusBuffer
++))
504 PRINTK_3(TRACE_3780I
,
505 "3780I::dsp3780I_ReadDStore uCount %x val %x\n",
508 PaceMsaAccess(usDspBaseIO
);
512 PRINTK_1(TRACE_3780I
,
513 "3780I::dsp3780I_ReadDStore exit bRC=TRUE\n");
518 int dsp3780I_ReadAndClearDStore(unsigned short usDspBaseIO
,
519 void __user
*pvBuffer
, unsigned uCount
,
520 unsigned long ulDSPAddr
)
523 unsigned short __user
*pusBuffer
= pvBuffer
;
527 PRINTK_5(TRACE_3780I
,
528 "3780i::dsp3780I_ReadAndDStore entry usDspBaseIO %x, pusBuffer %p, uCount %x, ulDSPAddr %lx\n",
529 usDspBaseIO
, pusBuffer
, uCount
, ulDSPAddr
);
532 /* Set the initial MSA address. No adjustments need to be made to data store addresses */
533 spin_lock_irqsave(&dsp_lock
, flags
);
534 OutWordDsp(DSP_MsaAddrLow
, (unsigned short) ulDSPAddr
);
535 OutWordDsp(DSP_MsaAddrHigh
, (unsigned short) (ulDSPAddr
>> 16));
536 spin_unlock_irqrestore(&dsp_lock
, flags
);
538 /* Transfer the memory block */
539 while (uCount
-- != 0) {
540 spin_lock_irqsave(&dsp_lock
, flags
);
541 val
= InWordDsp(DSP_ReadAndClear
);
542 spin_unlock_irqrestore(&dsp_lock
, flags
);
543 if(put_user(val
, pusBuffer
++))
546 PRINTK_3(TRACE_3780I
,
547 "3780I::dsp3780I_ReadAndCleanDStore uCount %x val %x\n",
550 PaceMsaAccess(usDspBaseIO
);
554 PRINTK_1(TRACE_3780I
,
555 "3780I::dsp3780I_ReadAndClearDStore exit bRC=TRUE\n");
561 int dsp3780I_WriteDStore(unsigned short usDspBaseIO
, void __user
*pvBuffer
,
562 unsigned uCount
, unsigned long ulDSPAddr
)
565 unsigned short __user
*pusBuffer
= pvBuffer
;
568 PRINTK_5(TRACE_3780I
,
569 "3780i::dsp3780D_WriteDStore entry usDspBaseIO %x, pusBuffer %p, uCount %x, ulDSPAddr %lx\n",
570 usDspBaseIO
, pusBuffer
, uCount
, ulDSPAddr
);
573 /* Set the initial MSA address. No adjustments need to be made to data store addresses */
574 spin_lock_irqsave(&dsp_lock
, flags
);
575 OutWordDsp(DSP_MsaAddrLow
, (unsigned short) ulDSPAddr
);
576 OutWordDsp(DSP_MsaAddrHigh
, (unsigned short) (ulDSPAddr
>> 16));
577 spin_unlock_irqrestore(&dsp_lock
, flags
);
579 /* Transfer the memory block */
580 while (uCount
-- != 0) {
582 if(get_user(val
, pusBuffer
++))
584 spin_lock_irqsave(&dsp_lock
, flags
);
585 OutWordDsp(DSP_MsaDataDSISHigh
, val
);
586 spin_unlock_irqrestore(&dsp_lock
, flags
);
588 PRINTK_3(TRACE_3780I
,
589 "3780I::dsp3780I_WriteDStore uCount %x val %x\n",
592 PaceMsaAccess(usDspBaseIO
);
596 PRINTK_1(TRACE_3780I
,
597 "3780I::dsp3780D_WriteDStore exit bRC=TRUE\n");
603 int dsp3780I_ReadIStore(unsigned short usDspBaseIO
, void __user
*pvBuffer
,
604 unsigned uCount
, unsigned long ulDSPAddr
)
607 unsigned short __user
*pusBuffer
= pvBuffer
;
609 PRINTK_5(TRACE_3780I
,
610 "3780i::dsp3780I_ReadIStore entry usDspBaseIO %x, pusBuffer %p, uCount %x, ulDSPAddr %lx\n",
611 usDspBaseIO
, pusBuffer
, uCount
, ulDSPAddr
);
614 * Set the initial MSA address. To convert from an instruction store
615 * address to an MSA address
616 * shift the address two bits to the left and set bit 22
618 ulDSPAddr
= (ulDSPAddr
<< 2) | (1 << 22);
619 spin_lock_irqsave(&dsp_lock
, flags
);
620 OutWordDsp(DSP_MsaAddrLow
, (unsigned short) ulDSPAddr
);
621 OutWordDsp(DSP_MsaAddrHigh
, (unsigned short) (ulDSPAddr
>> 16));
622 spin_unlock_irqrestore(&dsp_lock
, flags
);
624 /* Transfer the memory block */
625 while (uCount
-- != 0) {
626 unsigned short val_lo
, val_hi
;
627 spin_lock_irqsave(&dsp_lock
, flags
);
628 val_lo
= InWordDsp(DSP_MsaDataISLow
);
629 val_hi
= InWordDsp(DSP_MsaDataDSISHigh
);
630 spin_unlock_irqrestore(&dsp_lock
, flags
);
631 if(put_user(val_lo
, pusBuffer
++))
633 if(put_user(val_hi
, pusBuffer
++))
636 PRINTK_4(TRACE_3780I
,
637 "3780I::dsp3780I_ReadIStore uCount %x val_lo %x val_hi %x\n",
638 uCount
, val_lo
, val_hi
);
640 PaceMsaAccess(usDspBaseIO
);
644 PRINTK_1(TRACE_3780I
,
645 "3780I::dsp3780I_ReadIStore exit bRC=TRUE\n");
651 int dsp3780I_WriteIStore(unsigned short usDspBaseIO
, void __user
*pvBuffer
,
652 unsigned uCount
, unsigned long ulDSPAddr
)
655 unsigned short __user
*pusBuffer
= pvBuffer
;
657 PRINTK_5(TRACE_3780I
,
658 "3780i::dsp3780I_WriteIStore entry usDspBaseIO %x, pusBuffer %p, uCount %x, ulDSPAddr %lx\n",
659 usDspBaseIO
, pusBuffer
, uCount
, ulDSPAddr
);
663 * Set the initial MSA address. To convert from an instruction store
664 * address to an MSA address
665 * shift the address two bits to the left and set bit 22
667 ulDSPAddr
= (ulDSPAddr
<< 2) | (1 << 22);
668 spin_lock_irqsave(&dsp_lock
, flags
);
669 OutWordDsp(DSP_MsaAddrLow
, (unsigned short) ulDSPAddr
);
670 OutWordDsp(DSP_MsaAddrHigh
, (unsigned short) (ulDSPAddr
>> 16));
671 spin_unlock_irqrestore(&dsp_lock
, flags
);
673 /* Transfer the memory block */
674 while (uCount
-- != 0) {
675 unsigned short val_lo
, val_hi
;
676 if(get_user(val_lo
, pusBuffer
++))
678 if(get_user(val_hi
, pusBuffer
++))
680 spin_lock_irqsave(&dsp_lock
, flags
);
681 OutWordDsp(DSP_MsaDataISLow
, val_lo
);
682 OutWordDsp(DSP_MsaDataDSISHigh
, val_hi
);
683 spin_unlock_irqrestore(&dsp_lock
, flags
);
685 PRINTK_4(TRACE_3780I
,
686 "3780I::dsp3780I_WriteIStore uCount %x val_lo %x val_hi %x\n",
687 uCount
, val_lo
, val_hi
);
689 PaceMsaAccess(usDspBaseIO
);
693 PRINTK_1(TRACE_3780I
,
694 "3780I::dsp3780I_WriteIStore exit bRC=TRUE\n");
700 int dsp3780I_GetIPCSource(unsigned short usDspBaseIO
,
701 unsigned short *pusIPCSource
)
704 DSP_HBRIDGE_CONTROL rHBridgeControl
;
708 PRINTK_3(TRACE_3780I
,
709 "3780i::dsp3780I_GetIPCSource entry usDspBaseIO %x pusIPCSource %p\n",
710 usDspBaseIO
, pusIPCSource
);
713 * Disable DSP to PC interrupts, read the interrupt register,
714 * clear the pending IPC bits, and reenable DSP to PC interrupts
716 spin_lock_irqsave(&dsp_lock
, flags
);
717 MKWORD(rHBridgeControl
) = InWordDsp(DSP_HBridgeControl
);
718 rHBridgeControl
.EnableDspInt
= FALSE
;
719 OutWordDsp(DSP_HBridgeControl
, MKWORD(rHBridgeControl
));
721 *pusIPCSource
= InWordDsp(DSP_Interrupt
);
722 temp
= (unsigned short) ~(*pusIPCSource
);
724 PRINTK_3(TRACE_3780I
,
725 "3780i::dsp3780I_GetIPCSource, usIPCSource %x ~ %x\n",
726 *pusIPCSource
, temp
);
728 OutWordDsp(DSP_Interrupt
, (unsigned short) ~(*pusIPCSource
));
730 rHBridgeControl
.EnableDspInt
= TRUE
;
731 OutWordDsp(DSP_HBridgeControl
, MKWORD(rHBridgeControl
));
732 spin_unlock_irqrestore(&dsp_lock
, flags
);
735 PRINTK_2(TRACE_3780I
,
736 "3780i::dsp3780I_GetIPCSource exit usIPCSource %x\n",