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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
|
/**
* @file dsp-protocol.c
* @brief Protocol to communicate with DSP side.
* <p>
* Copyright (C) 2006 Nokia Corporation
* <p>
* Contact: Eduardo Bezerra Valentin <eduardo.valentin@indt.org.br>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <poll.h>
#include <sys/errno.h>
#include <sys/types.h>
#include <sys/uio.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <math.h>
#include <sys/ioctl.h>
#include <sys/sem.h>
#include "dsp-protocol.h"
#include "constants.h"
#include "debug.h"
#include "types.h"
#include "reporting.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef USE_RESOURCE_MANAGER
#define DBUS_API_SUBJECT_TO_CHANGE
#include <dbus/dbus.h>
#define AUDIO_PM_SERVICE "com.nokia.osso_audio_pm"
#define AUDIO_PM_PLAYBACK_RESOURCE "/com/nokia/osso/pm/audio/playback"
#define AUDIO_PM_RECORD_RESOURCE "/com/nokia/osso/pm/audio/record"
#define RESOURCE_INTERFACE "com.nokia.osso_resource_manager"
#define RESOURCE_TIMEOUT 200
#endif /* USE_RESOURCE_MANAGER */
#define MAGIC_NUMBER 0x00A3D70A
#define PANNING_STEP 0x06
#define TASK_IOCTL_LOCK 0x10002
#define TASK_IOCTL_UNLOCK 0x10003
/* internal datatypes declarations */
union semun {
int val; /* value for SETVAL */
struct semid_ds *buf; /* buffer for IPC_STAT & IPC_SET */
u_short *array; /* array for GETALL & SETALL */
};
/* internal features declarations */
static int dsp_protocol_flush(dsp_protocol_t * dsp_protocol);
static int dsp_protocol_send_command(dsp_protocol_t * dsp_protocol,
const short int command);
static void dsp_protocol_linear2Q15(const unsigned short int input,
unsigned short int *scale,
unsigned short int *power2);
static void dsp_protocol_Q152linear(const unsigned short int scale,
const unsigned short int power2,
unsigned short int *output);
static int dsp_protocol_update_state(dsp_protocol_t * dsp_protocol);
static inline int dsp_protocol_get_sem(dsp_protocol_t * dsp_protocol);
static inline int dsp_protocol_lock_dev(dsp_protocol_t * dsp_protocol);
static inline int dsp_protocol_unlock_dev(dsp_protocol_t * dsp_protocol);
/* Initialisation phase features definitions */
/**
* @param dsp_protocol DSP protocol reference pointer to be instanciated.
*
* Creates new dsp_protocol object instance and initializes it
* with default parameters. After this the device must be
* separately opened with gst_dspaudio_open_node() method.
*
* @return zero if success, otherwise a negative error code
* (-ENOMEM - fail when requesting memory for data structures).
*/
int dsp_protocol_create(dsp_protocol_t ** dsp_protocol)
{
pthread_mutex_t mutex = PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP;
int ret = 0;
DENTER();
*dsp_protocol = (dsp_protocol_t *) calloc(1, sizeof(dsp_protocol_t));
if ((*dsp_protocol) == NULL) {
DERROR("Could not allocate dsp_protocol instance\n");
ret = -ENOMEM;
goto out;
}
(*dsp_protocol)->fd = -1;
(*dsp_protocol)->device = NULL;
(*dsp_protocol)->state = STATE_UNINITIALISED;
(*dsp_protocol)->mute = 0;
(*dsp_protocol)->stream_id = 0;
(*dsp_protocol)->bridge_buffer_size = 0;
(*dsp_protocol)->mmap_buffer_size = 0;
(*dsp_protocol)->mmap_buffer = NULL;
(*dsp_protocol)->mutex = mutex;
(*dsp_protocol)->sem_set_id = -1;
#ifdef USE_RESOURCE_MANAGER
(*dsp_protocol)->dbus_connection = dbus_bus_get(DBUS_BUS_SYSTEM, NULL);
#endif
out:
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol DSP protocol reference pointer to be initialized.
* @param device dsp device node name.
*
* Opens pcm dsp device file and initializes dsp_protocol
* with information about stream, state and mmapbuffer.
*
* @return zero if success, otherwise a negative error code.
*/
int dsp_protocol_open_node(dsp_protocol_t * dsp_protocol, const char *device)
{
int ret;
short int tmp;
audio_status_info_t audio_status_info;
audio_init_status_t audio_init_status;
DENTER();
if (dsp_protocol->state != STATE_UNINITIALISED) {
report_dsp_protocol
("Trying to send open node from a non-valid state",
dsp_protocol);
ret = -EIO;
goto out;
}
dsp_protocol->fd = open(device, O_RDWR);
if (dsp_protocol->fd < 0) {
DERROR("Could not open pcm device file %s\n", device);
ret = errno;
goto out;
}
dsp_protocol->device = strdup(device);
dsp_protocol_get_sem(dsp_protocol);
if ((ret = dsp_protocol_lock_dev(dsp_protocol)) < 0)
goto out;
if ((ret = dsp_protocol_flush(dsp_protocol)) < 0)
goto unlock;
tmp = DSP_CMD_STATE;
if (write(dsp_protocol->fd, &tmp, sizeof(short int)) < 0) {
ret = -EIO;
goto unlock;
}
if ((ret = read(dsp_protocol->fd, &audio_status_info,
sizeof(audio_status_info_t))) < 0) {
report_dsp_protocol("Could not read audio_status_info",
dsp_protocol);
goto unlock;
}
report_audio_status_info("Received:", audio_status_info);
if (audio_status_info.status == STATE_UNINITIALISED) {
tmp = DSP_CMD_INIT;
if (write(dsp_protocol->fd, &tmp, sizeof(short int)) < 0) {
ret = -EIO;
goto unlock;
}
if ((ret = read(dsp_protocol->fd, &audio_init_status,
sizeof(audio_init_status_t))) < 0) {
report_dsp_protocol("Error reading INIT status",
dsp_protocol);
goto unlock;
}
report_audio_init_status("Received:", audio_init_status);
/* receive info from audio_init_status */
dsp_protocol->stream_id = audio_init_status.stream_id;
dsp_protocol->bridge_buffer_size =
audio_init_status.bridge_buffer_size;
dsp_protocol->mmap_buffer_size =
audio_init_status.mmap_buffer_size;
} else {
/* This pcm task node is busy. Try to use another one. */
ret = -EBUSY;
goto unlock;
}
dsp_protocol->mmap_buffer = (short int *)
mmap((void *)0, dsp_protocol->mmap_buffer_size,
PROT_READ | PROT_WRITE, MAP_SHARED, dsp_protocol->fd, 0);
if (dsp_protocol->mmap_buffer == MAP_FAILED) {
report_dsp_protocol("Cannot mmap data buffer", dsp_protocol);
ret = -ENOMEM;
goto unlock;
}
dsp_protocol->state = STATE_INITIALISED;
report_dsp_protocol("connection stablished:", dsp_protocol);
ret = 0;
unlock:
dsp_protocol_unlock_dev(dsp_protocol);
out:
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol DSP protocol reference pointer.
* @param audio_params_data audio params to be sent to the dsp.
*
* Send audio params to pcm task node and checks if
* it was sent properly.
*
* @return zero if success, otherwise a negative error code.
*/
int dsp_protocol_send_audio_params(dsp_protocol_t * dsp_protocol,
audio_params_data_t * audio_params_data)
{
int ret;
dsp_cmd_status_t audio_cmd_status;
DENTER();
if (dsp_protocol->state != STATE_INITIALISED) {
report_dsp_protocol
("Trying to send audio parameters from a non-valid state",
dsp_protocol);
ret = -EIO;
goto out;
}
if ((ret = dsp_protocol_lock_dev(dsp_protocol)) < 0)
goto out;
audio_params_data->ds_stream_id = dsp_protocol->stream_id;
if (write(dsp_protocol->fd, audio_params_data,
sizeof(audio_params_data_t)) < 0) {
ret = -1;
report_dsp_protocol("Could not send audio_params_data",
dsp_protocol);
goto unlock;
}
if (read(dsp_protocol->fd, &audio_cmd_status,
sizeof(dsp_cmd_status_t)) < 0) {
ret = -1;
report_dsp_protocol("Could not receive DSP_CMD_STATUS",
dsp_protocol);
goto unlock;
}
if (audio_cmd_status.status != DSP_OK) {
ret = -1;
report_dsp_protocol("DSP returned a diferent Status of DSP_OK",
dsp_protocol);
report_return_value("DSP returned", audio_cmd_status.status);
report_audio_params("Audio params sent", (*audio_params_data));
goto unlock;
}
report_audio_params("Audio params sent", (*audio_params_data));
ret = 0;
unlock:
dsp_protocol_unlock_dev(dsp_protocol);
out:
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol DSP protocol reference pointer.
* @param speech_params_data audio params to be sent to the dsp.
*
* Send audio params to pcm_rec task node and checks if
* it was sent properly.
*
* @return zero if success, otherwise a negative error code.
*/
int dsp_protocol_send_speech_params(dsp_protocol_t * dsp_protocol,
speech_params_data_t * speech_params_data)
{
int ret;
dsp_cmd_status_t audio_cmd_status;
DENTER();
if (dsp_protocol->state != STATE_INITIALISED) {
report_dsp_protocol
("Trying to send speech parameters from a non-valid state",
dsp_protocol);
ret = -EIO;
goto out;
}
if ((ret = dsp_protocol_lock_dev(dsp_protocol)) < 0)
goto out;
speech_params_data->ds_stream_id = dsp_protocol->stream_id;
if (write(dsp_protocol->fd, speech_params_data,
sizeof(speech_params_data_t)) < 0) {
ret = -1;
report_dsp_protocol("Could not send speech_params_data",
dsp_protocol);
goto unlock;
}
if (read(dsp_protocol->fd, &audio_cmd_status,
sizeof(dsp_cmd_status_t)) < 0) {
ret = -1;
report_dsp_protocol("Could not receive DSP_CMD_STATUS",
dsp_protocol);
goto unlock;
}
if (audio_cmd_status.status != DSP_OK) {
ret = -1;
report_dsp_protocol("DSP returned a diferent Status of DSP_OK",
dsp_protocol);
report_return_value("DSP returned", audio_cmd_status.status);
report_speech_params("Speech params sent",
(*speech_params_data));
goto unlock;
}
report_speech_params("Speech params sent", (*speech_params_data));
ret = 0;
unlock:
dsp_protocol_unlock_dev(dsp_protocol);
out:
DLEAVE(ret);
return ret;
}
/* Execution phase features definitions */
/**
* @param dsp_protocol dsp_protocol_t structure.
*
* It starts a playback section sending a DSP_CMD_PLAY. It flushes
* all pending message comming from DSP side after DSP_CMD_PLAY.
*
* @return zero if success, otherwise a negative error code
* (-EIO - sending play from a non-valid state).
*/
int dsp_protocol_send_play(dsp_protocol_t * dsp_protocol)
{
int ret;
DENTER();
if (dsp_protocol->state == STATE_UNINITIALISED) {
report_dsp_protocol
("Trying to send play from a non-valid state",
dsp_protocol);
ret = -EIO;
goto out;
}
if ((ret = dsp_protocol_lock_dev(dsp_protocol)) < 0)
goto out;
if (dsp_protocol->state == STATE_PLAYING)
ret = 0;
else {
if ((ret =
dsp_protocol_send_command(dsp_protocol,
DSP_CMD_PLAY)) == 0)
dsp_protocol->state = STATE_PLAYING;
dsp_protocol_flush(dsp_protocol);
//Both, read and write remain data on the mbx system
}
dsp_protocol_unlock_dev(dsp_protocol);
out:
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol dsp_protocol_t structure.
* @param data audio data buffer.
* @param count amount of data to be copied (in TUint16).
*
* It copies audio data to the mmap area in the right moment.
*
* @return if success, it returns the amount of data was sent.
* If called in a wrong moment, it returns 0. Otherwise, a negative error code.
*/
int dsp_protocol_send_audio_data(dsp_protocol_t * dsp_protocol,
void *data,
unsigned short int count /* TUint16 */ )
{
write_status_t write_status;
data_write_t data_write;
int ret = 0;
DENTER();
DPRINT("count %d\n", count);
if (dsp_protocol->state != STATE_PLAYING) {
report_dsp_protocol("Not in the STATE_PLAYING\n", dsp_protocol);
goto out;
}
if ((ret = dsp_protocol_lock_dev(dsp_protocol)) < 0)
goto out;
memcpy(dsp_protocol->mmap_buffer, data, count * 2);
data_write.dsp_cmd = DSP_CMD_DATA_WRITE;
data_write.data_size = count;
if ((ret = write(dsp_protocol->fd, &data_write,
sizeof(data_write_t))) < 0)
goto unlock;
if ((ret = read(dsp_protocol->fd, &write_status,
sizeof(write_status_t))) < 0)
goto unlock;
if (write_status.dsp_cmd == DSP_CMD_DATA_WRITE) {
if (write_status.status == DSP_OK) {
ret = count;
DPRINT("%d words sent\n", ret);
} else {
DPRINT("Received a response different of DSP_OK\n");
report_return_value("Returned value:",
write_status.status);
report_dsp_protocol("Current dsp_protocol",
dsp_protocol);
ret = 0;
}
} else {
report_dsp_protocol("Could not send audio data", dsp_protocol);
report_command("Returned cmd", write_status.dsp_cmd);
ret = 0;
}
unlock:
dsp_protocol_unlock_dev(dsp_protocol);
out:
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol dsp_protocol_t structure.
* @param data audio data buffer.
* @param count amount of data to be copied (in TUint16).
*
* It copies the audio data from the mmap area in the right moment.
*
* @return if success, it returns the amount of data was received.
* If called in a wrong moment, it returns 0. Otherwise, a negative error code.
*/
int dsp_protocol_receive_audio_data(dsp_protocol_t * dsp_protocol,
void *data, int count /* TU16int */ )
{
read_status_t read_status;
dsp_cmd_status_t audio_cmd_status;
int ret = 0;
DENTER();
DPRINT("count %d\n", count);
if (dsp_protocol->state != STATE_PLAYING) {
report_dsp_protocol("Not in the STATE_PLAYING\n", dsp_protocol);
goto out;
}
if ((ret = dsp_protocol_lock_dev(dsp_protocol)) < 0)
goto out;
memcpy(data, dsp_protocol->mmap_buffer, count * 2);
audio_cmd_status.dsp_cmd = DSP_CMD_DATA_READ;
audio_cmd_status.status = DSP_OK;
if ((ret = write(dsp_protocol->fd, &audio_cmd_status,
sizeof(dsp_cmd_status_t))) < 0)
goto unlock;
if ((ret = read(dsp_protocol->fd, &read_status,
sizeof(read_status_t))) < 0)
goto unlock;
if (read_status.dsp_cmd == DSP_CMD_DATA_READ) {
if (read_status.status == DSP_OK) {
DPRINT("---------> DSP: ### %d ###\n",
read_status.frame_size);
ret = count;
DPRINT("%d words sent\n", ret);
} else {
report_dsp_protocol("Receive a status "
"different from DSP_OK (skiping block)",
dsp_protocol);
report_return_value("Returned: ", read_status.status);
ret = 0;
}
} else {
report_dsp_protocol("Could not receive audio data",
dsp_protocol);
DPRINT("Returned cmd %d expected %d\n", read_status.dsp_cmd,
DSP_CMD_DATA_READ);
report_return_value("Returned: ", read_status.status);
ret = 0;
}
unlock:
dsp_protocol_unlock_dev(dsp_protocol);
out:
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol dsp_protocol_t structure.
*
* It pauses a playback section sending a DSP_CMD_PAUSE.
*
* @return zero if success, otherwise a negative error code
* (-EIO - sending play from a non-valid state).
*/
int dsp_protocol_send_pause(dsp_protocol_t * dsp_protocol)
{
int ret;
DENTER();
if (dsp_protocol->state != STATE_PLAYING) {
report_dsp_protocol("Not in the STATE_PLAYING\n", dsp_protocol);
ret = -EIO;
goto out;
}
if ((ret = dsp_protocol_lock_dev(dsp_protocol)) < 0)
goto out;
if (dsp_protocol->state == STATE_PAUSED)
ret = 0;
else {
if ((ret =
dsp_protocol_send_command(dsp_protocol,
DSP_CMD_PAUSE)) == 0)
dsp_protocol->state = STATE_PAUSED;
}
dsp_protocol_unlock_dev(dsp_protocol);
out:
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol dsp_protocol_t structure.
*
* It stops a playback section sending a DSP_CMD_STOP.
*
* @return zero if success, otherwise a negative error code
* (-EIO - sending play from a non-valid state).
*/
int dsp_protocol_send_stop(dsp_protocol_t * dsp_protocol)
{
int ret;
DENTER();
if (dsp_protocol->state != STATE_PLAYING) {
report_dsp_protocol("Not in the STATE_PLAYING\n", dsp_protocol);
ret = -EIO;
goto out;
}
if ((ret = dsp_protocol_lock_dev(dsp_protocol)) < 0)
goto out;
if (dsp_protocol->state == STATE_STOPPED)
ret = 0;
else {
if ((ret =
dsp_protocol_send_command(dsp_protocol,
DSP_CMD_STOP)) == 0)
dsp_protocol->state = STATE_STOPPED;
}
dsp_protocol_unlock_dev(dsp_protocol);
out:
DLEAVE(ret);
return ret;
}
/* Deletion phase features definitions */
/**
* @param dsp_protocol DSP protocol reference pointer to be uninitialized.
*
* It closes the connection with pcm dsp task node. It flushes all
* pending data before that. Closes the mmap area. Initialize the
* dsp_protocol structure with unused values.
*
* @return zero if success, otherwise a negative error code.
*/
int dsp_protocol_close_node(dsp_protocol_t * dsp_protocol)
{
int ret;
DENTER();
if (dsp_protocol->state != STATE_UNINITIALISED) {
if ((ret = dsp_protocol_lock_dev(dsp_protocol)) < 0)
goto out;
if ((ret = dsp_protocol_flush(dsp_protocol)) < 0)
goto unlock;
if ((ret = dsp_protocol_send_command(dsp_protocol,
DSP_CMD_CLOSE)) < 0)
goto unlock;
}
if (dsp_protocol->mmap_buffer)
munmap(dsp_protocol->mmap_buffer,
dsp_protocol->mmap_buffer_size);
close(dsp_protocol->fd);
dsp_protocol->fd = -1;
free(dsp_protocol->device);
dsp_protocol->device = NULL;
dsp_protocol->state = STATE_UNINITIALISED;
dsp_protocol->mute = 0;
dsp_protocol->stream_id = 0;
dsp_protocol->bridge_buffer_size = 0;
dsp_protocol->mmap_buffer_size = 0;
dsp_protocol->mmap_buffer = NULL;
ret = 0;
unlock:
dsp_protocol_unlock_dev(dsp_protocol);
out:
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol DSP protocol reference pointer.
*
* It frees all the allocated memory. It sets NULL to the pointer.
*
* @return zero if success, otherwise a negative error code.
*/
int dsp_protocol_destroy(dsp_protocol_t ** dsp_protocol)
{
int ret = 0;
DENTER();
#ifdef USE_RESOURCE_MANAGER
if ((*dsp_protocol)->dbus_connection)
dbus_connection_unref((*dsp_protocol)->dbus_connection);
#endif /* USE_RESOURCE_MANAGER */
if (*dsp_protocol) {
if ((*dsp_protocol)->device)
free((*dsp_protocol)->device);
free((*dsp_protocol));
*dsp_protocol = NULL;
}
DLEAVE(ret);
return ret;
}
/* controls features definitions */
/**
* dsp_protocol_set_volume:
*
* @param dsp_protocol dsp_protocol_t structure.
* @param left left channel volume value (0 - 100).
* @param right right channel volume value (0 - 100).
*
* It changes volume data for both left and right channels.
* It receives both values in a 0 - 100 scale.
*
* @return zero if success, otherwise a negative error code.
*/
int dsp_protocol_set_volume(dsp_protocol_t * dsp_protocol,
unsigned char left, unsigned char right)
{
int ret;
dsp_cmd_status_t audio_cmd_status;
volume_data_t volume_data;
panning_data_t panning_data;
DENTER();
if ((ret = dsp_protocol_lock_dev(dsp_protocol)) < 0)
goto out;
dsp_protocol_linear2Q15(left > right ? left : right, &volume_data.scale,
&volume_data.power2);
volume_data.dsp_cmd = DSP_CMD_SET_VOLUME;
if ((ret =
write(dsp_protocol->fd, &volume_data, sizeof(volume_data_t))) < 0)
goto unlock;
if (read(dsp_protocol->fd, &audio_cmd_status,
sizeof(dsp_cmd_status_t)) < 0) {
ret = -EINVAL;
report_dsp_protocol("Could not receive DSP_CMD_STATUS",
dsp_protocol);
goto unlock;
}
report_return_value("Received", audio_cmd_status.status);
ret = 0;
if (audio_cmd_status.status != DSP_OK)
ret = -EIO;
if (ret == 0) { /*if sucess till here, update panning info */
panning_data.dsp_cmd = DSP_CMD_SET_PANNING;
panning_data.steps = PANNING_STEP;
if (left != right) {
panning_data.left_gain =
left >
right ? 0x4000 : (1.0 * left) / right * 0x4000;
panning_data.right_gain =
right >
left ? 0x4000 : (1.0 * right) / left * 0x4000;
} else {
panning_data.left_gain = 0x4000;
panning_data.right_gain = 0x4000;
}
DPRINT("left gain %x right gain %x\n", panning_data.left_gain,
panning_data.right_gain);
if ((ret =
write(dsp_protocol->fd, &panning_data,
sizeof(panning_data_t))) < 0)
goto unlock;
if (read(dsp_protocol->fd, &audio_cmd_status,
sizeof(dsp_cmd_status_t)) < 0) {
ret = -EINVAL;
report_dsp_protocol("Could not receive DSP_CMD_STATUS",
dsp_protocol);
goto unlock;
}
ret = 0;
if (audio_cmd_status.status != DSP_OK)
ret = -EIO;
}
unlock:
dsp_protocol_unlock_dev(dsp_protocol);
out:
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol dsp_protocol_t structure.
* @param left left channel volume value output (0 - 100).
* @param right right channel volume value output (0 - 100).
*
* It returns volume data for both left and right channels.
* It provides both values in a 0 - 100 scale.
*
* @return zero if success, otherwise a negative error code.
*/
int dsp_protocol_get_volume(dsp_protocol_t * dsp_protocol,
unsigned char *left, unsigned char *right)
{
unsigned short int tmp;
int ret;
audio_status_info_t audio_status_info;
DENTER();
tmp = DSP_CMD_STATE;
if ((ret = dsp_protocol_lock_dev(dsp_protocol)) < 0)
goto out;
if (write(dsp_protocol->fd, &tmp, sizeof(short int)) < 0) {
ret = -EIO;
goto unlock;
}
if ((ret = read(dsp_protocol->fd, &audio_status_info,
sizeof(audio_status_info_t))) < 0) {
report_dsp_protocol("Could not read audio_status_info",
dsp_protocol);
goto unlock;
}
dsp_protocol->state = audio_status_info.status;
report_audio_status_info("Received:", audio_status_info);
dsp_protocol_Q152linear(audio_status_info.vol_scale,
audio_status_info.vol_power2, &tmp);
*left = tmp;
*right = tmp;
if (audio_status_info.number_channels == CHANNELS_2) {
if (audio_status_info.left_gain > audio_status_info.right_gain){
float result =
*right * audio_status_info.right_gain / (0x4000 *
1.0);
*right = result;
if ((result - *right) > 0.5)
(*right)++;
}
if (audio_status_info.left_gain < audio_status_info.right_gain){
float result =
*left * audio_status_info.left_gain / (0x4000 *
1.0);
*left = result;
if ((result - *left) > 0.5)
(*left)++;
}
}
ret = 0;
unlock:
dsp_protocol_unlock_dev(dsp_protocol);
out:
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol dsp_protocol_t structure.
* @param mute mute value (0 unmuted - 1 muted).
*
* It changes mute state of DSP task node sending DSP_CMD_[UN]MUTE.
* Provide 0 in mute to unmute, and 1 in mute to mute.
*
* @return zero if success, otherwise a negative error code.
*/
int dsp_protocol_set_mute(dsp_protocol_t * dsp_protocol, unsigned char mute)
{
int ret = 0;
int command;
DENTER();
if ((ret = dsp_protocol_lock_dev(dsp_protocol)) < 0)
goto out;
if (mute == 1)
command = DSP_CMD_MUTE;
else
command = DSP_CMD_UNMUTE;
ret = dsp_protocol_send_command(dsp_protocol, command);
dsp_protocol->mute = mute;
dsp_protocol_unlock_dev(dsp_protocol);
out:
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol dsp_protocol_t structure.
*
* It returns mute state of DSP task node.
*
* @return zero if success, it returns current state of mute.
* 0 means not muted. 1 means muted. otherwise a negative error code.
*/
int dsp_protocol_get_mute(dsp_protocol_t * dsp_protocol)
{
int ret = 0;
DENTER();
if ((ret = dsp_protocol_lock_dev(dsp_protocol)) < 0)
goto out;
ret = dsp_protocol_update_state(dsp_protocol);
if (ret >= 0)
ret = dsp_protocol->mute;
dsp_protocol_unlock_dev(dsp_protocol);
out:
DLEAVE(ret);
return ret;
}
/*miscelaneos features definitions */
/**
* @param dsp_protocol dsp_protocol_t structure.
* @param enable enabled state of mic. 0 disable. 1 enabled.
*
* It modifies enabled state of mic.
*
* @return zero if success, otherwise a negative error code.
*/
#ifdef USE_RESOURCE_MANAGER
int dsp_protocol_set_mic_enabled(dsp_protocol_t * dsp_protocol, int enabled)
{
int ret = 0;
DBusMessage *message;
DBusMessage *reply = NULL;
DENTER();
if (dsp_protocol->dbus_connection &&
(message = dbus_message_new_method_call(AUDIO_PM_SERVICE,
AUDIO_PM_RECORD_RESOURCE, RESOURCE_INTERFACE,
enabled ? "request" : "release"))) {
if (!enabled) {
dbus_int32_t handle = 0;
/* assuming handle is always 0 for this resource */
dbus_message_append_args(message,
DBUS_TYPE_INT32, &handle,
DBUS_TYPE_INVALID);
}
reply = dbus_connection_send_with_reply_and_block(
dsp_protocol->dbus_connection,
message, RESOURCE_TIMEOUT, NULL);
/* TODO: check return value(s), append args for request()
* These parts of the RM spec may still change so not done yet
*/
dbus_message_unref(message);
}
if (reply) {
dbus_message_unref(reply);
} else {
DPRINT("Error acquiring PM resource for recording\n");
#ifdef ERROR_ON_PM_FAILURE
ret = -EIO;
#endif
}
DLEAVE(ret);
return ret;
}
#else /* !USE_RESOURCE_MANAGER */
int dsp_protocol_set_mic_enabled(dsp_protocol_t * dsp_protocol, int enabled)
{
int mic_fd;
int ret;
char mic_control_name[] = "/sys/devices/platform/audio-i2c/mic_enable";
DENTER();
if ((mic_fd = open(mic_control_name, O_WRONLY)) < 0) {
DPRINT("Error opening: %s\n", mic_control_name);
#ifdef ERROR_ON_PM_FAILURE
ret = -EIO;
#else
ret = 0;
#endif
goto out;
}
write(mic_fd, (enabled ? "1" : "0"), sizeof(char));
close(mic_fd);
ret = 0;
out:
DLEAVE(ret);
return ret;
}
#endif /* USE_RESOURCE_MANAGER */
/**
* @param dsp_protocol dsp_protocol_t structure.
* @param device dsp task node file name.
*
* It opens a dsp task node and queries for its states.
*
* @return if success, it returns number of channels whose dsp task is
* currently using (1 - mono. 2 stero). otherwise a negative error code.
*/
int dsp_protocol_probe_node(dsp_protocol_t * dsp_protocol, const char *device)
{
int ret;
DENTER();
if (dsp_protocol->state != STATE_UNINITIALISED) {
report_dsp_protocol
("Trying to send open node from a non-valid state",
dsp_protocol);
ret = -EIO;
goto out;
}
dsp_protocol->fd = open(device, O_RDWR);
if (dsp_protocol->fd < 0) {
DERROR("Could not open pcm device file %s\n", device);
ret = errno;
goto out;
}
dsp_protocol->device = strdup(device);
dsp_protocol_get_sem(dsp_protocol);
if ((ret = dsp_protocol_lock_dev(dsp_protocol)) < 0)
goto out;
dsp_protocol->device = strdup(device);
ret = dsp_protocol_update_state(dsp_protocol);
if (ret != CHANNELS_1 && ret != CHANNELS_2)
ret = CHANNELS_1;
dsp_protocol_unlock_dev(dsp_protocol);
out:
DLEAVE(ret);
return ret;
}
/**
* @param str string with a number.
* @param val holder for the conversion result.
*
* It converts a string to a number (long).
*
* @return zero if success, otherwise a negative error code.
*/
int safe_strtol(const char *str, long *val)
{
char *end;
long v;
int ret;
DENTER();
if (!*str) {
ret = -EINVAL;
goto out;
}
errno = 0;
v = strtol(str, &end, 0);
if (errno) {
ret = -errno;
goto out;
}
if (*end) {
ret = -EINVAL;
goto out;
}
*val = v;
ret = 0;
out:
DLEAVE(ret);
return ret;
}
/* internal features definitions */
/**
* @param dsp_protocol dsp_protocol_t structure.
*
* Tries to read all the pending data.
*
* @return zero. success
*/
static int dsp_protocol_flush(dsp_protocol_t * dsp_protocol)
{
struct pollfd pollf;
int ret = 0;
int tmp;
DENTER();
pollf.fd = dsp_protocol->fd;
pollf.events = POLLIN;
while (poll(&pollf, 1, 0) > 0) {
if (read(dsp_protocol->fd, &tmp, sizeof(short int)) == 0)
/* Test end of file */
break;
#ifdef DEBUG
fprintf(DEBUG_OUTPUT, ".");
#endif
}
#ifdef DEBUG
fprintf(DEBUG_OUTPUT, "\n");
#endif
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol dsp_protocol_t structure.
* @param command command value to be sent to the pcm task node.
*
* Send the command to pcm task node and checks if
* it was sent properly.
*
* @return zero if success, otherwise a negative error code.
*/
static int dsp_protocol_send_command(dsp_protocol_t * dsp_protocol,
const short int command)
{
dsp_cmd_status_t audio_cmd_status;
int ret = 0;
short int tmp;
DENTER();
report_command("Sending", command);
tmp = command;
if (write(dsp_protocol->fd, &tmp, sizeof(short int)) < 0) {
report_dsp_protocol("Could not send", dsp_protocol);
ret = -EIO;
}
if (read(dsp_protocol->fd, &audio_cmd_status,
sizeof(dsp_cmd_status_t)) < 0) {
ret = -1;
report_dsp_protocol("Could not receive DSP_CMD_STATUS",
dsp_protocol);
goto out;
}
/* report_command("Received", audio_cmd_status.dsp_cmd);
report_return_value("Received", audio_cmd_status.status);*/
DPRINT("audio_cmd_status.dsp_cmd: 0x%x\n", audio_cmd_status.dsp_cmd);
DPRINT("audio_cmd_status.status: 0x%x\n", audio_cmd_status.status);
if (audio_cmd_status.status != DSP_OK)
ret = -EIO;
out:
DLEAVE(ret);
return ret;
}
/**
* @param input 0 - 100 value to be converted to Q15.
* @param scale scale value of Q15 format.
* @param power2 power of 2 value of Q15 format.
*
* Converts a 0 - 100 value to a Q15 format value.
*
*/
static void dsp_protocol_linear2Q15(const unsigned short int input,
unsigned short int *scale,
unsigned short int *power2)
{
unsigned long int val = MAGIC_NUMBER * input;
DENTER();
if (input == 0) {
*scale = 0;
*power2 = 0;
} else {
*power2 = 1;
while (val < 0x40000000) {
(*power2)--;
val <<= 1;
}
*scale = val >> 16;
}
DPRINT("Resulted scale %d and power2 %d from input %d\n", *scale,
*power2, input);
DLEAVE(0);
}
/**
* @param scale scale value of Q15 format.
* @param power2 power of 2 value of Q15 format.
* @param output 0 - 100 resulted value.
*
* Converts a Q15 format value to a 0 - 100 value.
*
*/
static void dsp_protocol_Q152linear(const unsigned short int scale,
const unsigned short int power2, unsigned short int *output)
{
float result = scale * 1.0 / 0x8000 * (1 << power2) * 100.0;
DENTER();
*output = (short int)(result);
if ((result - *output) > 0.5)
(*output)++;
DPRINT("Resulted linear: %d from scale %d and power2 %d\n", *output,
scale, power2);
DLEAVE(0);
}
/**
* @param dsp_protocol dsp_protocol_t structure.
*
* Update dsp_protocol_t structure info. Queries dsp task
* for a audio_status_info structure.
*
* @return if success, it returns number of channels whose dsp task is
* currently using. otherwise a negative error code.
*/
static int dsp_protocol_update_state(dsp_protocol_t * dsp_protocol)
{
int ret;
short int tmp;
audio_status_info_t audio_status_info;
DENTER();
if ((ret = dsp_protocol_flush(dsp_protocol)) < 0)
goto out;
tmp = DSP_CMD_STATE;
if (write(dsp_protocol->fd, &tmp, sizeof(short int)) < 0) {
ret = -EIO;
goto out;
}
if ((ret = read(dsp_protocol->fd, &audio_status_info,
sizeof(audio_status_info_t))) < 0) {
report_dsp_protocol("Could not read audio_status_info",
dsp_protocol);
goto out;
}
report_audio_status_info("Received:", audio_status_info);
dsp_protocol->stream_id = audio_status_info.stream_id;
dsp_protocol->bridge_buffer_size = audio_status_info.bridge_buffer_size;
dsp_protocol->mmap_buffer_size = audio_status_info.mmap_buffer_size;
dsp_protocol->state = audio_status_info.status;
#ifndef NORMAL_DSP_TASK
dsp_protocol->mute = audio_status_info.mute;
#endif
report_dsp_protocol("connection stablished:", dsp_protocol);
ret = audio_status_info.number_channels;
out:
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol dsp_protocol_t structure.
*
* It produces the semaphore ID and connects to it.
*
* @return zero if success, otherwise a negative error code.
*/
static inline int dsp_protocol_get_sem(dsp_protocol_t * dsp_protocol)
{
union semun sem_val; /* semaphore value, for semctl(). */
int rc;
int ret;
/* identifier returned by ftok() */
key_t set_key;
DENTER();
/* generate a "unique" key for our set, using the */
/* directory "/dev/dsptask/xxxx". */
set_key = ftok(dsp_protocol->device, 0);
if (set_key == -1) {
DPRINT("ftok: %d\n", errno);
ret = -ENODEV;
goto out;
}
DPRINT("key %d\n", set_key);
/* now we can use 'set_key' to generate a set id, for example. */
dsp_protocol->sem_set_id = semget(set_key, 1, 0666);
if (dsp_protocol->sem_set_id == -1) {
DPRINT("semget %d\n", errno);
dsp_protocol->sem_set_id = semget(set_key, 1, IPC_CREAT | 0666);
if (dsp_protocol->sem_set_id == -1) {
DPRINT("semget: IPC_CREAT: %d\n", errno);
ret = -ENODEV;
goto out;
}
DPRINT("Initialising the semaphore\n");
sem_val.val = 1;
rc = semctl(dsp_protocol->sem_set_id, 0, SETVAL, sem_val);
if (rc == -1) {
DPRINT("semctl %d\n", errno);
ret = -ENODEV;
goto out;
}
}
ret = 0;
out:
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol dsp_protocol_t structure.
*
* It waits until be able to hold the semaphore to access the dsp task node.
* If the current process already has the semaphore, returns success.
*
* @return zero if success, otherwise a negative error code.
*/
static inline int dsp_protocol_lock_dev(dsp_protocol_t * dsp_protocol)
{
int ret;
struct sembuf sem_op;
DENTER();
ret = pthread_mutex_trylock(&(dsp_protocol->mutex));
if (ret != 0) {
DPRINT("No lock %d\n", ret);
if (errno == EBUSY)
ret = 0;
goto out;
}
sem_op.sem_num = 0;
sem_op.sem_op = -1;
sem_op.sem_flg = 0;
DPRINT("requesting semaphore (dev)\n");
if (semop(dsp_protocol->sem_set_id, &sem_op, 1) == -1) {
DPRINT("semop %d\n", errno);
pthread_mutex_unlock(&(dsp_protocol->mutex));
ret = -errno;
}
out:
DLEAVE(ret);
return ret;
}
/**
* @param dsp_protocol dsp_protocol_t structure.
*
* It releases the semaphore.
*
* @return zero if success, otherwise a negative error code.
*/
static inline int dsp_protocol_unlock_dev(dsp_protocol_t * dsp_protocol)
{
struct sembuf sem_op;
DENTER();
sem_op.sem_num = 0;
sem_op.sem_op = 1;
sem_op.sem_flg = 0;
DPRINT("Releasing\n");
semop(dsp_protocol->sem_set_id, &sem_op, 1);
pthread_mutex_unlock(&(dsp_protocol->mutex));
DLEAVE(0);
return 0;
}
|