• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/char/mwave/

Lines Matching defs:pBDData

68 static void EnableSRAM(THINKPAD_BD_DATA * pBDData)
70 DSP_3780I_CONFIG_SETTINGS *pSettings = &pBDData->rDspSettings;
155 int tp3780I_InitializeBoardData(THINKPAD_BD_DATA * pBDData)
158 DSP_3780I_CONFIG_SETTINGS *pSettings = &pBDData->rDspSettings;
161 PRINTK_2(TRACE_TP3780I, "tp3780i::tp3780I_InitializeBoardData entry pBDData %p\n", pBDData);
163 pBDData->bDSPEnabled = FALSE;
180 int tp3780I_Cleanup(THINKPAD_BD_DATA * pBDData)
185 "tp3780i::tp3780I_Cleanup entry and exit pBDData %p\n", pBDData);
190 int tp3780I_CalcResources(THINKPAD_BD_DATA * pBDData)
193 DSP_3780I_CONFIG_SETTINGS *pSettings = &pBDData->rDspSettings;
196 "tp3780i::tp3780I_CalcResources entry pBDData %p\n", pBDData);
227 pBDData->bShareDspIrq = pBDData->bShareUartIrq = 1;
229 pBDData->bShareDspIrq = pBDData->bShareUartIrq = 0;
238 int tp3780I_ClaimResources(THINKPAD_BD_DATA * pBDData)
241 DSP_3780I_CONFIG_SETTINGS *pSettings = &pBDData->rDspSettings;
245 "tp3780i::tp3780I_ClaimResources entry pBDData %p\n", pBDData);
260 int tp3780I_ReleaseResources(THINKPAD_BD_DATA * pBDData)
263 DSP_3780I_CONFIG_SETTINGS *pSettings = &pBDData->rDspSettings;
266 "tp3780i::tp3780I_ReleaseResources entry pBDData %p\n", pBDData);
283 int tp3780I_EnableDSP(THINKPAD_BD_DATA * pBDData)
285 DSP_3780I_CONFIG_SETTINGS *pSettings = &pBDData->rDspSettings;
288 PRINTK_2(TRACE_TP3780I, "tp3780i::tp3780I_EnableDSP entry pBDData %p\n", pBDData);
290 if (pBDData->bDSPEnabled) {
342 if (pBDData->bShareDspIrq) {
345 if (pBDData->bShareUartIrq) {
375 pSettings->usDspIrq, pBDData->bShareDspIrq);
393 EnableSRAM(pBDData);
395 pBDData->bDSPEnabled = TRUE;
413 int tp3780I_DisableDSP(THINKPAD_BD_DATA * pBDData)
416 DSP_3780I_CONFIG_SETTINGS *pSettings = &pBDData->rDspSettings;
418 PRINTK_2(TRACE_TP3780I, "tp3780i::tp3780I_DisableDSP entry pBDData %p\n", pBDData);
420 if (pBDData->bDSPEnabled) {
421 dsp3780I_DisableDSP(&pBDData->rDspSettings);
427 pBDData->bDSPEnabled = FALSE;
436 int tp3780I_ResetDSP(THINKPAD_BD_DATA * pBDData)
439 DSP_3780I_CONFIG_SETTINGS *pSettings = &pBDData->rDspSettings;
441 PRINTK_2(TRACE_TP3780I, "tp3780i::tp3780I_ResetDSP entry pBDData %p\n",
442 pBDData);
445 EnableSRAM(pBDData);
456 int tp3780I_StartDSP(THINKPAD_BD_DATA * pBDData)
459 DSP_3780I_CONFIG_SETTINGS *pSettings = &pBDData->rDspSettings;
461 PRINTK_2(TRACE_TP3780I, "tp3780i::tp3780I_StartDSP entry pBDData %p\n", pBDData);
464 // @BUG @TBD EnableSRAM(pBDData);
475 int tp3780I_QueryAbilities(THINKPAD_BD_DATA * pBDData, MW_ABILITIES * pAbilities)
480 "tp3780i::tp3780I_QueryAbilities entry pBDData %p\n", pBDData);
483 pAbilities->instr_per_sec = pBDData->rDspSettings.uIps;
484 pAbilities->data_size = pBDData->rDspSettings.uDStoreSize;
485 pAbilities->inst_size = pBDData->rDspSettings.uIStoreSize;
486 pAbilities->bus_dma_bw = pBDData->rDspSettings.uDmaBandwidth;
511 int tp3780I_ReadWriteDspDStore(THINKPAD_BD_DATA * pBDData, unsigned int uOpcode,
516 DSP_3780I_CONFIG_SETTINGS *pSettings = &pBDData->rDspSettings;
521 "tp3780i::tp3780I_ReadWriteDspDStore entry pBDData %p, uOpcode %x, pvBuffer %p, uCount %x, ulDSPAddr %lx\n",
522 pBDData, uOpcode, pvBuffer, uCount, ulDSPAddr);
524 if (pBDData->bDSPEnabled) {
547 int tp3780I_ReadWriteDspIStore(THINKPAD_BD_DATA * pBDData, unsigned int uOpcode,
552 DSP_3780I_CONFIG_SETTINGS *pSettings = &pBDData->rDspSettings;
557 "tp3780i::tp3780I_ReadWriteDspIStore entry pBDData %p, uOpcode %x, pvBuffer %p, uCount %x, ulDSPAddr %lx\n",
558 pBDData, uOpcode, pvBuffer, uCount, ulDSPAddr);
560 if (pBDData->bDSPEnabled) {