FRV: Use generic show_interrupts()
[cris-mirror.git] / sound / pci / asihpi / hpifunc.c
blobc38fc9487560cea2a235e0ba829c43b197e7f9e9
2 #include "hpi_internal.h"
3 #include "hpimsginit.h"
5 #include "hpidebug.h"
7 struct hpi_handle {
8 unsigned int obj_index:12;
9 unsigned int obj_type:4;
10 unsigned int adapter_index:14;
11 unsigned int spare:1;
12 unsigned int read_only:1;
15 union handle_word {
16 struct hpi_handle h;
17 u32 w;
20 u32 hpi_indexes_to_handle(const char c_object, const u16 adapter_index,
21 const u16 object_index)
23 union handle_word handle;
25 handle.h.adapter_index = adapter_index;
26 handle.h.spare = 0;
27 handle.h.read_only = 0;
28 handle.h.obj_type = c_object;
29 handle.h.obj_index = object_index;
30 return handle.w;
33 static u16 hpi_handle_indexes(const u32 h, u16 *p1, u16 *p2)
35 union handle_word uhandle;
36 if (!h)
37 return HPI_ERROR_INVALID_HANDLE;
39 uhandle.w = h;
41 *p1 = (u16)uhandle.h.adapter_index;
42 if (p2)
43 *p2 = (u16)uhandle.h.obj_index;
45 return 0;
48 void hpi_handle_to_indexes(const u32 handle, u16 *pw_adapter_index,
49 u16 *pw_object_index)
51 hpi_handle_indexes(handle, pw_adapter_index, pw_object_index);
54 char hpi_handle_object(const u32 handle)
56 union handle_word uhandle;
57 uhandle.w = handle;
58 return (char)uhandle.h.obj_type;
61 void hpi_format_to_msg(struct hpi_msg_format *pMF,
62 const struct hpi_format *pF)
64 pMF->sample_rate = pF->sample_rate;
65 pMF->bit_rate = pF->bit_rate;
66 pMF->attributes = pF->attributes;
67 pMF->channels = pF->channels;
68 pMF->format = pF->format;
71 static void hpi_msg_to_format(struct hpi_format *pF,
72 struct hpi_msg_format *pMF)
74 pF->sample_rate = pMF->sample_rate;
75 pF->bit_rate = pMF->bit_rate;
76 pF->attributes = pMF->attributes;
77 pF->channels = pMF->channels;
78 pF->format = pMF->format;
79 pF->mode_legacy = 0;
80 pF->unused = 0;
83 void hpi_stream_response_to_legacy(struct hpi_stream_res *pSR)
85 pSR->u.legacy_stream_info.auxiliary_data_available =
86 pSR->u.stream_info.auxiliary_data_available;
87 pSR->u.legacy_stream_info.state = pSR->u.stream_info.state;
90 static inline void hpi_send_recvV1(struct hpi_message_header *m,
91 struct hpi_response_header *r)
93 hpi_send_recv((struct hpi_message *)m, (struct hpi_response *)r);
96 u16 hpi_subsys_get_version_ex(u32 *pversion_ex)
98 struct hpi_message hm;
99 struct hpi_response hr;
101 hpi_init_message_response(&hm, &hr, HPI_OBJ_SUBSYSTEM,
102 HPI_SUBSYS_GET_VERSION);
103 hpi_send_recv(&hm, &hr);
104 *pversion_ex = hr.u.s.data;
105 return hr.error;
108 u16 hpi_subsys_create_adapter(const struct hpi_resource *p_resource,
109 u16 *pw_adapter_index)
111 struct hpi_message hm;
112 struct hpi_response hr;
114 hpi_init_message_response(&hm, &hr, HPI_OBJ_SUBSYSTEM,
115 HPI_SUBSYS_CREATE_ADAPTER);
116 hm.u.s.resource = *p_resource;
118 hpi_send_recv(&hm, &hr);
120 *pw_adapter_index = hr.u.s.adapter_index;
121 return hr.error;
124 u16 hpi_subsys_delete_adapter(u16 adapter_index)
126 struct hpi_message hm;
127 struct hpi_response hr;
128 hpi_init_message_response(&hm, &hr, HPI_OBJ_SUBSYSTEM,
129 HPI_SUBSYS_DELETE_ADAPTER);
130 hm.obj_index = adapter_index;
131 hpi_send_recv(&hm, &hr);
132 return hr.error;
135 u16 hpi_subsys_get_num_adapters(int *pn_num_adapters)
137 struct hpi_message hm;
138 struct hpi_response hr;
139 hpi_init_message_response(&hm, &hr, HPI_OBJ_SUBSYSTEM,
140 HPI_SUBSYS_GET_NUM_ADAPTERS);
141 hpi_send_recv(&hm, &hr);
142 *pn_num_adapters = (int)hr.u.s.num_adapters;
143 return hr.error;
146 u16 hpi_subsys_get_adapter(int iterator, u32 *padapter_index,
147 u16 *pw_adapter_type)
149 struct hpi_message hm;
150 struct hpi_response hr;
151 hpi_init_message_response(&hm, &hr, HPI_OBJ_SUBSYSTEM,
152 HPI_SUBSYS_GET_ADAPTER);
153 hm.obj_index = (u16)iterator;
154 hpi_send_recv(&hm, &hr);
155 *padapter_index = (int)hr.u.s.adapter_index;
156 *pw_adapter_type = hr.u.s.adapter_type;
158 return hr.error;
161 u16 hpi_adapter_open(u16 adapter_index)
163 struct hpi_message hm;
164 struct hpi_response hr;
165 hpi_init_message_response(&hm, &hr, HPI_OBJ_ADAPTER,
166 HPI_ADAPTER_OPEN);
167 hm.adapter_index = adapter_index;
169 hpi_send_recv(&hm, &hr);
171 return hr.error;
175 u16 hpi_adapter_close(u16 adapter_index)
177 struct hpi_message hm;
178 struct hpi_response hr;
179 hpi_init_message_response(&hm, &hr, HPI_OBJ_ADAPTER,
180 HPI_ADAPTER_CLOSE);
181 hm.adapter_index = adapter_index;
183 hpi_send_recv(&hm, &hr);
185 return hr.error;
188 u16 hpi_adapter_set_mode(u16 adapter_index, u32 adapter_mode)
190 return hpi_adapter_set_mode_ex(adapter_index, adapter_mode,
191 HPI_ADAPTER_MODE_SET);
194 u16 hpi_adapter_set_mode_ex(u16 adapter_index, u32 adapter_mode,
195 u16 query_or_set)
197 struct hpi_message hm;
198 struct hpi_response hr;
200 hpi_init_message_response(&hm, &hr, HPI_OBJ_ADAPTER,
201 HPI_ADAPTER_SET_MODE);
202 hm.adapter_index = adapter_index;
203 hm.u.ax.mode.adapter_mode = adapter_mode;
204 hm.u.ax.mode.query_or_set = query_or_set;
205 hpi_send_recv(&hm, &hr);
206 return hr.error;
209 u16 hpi_adapter_get_mode(u16 adapter_index, u32 *padapter_mode)
211 struct hpi_message hm;
212 struct hpi_response hr;
213 hpi_init_message_response(&hm, &hr, HPI_OBJ_ADAPTER,
214 HPI_ADAPTER_GET_MODE);
215 hm.adapter_index = adapter_index;
216 hpi_send_recv(&hm, &hr);
217 if (padapter_mode)
218 *padapter_mode = hr.u.ax.mode.adapter_mode;
219 return hr.error;
222 u16 hpi_adapter_get_info(u16 adapter_index, u16 *pw_num_outstreams,
223 u16 *pw_num_instreams, u16 *pw_version, u32 *pserial_number,
224 u16 *pw_adapter_type)
226 struct hpi_message hm;
227 struct hpi_response hr;
228 hpi_init_message_response(&hm, &hr, HPI_OBJ_ADAPTER,
229 HPI_ADAPTER_GET_INFO);
230 hm.adapter_index = adapter_index;
232 hpi_send_recv(&hm, &hr);
234 *pw_adapter_type = hr.u.ax.info.adapter_type;
235 *pw_num_outstreams = hr.u.ax.info.num_outstreams;
236 *pw_num_instreams = hr.u.ax.info.num_instreams;
237 *pw_version = hr.u.ax.info.version;
238 *pserial_number = hr.u.ax.info.serial_number;
239 return hr.error;
242 u16 hpi_adapter_get_module_by_index(u16 adapter_index, u16 module_index,
243 u16 *pw_num_outputs, u16 *pw_num_inputs, u16 *pw_version,
244 u32 *pserial_number, u16 *pw_module_type, u32 *ph_module)
246 struct hpi_message hm;
247 struct hpi_response hr;
249 hpi_init_message_response(&hm, &hr, HPI_OBJ_ADAPTER,
250 HPI_ADAPTER_MODULE_INFO);
251 hm.adapter_index = adapter_index;
252 hm.u.ax.module_info.index = module_index;
254 hpi_send_recv(&hm, &hr);
256 *pw_module_type = hr.u.ax.info.adapter_type;
257 *pw_num_outputs = hr.u.ax.info.num_outstreams;
258 *pw_num_inputs = hr.u.ax.info.num_instreams;
259 *pw_version = hr.u.ax.info.version;
260 *pserial_number = hr.u.ax.info.serial_number;
261 *ph_module = 0;
263 return hr.error;
266 u16 hpi_adapter_set_property(u16 adapter_index, u16 property, u16 parameter1,
267 u16 parameter2)
269 struct hpi_message hm;
270 struct hpi_response hr;
271 hpi_init_message_response(&hm, &hr, HPI_OBJ_ADAPTER,
272 HPI_ADAPTER_SET_PROPERTY);
273 hm.adapter_index = adapter_index;
274 hm.u.ax.property_set.property = property;
275 hm.u.ax.property_set.parameter1 = parameter1;
276 hm.u.ax.property_set.parameter2 = parameter2;
278 hpi_send_recv(&hm, &hr);
280 return hr.error;
283 u16 hpi_adapter_get_property(u16 adapter_index, u16 property,
284 u16 *pw_parameter1, u16 *pw_parameter2)
286 struct hpi_message hm;
287 struct hpi_response hr;
288 hpi_init_message_response(&hm, &hr, HPI_OBJ_ADAPTER,
289 HPI_ADAPTER_GET_PROPERTY);
290 hm.adapter_index = adapter_index;
291 hm.u.ax.property_set.property = property;
293 hpi_send_recv(&hm, &hr);
294 if (!hr.error) {
295 if (pw_parameter1)
296 *pw_parameter1 = hr.u.ax.property_get.parameter1;
297 if (pw_parameter2)
298 *pw_parameter2 = hr.u.ax.property_get.parameter2;
301 return hr.error;
304 u16 hpi_adapter_enumerate_property(u16 adapter_index, u16 index,
305 u16 what_to_enumerate, u16 property_index, u32 *psetting)
307 return 0;
310 u16 hpi_format_create(struct hpi_format *p_format, u16 channels, u16 format,
311 u32 sample_rate, u32 bit_rate, u32 attributes)
313 u16 err = 0;
314 struct hpi_msg_format fmt;
316 switch (channels) {
317 case 1:
318 case 2:
319 case 4:
320 case 6:
321 case 8:
322 case 16:
323 break;
324 default:
325 err = HPI_ERROR_INVALID_CHANNELS;
326 return err;
328 fmt.channels = channels;
330 switch (format) {
331 case HPI_FORMAT_PCM16_SIGNED:
332 case HPI_FORMAT_PCM24_SIGNED:
333 case HPI_FORMAT_PCM32_SIGNED:
334 case HPI_FORMAT_PCM32_FLOAT:
335 case HPI_FORMAT_PCM16_BIGENDIAN:
336 case HPI_FORMAT_PCM8_UNSIGNED:
337 case HPI_FORMAT_MPEG_L1:
338 case HPI_FORMAT_MPEG_L2:
339 case HPI_FORMAT_MPEG_L3:
340 case HPI_FORMAT_DOLBY_AC2:
341 case HPI_FORMAT_AA_TAGIT1_HITS:
342 case HPI_FORMAT_AA_TAGIT1_INSERTS:
343 case HPI_FORMAT_RAW_BITSTREAM:
344 case HPI_FORMAT_AA_TAGIT1_HITS_EX1:
345 case HPI_FORMAT_OEM1:
346 case HPI_FORMAT_OEM2:
347 break;
348 default:
349 err = HPI_ERROR_INVALID_FORMAT;
350 return err;
352 fmt.format = format;
354 if (sample_rate < 8000L) {
355 err = HPI_ERROR_INCOMPATIBLE_SAMPLERATE;
356 sample_rate = 8000L;
358 if (sample_rate > 200000L) {
359 err = HPI_ERROR_INCOMPATIBLE_SAMPLERATE;
360 sample_rate = 200000L;
362 fmt.sample_rate = sample_rate;
364 switch (format) {
365 case HPI_FORMAT_MPEG_L1:
366 case HPI_FORMAT_MPEG_L2:
367 case HPI_FORMAT_MPEG_L3:
368 fmt.bit_rate = bit_rate;
369 break;
370 case HPI_FORMAT_PCM16_SIGNED:
371 case HPI_FORMAT_PCM16_BIGENDIAN:
372 fmt.bit_rate = channels * sample_rate * 2;
373 break;
374 case HPI_FORMAT_PCM32_SIGNED:
375 case HPI_FORMAT_PCM32_FLOAT:
376 fmt.bit_rate = channels * sample_rate * 4;
377 break;
378 case HPI_FORMAT_PCM8_UNSIGNED:
379 fmt.bit_rate = channels * sample_rate;
380 break;
381 default:
382 fmt.bit_rate = 0;
385 switch (format) {
386 case HPI_FORMAT_MPEG_L2:
387 if ((channels == 1)
388 && (attributes != HPI_MPEG_MODE_DEFAULT)) {
389 attributes = HPI_MPEG_MODE_DEFAULT;
390 err = HPI_ERROR_INVALID_FORMAT;
391 } else if (attributes > HPI_MPEG_MODE_DUALCHANNEL) {
392 attributes = HPI_MPEG_MODE_DEFAULT;
393 err = HPI_ERROR_INVALID_FORMAT;
395 fmt.attributes = attributes;
396 break;
397 default:
398 fmt.attributes = attributes;
401 hpi_msg_to_format(p_format, &fmt);
402 return err;
405 u16 hpi_stream_estimate_buffer_size(struct hpi_format *p_format,
406 u32 host_polling_rate_in_milli_seconds, u32 *recommended_buffer_size)
409 u32 bytes_per_second;
410 u32 size;
411 u16 channels;
412 struct hpi_format *pF = p_format;
414 channels = pF->channels;
416 switch (pF->format) {
417 case HPI_FORMAT_PCM16_BIGENDIAN:
418 case HPI_FORMAT_PCM16_SIGNED:
419 bytes_per_second = pF->sample_rate * 2L * channels;
420 break;
421 case HPI_FORMAT_PCM24_SIGNED:
422 bytes_per_second = pF->sample_rate * 3L * channels;
423 break;
424 case HPI_FORMAT_PCM32_SIGNED:
425 case HPI_FORMAT_PCM32_FLOAT:
426 bytes_per_second = pF->sample_rate * 4L * channels;
427 break;
428 case HPI_FORMAT_PCM8_UNSIGNED:
429 bytes_per_second = pF->sample_rate * 1L * channels;
430 break;
431 case HPI_FORMAT_MPEG_L1:
432 case HPI_FORMAT_MPEG_L2:
433 case HPI_FORMAT_MPEG_L3:
434 bytes_per_second = pF->bit_rate / 8L;
435 break;
436 case HPI_FORMAT_DOLBY_AC2:
438 bytes_per_second = 256000L / 8L;
439 break;
440 default:
441 return HPI_ERROR_INVALID_FORMAT;
443 size = (bytes_per_second * host_polling_rate_in_milli_seconds * 2) /
444 1000L;
446 *recommended_buffer_size =
447 roundup_pow_of_two(((size + 4095L) & ~4095L));
448 return 0;
451 u16 hpi_outstream_open(u16 adapter_index, u16 outstream_index,
452 u32 *ph_outstream)
454 struct hpi_message hm;
455 struct hpi_response hr;
456 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
457 HPI_OSTREAM_OPEN);
458 hm.adapter_index = adapter_index;
459 hm.obj_index = outstream_index;
461 hpi_send_recv(&hm, &hr);
463 if (hr.error == 0)
464 *ph_outstream =
465 hpi_indexes_to_handle(HPI_OBJ_OSTREAM, adapter_index,
466 outstream_index);
467 else
468 *ph_outstream = 0;
469 return hr.error;
472 u16 hpi_outstream_close(u32 h_outstream)
474 struct hpi_message hm;
475 struct hpi_response hr;
477 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
478 HPI_OSTREAM_HOSTBUFFER_FREE);
479 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
480 return HPI_ERROR_INVALID_HANDLE;
482 hpi_send_recv(&hm, &hr);
484 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
485 HPI_OSTREAM_GROUP_RESET);
486 hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index);
487 hpi_send_recv(&hm, &hr);
489 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
490 HPI_OSTREAM_CLOSE);
491 hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index);
492 hpi_send_recv(&hm, &hr);
494 return hr.error;
497 u16 hpi_outstream_get_info_ex(u32 h_outstream, u16 *pw_state,
498 u32 *pbuffer_size, u32 *pdata_to_play, u32 *psamples_played,
499 u32 *pauxiliary_data_to_play)
501 struct hpi_message hm;
502 struct hpi_response hr;
503 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
504 HPI_OSTREAM_GET_INFO);
505 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
506 return HPI_ERROR_INVALID_HANDLE;
508 hpi_send_recv(&hm, &hr);
510 if (pw_state)
511 *pw_state = hr.u.d.u.stream_info.state;
512 if (pbuffer_size)
513 *pbuffer_size = hr.u.d.u.stream_info.buffer_size;
514 if (pdata_to_play)
515 *pdata_to_play = hr.u.d.u.stream_info.data_available;
516 if (psamples_played)
517 *psamples_played = hr.u.d.u.stream_info.samples_transferred;
518 if (pauxiliary_data_to_play)
519 *pauxiliary_data_to_play =
520 hr.u.d.u.stream_info.auxiliary_data_available;
521 return hr.error;
524 u16 hpi_outstream_write_buf(u32 h_outstream, const u8 *pb_data,
525 u32 bytes_to_write, const struct hpi_format *p_format)
527 struct hpi_message hm;
528 struct hpi_response hr;
529 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
530 HPI_OSTREAM_WRITE);
531 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
532 return HPI_ERROR_INVALID_HANDLE;
533 hm.u.d.u.data.pb_data = (u8 *)pb_data;
534 hm.u.d.u.data.data_size = bytes_to_write;
536 hpi_format_to_msg(&hm.u.d.u.data.format, p_format);
538 hpi_send_recv(&hm, &hr);
540 return hr.error;
543 u16 hpi_outstream_start(u32 h_outstream)
545 struct hpi_message hm;
546 struct hpi_response hr;
547 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
548 HPI_OSTREAM_START);
549 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
550 return HPI_ERROR_INVALID_HANDLE;
552 hpi_send_recv(&hm, &hr);
554 return hr.error;
557 u16 hpi_outstream_wait_start(u32 h_outstream)
559 struct hpi_message hm;
560 struct hpi_response hr;
561 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
562 HPI_OSTREAM_WAIT_START);
563 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
564 return HPI_ERROR_INVALID_HANDLE;
566 hpi_send_recv(&hm, &hr);
568 return hr.error;
571 u16 hpi_outstream_stop(u32 h_outstream)
573 struct hpi_message hm;
574 struct hpi_response hr;
575 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
576 HPI_OSTREAM_STOP);
577 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
578 return HPI_ERROR_INVALID_HANDLE;
580 hpi_send_recv(&hm, &hr);
582 return hr.error;
585 u16 hpi_outstream_sinegen(u32 h_outstream)
587 struct hpi_message hm;
588 struct hpi_response hr;
589 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
590 HPI_OSTREAM_SINEGEN);
591 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
592 return HPI_ERROR_INVALID_HANDLE;
594 hpi_send_recv(&hm, &hr);
596 return hr.error;
599 u16 hpi_outstream_reset(u32 h_outstream)
601 struct hpi_message hm;
602 struct hpi_response hr;
603 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
604 HPI_OSTREAM_RESET);
605 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
606 return HPI_ERROR_INVALID_HANDLE;
608 hpi_send_recv(&hm, &hr);
610 return hr.error;
613 u16 hpi_outstream_query_format(u32 h_outstream, struct hpi_format *p_format)
615 struct hpi_message hm;
616 struct hpi_response hr;
618 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
619 HPI_OSTREAM_QUERY_FORMAT);
620 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
621 return HPI_ERROR_INVALID_HANDLE;
623 hpi_format_to_msg(&hm.u.d.u.data.format, p_format);
625 hpi_send_recv(&hm, &hr);
627 return hr.error;
630 u16 hpi_outstream_set_format(u32 h_outstream, struct hpi_format *p_format)
632 struct hpi_message hm;
633 struct hpi_response hr;
635 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
636 HPI_OSTREAM_SET_FORMAT);
637 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
638 return HPI_ERROR_INVALID_HANDLE;
640 hpi_format_to_msg(&hm.u.d.u.data.format, p_format);
642 hpi_send_recv(&hm, &hr);
644 return hr.error;
647 u16 hpi_outstream_set_velocity(u32 h_outstream, short velocity)
649 struct hpi_message hm;
650 struct hpi_response hr;
652 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
653 HPI_OSTREAM_SET_VELOCITY);
654 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
655 return HPI_ERROR_INVALID_HANDLE;
656 hm.u.d.u.velocity = velocity;
658 hpi_send_recv(&hm, &hr);
660 return hr.error;
663 u16 hpi_outstream_set_punch_in_out(u32 h_outstream, u32 punch_in_sample,
664 u32 punch_out_sample)
666 struct hpi_message hm;
667 struct hpi_response hr;
669 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
670 HPI_OSTREAM_SET_PUNCHINOUT);
671 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
672 return HPI_ERROR_INVALID_HANDLE;
674 hm.u.d.u.pio.punch_in_sample = punch_in_sample;
675 hm.u.d.u.pio.punch_out_sample = punch_out_sample;
677 hpi_send_recv(&hm, &hr);
679 return hr.error;
682 u16 hpi_outstream_ancillary_reset(u32 h_outstream, u16 mode)
684 struct hpi_message hm;
685 struct hpi_response hr;
687 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
688 HPI_OSTREAM_ANC_RESET);
689 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
690 return HPI_ERROR_INVALID_HANDLE;
691 hm.u.d.u.data.format.channels = mode;
692 hpi_send_recv(&hm, &hr);
693 return hr.error;
696 u16 hpi_outstream_ancillary_get_info(u32 h_outstream, u32 *pframes_available)
698 struct hpi_message hm;
699 struct hpi_response hr;
701 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
702 HPI_OSTREAM_ANC_GET_INFO);
703 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
704 return HPI_ERROR_INVALID_HANDLE;
705 hpi_send_recv(&hm, &hr);
706 if (hr.error == 0) {
707 if (pframes_available)
708 *pframes_available =
709 hr.u.d.u.stream_info.data_available /
710 sizeof(struct hpi_anc_frame);
712 return hr.error;
715 u16 hpi_outstream_ancillary_read(u32 h_outstream,
716 struct hpi_anc_frame *p_anc_frame_buffer,
717 u32 anc_frame_buffer_size_in_bytes,
718 u32 number_of_ancillary_frames_to_read)
720 struct hpi_message hm;
721 struct hpi_response hr;
723 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
724 HPI_OSTREAM_ANC_READ);
725 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
726 return HPI_ERROR_INVALID_HANDLE;
727 hm.u.d.u.data.pb_data = (u8 *)p_anc_frame_buffer;
728 hm.u.d.u.data.data_size =
729 number_of_ancillary_frames_to_read *
730 sizeof(struct hpi_anc_frame);
731 if (hm.u.d.u.data.data_size <= anc_frame_buffer_size_in_bytes)
732 hpi_send_recv(&hm, &hr);
733 else
734 hr.error = HPI_ERROR_INVALID_DATASIZE;
735 return hr.error;
738 u16 hpi_outstream_set_time_scale(u32 h_outstream, u32 time_scale)
740 struct hpi_message hm;
741 struct hpi_response hr;
743 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
744 HPI_OSTREAM_SET_TIMESCALE);
745 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
746 return HPI_ERROR_INVALID_HANDLE;
748 hm.u.d.u.time_scale = time_scale;
750 hpi_send_recv(&hm, &hr);
752 return hr.error;
755 u16 hpi_outstream_host_buffer_allocate(u32 h_outstream, u32 size_in_bytes)
757 struct hpi_message hm;
758 struct hpi_response hr;
760 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
761 HPI_OSTREAM_HOSTBUFFER_ALLOC);
762 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
763 return HPI_ERROR_INVALID_HANDLE;
764 hm.u.d.u.data.data_size = size_in_bytes;
765 hpi_send_recv(&hm, &hr);
766 return hr.error;
769 u16 hpi_outstream_host_buffer_get_info(u32 h_outstream, u8 **pp_buffer,
770 struct hpi_hostbuffer_status **pp_status)
772 struct hpi_message hm;
773 struct hpi_response hr;
775 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
776 HPI_OSTREAM_HOSTBUFFER_GET_INFO);
777 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
778 return HPI_ERROR_INVALID_HANDLE;
779 hpi_send_recv(&hm, &hr);
781 if (hr.error == 0) {
782 if (pp_buffer)
783 *pp_buffer = hr.u.d.u.hostbuffer_info.p_buffer;
784 if (pp_status)
785 *pp_status = hr.u.d.u.hostbuffer_info.p_status;
787 return hr.error;
790 u16 hpi_outstream_host_buffer_free(u32 h_outstream)
792 struct hpi_message hm;
793 struct hpi_response hr;
795 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
796 HPI_OSTREAM_HOSTBUFFER_FREE);
797 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
798 return HPI_ERROR_INVALID_HANDLE;
799 hpi_send_recv(&hm, &hr);
800 return hr.error;
803 u16 hpi_outstream_group_add(u32 h_outstream, u32 h_stream)
805 struct hpi_message hm;
806 struct hpi_response hr;
807 u16 adapter;
808 char c_obj_type;
810 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
811 HPI_OSTREAM_GROUP_ADD);
813 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
814 return HPI_ERROR_INVALID_HANDLE;
816 if (hpi_handle_indexes(h_stream, &adapter,
817 &hm.u.d.u.stream.stream_index))
818 return HPI_ERROR_INVALID_HANDLE;
820 c_obj_type = hpi_handle_object(h_stream);
821 switch (c_obj_type) {
822 case HPI_OBJ_OSTREAM:
823 case HPI_OBJ_ISTREAM:
824 hm.u.d.u.stream.object_type = c_obj_type;
825 break;
826 default:
827 return HPI_ERROR_INVALID_OBJ;
829 if (adapter != hm.adapter_index)
830 return HPI_ERROR_NO_INTERADAPTER_GROUPS;
832 hpi_send_recv(&hm, &hr);
833 return hr.error;
836 u16 hpi_outstream_group_get_map(u32 h_outstream, u32 *poutstream_map,
837 u32 *pinstream_map)
839 struct hpi_message hm;
840 struct hpi_response hr;
842 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
843 HPI_OSTREAM_GROUP_GETMAP);
844 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
845 return HPI_ERROR_INVALID_HANDLE;
846 hpi_send_recv(&hm, &hr);
848 if (poutstream_map)
849 *poutstream_map = hr.u.d.u.group_info.outstream_group_map;
850 if (pinstream_map)
851 *pinstream_map = hr.u.d.u.group_info.instream_group_map;
853 return hr.error;
856 u16 hpi_outstream_group_reset(u32 h_outstream)
858 struct hpi_message hm;
859 struct hpi_response hr;
861 hpi_init_message_response(&hm, &hr, HPI_OBJ_OSTREAM,
862 HPI_OSTREAM_GROUP_RESET);
863 if (hpi_handle_indexes(h_outstream, &hm.adapter_index, &hm.obj_index))
864 return HPI_ERROR_INVALID_HANDLE;
865 hpi_send_recv(&hm, &hr);
866 return hr.error;
869 u16 hpi_instream_open(u16 adapter_index, u16 instream_index, u32 *ph_instream)
871 struct hpi_message hm;
872 struct hpi_response hr;
874 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
875 HPI_ISTREAM_OPEN);
876 hm.adapter_index = adapter_index;
877 hm.obj_index = instream_index;
879 hpi_send_recv(&hm, &hr);
881 if (hr.error == 0)
882 *ph_instream =
883 hpi_indexes_to_handle(HPI_OBJ_ISTREAM, adapter_index,
884 instream_index);
885 else
886 *ph_instream = 0;
888 return hr.error;
891 u16 hpi_instream_close(u32 h_instream)
893 struct hpi_message hm;
894 struct hpi_response hr;
896 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
897 HPI_ISTREAM_HOSTBUFFER_FREE);
898 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
899 return HPI_ERROR_INVALID_HANDLE;
900 hpi_send_recv(&hm, &hr);
902 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
903 HPI_ISTREAM_GROUP_RESET);
904 hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index);
905 hpi_send_recv(&hm, &hr);
907 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
908 HPI_ISTREAM_CLOSE);
909 hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index);
910 hpi_send_recv(&hm, &hr);
912 return hr.error;
915 u16 hpi_instream_query_format(u32 h_instream,
916 const struct hpi_format *p_format)
918 struct hpi_message hm;
919 struct hpi_response hr;
921 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
922 HPI_ISTREAM_QUERY_FORMAT);
923 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
924 return HPI_ERROR_INVALID_HANDLE;
925 hpi_format_to_msg(&hm.u.d.u.data.format, p_format);
927 hpi_send_recv(&hm, &hr);
929 return hr.error;
932 u16 hpi_instream_set_format(u32 h_instream, const struct hpi_format *p_format)
934 struct hpi_message hm;
935 struct hpi_response hr;
937 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
938 HPI_ISTREAM_SET_FORMAT);
939 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
940 return HPI_ERROR_INVALID_HANDLE;
941 hpi_format_to_msg(&hm.u.d.u.data.format, p_format);
943 hpi_send_recv(&hm, &hr);
945 return hr.error;
948 u16 hpi_instream_read_buf(u32 h_instream, u8 *pb_data, u32 bytes_to_read)
950 struct hpi_message hm;
951 struct hpi_response hr;
953 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
954 HPI_ISTREAM_READ);
955 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
956 return HPI_ERROR_INVALID_HANDLE;
957 hm.u.d.u.data.data_size = bytes_to_read;
958 hm.u.d.u.data.pb_data = pb_data;
960 hpi_send_recv(&hm, &hr);
962 return hr.error;
965 u16 hpi_instream_start(u32 h_instream)
967 struct hpi_message hm;
968 struct hpi_response hr;
970 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
971 HPI_ISTREAM_START);
972 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
973 return HPI_ERROR_INVALID_HANDLE;
975 hpi_send_recv(&hm, &hr);
977 return hr.error;
980 u16 hpi_instream_wait_start(u32 h_instream)
982 struct hpi_message hm;
983 struct hpi_response hr;
985 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
986 HPI_ISTREAM_WAIT_START);
987 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
988 return HPI_ERROR_INVALID_HANDLE;
990 hpi_send_recv(&hm, &hr);
992 return hr.error;
995 u16 hpi_instream_stop(u32 h_instream)
997 struct hpi_message hm;
998 struct hpi_response hr;
1000 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
1001 HPI_ISTREAM_STOP);
1002 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
1003 return HPI_ERROR_INVALID_HANDLE;
1005 hpi_send_recv(&hm, &hr);
1007 return hr.error;
1010 u16 hpi_instream_reset(u32 h_instream)
1012 struct hpi_message hm;
1013 struct hpi_response hr;
1015 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
1016 HPI_ISTREAM_RESET);
1017 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
1018 return HPI_ERROR_INVALID_HANDLE;
1020 hpi_send_recv(&hm, &hr);
1022 return hr.error;
1025 u16 hpi_instream_get_info_ex(u32 h_instream, u16 *pw_state, u32 *pbuffer_size,
1026 u32 *pdata_recorded, u32 *psamples_recorded,
1027 u32 *pauxiliary_data_recorded)
1029 struct hpi_message hm;
1030 struct hpi_response hr;
1031 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
1032 HPI_ISTREAM_GET_INFO);
1033 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
1034 return HPI_ERROR_INVALID_HANDLE;
1036 hpi_send_recv(&hm, &hr);
1038 if (pw_state)
1039 *pw_state = hr.u.d.u.stream_info.state;
1040 if (pbuffer_size)
1041 *pbuffer_size = hr.u.d.u.stream_info.buffer_size;
1042 if (pdata_recorded)
1043 *pdata_recorded = hr.u.d.u.stream_info.data_available;
1044 if (psamples_recorded)
1045 *psamples_recorded = hr.u.d.u.stream_info.samples_transferred;
1046 if (pauxiliary_data_recorded)
1047 *pauxiliary_data_recorded =
1048 hr.u.d.u.stream_info.auxiliary_data_available;
1049 return hr.error;
1052 u16 hpi_instream_ancillary_reset(u32 h_instream, u16 bytes_per_frame,
1053 u16 mode, u16 alignment, u16 idle_bit)
1055 struct hpi_message hm;
1056 struct hpi_response hr;
1057 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
1058 HPI_ISTREAM_ANC_RESET);
1059 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
1060 return HPI_ERROR_INVALID_HANDLE;
1061 hm.u.d.u.data.format.attributes = bytes_per_frame;
1062 hm.u.d.u.data.format.format = (mode << 8) | (alignment & 0xff);
1063 hm.u.d.u.data.format.channels = idle_bit;
1064 hpi_send_recv(&hm, &hr);
1065 return hr.error;
1068 u16 hpi_instream_ancillary_get_info(u32 h_instream, u32 *pframe_space)
1070 struct hpi_message hm;
1071 struct hpi_response hr;
1072 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
1073 HPI_ISTREAM_ANC_GET_INFO);
1074 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
1075 return HPI_ERROR_INVALID_HANDLE;
1076 hpi_send_recv(&hm, &hr);
1077 if (pframe_space)
1078 *pframe_space =
1079 (hr.u.d.u.stream_info.buffer_size -
1080 hr.u.d.u.stream_info.data_available) /
1081 sizeof(struct hpi_anc_frame);
1082 return hr.error;
1085 u16 hpi_instream_ancillary_write(u32 h_instream,
1086 const struct hpi_anc_frame *p_anc_frame_buffer,
1087 u32 anc_frame_buffer_size_in_bytes,
1088 u32 number_of_ancillary_frames_to_write)
1090 struct hpi_message hm;
1091 struct hpi_response hr;
1093 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
1094 HPI_ISTREAM_ANC_WRITE);
1095 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
1096 return HPI_ERROR_INVALID_HANDLE;
1097 hm.u.d.u.data.pb_data = (u8 *)p_anc_frame_buffer;
1098 hm.u.d.u.data.data_size =
1099 number_of_ancillary_frames_to_write *
1100 sizeof(struct hpi_anc_frame);
1101 if (hm.u.d.u.data.data_size <= anc_frame_buffer_size_in_bytes)
1102 hpi_send_recv(&hm, &hr);
1103 else
1104 hr.error = HPI_ERROR_INVALID_DATASIZE;
1105 return hr.error;
1108 u16 hpi_instream_host_buffer_allocate(u32 h_instream, u32 size_in_bytes)
1111 struct hpi_message hm;
1112 struct hpi_response hr;
1114 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
1115 HPI_ISTREAM_HOSTBUFFER_ALLOC);
1116 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
1117 return HPI_ERROR_INVALID_HANDLE;
1118 hm.u.d.u.data.data_size = size_in_bytes;
1119 hpi_send_recv(&hm, &hr);
1120 return hr.error;
1123 u16 hpi_instream_host_buffer_get_info(u32 h_instream, u8 **pp_buffer,
1124 struct hpi_hostbuffer_status **pp_status)
1126 struct hpi_message hm;
1127 struct hpi_response hr;
1129 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
1130 HPI_ISTREAM_HOSTBUFFER_GET_INFO);
1131 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
1132 return HPI_ERROR_INVALID_HANDLE;
1133 hpi_send_recv(&hm, &hr);
1135 if (hr.error == 0) {
1136 if (pp_buffer)
1137 *pp_buffer = hr.u.d.u.hostbuffer_info.p_buffer;
1138 if (pp_status)
1139 *pp_status = hr.u.d.u.hostbuffer_info.p_status;
1141 return hr.error;
1144 u16 hpi_instream_host_buffer_free(u32 h_instream)
1147 struct hpi_message hm;
1148 struct hpi_response hr;
1150 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
1151 HPI_ISTREAM_HOSTBUFFER_FREE);
1152 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
1153 return HPI_ERROR_INVALID_HANDLE;
1154 hpi_send_recv(&hm, &hr);
1155 return hr.error;
1158 u16 hpi_instream_group_add(u32 h_instream, u32 h_stream)
1160 struct hpi_message hm;
1161 struct hpi_response hr;
1162 u16 adapter;
1163 char c_obj_type;
1165 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
1166 HPI_ISTREAM_GROUP_ADD);
1167 hr.error = 0;
1169 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
1170 return HPI_ERROR_INVALID_HANDLE;
1172 if (hpi_handle_indexes(h_stream, &adapter,
1173 &hm.u.d.u.stream.stream_index))
1174 return HPI_ERROR_INVALID_HANDLE;
1176 c_obj_type = hpi_handle_object(h_stream);
1178 switch (c_obj_type) {
1179 case HPI_OBJ_OSTREAM:
1180 case HPI_OBJ_ISTREAM:
1181 hm.u.d.u.stream.object_type = c_obj_type;
1182 break;
1183 default:
1184 return HPI_ERROR_INVALID_OBJ;
1187 if (adapter != hm.adapter_index)
1188 return HPI_ERROR_NO_INTERADAPTER_GROUPS;
1190 hpi_send_recv(&hm, &hr);
1191 return hr.error;
1194 u16 hpi_instream_group_get_map(u32 h_instream, u32 *poutstream_map,
1195 u32 *pinstream_map)
1197 struct hpi_message hm;
1198 struct hpi_response hr;
1200 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
1201 HPI_ISTREAM_HOSTBUFFER_FREE);
1202 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
1203 return HPI_ERROR_INVALID_HANDLE;
1204 hpi_send_recv(&hm, &hr);
1206 if (poutstream_map)
1207 *poutstream_map = hr.u.d.u.group_info.outstream_group_map;
1208 if (pinstream_map)
1209 *pinstream_map = hr.u.d.u.group_info.instream_group_map;
1211 return hr.error;
1214 u16 hpi_instream_group_reset(u32 h_instream)
1216 struct hpi_message hm;
1217 struct hpi_response hr;
1219 hpi_init_message_response(&hm, &hr, HPI_OBJ_ISTREAM,
1220 HPI_ISTREAM_GROUP_RESET);
1221 if (hpi_handle_indexes(h_instream, &hm.adapter_index, &hm.obj_index))
1222 return HPI_ERROR_INVALID_HANDLE;
1223 hpi_send_recv(&hm, &hr);
1224 return hr.error;
1227 u16 hpi_mixer_open(u16 adapter_index, u32 *ph_mixer)
1229 struct hpi_message hm;
1230 struct hpi_response hr;
1231 hpi_init_message_response(&hm, &hr, HPI_OBJ_MIXER, HPI_MIXER_OPEN);
1232 hm.adapter_index = adapter_index;
1234 hpi_send_recv(&hm, &hr);
1236 if (hr.error == 0)
1237 *ph_mixer =
1238 hpi_indexes_to_handle(HPI_OBJ_MIXER, adapter_index,
1240 else
1241 *ph_mixer = 0;
1242 return hr.error;
1245 u16 hpi_mixer_close(u32 h_mixer)
1247 struct hpi_message hm;
1248 struct hpi_response hr;
1250 hpi_init_message_response(&hm, &hr, HPI_OBJ_MIXER, HPI_MIXER_CLOSE);
1251 if (hpi_handle_indexes(h_mixer, &hm.adapter_index, NULL))
1252 return HPI_ERROR_INVALID_HANDLE;
1254 hpi_send_recv(&hm, &hr);
1255 return hr.error;
1258 u16 hpi_mixer_get_control(u32 h_mixer, u16 src_node_type,
1259 u16 src_node_type_index, u16 dst_node_type, u16 dst_node_type_index,
1260 u16 control_type, u32 *ph_control)
1262 struct hpi_message hm;
1263 struct hpi_response hr;
1264 hpi_init_message_response(&hm, &hr, HPI_OBJ_MIXER,
1265 HPI_MIXER_GET_CONTROL);
1266 if (hpi_handle_indexes(h_mixer, &hm.adapter_index, NULL))
1267 return HPI_ERROR_INVALID_HANDLE;
1268 hm.u.m.node_type1 = src_node_type;
1269 hm.u.m.node_index1 = src_node_type_index;
1270 hm.u.m.node_type2 = dst_node_type;
1271 hm.u.m.node_index2 = dst_node_type_index;
1272 hm.u.m.control_type = control_type;
1274 hpi_send_recv(&hm, &hr);
1276 if (hr.error == 0)
1277 *ph_control =
1278 hpi_indexes_to_handle(HPI_OBJ_CONTROL,
1279 hm.adapter_index, hr.u.m.control_index);
1280 else
1281 *ph_control = 0;
1282 return hr.error;
1285 u16 hpi_mixer_get_control_by_index(u32 h_mixer, u16 control_index,
1286 u16 *pw_src_node_type, u16 *pw_src_node_index, u16 *pw_dst_node_type,
1287 u16 *pw_dst_node_index, u16 *pw_control_type, u32 *ph_control)
1289 struct hpi_message hm;
1290 struct hpi_response hr;
1291 hpi_init_message_response(&hm, &hr, HPI_OBJ_MIXER,
1292 HPI_MIXER_GET_CONTROL_BY_INDEX);
1293 if (hpi_handle_indexes(h_mixer, &hm.adapter_index, NULL))
1294 return HPI_ERROR_INVALID_HANDLE;
1295 hm.u.m.control_index = control_index;
1296 hpi_send_recv(&hm, &hr);
1298 if (pw_src_node_type) {
1299 *pw_src_node_type =
1300 hr.u.m.src_node_type + HPI_SOURCENODE_NONE;
1301 *pw_src_node_index = hr.u.m.src_node_index;
1302 *pw_dst_node_type = hr.u.m.dst_node_type + HPI_DESTNODE_NONE;
1303 *pw_dst_node_index = hr.u.m.dst_node_index;
1305 if (pw_control_type)
1306 *pw_control_type = hr.u.m.control_index;
1308 if (ph_control) {
1309 if (hr.error == 0)
1310 *ph_control =
1311 hpi_indexes_to_handle(HPI_OBJ_CONTROL,
1312 hm.adapter_index, control_index);
1313 else
1314 *ph_control = 0;
1316 return hr.error;
1319 u16 hpi_mixer_store(u32 h_mixer, enum HPI_MIXER_STORE_COMMAND command,
1320 u16 index)
1322 struct hpi_message hm;
1323 struct hpi_response hr;
1324 hpi_init_message_response(&hm, &hr, HPI_OBJ_MIXER, HPI_MIXER_STORE);
1325 if (hpi_handle_indexes(h_mixer, &hm.adapter_index, NULL))
1326 return HPI_ERROR_INVALID_HANDLE;
1327 hm.u.mx.store.command = command;
1328 hm.u.mx.store.index = index;
1329 hpi_send_recv(&hm, &hr);
1330 return hr.error;
1333 static
1334 u16 hpi_control_param_set(const u32 h_control, const u16 attrib,
1335 const u32 param1, const u32 param2)
1337 struct hpi_message hm;
1338 struct hpi_response hr;
1340 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
1341 HPI_CONTROL_SET_STATE);
1342 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
1343 return HPI_ERROR_INVALID_HANDLE;
1344 hm.u.c.attribute = attrib;
1345 hm.u.c.param1 = param1;
1346 hm.u.c.param2 = param2;
1347 hpi_send_recv(&hm, &hr);
1348 return hr.error;
1351 static u16 hpi_control_log_set2(u32 h_control, u16 attrib, short sv0,
1352 short sv1)
1354 struct hpi_message hm;
1355 struct hpi_response hr;
1357 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
1358 HPI_CONTROL_SET_STATE);
1359 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
1360 return HPI_ERROR_INVALID_HANDLE;
1361 hm.u.c.attribute = attrib;
1362 hm.u.c.an_log_value[0] = sv0;
1363 hm.u.c.an_log_value[1] = sv1;
1364 hpi_send_recv(&hm, &hr);
1365 return hr.error;
1368 static
1369 u16 hpi_control_param_get(const u32 h_control, const u16 attrib, u32 param1,
1370 u32 param2, u32 *pparam1, u32 *pparam2)
1372 struct hpi_message hm;
1373 struct hpi_response hr;
1375 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
1376 HPI_CONTROL_GET_STATE);
1377 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
1378 return HPI_ERROR_INVALID_HANDLE;
1379 hm.u.c.attribute = attrib;
1380 hm.u.c.param1 = param1;
1381 hm.u.c.param2 = param2;
1382 hpi_send_recv(&hm, &hr);
1384 *pparam1 = hr.u.c.param1;
1385 if (pparam2)
1386 *pparam2 = hr.u.c.param2;
1388 return hr.error;
1391 #define hpi_control_param1_get(h, a, p1) \
1392 hpi_control_param_get(h, a, 0, 0, p1, NULL)
1393 #define hpi_control_param2_get(h, a, p1, p2) \
1394 hpi_control_param_get(h, a, 0, 0, p1, p2)
1396 static u16 hpi_control_log_get2(u32 h_control, u16 attrib, short *sv0,
1397 short *sv1)
1399 struct hpi_message hm;
1400 struct hpi_response hr;
1401 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
1402 HPI_CONTROL_GET_STATE);
1403 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
1404 return HPI_ERROR_INVALID_HANDLE;
1405 hm.u.c.attribute = attrib;
1407 hpi_send_recv(&hm, &hr);
1408 *sv0 = hr.u.c.an_log_value[0];
1409 if (sv1)
1410 *sv1 = hr.u.c.an_log_value[1];
1411 return hr.error;
1414 static
1415 u16 hpi_control_query(const u32 h_control, const u16 attrib, const u32 index,
1416 const u32 param, u32 *psetting)
1418 struct hpi_message hm;
1419 struct hpi_response hr;
1421 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
1422 HPI_CONTROL_GET_INFO);
1423 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
1424 return HPI_ERROR_INVALID_HANDLE;
1426 hm.u.c.attribute = attrib;
1427 hm.u.c.param1 = index;
1428 hm.u.c.param2 = param;
1430 hpi_send_recv(&hm, &hr);
1431 *psetting = hr.u.c.param1;
1433 return hr.error;
1436 static u16 hpi_control_get_string(const u32 h_control, const u16 attribute,
1437 char *psz_string, const u32 string_length)
1439 unsigned int sub_string_index = 0, j = 0;
1440 char c = 0;
1441 unsigned int n = 0;
1442 u16 err = 0;
1444 if ((string_length < 1) || (string_length > 256))
1445 return HPI_ERROR_INVALID_CONTROL_VALUE;
1446 for (sub_string_index = 0; sub_string_index < string_length;
1447 sub_string_index += 8) {
1448 struct hpi_message hm;
1449 struct hpi_response hr;
1451 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
1452 HPI_CONTROL_GET_STATE);
1453 if (hpi_handle_indexes(h_control, &hm.adapter_index,
1454 &hm.obj_index))
1455 return HPI_ERROR_INVALID_HANDLE;
1456 hm.u.c.attribute = attribute;
1457 hm.u.c.param1 = sub_string_index;
1458 hm.u.c.param2 = 0;
1459 hpi_send_recv(&hm, &hr);
1461 if (sub_string_index == 0
1462 && (hr.u.cu.chars8.remaining_chars + 8) >
1463 string_length)
1464 return HPI_ERROR_INVALID_CONTROL_VALUE;
1466 if (hr.error) {
1467 err = hr.error;
1468 break;
1470 for (j = 0; j < 8; j++) {
1471 c = hr.u.cu.chars8.sz_data[j];
1472 psz_string[sub_string_index + j] = c;
1473 n++;
1474 if (n >= string_length) {
1475 psz_string[string_length - 1] = 0;
1476 err = HPI_ERROR_INVALID_CONTROL_VALUE;
1477 break;
1479 if (c == 0)
1480 break;
1483 if ((hr.u.cu.chars8.remaining_chars == 0)
1484 && ((sub_string_index + j) < string_length)
1485 && (c != 0)) {
1486 c = 0;
1487 psz_string[sub_string_index + j] = c;
1489 if (c == 0)
1490 break;
1492 return err;
1495 u16 hpi_aesebu_receiver_query_format(const u32 h_aes_rx, const u32 index,
1496 u16 *pw_format)
1498 u32 qr;
1499 u16 err;
1501 err = hpi_control_query(h_aes_rx, HPI_AESEBURX_FORMAT, index, 0, &qr);
1502 *pw_format = (u16)qr;
1503 return err;
1506 u16 hpi_aesebu_receiver_set_format(u32 h_control, u16 format)
1508 return hpi_control_param_set(h_control, HPI_AESEBURX_FORMAT, format,
1512 u16 hpi_aesebu_receiver_get_format(u32 h_control, u16 *pw_format)
1514 u16 err;
1515 u32 param;
1517 err = hpi_control_param1_get(h_control, HPI_AESEBURX_FORMAT, &param);
1518 if (!err && pw_format)
1519 *pw_format = (u16)param;
1521 return err;
1524 u16 hpi_aesebu_receiver_get_sample_rate(u32 h_control, u32 *psample_rate)
1526 return hpi_control_param1_get(h_control, HPI_AESEBURX_SAMPLERATE,
1527 psample_rate);
1530 u16 hpi_aesebu_receiver_get_user_data(u32 h_control, u16 index, u16 *pw_data)
1532 struct hpi_message hm;
1533 struct hpi_response hr;
1534 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
1535 HPI_CONTROL_GET_STATE);
1536 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
1537 return HPI_ERROR_INVALID_HANDLE;
1538 hm.u.c.attribute = HPI_AESEBURX_USERDATA;
1539 hm.u.c.param1 = index;
1541 hpi_send_recv(&hm, &hr);
1543 if (pw_data)
1544 *pw_data = (u16)hr.u.c.param2;
1545 return hr.error;
1548 u16 hpi_aesebu_receiver_get_channel_status(u32 h_control, u16 index,
1549 u16 *pw_data)
1551 struct hpi_message hm;
1552 struct hpi_response hr;
1553 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
1554 HPI_CONTROL_GET_STATE);
1555 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
1556 return HPI_ERROR_INVALID_HANDLE;
1557 hm.u.c.attribute = HPI_AESEBURX_CHANNELSTATUS;
1558 hm.u.c.param1 = index;
1560 hpi_send_recv(&hm, &hr);
1562 if (pw_data)
1563 *pw_data = (u16)hr.u.c.param2;
1564 return hr.error;
1567 u16 hpi_aesebu_receiver_get_error_status(u32 h_control, u16 *pw_error_data)
1569 u32 error_data = 0;
1570 u16 err = 0;
1572 err = hpi_control_param1_get(h_control, HPI_AESEBURX_ERRORSTATUS,
1573 &error_data);
1574 if (pw_error_data)
1575 *pw_error_data = (u16)error_data;
1576 return err;
1579 u16 hpi_aesebu_transmitter_set_sample_rate(u32 h_control, u32 sample_rate)
1581 return hpi_control_param_set(h_control, HPI_AESEBUTX_SAMPLERATE,
1582 sample_rate, 0);
1585 u16 hpi_aesebu_transmitter_set_user_data(u32 h_control, u16 index, u16 data)
1587 return hpi_control_param_set(h_control, HPI_AESEBUTX_USERDATA, index,
1588 data);
1591 u16 hpi_aesebu_transmitter_set_channel_status(u32 h_control, u16 index,
1592 u16 data)
1594 return hpi_control_param_set(h_control, HPI_AESEBUTX_CHANNELSTATUS,
1595 index, data);
1598 u16 hpi_aesebu_transmitter_get_channel_status(u32 h_control, u16 index,
1599 u16 *pw_data)
1601 return HPI_ERROR_INVALID_OPERATION;
1604 u16 hpi_aesebu_transmitter_query_format(const u32 h_aes_tx, const u32 index,
1605 u16 *pw_format)
1607 u32 qr;
1608 u16 err;
1610 err = hpi_control_query(h_aes_tx, HPI_AESEBUTX_FORMAT, index, 0, &qr);
1611 *pw_format = (u16)qr;
1612 return err;
1615 u16 hpi_aesebu_transmitter_set_format(u32 h_control, u16 output_format)
1617 return hpi_control_param_set(h_control, HPI_AESEBUTX_FORMAT,
1618 output_format, 0);
1621 u16 hpi_aesebu_transmitter_get_format(u32 h_control, u16 *pw_output_format)
1623 u16 err;
1624 u32 param;
1626 err = hpi_control_param1_get(h_control, HPI_AESEBUTX_FORMAT, &param);
1627 if (!err && pw_output_format)
1628 *pw_output_format = (u16)param;
1630 return err;
1633 u16 hpi_bitstream_set_clock_edge(u32 h_control, u16 edge_type)
1635 return hpi_control_param_set(h_control, HPI_BITSTREAM_CLOCK_EDGE,
1636 edge_type, 0);
1639 u16 hpi_bitstream_set_data_polarity(u32 h_control, u16 polarity)
1641 return hpi_control_param_set(h_control, HPI_BITSTREAM_DATA_POLARITY,
1642 polarity, 0);
1645 u16 hpi_bitstream_get_activity(u32 h_control, u16 *pw_clk_activity,
1646 u16 *pw_data_activity)
1648 struct hpi_message hm;
1649 struct hpi_response hr;
1650 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
1651 HPI_CONTROL_GET_STATE);
1652 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
1653 return HPI_ERROR_INVALID_HANDLE;
1654 hm.u.c.attribute = HPI_BITSTREAM_ACTIVITY;
1655 hpi_send_recv(&hm, &hr);
1656 if (pw_clk_activity)
1657 *pw_clk_activity = (u16)hr.u.c.param1;
1658 if (pw_data_activity)
1659 *pw_data_activity = (u16)hr.u.c.param2;
1660 return hr.error;
1663 u16 hpi_channel_mode_query_mode(const u32 h_mode, const u32 index,
1664 u16 *pw_mode)
1666 u32 qr;
1667 u16 err;
1669 err = hpi_control_query(h_mode, HPI_CHANNEL_MODE_MODE, index, 0, &qr);
1670 *pw_mode = (u16)qr;
1671 return err;
1674 u16 hpi_channel_mode_set(u32 h_control, u16 mode)
1676 return hpi_control_param_set(h_control, HPI_CHANNEL_MODE_MODE, mode,
1680 u16 hpi_channel_mode_get(u32 h_control, u16 *mode)
1682 u32 mode32 = 0;
1683 u16 err = hpi_control_param1_get(h_control,
1684 HPI_CHANNEL_MODE_MODE, &mode32);
1685 if (mode)
1686 *mode = (u16)mode32;
1687 return err;
1690 u16 hpi_cobranet_hmi_write(u32 h_control, u32 hmi_address, u32 byte_count,
1691 u8 *pb_data)
1693 struct hpi_message hm;
1694 struct hpi_response hr;
1696 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROLEX,
1697 HPI_CONTROL_SET_STATE);
1698 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
1699 return HPI_ERROR_INVALID_HANDLE;
1701 hm.u.cx.u.cobranet_data.byte_count = byte_count;
1702 hm.u.cx.u.cobranet_data.hmi_address = hmi_address;
1704 if (byte_count <= 8) {
1705 memcpy(hm.u.cx.u.cobranet_data.data, pb_data, byte_count);
1706 hm.u.cx.attribute = HPI_COBRANET_SET;
1707 } else {
1708 hm.u.cx.u.cobranet_bigdata.pb_data = pb_data;
1709 hm.u.cx.attribute = HPI_COBRANET_SET_DATA;
1712 hpi_send_recv(&hm, &hr);
1714 return hr.error;
1717 u16 hpi_cobranet_hmi_read(u32 h_control, u32 hmi_address, u32 max_byte_count,
1718 u32 *pbyte_count, u8 *pb_data)
1720 struct hpi_message hm;
1721 struct hpi_response hr;
1723 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROLEX,
1724 HPI_CONTROL_GET_STATE);
1725 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
1726 return HPI_ERROR_INVALID_HANDLE;
1728 hm.u.cx.u.cobranet_data.byte_count = max_byte_count;
1729 hm.u.cx.u.cobranet_data.hmi_address = hmi_address;
1731 if (max_byte_count <= 8) {
1732 hm.u.cx.attribute = HPI_COBRANET_GET;
1733 } else {
1734 hm.u.cx.u.cobranet_bigdata.pb_data = pb_data;
1735 hm.u.cx.attribute = HPI_COBRANET_GET_DATA;
1738 hpi_send_recv(&hm, &hr);
1739 if (!hr.error && pb_data) {
1741 *pbyte_count = hr.u.cx.u.cobranet_data.byte_count;
1743 if (*pbyte_count < max_byte_count)
1744 max_byte_count = *pbyte_count;
1746 if (hm.u.cx.attribute == HPI_COBRANET_GET) {
1747 memcpy(pb_data, hr.u.cx.u.cobranet_data.data,
1748 max_byte_count);
1749 } else {
1754 return hr.error;
1757 u16 hpi_cobranet_hmi_get_status(u32 h_control, u32 *pstatus,
1758 u32 *preadable_size, u32 *pwriteable_size)
1760 struct hpi_message hm;
1761 struct hpi_response hr;
1763 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROLEX,
1764 HPI_CONTROL_GET_STATE);
1765 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
1766 return HPI_ERROR_INVALID_HANDLE;
1768 hm.u.cx.attribute = HPI_COBRANET_GET_STATUS;
1770 hpi_send_recv(&hm, &hr);
1771 if (!hr.error) {
1772 if (pstatus)
1773 *pstatus = hr.u.cx.u.cobranet_status.status;
1774 if (preadable_size)
1775 *preadable_size =
1776 hr.u.cx.u.cobranet_status.readable_size;
1777 if (pwriteable_size)
1778 *pwriteable_size =
1779 hr.u.cx.u.cobranet_status.writeable_size;
1781 return hr.error;
1784 u16 hpi_cobranet_get_ip_address(u32 h_control, u32 *pdw_ip_address)
1786 u32 byte_count;
1787 u32 iP;
1788 u16 err;
1790 err = hpi_cobranet_hmi_read(h_control,
1791 HPI_COBRANET_HMI_cobra_ip_mon_currentIP, 4, &byte_count,
1792 (u8 *)&iP);
1794 *pdw_ip_address =
1795 ((iP & 0xff000000) >> 8) | ((iP & 0x00ff0000) << 8) | ((iP &
1796 0x0000ff00) >> 8) | ((iP & 0x000000ff) << 8);
1798 if (err)
1799 *pdw_ip_address = 0;
1801 return err;
1805 u16 hpi_cobranet_set_ip_address(u32 h_control, u32 dw_ip_address)
1807 u32 iP;
1808 u16 err;
1810 iP = ((dw_ip_address & 0xff000000) >> 8) | ((dw_ip_address &
1811 0x00ff0000) << 8) | ((dw_ip_address & 0x0000ff00) >>
1812 8) | ((dw_ip_address & 0x000000ff) << 8);
1814 err = hpi_cobranet_hmi_write(h_control,
1815 HPI_COBRANET_HMI_cobra_ip_mon_currentIP, 4, (u8 *)&iP);
1817 return err;
1821 u16 hpi_cobranet_get_static_ip_address(u32 h_control, u32 *pdw_ip_address)
1823 u32 byte_count;
1824 u32 iP;
1825 u16 err;
1826 err = hpi_cobranet_hmi_read(h_control,
1827 HPI_COBRANET_HMI_cobra_ip_mon_staticIP, 4, &byte_count,
1828 (u8 *)&iP);
1830 *pdw_ip_address =
1831 ((iP & 0xff000000) >> 8) | ((iP & 0x00ff0000) << 8) | ((iP &
1832 0x0000ff00) >> 8) | ((iP & 0x000000ff) << 8);
1834 if (err)
1835 *pdw_ip_address = 0;
1837 return err;
1841 u16 hpi_cobranet_set_static_ip_address(u32 h_control, u32 dw_ip_address)
1843 u32 iP;
1844 u16 err;
1846 iP = ((dw_ip_address & 0xff000000) >> 8) | ((dw_ip_address &
1847 0x00ff0000) << 8) | ((dw_ip_address & 0x0000ff00) >>
1848 8) | ((dw_ip_address & 0x000000ff) << 8);
1850 err = hpi_cobranet_hmi_write(h_control,
1851 HPI_COBRANET_HMI_cobra_ip_mon_staticIP, 4, (u8 *)&iP);
1853 return err;
1857 u16 hpi_cobranet_get_macaddress(u32 h_control, u32 *p_mac_msbs,
1858 u32 *p_mac_lsbs)
1860 u32 byte_count;
1861 u16 err;
1862 u32 mac;
1864 err = hpi_cobranet_hmi_read(h_control,
1865 HPI_COBRANET_HMI_cobra_if_phy_address, 4, &byte_count,
1866 (u8 *)&mac);
1868 if (!err) {
1869 *p_mac_msbs =
1870 ((mac & 0xff000000) >> 8) | ((mac & 0x00ff0000) << 8)
1871 | ((mac & 0x0000ff00) >> 8) | ((mac & 0x000000ff) <<
1874 err = hpi_cobranet_hmi_read(h_control,
1875 HPI_COBRANET_HMI_cobra_if_phy_address + 1, 4,
1876 &byte_count, (u8 *)&mac);
1879 if (!err) {
1880 *p_mac_lsbs =
1881 ((mac & 0xff000000) >> 8) | ((mac & 0x00ff0000) << 8)
1882 | ((mac & 0x0000ff00) >> 8) | ((mac & 0x000000ff) <<
1884 } else {
1885 *p_mac_msbs = 0;
1886 *p_mac_lsbs = 0;
1889 return err;
1892 u16 hpi_compander_set_enable(u32 h_control, u32 enable)
1894 return hpi_control_param_set(h_control, HPI_GENERIC_ENABLE, enable,
1898 u16 hpi_compander_get_enable(u32 h_control, u32 *enable)
1900 return hpi_control_param1_get(h_control, HPI_GENERIC_ENABLE, enable);
1903 u16 hpi_compander_set_makeup_gain(u32 h_control, short makeup_gain0_01dB)
1905 return hpi_control_log_set2(h_control, HPI_COMPANDER_MAKEUPGAIN,
1906 makeup_gain0_01dB, 0);
1909 u16 hpi_compander_get_makeup_gain(u32 h_control, short *makeup_gain0_01dB)
1911 return hpi_control_log_get2(h_control, HPI_COMPANDER_MAKEUPGAIN,
1912 makeup_gain0_01dB, NULL);
1915 u16 hpi_compander_set_attack_time_constant(u32 h_control, unsigned int index,
1916 u32 attack)
1918 return hpi_control_param_set(h_control, HPI_COMPANDER_ATTACK, attack,
1919 index);
1922 u16 hpi_compander_get_attack_time_constant(u32 h_control, unsigned int index,
1923 u32 *attack)
1925 return hpi_control_param_get(h_control, HPI_COMPANDER_ATTACK, 0,
1926 index, attack, NULL);
1929 u16 hpi_compander_set_decay_time_constant(u32 h_control, unsigned int index,
1930 u32 decay)
1932 return hpi_control_param_set(h_control, HPI_COMPANDER_DECAY, decay,
1933 index);
1936 u16 hpi_compander_get_decay_time_constant(u32 h_control, unsigned int index,
1937 u32 *decay)
1939 return hpi_control_param_get(h_control, HPI_COMPANDER_DECAY, 0, index,
1940 decay, NULL);
1944 u16 hpi_compander_set_threshold(u32 h_control, unsigned int index,
1945 short threshold0_01dB)
1947 struct hpi_message hm;
1948 struct hpi_response hr;
1950 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
1951 HPI_CONTROL_SET_STATE);
1952 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
1953 return HPI_ERROR_INVALID_HANDLE;
1954 hm.u.c.attribute = HPI_COMPANDER_THRESHOLD;
1955 hm.u.c.param2 = index;
1956 hm.u.c.an_log_value[0] = threshold0_01dB;
1958 hpi_send_recv(&hm, &hr);
1960 return hr.error;
1963 u16 hpi_compander_get_threshold(u32 h_control, unsigned int index,
1964 short *threshold0_01dB)
1966 struct hpi_message hm;
1967 struct hpi_response hr;
1969 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
1970 HPI_CONTROL_GET_STATE);
1971 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
1972 return HPI_ERROR_INVALID_HANDLE;
1973 hm.u.c.attribute = HPI_COMPANDER_THRESHOLD;
1974 hm.u.c.param2 = index;
1976 hpi_send_recv(&hm, &hr);
1977 *threshold0_01dB = hr.u.c.an_log_value[0];
1979 return hr.error;
1982 u16 hpi_compander_set_ratio(u32 h_control, u32 index, u32 ratio100)
1984 return hpi_control_param_set(h_control, HPI_COMPANDER_RATIO, ratio100,
1985 index);
1988 u16 hpi_compander_get_ratio(u32 h_control, u32 index, u32 *ratio100)
1990 return hpi_control_param_get(h_control, HPI_COMPANDER_RATIO, 0, index,
1991 ratio100, NULL);
1994 u16 hpi_level_query_range(u32 h_control, short *min_gain_01dB,
1995 short *max_gain_01dB, short *step_gain_01dB)
1997 struct hpi_message hm;
1998 struct hpi_response hr;
2000 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
2001 HPI_CONTROL_GET_STATE);
2002 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
2003 return HPI_ERROR_INVALID_HANDLE;
2004 hm.u.c.attribute = HPI_LEVEL_RANGE;
2006 hpi_send_recv(&hm, &hr);
2007 if (hr.error) {
2008 hr.u.c.an_log_value[0] = 0;
2009 hr.u.c.an_log_value[1] = 0;
2010 hr.u.c.param1 = 0;
2012 if (min_gain_01dB)
2013 *min_gain_01dB = hr.u.c.an_log_value[0];
2014 if (max_gain_01dB)
2015 *max_gain_01dB = hr.u.c.an_log_value[1];
2016 if (step_gain_01dB)
2017 *step_gain_01dB = (short)hr.u.c.param1;
2018 return hr.error;
2021 u16 hpi_level_set_gain(u32 h_control, short an_gain0_01dB[HPI_MAX_CHANNELS]
2024 return hpi_control_log_set2(h_control, HPI_LEVEL_GAIN,
2025 an_gain0_01dB[0], an_gain0_01dB[1]);
2028 u16 hpi_level_get_gain(u32 h_control, short an_gain0_01dB[HPI_MAX_CHANNELS]
2031 return hpi_control_log_get2(h_control, HPI_LEVEL_GAIN,
2032 &an_gain0_01dB[0], &an_gain0_01dB[1]);
2035 u16 hpi_meter_query_channels(const u32 h_meter, u32 *p_channels)
2037 return hpi_control_query(h_meter, HPI_METER_NUM_CHANNELS, 0, 0,
2038 p_channels);
2041 u16 hpi_meter_get_peak(u32 h_control, short an_peakdB[HPI_MAX_CHANNELS]
2044 short i = 0;
2046 struct hpi_message hm;
2047 struct hpi_response hr;
2049 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
2050 HPI_CONTROL_GET_STATE);
2051 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
2052 return HPI_ERROR_INVALID_HANDLE;
2053 hm.obj_index = hm.obj_index;
2054 hm.u.c.attribute = HPI_METER_PEAK;
2056 hpi_send_recv(&hm, &hr);
2058 if (!hr.error)
2059 memcpy(an_peakdB, hr.u.c.an_log_value,
2060 sizeof(short) * HPI_MAX_CHANNELS);
2061 else
2062 for (i = 0; i < HPI_MAX_CHANNELS; i++)
2063 an_peakdB[i] = HPI_METER_MINIMUM;
2064 return hr.error;
2067 u16 hpi_meter_get_rms(u32 h_control, short an_rmsdB[HPI_MAX_CHANNELS]
2070 short i = 0;
2072 struct hpi_message hm;
2073 struct hpi_response hr;
2075 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
2076 HPI_CONTROL_GET_STATE);
2077 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
2078 return HPI_ERROR_INVALID_HANDLE;
2079 hm.u.c.attribute = HPI_METER_RMS;
2081 hpi_send_recv(&hm, &hr);
2083 if (!hr.error)
2084 memcpy(an_rmsdB, hr.u.c.an_log_value,
2085 sizeof(short) * HPI_MAX_CHANNELS);
2086 else
2087 for (i = 0; i < HPI_MAX_CHANNELS; i++)
2088 an_rmsdB[i] = HPI_METER_MINIMUM;
2090 return hr.error;
2093 u16 hpi_meter_set_rms_ballistics(u32 h_control, u16 attack, u16 decay)
2095 return hpi_control_param_set(h_control, HPI_METER_RMS_BALLISTICS,
2096 attack, decay);
2099 u16 hpi_meter_get_rms_ballistics(u32 h_control, u16 *pn_attack, u16 *pn_decay)
2101 u32 attack;
2102 u32 decay;
2103 u16 error;
2105 error = hpi_control_param2_get(h_control, HPI_METER_RMS_BALLISTICS,
2106 &attack, &decay);
2108 if (pn_attack)
2109 *pn_attack = (unsigned short)attack;
2110 if (pn_decay)
2111 *pn_decay = (unsigned short)decay;
2113 return error;
2116 u16 hpi_meter_set_peak_ballistics(u32 h_control, u16 attack, u16 decay)
2118 return hpi_control_param_set(h_control, HPI_METER_PEAK_BALLISTICS,
2119 attack, decay);
2122 u16 hpi_meter_get_peak_ballistics(u32 h_control, u16 *pn_attack,
2123 u16 *pn_decay)
2125 u32 attack;
2126 u32 decay;
2127 u16 error;
2129 error = hpi_control_param2_get(h_control, HPI_METER_PEAK_BALLISTICS,
2130 &attack, &decay);
2132 if (pn_attack)
2133 *pn_attack = (short)attack;
2134 if (pn_decay)
2135 *pn_decay = (short)decay;
2137 return error;
2140 u16 hpi_microphone_set_phantom_power(u32 h_control, u16 on_off)
2142 return hpi_control_param_set(h_control, HPI_MICROPHONE_PHANTOM_POWER,
2143 (u32)on_off, 0);
2146 u16 hpi_microphone_get_phantom_power(u32 h_control, u16 *pw_on_off)
2148 u16 error = 0;
2149 u32 on_off = 0;
2150 error = hpi_control_param1_get(h_control,
2151 HPI_MICROPHONE_PHANTOM_POWER, &on_off);
2152 if (pw_on_off)
2153 *pw_on_off = (u16)on_off;
2154 return error;
2157 u16 hpi_multiplexer_set_source(u32 h_control, u16 source_node_type,
2158 u16 source_node_index)
2160 return hpi_control_param_set(h_control, HPI_MULTIPLEXER_SOURCE,
2161 source_node_type, source_node_index);
2164 u16 hpi_multiplexer_get_source(u32 h_control, u16 *source_node_type,
2165 u16 *source_node_index)
2167 u32 node, index;
2168 u16 err = hpi_control_param2_get(h_control,
2169 HPI_MULTIPLEXER_SOURCE, &node,
2170 &index);
2171 if (source_node_type)
2172 *source_node_type = (u16)node;
2173 if (source_node_index)
2174 *source_node_index = (u16)index;
2175 return err;
2178 u16 hpi_multiplexer_query_source(u32 h_control, u16 index,
2179 u16 *source_node_type, u16 *source_node_index)
2181 struct hpi_message hm;
2182 struct hpi_response hr;
2183 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
2184 HPI_CONTROL_GET_STATE);
2185 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
2186 return HPI_ERROR_INVALID_HANDLE;
2187 hm.u.c.attribute = HPI_MULTIPLEXER_QUERYSOURCE;
2188 hm.u.c.param1 = index;
2190 hpi_send_recv(&hm, &hr);
2192 if (source_node_type)
2193 *source_node_type = (u16)hr.u.c.param1;
2194 if (source_node_index)
2195 *source_node_index = (u16)hr.u.c.param2;
2196 return hr.error;
2199 u16 hpi_parametric_eq_get_info(u32 h_control, u16 *pw_number_of_bands,
2200 u16 *pw_on_off)
2202 u32 oB = 0;
2203 u32 oO = 0;
2204 u16 error = 0;
2206 error = hpi_control_param2_get(h_control, HPI_EQUALIZER_NUM_FILTERS,
2207 &oO, &oB);
2208 if (pw_number_of_bands)
2209 *pw_number_of_bands = (u16)oB;
2210 if (pw_on_off)
2211 *pw_on_off = (u16)oO;
2212 return error;
2215 u16 hpi_parametric_eq_set_state(u32 h_control, u16 on_off)
2217 return hpi_control_param_set(h_control, HPI_EQUALIZER_NUM_FILTERS,
2218 on_off, 0);
2221 u16 hpi_parametric_eq_get_band(u32 h_control, u16 index, u16 *pn_type,
2222 u32 *pfrequency_hz, short *pnQ100, short *pn_gain0_01dB)
2224 struct hpi_message hm;
2225 struct hpi_response hr;
2227 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
2228 HPI_CONTROL_GET_STATE);
2229 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
2230 return HPI_ERROR_INVALID_HANDLE;
2231 hm.u.c.attribute = HPI_EQUALIZER_FILTER;
2232 hm.u.c.param2 = index;
2234 hpi_send_recv(&hm, &hr);
2236 if (pfrequency_hz)
2237 *pfrequency_hz = hr.u.c.param1;
2238 if (pn_type)
2239 *pn_type = (u16)(hr.u.c.param2 >> 16);
2240 if (pnQ100)
2241 *pnQ100 = hr.u.c.an_log_value[1];
2242 if (pn_gain0_01dB)
2243 *pn_gain0_01dB = hr.u.c.an_log_value[0];
2245 return hr.error;
2248 u16 hpi_parametric_eq_set_band(u32 h_control, u16 index, u16 type,
2249 u32 frequency_hz, short q100, short gain0_01dB)
2251 struct hpi_message hm;
2252 struct hpi_response hr;
2254 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
2255 HPI_CONTROL_SET_STATE);
2256 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
2257 return HPI_ERROR_INVALID_HANDLE;
2259 hm.u.c.param1 = frequency_hz;
2260 hm.u.c.param2 = (index & 0xFFFFL) + ((u32)type << 16);
2261 hm.u.c.an_log_value[0] = gain0_01dB;
2262 hm.u.c.an_log_value[1] = q100;
2263 hm.u.c.attribute = HPI_EQUALIZER_FILTER;
2265 hpi_send_recv(&hm, &hr);
2267 return hr.error;
2270 u16 hpi_parametric_eq_get_coeffs(u32 h_control, u16 index, short coeffs[5]
2273 struct hpi_message hm;
2274 struct hpi_response hr;
2276 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
2277 HPI_CONTROL_GET_STATE);
2278 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
2279 return HPI_ERROR_INVALID_HANDLE;
2280 hm.u.c.attribute = HPI_EQUALIZER_COEFFICIENTS;
2281 hm.u.c.param2 = index;
2283 hpi_send_recv(&hm, &hr);
2285 coeffs[0] = (short)hr.u.c.an_log_value[0];
2286 coeffs[1] = (short)hr.u.c.an_log_value[1];
2287 coeffs[2] = (short)hr.u.c.param1;
2288 coeffs[3] = (short)(hr.u.c.param1 >> 16);
2289 coeffs[4] = (short)hr.u.c.param2;
2291 return hr.error;
2294 u16 hpi_sample_clock_query_source(const u32 h_clock, const u32 index,
2295 u16 *pw_source)
2297 u32 qr;
2298 u16 err;
2300 err = hpi_control_query(h_clock, HPI_SAMPLECLOCK_SOURCE, index, 0,
2301 &qr);
2302 *pw_source = (u16)qr;
2303 return err;
2306 u16 hpi_sample_clock_set_source(u32 h_control, u16 source)
2308 return hpi_control_param_set(h_control, HPI_SAMPLECLOCK_SOURCE,
2309 source, 0);
2312 u16 hpi_sample_clock_get_source(u32 h_control, u16 *pw_source)
2314 u16 err = 0;
2315 u32 source = 0;
2316 err = hpi_control_param1_get(h_control, HPI_SAMPLECLOCK_SOURCE,
2317 &source);
2318 if (!err)
2319 if (pw_source)
2320 *pw_source = (u16)source;
2321 return err;
2324 u16 hpi_sample_clock_query_source_index(const u32 h_clock, const u32 index,
2325 const u32 source, u16 *pw_source_index)
2327 u32 qr;
2328 u16 err;
2330 err = hpi_control_query(h_clock, HPI_SAMPLECLOCK_SOURCE_INDEX, index,
2331 source, &qr);
2332 *pw_source_index = (u16)qr;
2333 return err;
2336 u16 hpi_sample_clock_set_source_index(u32 h_control, u16 source_index)
2338 return hpi_control_param_set(h_control, HPI_SAMPLECLOCK_SOURCE_INDEX,
2339 source_index, 0);
2342 u16 hpi_sample_clock_get_source_index(u32 h_control, u16 *pw_source_index)
2344 u16 err = 0;
2345 u32 source_index = 0;
2346 err = hpi_control_param1_get(h_control, HPI_SAMPLECLOCK_SOURCE_INDEX,
2347 &source_index);
2348 if (!err)
2349 if (pw_source_index)
2350 *pw_source_index = (u16)source_index;
2351 return err;
2354 u16 hpi_sample_clock_query_local_rate(const u32 h_clock, const u32 index,
2355 u32 *prate)
2357 u16 err;
2358 err = hpi_control_query(h_clock, HPI_SAMPLECLOCK_LOCAL_SAMPLERATE,
2359 index, 0, prate);
2361 return err;
2364 u16 hpi_sample_clock_set_local_rate(u32 h_control, u32 sample_rate)
2366 return hpi_control_param_set(h_control,
2367 HPI_SAMPLECLOCK_LOCAL_SAMPLERATE, sample_rate, 0);
2370 u16 hpi_sample_clock_get_local_rate(u32 h_control, u32 *psample_rate)
2372 u16 err = 0;
2373 u32 sample_rate = 0;
2374 err = hpi_control_param1_get(h_control,
2375 HPI_SAMPLECLOCK_LOCAL_SAMPLERATE, &sample_rate);
2376 if (!err)
2377 if (psample_rate)
2378 *psample_rate = sample_rate;
2379 return err;
2382 u16 hpi_sample_clock_get_sample_rate(u32 h_control, u32 *psample_rate)
2384 u16 err = 0;
2385 u32 sample_rate = 0;
2386 err = hpi_control_param1_get(h_control, HPI_SAMPLECLOCK_SAMPLERATE,
2387 &sample_rate);
2388 if (!err)
2389 if (psample_rate)
2390 *psample_rate = sample_rate;
2391 return err;
2394 u16 hpi_sample_clock_set_auto(u32 h_control, u32 enable)
2396 return hpi_control_param_set(h_control, HPI_SAMPLECLOCK_AUTO, enable,
2400 u16 hpi_sample_clock_get_auto(u32 h_control, u32 *penable)
2402 return hpi_control_param1_get(h_control, HPI_SAMPLECLOCK_AUTO,
2403 penable);
2406 u16 hpi_sample_clock_set_local_rate_lock(u32 h_control, u32 lock)
2408 return hpi_control_param_set(h_control, HPI_SAMPLECLOCK_LOCAL_LOCK,
2409 lock, 0);
2412 u16 hpi_sample_clock_get_local_rate_lock(u32 h_control, u32 *plock)
2414 return hpi_control_param1_get(h_control, HPI_SAMPLECLOCK_LOCAL_LOCK,
2415 plock);
2418 u16 hpi_tone_detector_get_frequency(u32 h_control, u32 index, u32 *frequency)
2420 return hpi_control_param_get(h_control, HPI_TONEDETECTOR_FREQUENCY,
2421 index, 0, frequency, NULL);
2424 u16 hpi_tone_detector_get_state(u32 h_control, u32 *state)
2426 return hpi_control_param1_get(h_control, HPI_TONEDETECTOR_STATE,
2427 state);
2430 u16 hpi_tone_detector_set_enable(u32 h_control, u32 enable)
2432 return hpi_control_param_set(h_control, HPI_GENERIC_ENABLE, enable,
2436 u16 hpi_tone_detector_get_enable(u32 h_control, u32 *enable)
2438 return hpi_control_param1_get(h_control, HPI_GENERIC_ENABLE, enable);
2441 u16 hpi_tone_detector_set_event_enable(u32 h_control, u32 event_enable)
2443 return hpi_control_param_set(h_control, HPI_GENERIC_EVENT_ENABLE,
2444 (u32)event_enable, 0);
2447 u16 hpi_tone_detector_get_event_enable(u32 h_control, u32 *event_enable)
2449 return hpi_control_param1_get(h_control, HPI_GENERIC_EVENT_ENABLE,
2450 event_enable);
2453 u16 hpi_tone_detector_set_threshold(u32 h_control, int threshold)
2455 return hpi_control_param_set(h_control, HPI_TONEDETECTOR_THRESHOLD,
2456 (u32)threshold, 0);
2459 u16 hpi_tone_detector_get_threshold(u32 h_control, int *threshold)
2461 return hpi_control_param1_get(h_control, HPI_TONEDETECTOR_THRESHOLD,
2462 (u32 *)threshold);
2465 u16 hpi_silence_detector_get_state(u32 h_control, u32 *state)
2467 return hpi_control_param1_get(h_control, HPI_SILENCEDETECTOR_STATE,
2468 state);
2471 u16 hpi_silence_detector_set_enable(u32 h_control, u32 enable)
2473 return hpi_control_param_set(h_control, HPI_GENERIC_ENABLE, enable,
2477 u16 hpi_silence_detector_get_enable(u32 h_control, u32 *enable)
2479 return hpi_control_param1_get(h_control, HPI_GENERIC_ENABLE, enable);
2482 u16 hpi_silence_detector_set_event_enable(u32 h_control, u32 event_enable)
2484 return hpi_control_param_set(h_control, HPI_GENERIC_EVENT_ENABLE,
2485 event_enable, 0);
2488 u16 hpi_silence_detector_get_event_enable(u32 h_control, u32 *event_enable)
2490 return hpi_control_param1_get(h_control, HPI_GENERIC_EVENT_ENABLE,
2491 event_enable);
2494 u16 hpi_silence_detector_set_delay(u32 h_control, u32 delay)
2496 return hpi_control_param_set(h_control, HPI_SILENCEDETECTOR_DELAY,
2497 delay, 0);
2500 u16 hpi_silence_detector_get_delay(u32 h_control, u32 *delay)
2502 return hpi_control_param1_get(h_control, HPI_SILENCEDETECTOR_DELAY,
2503 delay);
2506 u16 hpi_silence_detector_set_threshold(u32 h_control, int threshold)
2508 return hpi_control_param_set(h_control, HPI_SILENCEDETECTOR_THRESHOLD,
2509 threshold, 0);
2512 u16 hpi_silence_detector_get_threshold(u32 h_control, int *threshold)
2514 return hpi_control_param1_get(h_control,
2515 HPI_SILENCEDETECTOR_THRESHOLD, (u32 *)threshold);
2518 u16 hpi_tuner_query_band(const u32 h_tuner, const u32 index, u16 *pw_band)
2520 u32 qr;
2521 u16 err;
2523 err = hpi_control_query(h_tuner, HPI_TUNER_BAND, index, 0, &qr);
2524 *pw_band = (u16)qr;
2525 return err;
2528 u16 hpi_tuner_set_band(u32 h_control, u16 band)
2530 return hpi_control_param_set(h_control, HPI_TUNER_BAND, band, 0);
2533 u16 hpi_tuner_get_band(u32 h_control, u16 *pw_band)
2535 u32 band = 0;
2536 u16 error = 0;
2538 error = hpi_control_param1_get(h_control, HPI_TUNER_BAND, &band);
2539 if (pw_band)
2540 *pw_band = (u16)band;
2541 return error;
2544 u16 hpi_tuner_query_frequency(const u32 h_tuner, const u32 index,
2545 const u16 band, u32 *pfreq)
2547 return hpi_control_query(h_tuner, HPI_TUNER_FREQ, index, band, pfreq);
2550 u16 hpi_tuner_set_frequency(u32 h_control, u32 freq_ink_hz)
2552 return hpi_control_param_set(h_control, HPI_TUNER_FREQ, freq_ink_hz,
2556 u16 hpi_tuner_get_frequency(u32 h_control, u32 *pw_freq_ink_hz)
2558 return hpi_control_param1_get(h_control, HPI_TUNER_FREQ,
2559 pw_freq_ink_hz);
2562 u16 hpi_tuner_query_gain(const u32 h_tuner, const u32 index, u16 *pw_gain)
2564 u32 qr;
2565 u16 err;
2567 err = hpi_control_query(h_tuner, HPI_TUNER_BAND, index, 0, &qr);
2568 *pw_gain = (u16)qr;
2569 return err;
2572 u16 hpi_tuner_set_gain(u32 h_control, short gain)
2574 return hpi_control_param_set(h_control, HPI_TUNER_GAIN, gain, 0);
2577 u16 hpi_tuner_get_gain(u32 h_control, short *pn_gain)
2579 u32 gain = 0;
2580 u16 error = 0;
2582 error = hpi_control_param1_get(h_control, HPI_TUNER_GAIN, &gain);
2583 if (pn_gain)
2584 *pn_gain = (u16)gain;
2585 return error;
2588 u16 hpi_tuner_get_rf_level(u32 h_control, short *pw_level)
2590 struct hpi_message hm;
2591 struct hpi_response hr;
2593 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
2594 HPI_CONTROL_GET_STATE);
2595 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
2596 return HPI_ERROR_INVALID_HANDLE;
2597 hm.u.cu.attribute = HPI_TUNER_LEVEL_AVG;
2598 hpi_send_recv(&hm, &hr);
2599 if (pw_level)
2600 *pw_level = hr.u.cu.tuner.s_level;
2601 return hr.error;
2604 u16 hpi_tuner_get_raw_rf_level(u32 h_control, short *pw_level)
2606 struct hpi_message hm;
2607 struct hpi_response hr;
2609 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
2610 HPI_CONTROL_GET_STATE);
2611 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
2612 return HPI_ERROR_INVALID_HANDLE;
2613 hm.u.cu.attribute = HPI_TUNER_LEVEL_RAW;
2614 hpi_send_recv(&hm, &hr);
2615 if (pw_level)
2616 *pw_level = hr.u.cu.tuner.s_level;
2617 return hr.error;
2620 u16 hpi_tuner_query_deemphasis(const u32 h_tuner, const u32 index,
2621 const u16 band, u32 *pdeemphasis)
2623 return hpi_control_query(h_tuner, HPI_TUNER_DEEMPHASIS, index, band,
2624 pdeemphasis);
2627 u16 hpi_tuner_set_deemphasis(u32 h_control, u32 deemphasis)
2629 return hpi_control_param_set(h_control, HPI_TUNER_DEEMPHASIS,
2630 deemphasis, 0);
2633 u16 hpi_tuner_get_deemphasis(u32 h_control, u32 *pdeemphasis)
2635 return hpi_control_param1_get(h_control, HPI_TUNER_DEEMPHASIS,
2636 pdeemphasis);
2639 u16 hpi_tuner_query_program(const u32 h_tuner, u32 *pbitmap_program)
2641 return hpi_control_query(h_tuner, HPI_TUNER_PROGRAM, 0, 0,
2642 pbitmap_program);
2645 u16 hpi_tuner_set_program(u32 h_control, u32 program)
2647 return hpi_control_param_set(h_control, HPI_TUNER_PROGRAM, program,
2651 u16 hpi_tuner_get_program(u32 h_control, u32 *pprogram)
2653 return hpi_control_param1_get(h_control, HPI_TUNER_PROGRAM, pprogram);
2656 u16 hpi_tuner_get_hd_radio_dsp_version(u32 h_control, char *psz_dsp_version,
2657 const u32 string_size)
2659 return hpi_control_get_string(h_control,
2660 HPI_TUNER_HDRADIO_DSP_VERSION, psz_dsp_version, string_size);
2663 u16 hpi_tuner_get_hd_radio_sdk_version(u32 h_control, char *psz_sdk_version,
2664 const u32 string_size)
2666 return hpi_control_get_string(h_control,
2667 HPI_TUNER_HDRADIO_SDK_VERSION, psz_sdk_version, string_size);
2670 u16 hpi_tuner_get_status(u32 h_control, u16 *pw_status_mask, u16 *pw_status)
2672 u32 status = 0;
2673 u16 error = 0;
2675 error = hpi_control_param1_get(h_control, HPI_TUNER_STATUS, &status);
2676 if (pw_status) {
2677 if (!error) {
2678 *pw_status_mask = (u16)(status >> 16);
2679 *pw_status = (u16)(status & 0xFFFF);
2680 } else {
2681 *pw_status_mask = 0;
2682 *pw_status = 0;
2685 return error;
2688 u16 hpi_tuner_set_mode(u32 h_control, u32 mode, u32 value)
2690 return hpi_control_param_set(h_control, HPI_TUNER_MODE, mode, value);
2693 u16 hpi_tuner_get_mode(u32 h_control, u32 mode, u32 *pn_value)
2695 return hpi_control_param_get(h_control, HPI_TUNER_MODE, mode, 0,
2696 pn_value, NULL);
2699 u16 hpi_tuner_get_hd_radio_signal_quality(u32 h_control, u32 *pquality)
2701 return hpi_control_param1_get(h_control,
2702 HPI_TUNER_HDRADIO_SIGNAL_QUALITY, pquality);
2705 u16 hpi_tuner_get_hd_radio_signal_blend(u32 h_control, u32 *pblend)
2707 return hpi_control_param1_get(h_control, HPI_TUNER_HDRADIO_BLEND,
2708 pblend);
2711 u16 hpi_tuner_set_hd_radio_signal_blend(u32 h_control, const u32 blend)
2713 return hpi_control_param_set(h_control, HPI_TUNER_HDRADIO_BLEND,
2714 blend, 0);
2717 u16 hpi_tuner_get_rds(u32 h_control, char *p_data)
2719 struct hpi_message hm;
2720 struct hpi_response hr;
2722 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
2723 HPI_CONTROL_GET_STATE);
2724 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
2725 return HPI_ERROR_INVALID_HANDLE;
2726 hm.u.c.attribute = HPI_TUNER_RDS;
2727 hpi_send_recv(&hm, &hr);
2728 if (p_data) {
2729 *(u32 *)&p_data[0] = hr.u.cu.tuner.rds.data[0];
2730 *(u32 *)&p_data[4] = hr.u.cu.tuner.rds.data[1];
2731 *(u32 *)&p_data[8] = hr.u.cu.tuner.rds.bLER;
2733 return hr.error;
2736 u16 hpi_pad_get_channel_name(u32 h_control, char *psz_string,
2737 const u32 data_length)
2739 return hpi_control_get_string(h_control, HPI_PAD_CHANNEL_NAME,
2740 psz_string, data_length);
2743 u16 hpi_pad_get_artist(u32 h_control, char *psz_string, const u32 data_length)
2745 return hpi_control_get_string(h_control, HPI_PAD_ARTIST, psz_string,
2746 data_length);
2749 u16 hpi_pad_get_title(u32 h_control, char *psz_string, const u32 data_length)
2751 return hpi_control_get_string(h_control, HPI_PAD_TITLE, psz_string,
2752 data_length);
2755 u16 hpi_pad_get_comment(u32 h_control, char *psz_string,
2756 const u32 data_length)
2758 return hpi_control_get_string(h_control, HPI_PAD_COMMENT, psz_string,
2759 data_length);
2762 u16 hpi_pad_get_program_type(u32 h_control, u32 *ppTY)
2764 return hpi_control_param1_get(h_control, HPI_PAD_PROGRAM_TYPE, ppTY);
2767 u16 hpi_pad_get_rdsPI(u32 h_control, u32 *ppI)
2769 return hpi_control_param1_get(h_control, HPI_PAD_PROGRAM_ID, ppI);
2772 u16 hpi_volume_query_channels(const u32 h_volume, u32 *p_channels)
2774 return hpi_control_query(h_volume, HPI_VOLUME_NUM_CHANNELS, 0, 0,
2775 p_channels);
2778 u16 hpi_volume_set_gain(u32 h_control, short an_log_gain[HPI_MAX_CHANNELS]
2781 return hpi_control_log_set2(h_control, HPI_VOLUME_GAIN,
2782 an_log_gain[0], an_log_gain[1]);
2785 u16 hpi_volume_get_gain(u32 h_control, short an_log_gain[HPI_MAX_CHANNELS]
2788 return hpi_control_log_get2(h_control, HPI_VOLUME_GAIN,
2789 &an_log_gain[0], &an_log_gain[1]);
2792 u16 hpi_volume_set_mute(u32 h_control, u32 mute)
2794 return hpi_control_param_set(h_control, HPI_VOLUME_MUTE, mute, 0);
2797 u16 hpi_volume_get_mute(u32 h_control, u32 *mute)
2799 return hpi_control_param1_get(h_control, HPI_VOLUME_MUTE, mute);
2802 u16 hpi_volume_query_range(u32 h_control, short *min_gain_01dB,
2803 short *max_gain_01dB, short *step_gain_01dB)
2805 struct hpi_message hm;
2806 struct hpi_response hr;
2808 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
2809 HPI_CONTROL_GET_STATE);
2810 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
2811 return HPI_ERROR_INVALID_HANDLE;
2812 hm.u.c.attribute = HPI_VOLUME_RANGE;
2814 hpi_send_recv(&hm, &hr);
2815 if (hr.error) {
2816 hr.u.c.an_log_value[0] = 0;
2817 hr.u.c.an_log_value[1] = 0;
2818 hr.u.c.param1 = 0;
2820 if (min_gain_01dB)
2821 *min_gain_01dB = hr.u.c.an_log_value[0];
2822 if (max_gain_01dB)
2823 *max_gain_01dB = hr.u.c.an_log_value[1];
2824 if (step_gain_01dB)
2825 *step_gain_01dB = (short)hr.u.c.param1;
2826 return hr.error;
2829 u16 hpi_volume_auto_fade_profile(u32 h_control,
2830 short an_stop_gain0_01dB[HPI_MAX_CHANNELS], u32 duration_ms,
2831 u16 profile)
2833 struct hpi_message hm;
2834 struct hpi_response hr;
2836 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
2837 HPI_CONTROL_SET_STATE);
2838 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
2839 return HPI_ERROR_INVALID_HANDLE;
2841 memcpy(hm.u.c.an_log_value, an_stop_gain0_01dB,
2842 sizeof(short) * HPI_MAX_CHANNELS);
2844 hm.u.c.attribute = HPI_VOLUME_AUTOFADE;
2845 hm.u.c.param1 = duration_ms;
2846 hm.u.c.param2 = profile;
2848 hpi_send_recv(&hm, &hr);
2850 return hr.error;
2853 u16 hpi_volume_auto_fade(u32 h_control,
2854 short an_stop_gain0_01dB[HPI_MAX_CHANNELS], u32 duration_ms)
2856 return hpi_volume_auto_fade_profile(h_control, an_stop_gain0_01dB,
2857 duration_ms, HPI_VOLUME_AUTOFADE_LOG);
2860 u16 hpi_vox_set_threshold(u32 h_control, short an_gain0_01dB)
2862 struct hpi_message hm;
2863 struct hpi_response hr;
2864 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
2865 HPI_CONTROL_SET_STATE);
2866 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
2867 return HPI_ERROR_INVALID_HANDLE;
2868 hm.u.c.attribute = HPI_VOX_THRESHOLD;
2870 hm.u.c.an_log_value[0] = an_gain0_01dB;
2872 hpi_send_recv(&hm, &hr);
2874 return hr.error;
2877 u16 hpi_vox_get_threshold(u32 h_control, short *an_gain0_01dB)
2879 struct hpi_message hm;
2880 struct hpi_response hr;
2881 hpi_init_message_response(&hm, &hr, HPI_OBJ_CONTROL,
2882 HPI_CONTROL_GET_STATE);
2883 if (hpi_handle_indexes(h_control, &hm.adapter_index, &hm.obj_index))
2884 return HPI_ERROR_INVALID_HANDLE;
2885 hm.u.c.attribute = HPI_VOX_THRESHOLD;
2887 hpi_send_recv(&hm, &hr);
2889 *an_gain0_01dB = hr.u.c.an_log_value[0];
2891 return hr.error;