1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30#define SOURCEFILE_NAME "hpi6205.c"
31
32#include "hpi_internal.h"
33#include "hpimsginit.h"
34#include "hpidebug.h"
35#include "hpi6205.h"
36#include "hpidspcd.h"
37#include "hpicmn.h"
38
39
40
41#define HPI6205_ERROR_BASE 1000
42
43
44#define HPI6205_ERROR_MSG_RESP_IDLE_TIMEOUT 1015
45#define HPI6205_ERROR_MSG_RESP_TIMEOUT 1016
46
47
48#define HPI6205_ERROR_6205_NO_IRQ 1002
49#define HPI6205_ERROR_6205_INIT_FAILED 1003
50#define HPI6205_ERROR_6205_REG 1006
51#define HPI6205_ERROR_6205_DSPPAGE 1007
52#define HPI6205_ERROR_C6713_HPIC 1009
53#define HPI6205_ERROR_C6713_HPIA 1010
54#define HPI6205_ERROR_C6713_PLL 1011
55#define HPI6205_ERROR_DSP_INTMEM 1012
56#define HPI6205_ERROR_DSP_EXTMEM 1013
57#define HPI6205_ERROR_DSP_PLD 1014
58#define HPI6205_ERROR_6205_EEPROM 1017
59#define HPI6205_ERROR_DSP_EMIF1 1018
60#define HPI6205_ERROR_DSP_EMIF2 1019
61#define HPI6205_ERROR_DSP_EMIF3 1020
62#define HPI6205_ERROR_DSP_EMIF4 1021
63
64
65
66
67#define C6205_HSR_INTSRC 0x01
68#define C6205_HSR_INTAVAL 0x02
69#define C6205_HSR_INTAM 0x04
70#define C6205_HSR_CFGERR 0x08
71#define C6205_HSR_EEREAD 0x10
72
73#define C6205_HDCR_WARMRESET 0x01
74#define C6205_HDCR_DSPINT 0x02
75#define C6205_HDCR_PCIBOOT 0x04
76
77
78#define C6205_DSPP_MAP1 0x400
79
80
81
82
83
84
85
86#define C6205_BAR1_PCI_IO_OFFSET (0x027FFF0L)
87#define C6205_BAR1_HSR (C6205_BAR1_PCI_IO_OFFSET)
88#define C6205_BAR1_HDCR (C6205_BAR1_PCI_IO_OFFSET+4)
89#define C6205_BAR1_DSPP (C6205_BAR1_PCI_IO_OFFSET+8)
90
91
92#define C6205_BAR0_TIMER1_CTL (0x01980000L)
93
94
95#define HPICL_ADDR 0x01400000L
96#define HPICH_ADDR 0x01400004L
97#define HPIAL_ADDR 0x01410000L
98#define HPIAH_ADDR 0x01410004L
99#define HPIDIL_ADDR 0x01420000L
100#define HPIDIH_ADDR 0x01420004L
101#define HPIDL_ADDR 0x01430000L
102#define HPIDH_ADDR 0x01430004L
103
104#define C6713_EMIF_GCTL 0x01800000
105#define C6713_EMIF_CE1 0x01800004
106#define C6713_EMIF_CE0 0x01800008
107#define C6713_EMIF_CE2 0x01800010
108#define C6713_EMIF_CE3 0x01800014
109#define C6713_EMIF_SDRAMCTL 0x01800018
110#define C6713_EMIF_SDRAMTIMING 0x0180001C
111#define C6713_EMIF_SDRAMEXT 0x01800020
112
113struct hpi_hw_obj {
114
115 __iomem u32 *prHSR;
116 __iomem u32 *prHDCR;
117 __iomem u32 *prDSPP;
118
119 u32 dsp_page;
120
121 struct consistent_dma_area h_locked_mem;
122 struct bus_master_interface *p_interface_buffer;
123
124 u16 flag_outstream_just_reset[HPI_MAX_STREAMS];
125
126 struct consistent_dma_area instream_host_buffers[HPI_MAX_STREAMS];
127 struct consistent_dma_area outstream_host_buffers[HPI_MAX_STREAMS];
128
129 u32 instream_host_buffer_size[HPI_MAX_STREAMS];
130 u32 outstream_host_buffer_size[HPI_MAX_STREAMS];
131
132 struct consistent_dma_area h_control_cache;
133 struct hpi_control_cache *p_cache;
134};
135
136
137
138
139#define check_before_bbm_copy(status, p_bbm_data, l_first_write, l_second_write)
140
141static int wait_dsp_ack(struct hpi_hw_obj *phw, int state, int timeout_us);
142
143static void send_dsp_command(struct hpi_hw_obj *phw, int cmd);
144
145static u16 adapter_boot_load_dsp(struct hpi_adapter_obj *pao,
146 u32 *pos_error_code);
147
148static u16 message_response_sequence(struct hpi_adapter_obj *pao,
149 struct hpi_message *phm, struct hpi_response *phr);
150
151static void hw_message(struct hpi_adapter_obj *pao, struct hpi_message *phm,
152 struct hpi_response *phr);
153
154#define HPI6205_TIMEOUT 1000000
155
156static void subsys_create_adapter(struct hpi_message *phm,
157 struct hpi_response *phr);
158static void adapter_delete(struct hpi_adapter_obj *pao,
159 struct hpi_message *phm, struct hpi_response *phr);
160
161static u16 create_adapter_obj(struct hpi_adapter_obj *pao,
162 u32 *pos_error_code);
163
164static void delete_adapter_obj(struct hpi_adapter_obj *pao);
165
166static int adapter_irq_query_and_clear(struct hpi_adapter_obj *pao,
167 u32 message);
168
169static void outstream_host_buffer_allocate(struct hpi_adapter_obj *pao,
170 struct hpi_message *phm, struct hpi_response *phr);
171
172static void outstream_host_buffer_get_info(struct hpi_adapter_obj *pao,
173 struct hpi_message *phm, struct hpi_response *phr);
174
175static void outstream_host_buffer_free(struct hpi_adapter_obj *pao,
176 struct hpi_message *phm, struct hpi_response *phr);
177static void outstream_write(struct hpi_adapter_obj *pao,
178 struct hpi_message *phm, struct hpi_response *phr);
179
180static void outstream_get_info(struct hpi_adapter_obj *pao,
181 struct hpi_message *phm, struct hpi_response *phr);
182
183static void outstream_start(struct hpi_adapter_obj *pao,
184 struct hpi_message *phm, struct hpi_response *phr);
185
186static void outstream_open(struct hpi_adapter_obj *pao,
187 struct hpi_message *phm, struct hpi_response *phr);
188
189static void outstream_reset(struct hpi_adapter_obj *pao,
190 struct hpi_message *phm, struct hpi_response *phr);
191
192static void instream_host_buffer_allocate(struct hpi_adapter_obj *pao,
193 struct hpi_message *phm, struct hpi_response *phr);
194
195static void instream_host_buffer_get_info(struct hpi_adapter_obj *pao,
196 struct hpi_message *phm, struct hpi_response *phr);
197
198static void instream_host_buffer_free(struct hpi_adapter_obj *pao,
199 struct hpi_message *phm, struct hpi_response *phr);
200
201static void instream_read(struct hpi_adapter_obj *pao,
202 struct hpi_message *phm, struct hpi_response *phr);
203
204static void instream_get_info(struct hpi_adapter_obj *pao,
205 struct hpi_message *phm, struct hpi_response *phr);
206
207static void instream_start(struct hpi_adapter_obj *pao,
208 struct hpi_message *phm, struct hpi_response *phr);
209
210static u32 boot_loader_read_mem32(struct hpi_adapter_obj *pao, int dsp_index,
211 u32 address);
212
213static void boot_loader_write_mem32(struct hpi_adapter_obj *pao,
214 int dsp_index, u32 address, u32 data);
215
216static u16 boot_loader_config_emif(struct hpi_adapter_obj *pao,
217 int dsp_index);
218
219static u16 boot_loader_test_memory(struct hpi_adapter_obj *pao, int dsp_index,
220 u32 address, u32 length);
221
222static u16 boot_loader_test_internal_memory(struct hpi_adapter_obj *pao,
223 int dsp_index);
224
225static u16 boot_loader_test_external_memory(struct hpi_adapter_obj *pao,
226 int dsp_index);
227
228static u16 boot_loader_test_pld(struct hpi_adapter_obj *pao, int dsp_index);
229
230
231
232static void subsys_message(struct hpi_adapter_obj *pao,
233 struct hpi_message *phm, struct hpi_response *phr)
234{
235 switch (phm->function) {
236 case HPI_SUBSYS_CREATE_ADAPTER:
237 subsys_create_adapter(phm, phr);
238 break;
239 default:
240 phr->error = HPI_ERROR_INVALID_FUNC;
241 break;
242 }
243}
244
245static void control_message(struct hpi_adapter_obj *pao,
246 struct hpi_message *phm, struct hpi_response *phr)
247{
248
249 struct hpi_hw_obj *phw = pao->priv;
250 u16 pending_cache_error = 0;
251
252 switch (phm->function) {
253 case HPI_CONTROL_GET_STATE:
254 if (pao->has_control_cache) {
255 rmb();
256 if (hpi_check_control_cache(phw->p_cache, phm, phr)) {
257 break;
258 } else if (phm->u.c.attribute == HPI_METER_PEAK) {
259 pending_cache_error =
260 HPI_ERROR_CONTROL_CACHING;
261 }
262 }
263 hw_message(pao, phm, phr);
264 if (pending_cache_error && !phr->error)
265 phr->error = pending_cache_error;
266 break;
267 case HPI_CONTROL_GET_INFO:
268 hw_message(pao, phm, phr);
269 break;
270 case HPI_CONTROL_SET_STATE:
271 hw_message(pao, phm, phr);
272 if (pao->has_control_cache)
273 hpi_cmn_control_cache_sync_to_msg(phw->p_cache, phm,
274 phr);
275 break;
276 default:
277 phr->error = HPI_ERROR_INVALID_FUNC;
278 break;
279 }
280}
281
282static void adapter_message(struct hpi_adapter_obj *pao,
283 struct hpi_message *phm, struct hpi_response *phr)
284{
285 switch (phm->function) {
286 case HPI_ADAPTER_DELETE:
287 adapter_delete(pao, phm, phr);
288 break;
289 default:
290 hw_message(pao, phm, phr);
291 break;
292 }
293}
294
295static void outstream_message(struct hpi_adapter_obj *pao,
296 struct hpi_message *phm, struct hpi_response *phr)
297{
298
299 if (phm->obj_index >= HPI_MAX_STREAMS) {
300 phr->error = HPI_ERROR_INVALID_OBJ_INDEX;
301 HPI_DEBUG_LOG(WARNING,
302 "Message referencing invalid stream %d "
303 "on adapter index %d\n", phm->obj_index,
304 phm->adapter_index);
305 return;
306 }
307
308 switch (phm->function) {
309 case HPI_OSTREAM_WRITE:
310 outstream_write(pao, phm, phr);
311 break;
312 case HPI_OSTREAM_GET_INFO:
313 outstream_get_info(pao, phm, phr);
314 break;
315 case HPI_OSTREAM_HOSTBUFFER_ALLOC:
316 outstream_host_buffer_allocate(pao, phm, phr);
317 break;
318 case HPI_OSTREAM_HOSTBUFFER_GET_INFO:
319 outstream_host_buffer_get_info(pao, phm, phr);
320 break;
321 case HPI_OSTREAM_HOSTBUFFER_FREE:
322 outstream_host_buffer_free(pao, phm, phr);
323 break;
324 case HPI_OSTREAM_START:
325 outstream_start(pao, phm, phr);
326 break;
327 case HPI_OSTREAM_OPEN:
328 outstream_open(pao, phm, phr);
329 break;
330 case HPI_OSTREAM_RESET:
331 outstream_reset(pao, phm, phr);
332 break;
333 default:
334 hw_message(pao, phm, phr);
335 break;
336 }
337}
338
339static void instream_message(struct hpi_adapter_obj *pao,
340 struct hpi_message *phm, struct hpi_response *phr)
341{
342
343 if (phm->obj_index >= HPI_MAX_STREAMS) {
344 phr->error = HPI_ERROR_INVALID_OBJ_INDEX;
345 HPI_DEBUG_LOG(WARNING,
346 "Message referencing invalid stream %d "
347 "on adapter index %d\n", phm->obj_index,
348 phm->adapter_index);
349 return;
350 }
351
352 switch (phm->function) {
353 case HPI_ISTREAM_READ:
354 instream_read(pao, phm, phr);
355 break;
356 case HPI_ISTREAM_GET_INFO:
357 instream_get_info(pao, phm, phr);
358 break;
359 case HPI_ISTREAM_HOSTBUFFER_ALLOC:
360 instream_host_buffer_allocate(pao, phm, phr);
361 break;
362 case HPI_ISTREAM_HOSTBUFFER_GET_INFO:
363 instream_host_buffer_get_info(pao, phm, phr);
364 break;
365 case HPI_ISTREAM_HOSTBUFFER_FREE:
366 instream_host_buffer_free(pao, phm, phr);
367 break;
368 case HPI_ISTREAM_START:
369 instream_start(pao, phm, phr);
370 break;
371 default:
372 hw_message(pao, phm, phr);
373 break;
374 }
375}
376
377
378
379
380
381static
382void _HPI_6205(struct hpi_adapter_obj *pao, struct hpi_message *phm,
383 struct hpi_response *phr)
384{
385 if (pao && (pao->dsp_crashed >= 10)
386 && (phm->function != HPI_ADAPTER_DEBUG_READ)) {
387
388 hpi_init_response(phr, phm->object, phm->function,
389 HPI_ERROR_DSP_HARDWARE);
390 HPI_DEBUG_LOG(WARNING, " %d,%d dsp crashed.\n", phm->object,
391 phm->function);
392 return;
393 }
394
395
396 if (phm->function != HPI_SUBSYS_CREATE_ADAPTER)
397 phr->error = HPI_ERROR_PROCESSING_MESSAGE;
398
399 HPI_DEBUG_LOG(VERBOSE, "start of switch\n");
400 switch (phm->type) {
401 case HPI_TYPE_REQUEST:
402 switch (phm->object) {
403 case HPI_OBJ_SUBSYSTEM:
404 subsys_message(pao, phm, phr);
405 break;
406
407 case HPI_OBJ_ADAPTER:
408 adapter_message(pao, phm, phr);
409 break;
410
411 case HPI_OBJ_CONTROL:
412 control_message(pao, phm, phr);
413 break;
414
415 case HPI_OBJ_OSTREAM:
416 outstream_message(pao, phm, phr);
417 break;
418
419 case HPI_OBJ_ISTREAM:
420 instream_message(pao, phm, phr);
421 break;
422
423 default:
424 hw_message(pao, phm, phr);
425 break;
426 }
427 break;
428
429 default:
430 phr->error = HPI_ERROR_INVALID_TYPE;
431 break;
432 }
433}
434
435void HPI_6205(struct hpi_message *phm, struct hpi_response *phr)
436{
437 struct hpi_adapter_obj *pao = NULL;
438
439 if (phm->object != HPI_OBJ_SUBSYSTEM) {
440
441 pao = hpi_find_adapter(phm->adapter_index);
442 } else {
443
444 _HPI_6205(NULL, phm, phr);
445 return;
446 }
447
448 if (pao)
449 _HPI_6205(pao, phm, phr);
450 else
451 hpi_init_response(phr, phm->object, phm->function,
452 HPI_ERROR_BAD_ADAPTER_NUMBER);
453}
454
455
456
457
458
459
460
461
462
463static void subsys_create_adapter(struct hpi_message *phm,
464 struct hpi_response *phr)
465{
466
467 struct hpi_adapter_obj ao;
468 u32 os_error_code;
469 u16 err;
470
471 HPI_DEBUG_LOG(DEBUG, " subsys_create_adapter\n");
472
473 memset(&ao, 0, sizeof(ao));
474
475 ao.priv = kzalloc(sizeof(struct hpi_hw_obj), GFP_KERNEL);
476 if (!ao.priv) {
477 HPI_DEBUG_LOG(ERROR, "can't get mem for adapter object\n");
478 phr->error = HPI_ERROR_MEMORY_ALLOC;
479 return;
480 }
481
482 ao.pci = *phm->u.s.resource.r.pci;
483 err = create_adapter_obj(&ao, &os_error_code);
484 if (err) {
485 delete_adapter_obj(&ao);
486 if (err >= HPI_ERROR_BACKEND_BASE) {
487 phr->error = HPI_ERROR_DSP_BOOTLOAD;
488 phr->specific_error = err;
489 } else {
490 phr->error = err;
491 }
492 phr->u.s.data = os_error_code;
493 return;
494 }
495
496 phr->u.s.adapter_type = ao.type;
497 phr->u.s.adapter_index = ao.index;
498 phr->error = 0;
499}
500
501
502static void adapter_delete(struct hpi_adapter_obj *pao,
503 struct hpi_message *phm, struct hpi_response *phr)
504{
505 struct hpi_hw_obj *phw;
506
507 if (!pao) {
508 phr->error = HPI_ERROR_INVALID_OBJ_INDEX;
509 return;
510 }
511 phw = pao->priv;
512
513
514 boot_loader_write_mem32(pao, 0, C6205_BAR0_TIMER1_CTL, 0);
515
516 iowrite32(C6205_HDCR_WARMRESET, phw->prHDCR);
517
518 delete_adapter_obj(pao);
519 hpi_delete_adapter(pao);
520 phr->error = 0;
521}
522
523
524
525
526static u16 create_adapter_obj(struct hpi_adapter_obj *pao,
527 u32 *pos_error_code)
528{
529 struct hpi_hw_obj *phw = pao->priv;
530 struct bus_master_interface *interface;
531 u32 phys_addr;
532 int i;
533 u16 err;
534
535
536 pao->dsp_crashed = 0;
537
538 for (i = 0; i < HPI_MAX_STREAMS; i++)
539 phw->flag_outstream_just_reset[i] = 1;
540
541
542 phw->prHSR =
543 pao->pci.ap_mem_base[1] +
544 C6205_BAR1_HSR / sizeof(*pao->pci.ap_mem_base[1]);
545 phw->prHDCR =
546 pao->pci.ap_mem_base[1] +
547 C6205_BAR1_HDCR / sizeof(*pao->pci.ap_mem_base[1]);
548 phw->prDSPP =
549 pao->pci.ap_mem_base[1] +
550 C6205_BAR1_DSPP / sizeof(*pao->pci.ap_mem_base[1]);
551
552 pao->has_control_cache = 0;
553
554 if (hpios_locked_mem_alloc(&phw->h_locked_mem,
555 sizeof(struct bus_master_interface),
556 pao->pci.pci_dev))
557 phw->p_interface_buffer = NULL;
558 else if (hpios_locked_mem_get_virt_addr(&phw->h_locked_mem,
559 (void *)&phw->p_interface_buffer))
560 phw->p_interface_buffer = NULL;
561
562 HPI_DEBUG_LOG(DEBUG, "interface buffer address %p\n",
563 phw->p_interface_buffer);
564
565 if (phw->p_interface_buffer) {
566 memset((void *)phw->p_interface_buffer, 0,
567 sizeof(struct bus_master_interface));
568 phw->p_interface_buffer->dsp_ack = H620_HIF_UNKNOWN;
569 }
570
571 err = adapter_boot_load_dsp(pao, pos_error_code);
572 if (err) {
573 HPI_DEBUG_LOG(ERROR, "DSP code load failed\n");
574
575
576 return err;
577 }
578 HPI_DEBUG_LOG(INFO, "load DSP code OK\n");
579
580
581 if (!phw->p_interface_buffer)
582 return HPI_ERROR_MEMORY_ALLOC;
583
584 interface = phw->p_interface_buffer;
585
586
587 if (!wait_dsp_ack(phw, H620_HIF_RESET, HPI6205_TIMEOUT * 10)) {
588 HPI_DEBUG_LOG(ERROR, "timed out waiting reset state \n");
589 return HPI6205_ERROR_6205_INIT_FAILED;
590 }
591
592
593
594
595 if (interface->control_cache.number_of_controls) {
596 u8 *p_control_cache_virtual;
597
598 err = hpios_locked_mem_alloc(&phw->h_control_cache,
599 interface->control_cache.size_in_bytes,
600 pao->pci.pci_dev);
601 if (!err)
602 err = hpios_locked_mem_get_virt_addr(&phw->
603 h_control_cache,
604 (void *)&p_control_cache_virtual);
605 if (!err) {
606 memset(p_control_cache_virtual, 0,
607 interface->control_cache.size_in_bytes);
608
609 phw->p_cache =
610 hpi_alloc_control_cache(interface->
611 control_cache.number_of_controls,
612 interface->control_cache.size_in_bytes,
613 p_control_cache_virtual);
614
615 if (!phw->p_cache)
616 err = HPI_ERROR_MEMORY_ALLOC;
617 }
618 if (!err) {
619 err = hpios_locked_mem_get_phys_addr(&phw->
620 h_control_cache, &phys_addr);
621 interface->control_cache.physical_address32 =
622 phys_addr;
623 }
624
625 if (!err)
626 pao->has_control_cache = 1;
627 else {
628 if (hpios_locked_mem_valid(&phw->h_control_cache))
629 hpios_locked_mem_free(&phw->h_control_cache);
630 pao->has_control_cache = 0;
631 }
632 }
633 send_dsp_command(phw, H620_HIF_IDLE);
634
635 {
636 struct hpi_message hm;
637 struct hpi_response hr;
638 u32 max_streams;
639
640 HPI_DEBUG_LOG(VERBOSE, "init ADAPTER_GET_INFO\n");
641 memset(&hm, 0, sizeof(hm));
642
643 hm.type = HPI_TYPE_REQUEST;
644 hm.size = sizeof(hm);
645 hm.object = HPI_OBJ_ADAPTER;
646 hm.function = HPI_ADAPTER_GET_INFO;
647
648 memset(&hr, 0, sizeof(hr));
649 hr.size = sizeof(hr);
650
651 err = message_response_sequence(pao, &hm, &hr);
652 if (err) {
653 HPI_DEBUG_LOG(ERROR, "message transport error %d\n",
654 err);
655 return err;
656 }
657 if (hr.error)
658 return hr.error;
659
660 pao->type = hr.u.ax.info.adapter_type;
661 pao->index = hr.u.ax.info.adapter_index;
662
663 max_streams =
664 hr.u.ax.info.num_outstreams +
665 hr.u.ax.info.num_instreams;
666
667 HPI_DEBUG_LOG(VERBOSE,
668 "got adapter info type %x index %d serial %d\n",
669 hr.u.ax.info.adapter_type, hr.u.ax.info.adapter_index,
670 hr.u.ax.info.serial_number);
671 }
672
673 if (phw->p_cache)
674 phw->p_cache->adap_idx = pao->index;
675
676 HPI_DEBUG_LOG(INFO, "bootload DSP OK\n");
677
678 pao->irq_query_and_clear = adapter_irq_query_and_clear;
679 pao->instream_host_buffer_status =
680 phw->p_interface_buffer->instream_host_buffer_status;
681 pao->outstream_host_buffer_status =
682 phw->p_interface_buffer->outstream_host_buffer_status;
683
684 return hpi_add_adapter(pao);
685}
686
687
688
689
690
691static void delete_adapter_obj(struct hpi_adapter_obj *pao)
692{
693 struct hpi_hw_obj *phw = pao->priv;
694 int i;
695
696 if (hpios_locked_mem_valid(&phw->h_control_cache)) {
697 hpios_locked_mem_free(&phw->h_control_cache);
698 hpi_free_control_cache(phw->p_cache);
699 }
700
701 if (hpios_locked_mem_valid(&phw->h_locked_mem)) {
702 hpios_locked_mem_free(&phw->h_locked_mem);
703 phw->p_interface_buffer = NULL;
704 }
705
706 for (i = 0; i < HPI_MAX_STREAMS; i++)
707 if (hpios_locked_mem_valid(&phw->instream_host_buffers[i])) {
708 hpios_locked_mem_free(&phw->instream_host_buffers[i]);
709
710 phw->instream_host_buffer_size[i] = 0;
711 }
712
713 for (i = 0; i < HPI_MAX_STREAMS; i++)
714 if (hpios_locked_mem_valid(&phw->outstream_host_buffers[i])) {
715 hpios_locked_mem_free(&phw->outstream_host_buffers
716 [i]);
717 phw->outstream_host_buffer_size[i] = 0;
718 }
719 kfree(phw);
720}
721
722
723
724static int adapter_irq_query_and_clear(struct hpi_adapter_obj *pao,
725 u32 message)
726{
727 struct hpi_hw_obj *phw = pao->priv;
728 u32 hsr = 0;
729
730 hsr = ioread32(phw->prHSR);
731 if (hsr & C6205_HSR_INTSRC) {
732
733 iowrite32(C6205_HSR_INTSRC, phw->prHSR);
734 return HPI_IRQ_MIXER;
735 }
736
737 return HPI_IRQ_NONE;
738}
739
740
741
742
743
744
745static void outstream_host_buffer_allocate(struct hpi_adapter_obj *pao,
746 struct hpi_message *phm, struct hpi_response *phr)
747{
748 u16 err = 0;
749 u32 command = phm->u.d.u.buffer.command;
750 struct hpi_hw_obj *phw = pao->priv;
751 struct bus_master_interface *interface = phw->p_interface_buffer;
752
753 hpi_init_response(phr, phm->object, phm->function, 0);
754
755 if (command == HPI_BUFFER_CMD_EXTERNAL
756 || command == HPI_BUFFER_CMD_INTERNAL_ALLOC) {
757
758
759
760 phm->u.d.u.buffer.buffer_size =
761 roundup_pow_of_two(phm->u.d.u.buffer.buffer_size);
762
763
764 phr->u.d.u.stream_info.data_available =
765 phw->outstream_host_buffer_size[phm->obj_index];
766 phr->u.d.u.stream_info.buffer_size =
767 phm->u.d.u.buffer.buffer_size;
768
769 if (phw->outstream_host_buffer_size[phm->obj_index] ==
770 phm->u.d.u.buffer.buffer_size) {
771
772 return;
773 }
774
775 if (hpios_locked_mem_valid(&phw->outstream_host_buffers[phm->
776 obj_index]))
777 hpios_locked_mem_free(&phw->outstream_host_buffers
778 [phm->obj_index]);
779
780 err = hpios_locked_mem_alloc(&phw->outstream_host_buffers
781 [phm->obj_index], phm->u.d.u.buffer.buffer_size,
782 pao->pci.pci_dev);
783
784 if (err) {
785 phr->error = HPI_ERROR_INVALID_DATASIZE;
786 phw->outstream_host_buffer_size[phm->obj_index] = 0;
787 return;
788 }
789
790 err = hpios_locked_mem_get_phys_addr
791 (&phw->outstream_host_buffers[phm->obj_index],
792 &phm->u.d.u.buffer.pci_address);
793
794
795
796
797 phr->u.d.u.stream_info.auxiliary_data_available =
798 phm->u.d.u.buffer.pci_address;
799
800 if (err) {
801 hpios_locked_mem_free(&phw->outstream_host_buffers
802 [phm->obj_index]);
803 phw->outstream_host_buffer_size[phm->obj_index] = 0;
804 phr->error = HPI_ERROR_MEMORY_ALLOC;
805 return;
806 }
807 }
808
809 if (command == HPI_BUFFER_CMD_EXTERNAL
810 || command == HPI_BUFFER_CMD_INTERNAL_GRANTADAPTER) {
811
812
813
814 struct hpi_hostbuffer_status *status;
815
816 if (phm->u.d.u.buffer.buffer_size & (phm->u.d.u.buffer.
817 buffer_size - 1)) {
818 HPI_DEBUG_LOG(ERROR,
819 "Buffer size must be 2^N not %d\n",
820 phm->u.d.u.buffer.buffer_size);
821 phr->error = HPI_ERROR_INVALID_DATASIZE;
822 return;
823 }
824 phw->outstream_host_buffer_size[phm->obj_index] =
825 phm->u.d.u.buffer.buffer_size;
826 status = &interface->outstream_host_buffer_status[phm->
827 obj_index];
828 status->samples_processed = 0;
829 status->stream_state = HPI_STATE_STOPPED;
830 status->dsp_index = 0;
831 status->host_index = status->dsp_index;
832 status->size_in_bytes = phm->u.d.u.buffer.buffer_size;
833 status->auxiliary_data_available = 0;
834
835 hw_message(pao, phm, phr);
836
837 if (phr->error
838 && hpios_locked_mem_valid(&phw->
839 outstream_host_buffers[phm->obj_index])) {
840 hpios_locked_mem_free(&phw->outstream_host_buffers
841 [phm->obj_index]);
842 phw->outstream_host_buffer_size[phm->obj_index] = 0;
843 }
844 }
845}
846
847static void outstream_host_buffer_get_info(struct hpi_adapter_obj *pao,
848 struct hpi_message *phm, struct hpi_response *phr)
849{
850 struct hpi_hw_obj *phw = pao->priv;
851 struct bus_master_interface *interface = phw->p_interface_buffer;
852 struct hpi_hostbuffer_status *status;
853 u8 *p_bbm_data;
854
855 if (hpios_locked_mem_valid(&phw->outstream_host_buffers[phm->
856 obj_index])) {
857 if (hpios_locked_mem_get_virt_addr(&phw->
858 outstream_host_buffers[phm->obj_index],
859 (void *)&p_bbm_data)) {
860 phr->error = HPI_ERROR_INVALID_OPERATION;
861 return;
862 }
863 status = &interface->outstream_host_buffer_status[phm->
864 obj_index];
865 hpi_init_response(phr, HPI_OBJ_OSTREAM,
866 HPI_OSTREAM_HOSTBUFFER_GET_INFO, 0);
867 phr->u.d.u.hostbuffer_info.p_buffer = p_bbm_data;
868 phr->u.d.u.hostbuffer_info.p_status = status;
869 } else {
870 hpi_init_response(phr, HPI_OBJ_OSTREAM,
871 HPI_OSTREAM_HOSTBUFFER_GET_INFO,
872 HPI_ERROR_INVALID_OPERATION);
873 }
874}
875
876static void outstream_host_buffer_free(struct hpi_adapter_obj *pao,
877 struct hpi_message *phm, struct hpi_response *phr)
878{
879 struct hpi_hw_obj *phw = pao->priv;
880 u32 command = phm->u.d.u.buffer.command;
881
882 if (phw->outstream_host_buffer_size[phm->obj_index]) {
883 if (command == HPI_BUFFER_CMD_EXTERNAL
884 || command == HPI_BUFFER_CMD_INTERNAL_REVOKEADAPTER) {
885 phw->outstream_host_buffer_size[phm->obj_index] = 0;
886 hw_message(pao, phm, phr);
887
888 }
889 if (command == HPI_BUFFER_CMD_EXTERNAL
890 || command == HPI_BUFFER_CMD_INTERNAL_FREE)
891 hpios_locked_mem_free(&phw->outstream_host_buffers
892 [phm->obj_index]);
893 }
894
895
896 else
897 hpi_init_response(phr, HPI_OBJ_OSTREAM,
898 HPI_OSTREAM_HOSTBUFFER_FREE, 0);
899
900}
901
902static u32 outstream_get_space_available(struct hpi_hostbuffer_status *status)
903{
904 return status->size_in_bytes - (status->host_index -
905 status->dsp_index);
906}
907
908static void outstream_write(struct hpi_adapter_obj *pao,
909 struct hpi_message *phm, struct hpi_response *phr)
910{
911 struct hpi_hw_obj *phw = pao->priv;
912 struct bus_master_interface *interface = phw->p_interface_buffer;
913 struct hpi_hostbuffer_status *status;
914 u32 space_available;
915
916 if (!phw->outstream_host_buffer_size[phm->obj_index]) {
917
918 hw_message(pao, phm, phr);
919 return;
920 }
921
922 hpi_init_response(phr, phm->object, phm->function, 0);
923 status = &interface->outstream_host_buffer_status[phm->obj_index];
924
925 space_available = outstream_get_space_available(status);
926 if (space_available < phm->u.d.u.data.data_size) {
927 phr->error = HPI_ERROR_INVALID_DATASIZE;
928 return;
929 }
930
931
932
933 if (phm->u.d.u.data.pb_data
934 && hpios_locked_mem_valid(&phw->outstream_host_buffers[phm->
935 obj_index])) {
936 u8 *p_bbm_data;
937 u32 l_first_write;
938 u8 *p_app_data = (u8 *)phm->u.d.u.data.pb_data;
939
940 if (hpios_locked_mem_get_virt_addr(&phw->
941 outstream_host_buffers[phm->obj_index],
942 (void *)&p_bbm_data)) {
943 phr->error = HPI_ERROR_INVALID_OPERATION;
944 return;
945 }
946
947
948
949 l_first_write =
950 min(phm->u.d.u.data.data_size,
951 status->size_in_bytes -
952 (status->host_index & (status->size_in_bytes - 1)));
953
954 memcpy(p_bbm_data +
955 (status->host_index & (status->size_in_bytes - 1)),
956 p_app_data, l_first_write);
957
958 memcpy(p_bbm_data, p_app_data + l_first_write,
959 phm->u.d.u.data.data_size - l_first_write);
960 }
961
962
963
964
965
966
967
968 if (phw->flag_outstream_just_reset[phm->obj_index]) {
969
970 u16 function = phm->function;
971 phw->flag_outstream_just_reset[phm->obj_index] = 0;
972 phm->function = HPI_OSTREAM_SET_FORMAT;
973 hw_message(pao, phm, phr);
974 phm->function = function;
975 if (phr->error)
976 return;
977 }
978
979 status->host_index += phm->u.d.u.data.data_size;
980}
981
982static void outstream_get_info(struct hpi_adapter_obj *pao,
983 struct hpi_message *phm, struct hpi_response *phr)
984{
985 struct hpi_hw_obj *phw = pao->priv;
986 struct bus_master_interface *interface = phw->p_interface_buffer;
987 struct hpi_hostbuffer_status *status;
988
989 if (!phw->outstream_host_buffer_size[phm->obj_index]) {
990 hw_message(pao, phm, phr);
991 return;
992 }
993
994 hpi_init_response(phr, phm->object, phm->function, 0);
995
996 status = &interface->outstream_host_buffer_status[phm->obj_index];
997
998 phr->u.d.u.stream_info.state = (u16)status->stream_state;
999 phr->u.d.u.stream_info.samples_transferred =
1000 status->samples_processed;
1001 phr->u.d.u.stream_info.buffer_size = status->size_in_bytes;
1002 phr->u.d.u.stream_info.data_available =
1003 status->size_in_bytes - outstream_get_space_available(status);
1004 phr->u.d.u.stream_info.auxiliary_data_available =
1005 status->auxiliary_data_available;
1006}
1007
1008static void outstream_start(struct hpi_adapter_obj *pao,
1009 struct hpi_message *phm, struct hpi_response *phr)
1010{
1011 hw_message(pao, phm, phr);
1012}
1013
1014static void outstream_reset(struct hpi_adapter_obj *pao,
1015 struct hpi_message *phm, struct hpi_response *phr)
1016{
1017 struct hpi_hw_obj *phw = pao->priv;
1018 phw->flag_outstream_just_reset[phm->obj_index] = 1;
1019 hw_message(pao, phm, phr);
1020}
1021
1022static void outstream_open(struct hpi_adapter_obj *pao,
1023 struct hpi_message *phm, struct hpi_response *phr)
1024{
1025 outstream_reset(pao, phm, phr);
1026}
1027
1028
1029
1030
1031static void instream_host_buffer_allocate(struct hpi_adapter_obj *pao,
1032 struct hpi_message *phm, struct hpi_response *phr)
1033{
1034 u16 err = 0;
1035 u32 command = phm->u.d.u.buffer.command;
1036 struct hpi_hw_obj *phw = pao->priv;
1037 struct bus_master_interface *interface = phw->p_interface_buffer;
1038
1039 hpi_init_response(phr, phm->object, phm->function, 0);
1040
1041 if (command == HPI_BUFFER_CMD_EXTERNAL
1042 || command == HPI_BUFFER_CMD_INTERNAL_ALLOC) {
1043
1044 phm->u.d.u.buffer.buffer_size =
1045 roundup_pow_of_two(phm->u.d.u.buffer.buffer_size);
1046 phr->u.d.u.stream_info.data_available =
1047 phw->instream_host_buffer_size[phm->obj_index];
1048 phr->u.d.u.stream_info.buffer_size =
1049 phm->u.d.u.buffer.buffer_size;
1050
1051 if (phw->instream_host_buffer_size[phm->obj_index] ==
1052 phm->u.d.u.buffer.buffer_size) {
1053
1054 return;
1055 }
1056
1057 if (hpios_locked_mem_valid(&phw->instream_host_buffers[phm->
1058 obj_index]))
1059 hpios_locked_mem_free(&phw->instream_host_buffers
1060 [phm->obj_index]);
1061
1062 err = hpios_locked_mem_alloc(&phw->instream_host_buffers[phm->
1063 obj_index], phm->u.d.u.buffer.buffer_size,
1064 pao->pci.pci_dev);
1065
1066 if (err) {
1067 phr->error = HPI_ERROR_INVALID_DATASIZE;
1068 phw->instream_host_buffer_size[phm->obj_index] = 0;
1069 return;
1070 }
1071
1072 err = hpios_locked_mem_get_phys_addr
1073 (&phw->instream_host_buffers[phm->obj_index],
1074 &phm->u.d.u.buffer.pci_address);
1075
1076
1077 phr->u.d.u.stream_info.auxiliary_data_available =
1078 phm->u.d.u.buffer.pci_address;
1079 if (err) {
1080 hpios_locked_mem_free(&phw->instream_host_buffers
1081 [phm->obj_index]);
1082 phw->instream_host_buffer_size[phm->obj_index] = 0;
1083 phr->error = HPI_ERROR_MEMORY_ALLOC;
1084 return;
1085 }
1086 }
1087
1088 if (command == HPI_BUFFER_CMD_EXTERNAL
1089 || command == HPI_BUFFER_CMD_INTERNAL_GRANTADAPTER) {
1090 struct hpi_hostbuffer_status *status;
1091
1092 if (phm->u.d.u.buffer.buffer_size & (phm->u.d.u.buffer.
1093 buffer_size - 1)) {
1094 HPI_DEBUG_LOG(ERROR,
1095 "Buffer size must be 2^N not %d\n",
1096 phm->u.d.u.buffer.buffer_size);
1097 phr->error = HPI_ERROR_INVALID_DATASIZE;
1098 return;
1099 }
1100
1101 phw->instream_host_buffer_size[phm->obj_index] =
1102 phm->u.d.u.buffer.buffer_size;
1103 status = &interface->instream_host_buffer_status[phm->
1104 obj_index];
1105 status->samples_processed = 0;
1106 status->stream_state = HPI_STATE_STOPPED;
1107 status->dsp_index = 0;
1108 status->host_index = status->dsp_index;
1109 status->size_in_bytes = phm->u.d.u.buffer.buffer_size;
1110 status->auxiliary_data_available = 0;
1111
1112 hw_message(pao, phm, phr);
1113
1114 if (phr->error
1115 && hpios_locked_mem_valid(&phw->
1116 instream_host_buffers[phm->obj_index])) {
1117 hpios_locked_mem_free(&phw->instream_host_buffers
1118 [phm->obj_index]);
1119 phw->instream_host_buffer_size[phm->obj_index] = 0;
1120 }
1121 }
1122}
1123
1124static void instream_host_buffer_get_info(struct hpi_adapter_obj *pao,
1125 struct hpi_message *phm, struct hpi_response *phr)
1126{
1127 struct hpi_hw_obj *phw = pao->priv;
1128 struct bus_master_interface *interface = phw->p_interface_buffer;
1129 struct hpi_hostbuffer_status *status;
1130 u8 *p_bbm_data;
1131
1132 if (hpios_locked_mem_valid(&phw->instream_host_buffers[phm->
1133 obj_index])) {
1134 if (hpios_locked_mem_get_virt_addr(&phw->
1135 instream_host_buffers[phm->obj_index],
1136 (void *)&p_bbm_data)) {
1137 phr->error = HPI_ERROR_INVALID_OPERATION;
1138 return;
1139 }
1140 status = &interface->instream_host_buffer_status[phm->
1141 obj_index];
1142 hpi_init_response(phr, HPI_OBJ_ISTREAM,
1143 HPI_ISTREAM_HOSTBUFFER_GET_INFO, 0);
1144 phr->u.d.u.hostbuffer_info.p_buffer = p_bbm_data;
1145 phr->u.d.u.hostbuffer_info.p_status = status;
1146 } else {
1147 hpi_init_response(phr, HPI_OBJ_ISTREAM,
1148 HPI_ISTREAM_HOSTBUFFER_GET_INFO,
1149 HPI_ERROR_INVALID_OPERATION);
1150 }
1151}
1152
1153static void instream_host_buffer_free(struct hpi_adapter_obj *pao,
1154 struct hpi_message *phm, struct hpi_response *phr)
1155{
1156 struct hpi_hw_obj *phw = pao->priv;
1157 u32 command = phm->u.d.u.buffer.command;
1158
1159 if (phw->instream_host_buffer_size[phm->obj_index]) {
1160 if (command == HPI_BUFFER_CMD_EXTERNAL
1161 || command == HPI_BUFFER_CMD_INTERNAL_REVOKEADAPTER) {
1162 phw->instream_host_buffer_size[phm->obj_index] = 0;
1163 hw_message(pao, phm, phr);
1164 }
1165
1166 if (command == HPI_BUFFER_CMD_EXTERNAL
1167 || command == HPI_BUFFER_CMD_INTERNAL_FREE)
1168 hpios_locked_mem_free(&phw->instream_host_buffers
1169 [phm->obj_index]);
1170
1171 } else {
1172
1173
1174 hpi_init_response(phr, HPI_OBJ_ISTREAM,
1175 HPI_ISTREAM_HOSTBUFFER_FREE, 0);
1176
1177 }
1178
1179}
1180
1181static void instream_start(struct hpi_adapter_obj *pao,
1182 struct hpi_message *phm, struct hpi_response *phr)
1183{
1184 hw_message(pao, phm, phr);
1185}
1186
1187static u32 instream_get_bytes_available(struct hpi_hostbuffer_status *status)
1188{
1189 return status->dsp_index - status->host_index;
1190}
1191
1192static void instream_read(struct hpi_adapter_obj *pao,
1193 struct hpi_message *phm, struct hpi_response *phr)
1194{
1195 struct hpi_hw_obj *phw = pao->priv;
1196 struct bus_master_interface *interface = phw->p_interface_buffer;
1197 struct hpi_hostbuffer_status *status;
1198 u32 data_available;
1199 u8 *p_bbm_data;
1200 u32 l_first_read;
1201 u8 *p_app_data = (u8 *)phm->u.d.u.data.pb_data;
1202
1203 if (!phw->instream_host_buffer_size[phm->obj_index]) {
1204 hw_message(pao, phm, phr);
1205 return;
1206 }
1207 hpi_init_response(phr, phm->object, phm->function, 0);
1208
1209 status = &interface->instream_host_buffer_status[phm->obj_index];
1210 data_available = instream_get_bytes_available(status);
1211 if (data_available < phm->u.d.u.data.data_size) {
1212 phr->error = HPI_ERROR_INVALID_DATASIZE;
1213 return;
1214 }
1215
1216 if (hpios_locked_mem_valid(&phw->instream_host_buffers[phm->
1217 obj_index])) {
1218 if (hpios_locked_mem_get_virt_addr(&phw->
1219 instream_host_buffers[phm->obj_index],
1220 (void *)&p_bbm_data)) {
1221 phr->error = HPI_ERROR_INVALID_OPERATION;
1222 return;
1223 }
1224
1225
1226
1227 l_first_read =
1228 min(phm->u.d.u.data.data_size,
1229 status->size_in_bytes -
1230 (status->host_index & (status->size_in_bytes - 1)));
1231
1232 memcpy(p_app_data,
1233 p_bbm_data +
1234 (status->host_index & (status->size_in_bytes - 1)),
1235 l_first_read);
1236
1237 memcpy(p_app_data + l_first_read, p_bbm_data,
1238 phm->u.d.u.data.data_size - l_first_read);
1239 }
1240 status->host_index += phm->u.d.u.data.data_size;
1241}
1242
1243static void instream_get_info(struct hpi_adapter_obj *pao,
1244 struct hpi_message *phm, struct hpi_response *phr)
1245{
1246 struct hpi_hw_obj *phw = pao->priv;
1247 struct bus_master_interface *interface = phw->p_interface_buffer;
1248 struct hpi_hostbuffer_status *status;
1249 if (!phw->instream_host_buffer_size[phm->obj_index]) {
1250 hw_message(pao, phm, phr);
1251 return;
1252 }
1253
1254 status = &interface->instream_host_buffer_status[phm->obj_index];
1255
1256 hpi_init_response(phr, phm->object, phm->function, 0);
1257
1258 phr->u.d.u.stream_info.state = (u16)status->stream_state;
1259 phr->u.d.u.stream_info.samples_transferred =
1260 status->samples_processed;
1261 phr->u.d.u.stream_info.buffer_size = status->size_in_bytes;
1262 phr->u.d.u.stream_info.data_available =
1263 instream_get_bytes_available(status);
1264 phr->u.d.u.stream_info.auxiliary_data_available =
1265 status->auxiliary_data_available;
1266}
1267
1268
1269
1270#define HPI6205_MAX_FILES_TO_LOAD 2
1271
1272static u16 adapter_boot_load_dsp(struct hpi_adapter_obj *pao,
1273 u32 *pos_error_code)
1274{
1275 struct hpi_hw_obj *phw = pao->priv;
1276 struct dsp_code dsp_code;
1277 u16 boot_code_id[HPI6205_MAX_FILES_TO_LOAD];
1278 u32 temp;
1279 int dsp = 0, i = 0;
1280 u16 err = 0;
1281
1282 boot_code_id[0] = HPI_ADAPTER_ASI(0x6205);
1283
1284 boot_code_id[1] = pao->pci.pci_dev->subsystem_device;
1285 boot_code_id[1] = HPI_ADAPTER_FAMILY_ASI(boot_code_id[1]);
1286
1287
1288 switch (boot_code_id[1]) {
1289 case HPI_ADAPTER_FAMILY_ASI(0x5000):
1290 boot_code_id[0] = boot_code_id[1];
1291 boot_code_id[1] = 0;
1292 break;
1293 case HPI_ADAPTER_FAMILY_ASI(0x5300):
1294 case HPI_ADAPTER_FAMILY_ASI(0x5400):
1295 case HPI_ADAPTER_FAMILY_ASI(0x6300):
1296 boot_code_id[1] = HPI_ADAPTER_FAMILY_ASI(0x6400);
1297 break;
1298 case HPI_ADAPTER_FAMILY_ASI(0x5500):
1299 case HPI_ADAPTER_FAMILY_ASI(0x5600):
1300 case HPI_ADAPTER_FAMILY_ASI(0x6500):
1301 boot_code_id[1] = HPI_ADAPTER_FAMILY_ASI(0x6600);
1302 break;
1303 case HPI_ADAPTER_FAMILY_ASI(0x8800):
1304 boot_code_id[1] = HPI_ADAPTER_FAMILY_ASI(0x8900);
1305 break;
1306 default:
1307 break;
1308 }
1309
1310
1311 temp = C6205_HDCR_WARMRESET;
1312 iowrite32(temp, phw->prHDCR);
1313 hpios_delay_micro_seconds(1000);
1314
1315
1316 temp = ioread32(phw->prHSR);
1317 if ((temp & (C6205_HSR_CFGERR | C6205_HSR_EEREAD)) !=
1318 C6205_HSR_EEREAD)
1319 return HPI6205_ERROR_6205_EEPROM;
1320 temp |= 0x04;
1321
1322 iowrite32(temp, phw->prHSR);
1323
1324
1325 temp = ioread32(phw->prHDCR);
1326 if (!(temp & C6205_HDCR_PCIBOOT))
1327 return HPI6205_ERROR_6205_REG;
1328
1329
1330
1331 temp = 3;
1332 iowrite32(temp, phw->prDSPP);
1333 if ((temp | C6205_DSPP_MAP1) != ioread32(phw->prDSPP))
1334 return HPI6205_ERROR_6205_DSPPAGE;
1335 temp = 2;
1336 iowrite32(temp, phw->prDSPP);
1337 if ((temp | C6205_DSPP_MAP1) != ioread32(phw->prDSPP))
1338 return HPI6205_ERROR_6205_DSPPAGE;
1339 temp = 1;
1340 iowrite32(temp, phw->prDSPP);
1341 if ((temp | C6205_DSPP_MAP1) != ioread32(phw->prDSPP))
1342 return HPI6205_ERROR_6205_DSPPAGE;
1343
1344 temp = 0;
1345 iowrite32(temp, phw->prDSPP);
1346 if ((temp | C6205_DSPP_MAP1) != ioread32(phw->prDSPP))
1347 return HPI6205_ERROR_6205_DSPPAGE;
1348 phw->dsp_page = 0;
1349
1350
1351
1352
1353
1354 if (boot_code_id[1] != 0) {
1355
1356
1357 boot_loader_write_mem32(pao, 0, 0x018C0024, 0x00002202);
1358 hpios_delay_micro_seconds(100);
1359
1360 boot_loader_write_mem32(pao, 0, C6205_BAR0_TIMER1_CTL, 0);
1361
1362 if (0 != (boot_loader_read_mem32(pao, 0,
1363 (C6205_BAR0_TIMER1_CTL)) & ~8))
1364 return HPI6205_ERROR_6205_REG;
1365 hpios_delay_micro_seconds(100);
1366
1367
1368 boot_loader_write_mem32(pao, 0, C6205_BAR0_TIMER1_CTL, 4);
1369 if (4 != (boot_loader_read_mem32(pao, 0,
1370 (C6205_BAR0_TIMER1_CTL)) & ~8))
1371 return HPI6205_ERROR_6205_REG;
1372 hpios_delay_micro_seconds(100);
1373 }
1374
1375 for (dsp = 0; dsp < HPI6205_MAX_FILES_TO_LOAD; dsp++) {
1376
1377 if (boot_code_id[dsp] == 0)
1378 continue;
1379
1380 err = boot_loader_config_emif(pao, dsp);
1381 if (err)
1382 return err;
1383
1384 err = boot_loader_test_internal_memory(pao, dsp);
1385 if (err)
1386 return err;
1387
1388 err = boot_loader_test_external_memory(pao, dsp);
1389 if (err)
1390 return err;
1391
1392 err = boot_loader_test_pld(pao, dsp);
1393 if (err)
1394 return err;
1395
1396
1397 err = hpi_dsp_code_open(boot_code_id[dsp], pao->pci.pci_dev,
1398 &dsp_code, pos_error_code);
1399 if (err)
1400 return err;
1401
1402 while (1) {
1403 u32 length;
1404 u32 address;
1405 u32 type;
1406 u32 *pcode;
1407
1408 err = hpi_dsp_code_read_word(&dsp_code, &length);
1409 if (err)
1410 break;
1411 if (length == 0xFFFFFFFF)
1412 break;
1413
1414 err = hpi_dsp_code_read_word(&dsp_code, &address);
1415 if (err)
1416 break;
1417 err = hpi_dsp_code_read_word(&dsp_code, &type);
1418 if (err)
1419 break;
1420 err = hpi_dsp_code_read_block(length, &dsp_code,
1421 &pcode);
1422 if (err)
1423 break;
1424 for (i = 0; i < (int)length; i++) {
1425 boot_loader_write_mem32(pao, dsp, address,
1426 *pcode);
1427
1428
1429 if (i % 4 == 0)
1430 boot_loader_read_mem32(pao, dsp,
1431 address);
1432 pcode++;
1433 address += 4;
1434 }
1435
1436 }
1437 if (err) {
1438 hpi_dsp_code_close(&dsp_code);
1439 return err;
1440 }
1441
1442
1443 hpi_dsp_code_rewind(&dsp_code);
1444 while (1) {
1445 u32 length = 0;
1446 u32 address = 0;
1447 u32 type = 0;
1448 u32 *pcode = NULL;
1449 u32 data = 0;
1450
1451 hpi_dsp_code_read_word(&dsp_code, &length);
1452 if (length == 0xFFFFFFFF)
1453 break;
1454
1455 hpi_dsp_code_read_word(&dsp_code, &address);
1456 hpi_dsp_code_read_word(&dsp_code, &type);
1457 hpi_dsp_code_read_block(length, &dsp_code, &pcode);
1458
1459 for (i = 0; i < (int)length; i++) {
1460 data = boot_loader_read_mem32(pao, dsp,
1461 address);
1462 if (data != *pcode) {
1463 err = 0;
1464 break;
1465 }
1466 pcode++;
1467 address += 4;
1468 }
1469 if (err)
1470 break;
1471 }
1472 hpi_dsp_code_close(&dsp_code);
1473 if (err)
1474 return err;
1475 }
1476
1477
1478
1479
1480 if (phw->p_interface_buffer) {
1481
1482 u32 physicalPC_iaddress;
1483 struct bus_master_interface *interface =
1484 phw->p_interface_buffer;
1485 u32 host_mailbox_address_on_dsp;
1486 u32 physicalPC_iaddress_verify = 0;
1487 int time_out = 10;
1488
1489
1490 interface->dsp_ack = H620_HIF_UNKNOWN;
1491 wmb();
1492
1493 err = hpios_locked_mem_get_phys_addr(&phw->h_locked_mem,
1494 &physicalPC_iaddress);
1495
1496
1497 host_mailbox_address_on_dsp = 0x80000000;
1498 while ((physicalPC_iaddress != physicalPC_iaddress_verify)
1499 && time_out--) {
1500 boot_loader_write_mem32(pao, 0,
1501 host_mailbox_address_on_dsp,
1502 physicalPC_iaddress);
1503 physicalPC_iaddress_verify =
1504 boot_loader_read_mem32(pao, 0,
1505 host_mailbox_address_on_dsp);
1506 }
1507 }
1508 HPI_DEBUG_LOG(DEBUG, "starting DS_ps running\n");
1509
1510 temp = ioread32(phw->prHSR);
1511 temp &= ~(u32)C6205_HSR_INTAM;
1512 iowrite32(temp, phw->prHSR);
1513
1514
1515 temp = ioread32(phw->prHDCR);
1516 temp |= (u32)C6205_HDCR_DSPINT;
1517 iowrite32(temp, phw->prHDCR);
1518
1519
1520 hpios_delay_micro_seconds(10000);
1521 return err;
1522
1523}
1524
1525
1526
1527
1528static u32 boot_loader_read_mem32(struct hpi_adapter_obj *pao, int dsp_index,
1529 u32 address)
1530{
1531 struct hpi_hw_obj *phw = pao->priv;
1532 u32 data = 0;
1533 __iomem u32 *p_data;
1534
1535 if (dsp_index == 0) {
1536
1537 if ((address >= 0x01800000) & (address < 0x02000000)) {
1538
1539 p_data = pao->pci.ap_mem_base[1] +
1540 (address & 0x007fffff) /
1541 sizeof(*pao->pci.ap_mem_base[1]);
1542
1543
1544 } else {
1545 u32 dw4M_page = address >> 22L;
1546 if (dw4M_page != phw->dsp_page) {
1547 phw->dsp_page = dw4M_page;
1548
1549 iowrite32(phw->dsp_page, phw->prDSPP);
1550
1551 }
1552 address &= 0x3fffff;
1553
1554 p_data = pao->pci.ap_mem_base[0] +
1555 address / sizeof(u32);
1556 }
1557 data = ioread32(p_data);
1558 } else if (dsp_index == 1) {
1559
1560 u32 lsb;
1561 boot_loader_write_mem32(pao, 0, HPIAL_ADDR, address);
1562 boot_loader_write_mem32(pao, 0, HPIAH_ADDR, address >> 16);
1563 lsb = boot_loader_read_mem32(pao, 0, HPIDL_ADDR);
1564 data = boot_loader_read_mem32(pao, 0, HPIDH_ADDR);
1565 data = (data << 16) | (lsb & 0xFFFF);
1566 }
1567 return data;
1568}
1569
1570static void boot_loader_write_mem32(struct hpi_adapter_obj *pao,
1571 int dsp_index, u32 address, u32 data)
1572{
1573 struct hpi_hw_obj *phw = pao->priv;
1574 __iomem u32 *p_data;
1575
1576
1577 if (dsp_index == 0) {
1578
1579 if ((address >= 0x01800000) & (address < 0x02000000)) {
1580
1581
1582 p_data = pao->pci.ap_mem_base[1] +
1583 (address & 0x007fffff) /
1584 sizeof(*pao->pci.ap_mem_base[1]);
1585 } else {
1586
1587
1588 u32 dw4M_page = address >> 22L;
1589 if (dw4M_page != phw->dsp_page) {
1590 phw->dsp_page = dw4M_page;
1591
1592 iowrite32(phw->dsp_page, phw->prDSPP);
1593
1594 }
1595 address &= 0x3fffff;
1596 p_data = pao->pci.ap_mem_base[0] +
1597 address / sizeof(u32);
1598 }
1599 iowrite32(data, p_data);
1600 } else if (dsp_index == 1) {
1601
1602 boot_loader_write_mem32(pao, 0, HPIAL_ADDR, address);
1603 boot_loader_write_mem32(pao, 0, HPIAH_ADDR, address >> 16);
1604
1605
1606 boot_loader_read_mem32(pao, 0, 0);
1607
1608 boot_loader_write_mem32(pao, 0, HPIDL_ADDR, data);
1609 boot_loader_write_mem32(pao, 0, HPIDH_ADDR, data >> 16);
1610
1611
1612 boot_loader_read_mem32(pao, 0, 0);
1613 }
1614}
1615
1616static u16 boot_loader_config_emif(struct hpi_adapter_obj *pao, int dsp_index)
1617{
1618 if (dsp_index == 0) {
1619 u32 setting;
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631 boot_loader_write_mem32(pao, dsp_index, 0x01800000, 0x3779);
1632#define WS_OFS 28
1633#define WST_OFS 22
1634#define WH_OFS 20
1635#define RS_OFS 16
1636#define RST_OFS 8
1637#define MTYPE_OFS 4
1638#define RH_OFS 0
1639
1640
1641 setting = 0x00000030;
1642 boot_loader_write_mem32(pao, dsp_index, 0x01800008, setting);
1643 if (setting != boot_loader_read_mem32(pao, dsp_index,
1644 0x01800008))
1645 return HPI6205_ERROR_DSP_EMIF1;
1646
1647
1648
1649
1650
1651 setting =
1652 (1L << WS_OFS) | (63L << WST_OFS) | (1L << WH_OFS) |
1653 (1L << RS_OFS) | (63L << RST_OFS) | (1L << RH_OFS) |
1654 (2L << MTYPE_OFS);
1655 boot_loader_write_mem32(pao, dsp_index, 0x01800004, setting);
1656 if (setting != boot_loader_read_mem32(pao, dsp_index,
1657 0x01800004))
1658 return HPI6205_ERROR_DSP_EMIF2;
1659
1660
1661
1662
1663 setting =
1664 (1L << WS_OFS) | (28L << WST_OFS) | (1L << WH_OFS) |
1665 (1L << RS_OFS) | (63L << RST_OFS) | (1L << RH_OFS) |
1666 (2L << MTYPE_OFS);
1667 boot_loader_write_mem32(pao, dsp_index, 0x01800010, setting);
1668 if (setting != boot_loader_read_mem32(pao, dsp_index,
1669 0x01800010))
1670 return HPI6205_ERROR_DSP_EMIF3;
1671
1672
1673
1674 setting =
1675 (1L << WS_OFS) | (10L << WST_OFS) | (1L << WH_OFS) |
1676 (1L << RS_OFS) | (10L << RST_OFS) | (1L << RH_OFS) |
1677 (2L << MTYPE_OFS);
1678 boot_loader_write_mem32(pao, dsp_index, 0x01800014, setting);
1679 if (setting != boot_loader_read_mem32(pao, dsp_index,
1680 0x01800014))
1681 return HPI6205_ERROR_DSP_EMIF4;
1682
1683
1684
1685 boot_loader_write_mem32(pao, dsp_index, 0x01800018,
1686 0x07117000);
1687
1688
1689
1690 boot_loader_write_mem32(pao, dsp_index, 0x0180001C,
1691 0x00000410);
1692
1693 } else if (dsp_index == 1) {
1694
1695 u32 write_data = 0, read_data = 0, i = 0;
1696
1697
1698 write_data = 1;
1699 boot_loader_write_mem32(pao, 0, HPICL_ADDR, write_data);
1700 boot_loader_write_mem32(pao, 0, HPICH_ADDR, write_data);
1701
1702 read_data =
1703 0xFFF7 & boot_loader_read_mem32(pao, 0, HPICL_ADDR);
1704 if (write_data != read_data) {
1705 HPI_DEBUG_LOG(ERROR, "HPICL %x %x\n", write_data,
1706 read_data);
1707 return HPI6205_ERROR_C6713_HPIC;
1708 }
1709
1710 write_data = 1;
1711 for (i = 0; i < 32; i++) {
1712 boot_loader_write_mem32(pao, 0, HPIAL_ADDR,
1713 write_data);
1714 boot_loader_write_mem32(pao, 0, HPIAH_ADDR,
1715 (write_data >> 16));
1716 read_data =
1717 0xFFFF & boot_loader_read_mem32(pao, 0,
1718 HPIAL_ADDR);
1719 read_data =
1720 read_data | ((0xFFFF &
1721 boot_loader_read_mem32(pao, 0,
1722 HPIAH_ADDR))
1723 << 16);
1724 if (read_data != write_data) {
1725 HPI_DEBUG_LOG(ERROR, "HPIA %x %x\n",
1726 write_data, read_data);
1727 return HPI6205_ERROR_C6713_HPIA;
1728 }
1729 write_data = write_data << 1;
1730 }
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740 boot_loader_write_mem32(pao, dsp_index, 0x01B7C100, 0x0000);
1741 hpios_delay_micro_seconds(1000);
1742
1743 boot_loader_write_mem32(pao, dsp_index, 0x01B7C120, 0x8002);
1744
1745 boot_loader_write_mem32(pao, dsp_index, 0x01B7C11C, 0x8001);
1746
1747 boot_loader_write_mem32(pao, dsp_index, 0x01B7C118, 0x8000);
1748 hpios_delay_micro_seconds(1000);
1749
1750
1751
1752 boot_loader_write_mem32(pao, 0, (0x018C0024L), 0x00002A0A);
1753
1754 boot_loader_write_mem32(pao, dsp_index, 0x01B7C100, 0x0001);
1755 hpios_delay_micro_seconds(1000);
1756
1757 boot_loader_write_mem32(pao, 0, (0x018C0024L), 0x00002A02);
1758
1759
1760
1761 boot_loader_write_mem32(pao, 0, 0x01800004,
1762 (1L << WS_OFS) | (8L << WST_OFS) | (1L << WH_OFS) |
1763 (1L << RS_OFS) | (12L << RST_OFS) | (1L << RH_OFS) |
1764 (2L << MTYPE_OFS));
1765
1766 hpios_delay_micro_seconds(1000);
1767
1768
1769
1770 if ((boot_loader_read_mem32(pao, dsp_index, 0x01B7C100) & 0xF)
1771 != 0x0001) {
1772 return HPI6205_ERROR_C6713_PLL;
1773 }
1774
1775
1776 boot_loader_write_mem32(pao, dsp_index, C6713_EMIF_GCTL,
1777 0x000034A8);
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790 boot_loader_write_mem32(pao, dsp_index, C6713_EMIF_CE0,
1791 0x00000030);
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812 boot_loader_write_mem32(pao, dsp_index, C6713_EMIF_SDRAMEXT,
1813 0x001BDF29);
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832 boot_loader_write_mem32(pao, dsp_index, C6713_EMIF_SDRAMCTL,
1833 0x47116000);
1834
1835
1836
1837
1838 boot_loader_write_mem32(pao, dsp_index,
1839 C6713_EMIF_SDRAMTIMING, 0x00000410);
1840
1841 hpios_delay_micro_seconds(1000);
1842 } else if (dsp_index == 2) {
1843
1844 }
1845
1846 return 0;
1847}
1848
1849static u16 boot_loader_test_memory(struct hpi_adapter_obj *pao, int dsp_index,
1850 u32 start_address, u32 length)
1851{
1852 u32 i = 0, j = 0;
1853 u32 test_addr = 0;
1854 u32 test_data = 0, data = 0;
1855
1856 length = 1000;
1857
1858
1859
1860
1861 i = 0;
1862 {
1863 test_addr = start_address + i * 4;
1864 test_data = 0x00000001;
1865 for (j = 0; j < 32; j++) {
1866 boot_loader_write_mem32(pao, dsp_index, test_addr,
1867 test_data);
1868 data = boot_loader_read_mem32(pao, dsp_index,
1869 test_addr);
1870 if (data != test_data) {
1871 HPI_DEBUG_LOG(VERBOSE,
1872 "Memtest error details "
1873 "%08x %08x %08x %i\n", test_addr,
1874 test_data, data, dsp_index);
1875 return 1;
1876 }
1877 test_data = test_data << 1;
1878 }
1879 }
1880
1881
1882
1883
1884 for (i = 0; i < 100; i++) {
1885 test_addr = start_address + i * 4;
1886 test_data = 0xA5A55A5A;
1887 boot_loader_write_mem32(pao, dsp_index, test_addr, test_data);
1888 boot_loader_write_mem32(pao, dsp_index, test_addr + 4, 0);
1889 data = boot_loader_read_mem32(pao, dsp_index, test_addr);
1890 if (data != test_data) {
1891 HPI_DEBUG_LOG(VERBOSE,
1892 "Memtest error details "
1893 "%08x %08x %08x %i\n", test_addr, test_data,
1894 data, dsp_index);
1895 return 1;
1896 }
1897
1898 boot_loader_write_mem32(pao, dsp_index, test_addr, 0x0);
1899 }
1900
1901
1902 for (i = 0; i < length; i++) {
1903 test_addr = start_address + i * 4;
1904 boot_loader_write_mem32(pao, dsp_index, test_addr, 0x0);
1905 }
1906 return 0;
1907}
1908
1909static u16 boot_loader_test_internal_memory(struct hpi_adapter_obj *pao,
1910 int dsp_index)
1911{
1912 int err = 0;
1913 if (dsp_index == 0) {
1914
1915
1916 err = boot_loader_test_memory(pao, dsp_index, 0x00000000,
1917 0x10000);
1918 if (!err)
1919
1920 err = boot_loader_test_memory(pao, dsp_index,
1921 0x80000000, 0x10000);
1922 } else if (dsp_index == 1) {
1923
1924
1925 err = boot_loader_test_memory(pao, dsp_index, 0x00000000,
1926 0x30000);
1927 if (!err)
1928
1929 err = boot_loader_test_memory(pao, dsp_index,
1930 0x00030000, 0x10000);
1931 }
1932
1933 if (err)
1934 return HPI6205_ERROR_DSP_INTMEM;
1935 else
1936 return 0;
1937}
1938
1939static u16 boot_loader_test_external_memory(struct hpi_adapter_obj *pao,
1940 int dsp_index)
1941{
1942 u32 dRAM_start_address = 0;
1943 u32 dRAM_size = 0;
1944
1945 if (dsp_index == 0) {
1946
1947 if (pao->pci.pci_dev->subsystem_device == 0x5000) {
1948
1949 dRAM_start_address = 0x00400000;
1950 dRAM_size = 0x200000;
1951
1952 } else
1953 return 0;
1954 } else if (dsp_index == 1) {
1955
1956 dRAM_start_address = 0x80000000;
1957 dRAM_size = 0x200000;
1958
1959 }
1960
1961 if (boot_loader_test_memory(pao, dsp_index, dRAM_start_address,
1962 dRAM_size))
1963 return HPI6205_ERROR_DSP_EXTMEM;
1964 return 0;
1965}
1966
1967static u16 boot_loader_test_pld(struct hpi_adapter_obj *pao, int dsp_index)
1968{
1969 u32 data = 0;
1970 if (dsp_index == 0) {
1971
1972 if (pao->pci.pci_dev->subsystem_device == 0x5000) {
1973
1974 data = boot_loader_read_mem32(pao, dsp_index,
1975 0x03000008);
1976 if ((data & 0xF) != 0x5)
1977 return HPI6205_ERROR_DSP_PLD;
1978 data = boot_loader_read_mem32(pao, dsp_index,
1979 0x0300000C);
1980 if ((data & 0xF) != 0xA)
1981 return HPI6205_ERROR_DSP_PLD;
1982 }
1983 } else if (dsp_index == 1) {
1984
1985 if (pao->pci.pci_dev->subsystem_device == 0x8700) {
1986
1987 data = boot_loader_read_mem32(pao, dsp_index,
1988 0x90000010);
1989 if ((data & 0xFF) != 0xAA)
1990 return HPI6205_ERROR_DSP_PLD;
1991
1992 boot_loader_write_mem32(pao, dsp_index, 0x90000000,
1993 0x02);
1994 }
1995 }
1996 return 0;
1997}
1998
1999
2000
2001
2002static short hpi6205_transfer_data(struct hpi_adapter_obj *pao, u8 *p_data,
2003 u32 data_size, int operation)
2004{
2005 struct hpi_hw_obj *phw = pao->priv;
2006 u32 data_transferred = 0;
2007 u16 err = 0;
2008 u32 temp2;
2009 struct bus_master_interface *interface = phw->p_interface_buffer;
2010
2011 if (!p_data)
2012 return HPI_ERROR_INVALID_DATA_POINTER;
2013
2014 data_size &= ~3L;
2015
2016
2017 if (!wait_dsp_ack(phw, H620_HIF_IDLE, HPI6205_TIMEOUT))
2018 return HPI_ERROR_DSP_HARDWARE;
2019
2020 while (data_transferred < data_size) {
2021 u32 this_copy = data_size - data_transferred;
2022
2023 if (this_copy > HPI6205_SIZEOF_DATA)
2024 this_copy = HPI6205_SIZEOF_DATA;
2025
2026 if (operation == H620_HIF_SEND_DATA)
2027 memcpy((void *)&interface->u.b_data[0],
2028 &p_data[data_transferred], this_copy);
2029
2030 interface->transfer_size_in_bytes = this_copy;
2031
2032
2033 interface->dsp_ack = H620_HIF_IDLE;
2034 send_dsp_command(phw, operation);
2035
2036 temp2 = wait_dsp_ack(phw, operation, HPI6205_TIMEOUT);
2037 HPI_DEBUG_LOG(DEBUG, "spun %d times for data xfer of %d\n",
2038 HPI6205_TIMEOUT - temp2, this_copy);
2039
2040 if (!temp2) {
2041
2042 HPI_DEBUG_LOG(ERROR,
2043 "Timed out waiting for " "state %d got %d\n",
2044 operation, interface->dsp_ack);
2045
2046 break;
2047 }
2048 if (operation == H620_HIF_GET_DATA)
2049 memcpy(&p_data[data_transferred],
2050 (void *)&interface->u.b_data[0], this_copy);
2051
2052 data_transferred += this_copy;
2053 }
2054 if (interface->dsp_ack != operation)
2055 HPI_DEBUG_LOG(DEBUG, "interface->dsp_ack=%d, expected %d\n",
2056 interface->dsp_ack, operation);
2057
2058
2059 send_dsp_command(phw, H620_HIF_IDLE);
2060
2061 return err;
2062}
2063
2064
2065
2066
2067static int wait_dsp_ack(struct hpi_hw_obj *phw, int state, int timeout_us)
2068{
2069 struct bus_master_interface *interface = phw->p_interface_buffer;
2070 int t = timeout_us / 4;
2071
2072 rmb();
2073 while ((interface->dsp_ack != state) && --t) {
2074 hpios_delay_micro_seconds(4);
2075 rmb();
2076 }
2077
2078
2079 return t * 4;
2080}
2081
2082
2083static void send_dsp_command(struct hpi_hw_obj *phw, int cmd)
2084{
2085 struct bus_master_interface *interface = phw->p_interface_buffer;
2086 u32 r;
2087
2088 interface->host_cmd = cmd;
2089 wmb();
2090
2091 r = ioread32(phw->prHDCR);
2092 r |= (u32)C6205_HDCR_DSPINT;
2093 iowrite32(r, phw->prHDCR);
2094 r &= ~(u32)C6205_HDCR_DSPINT;
2095 iowrite32(r, phw->prHDCR);
2096}
2097
2098static unsigned int message_count;
2099
2100static u16 message_response_sequence(struct hpi_adapter_obj *pao,
2101 struct hpi_message *phm, struct hpi_response *phr)
2102{
2103 u32 time_out, time_out2;
2104 struct hpi_hw_obj *phw = pao->priv;
2105 struct bus_master_interface *interface = phw->p_interface_buffer;
2106 u16 err = 0;
2107
2108 message_count++;
2109 if (phm->size > sizeof(interface->u.message_buffer)) {
2110 phr->error = HPI_ERROR_MESSAGE_BUFFER_TOO_SMALL;
2111 phr->specific_error = sizeof(interface->u.message_buffer);
2112 phr->size = sizeof(struct hpi_response_header);
2113 HPI_DEBUG_LOG(ERROR,
2114 "message len %d too big for buffer %zd \n", phm->size,
2115 sizeof(interface->u.message_buffer));
2116 return 0;
2117 }
2118
2119
2120
2121
2122 if (!wait_dsp_ack(phw, H620_HIF_IDLE, HPI6205_TIMEOUT)) {
2123 HPI_DEBUG_LOG(DEBUG, "timeout waiting for idle\n");
2124 return HPI6205_ERROR_MSG_RESP_IDLE_TIMEOUT;
2125 }
2126
2127 memcpy(&interface->u.message_buffer, phm, phm->size);
2128
2129 send_dsp_command(phw, H620_HIF_GET_RESP);
2130
2131 time_out2 = wait_dsp_ack(phw, H620_HIF_GET_RESP, HPI6205_TIMEOUT);
2132
2133 if (!time_out2) {
2134 HPI_DEBUG_LOG(ERROR,
2135 "(%u) Timed out waiting for " "GET_RESP state [%x]\n",
2136 message_count, interface->dsp_ack);
2137 } else {
2138 HPI_DEBUG_LOG(VERBOSE,
2139 "(%u) transition to GET_RESP after %u\n",
2140 message_count, HPI6205_TIMEOUT - time_out2);
2141 }
2142
2143 time_out = HPI6205_TIMEOUT;
2144
2145
2146 if (time_out) {
2147 if (interface->u.response_buffer.response.size <= phr->size)
2148 memcpy(phr, &interface->u.response_buffer,
2149 interface->u.response_buffer.response.size);
2150 else {
2151 HPI_DEBUG_LOG(ERROR,
2152 "response len %d too big for buffer %d\n",
2153 interface->u.response_buffer.response.size,
2154 phr->size);
2155 memcpy(phr, &interface->u.response_buffer,
2156 sizeof(struct hpi_response_header));
2157 phr->error = HPI_ERROR_RESPONSE_BUFFER_TOO_SMALL;
2158 phr->specific_error =
2159 interface->u.response_buffer.response.size;
2160 phr->size = sizeof(struct hpi_response_header);
2161 }
2162 }
2163
2164 send_dsp_command(phw, H620_HIF_IDLE);
2165
2166 if (!time_out || !time_out2) {
2167 HPI_DEBUG_LOG(DEBUG, "something timed out!\n");
2168 return HPI6205_ERROR_MSG_RESP_TIMEOUT;
2169 }
2170
2171
2172 if (phm->function == HPI_ADAPTER_CLOSE) {
2173 if (!wait_dsp_ack(phw, H620_HIF_IDLE, HPI6205_TIMEOUT)) {
2174 HPI_DEBUG_LOG(DEBUG,
2175 "Timeout waiting for idle "
2176 "(on adapter_close)\n");
2177 return HPI6205_ERROR_MSG_RESP_IDLE_TIMEOUT;
2178 }
2179 }
2180 err = hpi_validate_response(phm, phr);
2181 return err;
2182}
2183
2184static void hw_message(struct hpi_adapter_obj *pao, struct hpi_message *phm,
2185 struct hpi_response *phr)
2186{
2187
2188 u16 err = 0;
2189
2190 hpios_dsplock_lock(pao);
2191
2192 err = message_response_sequence(pao, phm, phr);
2193
2194
2195 if (err) {
2196
2197 if (err >= HPI_ERROR_BACKEND_BASE) {
2198 phr->error = HPI_ERROR_DSP_COMMUNICATION;
2199 phr->specific_error = err;
2200 } else {
2201 phr->error = err;
2202 }
2203
2204 pao->dsp_crashed++;
2205
2206
2207 phr->size = sizeof(struct hpi_response_header);
2208 goto err;
2209 } else
2210 pao->dsp_crashed = 0;
2211
2212 if (phr->error != 0)
2213 goto err;
2214
2215 switch (phm->function) {
2216 case HPI_OSTREAM_WRITE:
2217 case HPI_ISTREAM_ANC_WRITE:
2218 err = hpi6205_transfer_data(pao, phm->u.d.u.data.pb_data,
2219 phm->u.d.u.data.data_size, H620_HIF_SEND_DATA);
2220 break;
2221
2222 case HPI_ISTREAM_READ:
2223 case HPI_OSTREAM_ANC_READ:
2224 err = hpi6205_transfer_data(pao, phm->u.d.u.data.pb_data,
2225 phm->u.d.u.data.data_size, H620_HIF_GET_DATA);
2226 break;
2227
2228 }
2229 phr->error = err;
2230
2231err:
2232 hpios_dsplock_unlock(pao);
2233
2234 return;
2235}
2236