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
|
/*
* Copyright (c) 2005, Adaptive Digital Technologies, Inc.
* Copyright (c) 2005-2010, Digium Incorporated
*
* File Name: GpakCust.c
*
* Description:
* This file contains host system dependent functions to support generic
* G.PAK API functions. The file is integrated into the host processor
* connected to C55x G.PAK DSPs via a Host Port Interface.
*
* Note: This file is supplied by Adaptive Digital Technologies and
* modified by Digium in order to support the VPMADT032 modules.
*
* This program has been released under the terms of the GPL version 2 by
* permission of Adaptive Digital Technologies, Inc.
*
*/
/*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License Version 2 as published by the
* Free Software Foundation. See the LICENSE file included with
* this program for more details.
*/
#include <linux/version.h>
#include <linux/types.h>
#include <linux/pci.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26)
#include <linux/semaphore.h>
#else
#include <asm/semaphore.h>
#endif
#include <linux/slab.h>
#include <dahdi/kernel.h>
#include <dahdi/user.h>
#include "GpakCust.h"
#include "GpakApi.h"
#include "adt_lec.h"
#include "voicebus.h"
#include "vpmadtreg.h"
static DEFINE_SPINLOCK(ifacelock);
static struct vpmadt032 *ifaces[MAX_DSP_CORES];
#define vpm_info(vpm, format, arg...) \
dev_info(&vpm->vb->pdev->dev , format , ## arg)
static inline struct vpmadt032 *find_iface(const unsigned short dspid)
{
struct vpmadt032 *ret;
spin_lock(&ifacelock);
if (ifaces[dspid]) {
ret = ifaces[dspid];
} else {
ret = NULL;
}
spin_unlock(&ifacelock);
return ret;
}
static struct vpmadt032_cmd *vpmadt032_get_free_cmd(struct vpmadt032 *vpm)
{
struct vpmadt032_cmd *cmd;
might_sleep();
cmd = kmalloc(sizeof(struct vpmadt032_cmd), GFP_KERNEL);
if (unlikely(!cmd))
return NULL;
memset(cmd, 0, sizeof(*cmd));
init_completion(&cmd->complete);
return cmd;
}
/* Wait for any outstanding commands to the VPMADT032 to complete */
static inline int vpmadt032_io_wait(struct vpmadt032 *vpm)
{
unsigned long flags;
int empty;
while (1) {
spin_lock_irqsave(&vpm->list_lock, flags);
empty = list_empty(&vpm->pending_cmds) && list_empty(&vpm->active_cmds);
spin_unlock_irqrestore(&vpm->list_lock, flags);
if (empty) {
break;
} else {
msleep(1);
}
}
return 0;
}
/* Issue a read command to a register on the VPMADT032. We'll get the results
* later. */
static struct vpmadt032_cmd *vpmadt032_getreg_full_async(struct vpmadt032 *vpm, int pagechange,
unsigned short addr)
{
unsigned long flags;
struct vpmadt032_cmd *cmd;
cmd = vpmadt032_get_free_cmd(vpm);
if (!cmd)
return NULL;
cmd->desc = (pagechange) ? __VPM150M_RWPAGE | __VPM150M_RD : __VPM150M_RD;
cmd->address = addr;
cmd->data = 0;
spin_lock_irqsave(&vpm->list_lock, flags);
list_add_tail(&cmd->node, &vpm->pending_cmds);
spin_unlock_irqrestore(&vpm->list_lock, flags);
return cmd;
}
/* Get the results from a previous call to vpmadt032_getreg_full_async. */
static int vpmadt032_getreg_full_return(struct vpmadt032 *vpm, int pagechange,
u16 addr, u16 *outbuf, struct vpmadt032_cmd *cmd)
{
unsigned long flags;
unsigned long ret;
BUG_ON(!cmd);
/* We'll wait for 2s */
ret = wait_for_completion_timeout(&cmd->complete, HZ*2);
if (unlikely(!ret)) {
spin_lock_irqsave(&vpm->list_lock, flags);
list_del(&cmd->node);
spin_unlock_irqrestore(&vpm->list_lock, flags);
kfree(cmd);
return -EIO;
}
if (cmd->desc & __VPM150M_FIN) {
*outbuf = cmd->data;
cmd->desc = 0;
ret = 0;
}
list_del(&cmd->node);
kfree(cmd);
return 0;
}
/* Read one of the registers on the VPMADT032 */
static int vpmadt032_getreg_full(struct vpmadt032 *vpm, int pagechange, u16 addr, u16 *outbuf)
{
struct vpmadt032_cmd *cmd;
cmd = vpmadt032_getreg_full_async(vpm, pagechange, addr);
if (unlikely(!cmd)) {
return -ENOMEM;
}
return vpmadt032_getreg_full_return(vpm, pagechange, addr, outbuf, cmd);
}
static int vpmadt032_setreg_full(struct vpmadt032 *vpm, int pagechange, unsigned int addr,
u16 data)
{
unsigned long flags;
struct vpmadt032_cmd *cmd;
cmd = vpmadt032_get_free_cmd(vpm);
if (!cmd)
return -ENOMEM;
cmd->desc = cpu_to_le16((pagechange) ? (__VPM150M_WR|__VPM150M_RWPAGE) : __VPM150M_WR);
cmd->address = cpu_to_le16(addr);
cmd->data = cpu_to_le16(data);
spin_lock_irqsave(&vpm->list_lock, flags);
list_add_tail(&cmd->node, &vpm->pending_cmds);
spin_unlock_irqrestore(&vpm->list_lock, flags);
return 0;
}
static int vpmadt032_setpage(struct vpmadt032 *vpm, u16 addr)
{
addr &= 0xf;
/* We do not need to set the page if we're already on the page we're
* interested in. */
if (vpm->curpage == addr)
return 0;
else
vpm->curpage = addr;
return vpmadt032_setreg_full(vpm, 1, 0, addr);
}
static unsigned char vpmadt032_getpage(struct vpmadt032 *vpm)
{
unsigned short res;
const int pagechange = 1;
vpmadt032_getreg_full(vpm, pagechange, 0, &res);
return res;
}
static int vpmadt032_getreg(struct vpmadt032 *vpm, unsigned int addr, u16 *data)
{
unsigned short res;
vpmadt032_setpage(vpm, addr >> 16);
res = vpmadt032_getreg_full(vpm, 0, addr & 0xffff, data);
return res;
}
static int vpmadt032_setreg(struct vpmadt032 *vpm, unsigned int addr, u16 data)
{
int res;
vpmadt032_setpage(vpm, addr >> 16);
res = vpmadt032_setreg_full(vpm, 0, addr & 0xffff, data);
return res;
}
struct change_order {
struct list_head node;
unsigned int channel;
struct adt_lec_params params;
};
static struct change_order *alloc_change_order(void)
{
return kzalloc(sizeof(struct change_order), GFP_ATOMIC);
}
static void free_change_order(struct change_order *order)
{
kfree(order);
}
static int vpmadt032_control(struct vpmadt032 *vpm, unsigned short int channel,
GpakAlgCtrl_t control_code,
GPAK_AlgControlStat_t *pstatus)
{
gpakAlgControlStat_t stat;
int retry = 4;
while (retry--) {
stat = gpakAlgControl(vpm->dspid, channel,
control_code, pstatus);
if (AcDspCommFailure == stat)
msleep(5);
else
break;
}
return stat;
}
static int vpmadt032_enable_ec(struct vpmadt032 *vpm, int channel,
enum adt_companding companding)
{
int res;
GPAK_AlgControlStat_t pstatus;
GpakAlgCtrl_t control;
control = (ADT_COMP_ALAW == companding) ? EnableALawSwCompanding :
EnableMuLawSwCompanding;
if (vpm->options.debug & DEBUG_VPMADT032_ECHOCAN) {
const char *law;
law = (control == EnableMuLawSwCompanding) ? "MuLaw" : "ALaw";
vpm_info(vpm, "Enabling ecan on channel: %d (%s)\n",
channel, law);
}
res = vpmadt032_control(vpm, channel, control, &pstatus);
if (res) {
vpm_info(vpm, "Unable to set SW Companding on "
"channel %d (reason %d)\n", channel, res);
}
res = vpmadt032_control(vpm, channel, EnableEcanA, &pstatus);
return res;
}
static int vpmadt032_disable_ec(struct vpmadt032 *vpm, int channel)
{
int res;
GPAK_AlgControlStat_t pstatus;
if (vpm->options.debug & DEBUG_VPMADT032_ECHOCAN)
vpm_info(vpm, "Disabling ecan on channel: %d\n", channel);
res = vpmadt032_control(vpm, channel, BypassSwCompanding, &pstatus);
if (res) {
vpm_info(vpm, "Unable to disable sw companding on "
"echo cancellation channel %d (reason %d)\n",
channel, res);
}
res = vpmadt032_control(vpm, channel, BypassEcanA, &pstatus);
return res;
}
static struct change_order *get_next_order(struct vpmadt032 *vpm)
{
struct change_order *order;
spin_lock(&vpm->change_list_lock);
if (!list_empty(&vpm->change_list)) {
order = list_entry(vpm->change_list.next,
struct change_order, node);
list_del(&order->node);
} else {
order = NULL;
}
spin_unlock(&vpm->change_list_lock);
return order;
}
static int nlp_settings_changed(const struct adt_lec_params *a,
const struct adt_lec_params *b)
{
return ((a->nlp_type != b->nlp_type) ||
(a->nlp_threshold != b->nlp_threshold) ||
(a->nlp_max_suppress != b->nlp_max_suppress));
}
static int echocan_on(const struct adt_lec_params *new,
const struct adt_lec_params *old)
{
return ((new->tap_length != old->tap_length) &&
(new->tap_length > 0));
}
static int echocan_off(const struct adt_lec_params *new,
const struct adt_lec_params *old)
{
return ((new->tap_length != old->tap_length) &&
(0 == new->tap_length));
}
static void update_channel_config(struct vpmadt032 *vpm, unsigned int channel,
struct adt_lec_params *desired)
{
int res;
GPAK_AlgControlStat_t pstatus;
GPAK_ChannelConfigStat_t cstatus;
GPAK_TearDownChanStat_t tstatus;
GpakChannelConfig_t chanconfig;
if (vpm->options.debug & DEBUG_VPMADT032_ECHOCAN) {
vpm_info(vpm, "Reconfiguring chan %d for nlp %d, "
"nlp_thresh %d, and max_supp %d\n", channel + 1,
desired->nlp_type, desired->nlp_threshold,
desired->nlp_max_suppress);
}
vpm->setchanconfig_from_state(vpm, channel, &chanconfig);
res = gpakTearDownChannel(vpm->dspid, channel, &tstatus);
if (res)
return;
res = gpakConfigureChannel(vpm->dspid, channel, tdmToTdm,
&chanconfig, &cstatus);
if (res)
return;
if (!desired->tap_length) {
res = vpmadt032_control(vpm, channel,
BypassSwCompanding, &pstatus);
if (res) {
vpm_info(vpm, "Unable to disable sw companding on "
"echo cancellation channel %d (reason %d)\n",
channel, res);
}
vpmadt032_control(vpm, channel, BypassEcanA, &pstatus);
}
return;
}
/**
* vpmadt032_bh - Changes the echocan parameters on the vpmadt032 module.
*
* This function is typically scheduled to run in the workqueue by the
* vpmadt032_echocan_with_params function. This is because communicating with
* the hardware can take some time while messages are sent to the VPMADT032
* module and the driver waits for the responses.
*/
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
static void vpmadt032_bh(void *data)
{
struct vpmadt032 *vpm = data;
#else
static void vpmadt032_bh(struct work_struct *data)
{
struct vpmadt032 *vpm = container_of(data, struct vpmadt032, work);
#endif
struct change_order *order;
while ((order = get_next_order(vpm))) {
struct adt_lec_params *old;
struct adt_lec_params *new;
unsigned int channel;
channel = order->channel;
BUG_ON(channel >= ARRAY_SIZE(vpm->curecstate));
old = &vpm->curecstate[channel];
new = &order->params;
if (nlp_settings_changed(new, old))
update_channel_config(vpm, channel, new);
else if (echocan_on(new, old))
vpmadt032_enable_ec(vpm, channel, new->companding);
else if (echocan_off(new, old))
vpmadt032_disable_ec(vpm, channel);
*old = order->params;
free_change_order(order);
}
}
#include "adt_lec.c"
static void vpmadt032_check_and_schedule_update(struct vpmadt032 *vpm,
struct change_order *order)
{
struct change_order *cur;
struct change_order *n;
INIT_LIST_HEAD(&order->node);
spin_lock(&vpm->change_list_lock);
list_for_each_entry_safe(cur, n, &vpm->change_list, node) {
if (cur->channel == order->channel) {
list_replace(&cur->node, &order->node);
free_change_order(cur);
break;
}
}
if (list_empty(&order->node))
list_add_tail(&order->node, &vpm->change_list);
spin_unlock(&vpm->change_list_lock);
queue_work(vpm->wq, &vpm->work);
}
int vpmadt032_echocan_create(struct vpmadt032 *vpm, int channo,
enum adt_companding companding,
struct dahdi_echocanparams *ecp,
struct dahdi_echocanparam *p)
{
unsigned int ret;
struct change_order *order = alloc_change_order();
if (!order)
return -ENOMEM;
memcpy(&order->params, &vpm->curecstate[channo], sizeof(order->params));
ret = adt_lec_parse_params(&order->params, ecp, p);
if (ret) {
free_change_order(order);
return ret;
}
if (vpm->options.debug & DEBUG_VPMADT032_ECHOCAN) {
vpm_info(vpm, "Channel is %d length %d\n",
channo, ecp->tap_length);
}
/* The driver cannot control the number of taps on the VPMADT032
* module. Instead, it uses tap_length to enable or disable the echo
* cancellation. */
order->params.tap_length = (ecp->tap_length) ? 1 : 0;
order->params.companding = companding;
order->channel = channo;
vpmadt032_check_and_schedule_update(vpm, order);
return 0;
}
EXPORT_SYMBOL(vpmadt032_echocan_create);
void vpmadt032_echocan_free(struct vpmadt032 *vpm, int channo,
struct dahdi_echocan_state *ec)
{
struct change_order *order;
order = alloc_change_order();
WARN_ON(!order);
if (!order)
return;
adt_lec_init_defaults(&order->params, 0);
order->params.nlp_type = vpm->options.vpmnlptype;
order->params.nlp_threshold = vpm->options.vpmnlpthresh;
order->params.nlp_max_suppress = vpm->options.vpmnlpmaxsupp;
order->channel = channo;
if (vpm->options.debug & DEBUG_VPMADT032_ECHOCAN)
vpm_info(vpm, "Channel is %d length 0\n", channo);
vpmadt032_check_and_schedule_update(vpm, order);
}
EXPORT_SYMBOL(vpmadt032_echocan_free);
struct vpmadt032 *
vpmadt032_alloc(struct vpmadt032_options *options)
{
struct vpmadt032 *vpm;
int i;
might_sleep();
vpm = kzalloc(sizeof(*vpm), GFP_KERNEL);
if (!vpm)
return NULL;
/* Init our vpmadt032 struct */
memcpy(&vpm->options, options, sizeof(*options));
spin_lock_init(&vpm->list_lock);
spin_lock_init(&vpm->change_list_lock);
INIT_LIST_HEAD(&vpm->change_list);
INIT_LIST_HEAD(&vpm->pending_cmds);
INIT_LIST_HEAD(&vpm->active_cmds);
sema_init(&vpm->sem, 1);
vpm->curpage = 0x80;
vpm->dspid = -1;
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
INIT_WORK(&vpm->work, vpmadt032_bh, vpm);
#else
INIT_WORK(&vpm->work, vpmadt032_bh);
#endif
/* Do not use the global workqueue for processing these events. Some of
* the operations can take 100s of ms, most of that time spent sleeping.
* On single CPU systems, this unduly serializes operations accross
* multiple vpmadt032 instances. */
vpm->wq = create_singlethread_workqueue("vpmadt032");
if (!vpm->wq) {
kfree(vpm);
return NULL;
}
/* Place this structure in the ifaces array so that the DspId from the
* Gpak Library can be used to locate it. */
spin_lock(&ifacelock);
for (i=0; i<MAX_DSP_CORES; ++i) {
if (NULL == ifaces[i]) {
ifaces[i] = vpm;
vpm->dspid = i;
break;
}
}
spin_unlock(&ifacelock);
if (-1 == vpm->dspid) {
kfree(vpm);
dev_notice(&vpm->vb->pdev->dev, "Unable to initialize another vpmadt032 modules\n");
vpm = NULL;
}
return vpm;
}
EXPORT_SYMBOL(vpmadt032_alloc);
int vpmadt032_reset(struct vpmadt032 *vpm)
{
int res;
gpakPingDspStat_t pingstatus;
u16 version;
unsigned long stoptime;
struct device *const dev = &vpm->vb->pdev->dev;
might_sleep();
set_bit(VPM150M_HPIRESET, &vpm->control);
msleep(2000);
/* It should never take longer than 5 seconds. */
stoptime = jiffies + 3*HZ;
while (test_bit(VPM150M_HPIRESET, &vpm->control) &&
time_before(jiffies, stoptime))
msleep(1);
if (time_after(jiffies, stoptime)) {
dev_dbg(dev, "Detected failure to clear HPIRESET.\n");
return -EIO;
}
/* Set us up to page 0 */
vpmadt032_setpage(vpm, 0);
res = vpmadtreg_loadfirmware(vpm->vb);
if (res) {
dev_err(dev, "Failed to load VPMADT032 firmware.\n");
return res;
}
vpm->curpage = -1;
stoptime = jiffies + 3*HZ;
set_bit(VPM150M_SWRESET, &vpm->control);
while (test_bit(VPM150M_SWRESET, &vpm->control) &&
time_before(jiffies, stoptime))
msleep(1);
if (time_after(jiffies, stoptime)) {
dev_dbg(dev, "Detected failure to clear SWRESET.\n");
return -EIO;
}
/* Set us up to page 0 */
pingstatus = gpakPingDsp(vpm->dspid, &version);
if (!pingstatus) {
vpm_info(vpm, "VPM present and operational "
"(Firmware version %x)\n", version);
vpm->version = version;
res = 0;
} else {
res = -EIO;
}
return res;
}
EXPORT_SYMBOL(vpmadt032_reset);
/**
* vpmadt032_test - Check if there is a VPMADT032 present on voicebus device.
* @vpm: Allocated with vpmadt032_alloc previously.
* @vb: Voicebus structure to test on.
*
* Returns 0 if there is a device, otherwise -ENODEV.
*
*/
int vpmadt032_test(struct vpmadt032 *vpm, struct voicebus *vb)
{
u8 reg;
int i, x;
struct device *dev = &vb->pdev->dev;
vpm->vb = vb;
if (vpm->options.debug & DEBUG_VPMADT032_ECHOCAN)
dev_info(dev, "VPMADT032 Testing page access: ");
for (i = 0; i < 0xf; i++) {
for (x = 0; x < 3; x++) {
vpmadt032_setpage(vpm, i);
reg = vpmadt032_getpage(vpm);
if (reg != i) {
if (vpm->options.debug &
DEBUG_VPMADT032_ECHOCAN) {
dev_err(dev, "Failed: Sent %x != %x " \
"VPMADT032 Failed HI page " \
"test\n", i, reg);
}
return -ENODEV;
}
}
}
if (vpm->options.debug & DEBUG_VPMADT032_ECHOCAN)
dev_info(dev, "Passed\n");
return 0;
}
EXPORT_SYMBOL(vpmadt032_test);
/**
* vpmadt032_init - Initialize and load VPMADT032 firmware.
* @vpm: Allocated with vpmadt032_alloc previously.
*
* Returns 0 on success. This must be called after vpmadt032_test already
* checked if there appears to be a VPMADT032 installed on the board.
*
*/
int vpmadt032_init(struct vpmadt032 *vpm)
{
int i;
u16 reg;
int res = -EFAULT;
unsigned long stoptime;
struct device *dev;
gpakPingDspStat_t pingstatus;
BUG_ON(!vpm->setchanconfig_from_state);
BUG_ON(!vpm->wq);
BUG_ON(!vpm->vb);
might_sleep();
dev = &vpm->vb->pdev->dev;
stoptime = jiffies + 3*HZ;
set_bit(VPM150M_HPIRESET, &vpm->control);
while (test_bit(VPM150M_HPIRESET, &vpm->control) &&
time_before(jiffies, stoptime))
msleep(1);
if (time_after(jiffies, stoptime)) {
dev_dbg(dev, "Detected failure to clear HPIRESET.\n");
res = -EIO;
goto failed_exit;
}
msleep(250);
/* Set us up to page 0 */
vpmadt032_setpage(vpm, 0);
if (vpm->options.debug & DEBUG_VPMADT032_ECHOCAN)
dev_info(&vpm->vb->pdev->dev, "VPMADT032 now doing address test: ");
for (i = 0; i < 16; i++) {
int x;
for (x = 0; x < 2; x++) {
vpmadt032_setreg(vpm, 0x1000, i);
vpmadt032_getreg(vpm, 0x1000, ®);
if (reg != i) {
printk(KERN_CONT "VPMADT032 Failed address test\n");
res = -EIO;
}
}
}
if (vpm->options.debug & DEBUG_VPMADT032_ECHOCAN)
printk(KERN_CONT "Passed\n");
stoptime = jiffies + 3*HZ;
set_bit(VPM150M_HPIRESET, &vpm->control);
while (test_bit(VPM150M_HPIRESET, &vpm->control) &&
time_before(jiffies, stoptime))
msleep(1);
if (time_after(jiffies, stoptime)) {
dev_dbg(dev, "Detected failure to clear SWRESET.\n");
res = -EIO;
goto failed_exit;
}
res = vpmadtreg_loadfirmware(vpm->vb);
if (res) {
dev_info(&vpm->vb->pdev->dev, "Failed to load the firmware.\n");
return res;
}
vpm->curpage = -1;
dev_info(&vpm->vb->pdev->dev, "Booting VPMADT032\n");
stoptime = jiffies + 3*HZ;
set_bit(VPM150M_SWRESET, &vpm->control);
while (test_bit(VPM150M_SWRESET, &vpm->control) &&
time_before(jiffies, stoptime))
msleep(1);
if (time_after(jiffies, stoptime)) {
dev_dbg(dev, "Detected failure to clear SWRESET.\n");
res = -EIO;
goto failed_exit;
}
pingstatus = gpakPingDsp(vpm->dspid, &vpm->version);
if (!pingstatus) {
dev_info(&vpm->vb->pdev->dev, "VPM present and operational "
"(Firmware version %x)\n", vpm->version);
} else {
dev_notice(&vpm->vb->pdev->dev, "VPMADT032 Failed! Unable to ping the DSP (%d)!\n", pingstatus);
res = -EIO;
goto failed_exit;
}
return 0;
failed_exit:
return res;
}
EXPORT_SYMBOL(vpmadt032_init);
void vpmadt032_get_default_parameters(struct GpakEcanParms *p)
{
memset(p, 0, sizeof(*p));
p->EcanTapLength = 1024;
p->EcanNlpType = DEFAULT_NLPTYPE;
p->EcanAdaptEnable = 1;
#ifdef CONFIG_DAHDI_NO_ECHOCAN_DISABLE
p->EcanG165DetEnable = 0;
#else
p->EcanG165DetEnable = 1;
#endif
p->EcanDblTalkThresh = 6;
p->EcanMaxDoubleTalkThres = 40;
p->EcanNlpThreshold = DEFAULT_NLPTHRESH;
p->EcanNlpConv = 18;
p->EcanNlpUnConv = 12;
p->EcanNlpMaxSuppress = DEFAULT_NLPMAXSUPP;
p->EcanCngThreshold = 43;
p->EcanAdaptLimit = 25;
p->EcanCrossCorrLimit = 15;
p->EcanNumFirSegments = 3;
p->EcanFirSegmentLen = 48;
p->EcanReconvergenceCheckEnable = 1;
p->EcanTandemOperationEnable = 0;
p->EcanMixedFourWireMode = 0;
p->EcanSaturationLevel = 3;
p->EcanNLPSaturationThreshold = 6;
}
EXPORT_SYMBOL(vpmadt032_get_default_parameters);
void vpmadt032_free(struct vpmadt032 *vpm)
{
unsigned long flags;
struct vpmadt032_cmd *cmd;
struct change_order *order;
LIST_HEAD(local_list);
if (!vpm)
return;
BUG_ON(!vpm->wq);
destroy_workqueue(vpm->wq);
/* Move all the commands onto the local list protected by the locks */
spin_lock_irqsave(&vpm->list_lock, flags);
list_splice(&vpm->pending_cmds, &local_list);
list_splice(&vpm->active_cmds, &local_list);
spin_unlock_irqrestore(&vpm->list_lock, flags);
while (!list_empty(&local_list)) {
cmd = list_entry(local_list.next, struct vpmadt032_cmd, node);
list_del(&cmd->node);
kfree(cmd);
}
spin_lock(&vpm->change_list_lock);
list_splice(&vpm->change_list, &local_list);
spin_unlock(&vpm->change_list_lock);
while (!list_empty(&local_list)) {
order = list_entry(local_list.next, struct change_order, node);
list_del(&order->node);
kfree(order);
}
BUG_ON(ifaces[vpm->dspid] != vpm);
spin_lock(&ifacelock);
ifaces[vpm->dspid] = NULL;
spin_unlock(&ifacelock);
kfree(vpm);
}
EXPORT_SYMBOL(vpmadt032_free);
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* gpakReadDspMemory - Read DSP memory.
*
* FUNCTION
* This function reads a contiguous block of words from DSP memory starting at
* the specified address.
*
* RETURNS
* nothing
*
*/
void gpakReadDspMemory(
unsigned short int DspId, /* DSP Identifier (0 to MAX_DSP_CORES-1) */
DSP_ADDRESS DspAddress, /* DSP's memory address of first word */
unsigned int NumWords, /* number of contiguous words to read */
DSP_WORD *pWordValues /* pointer to array of word values variable */
)
{
struct vpmadt032 *vpm = find_iface(DspId);
int i;
int ret;
vpmadt032_io_wait(vpm);
if ( NumWords < VPM150M_MAX_COMMANDS ) {
struct vpmadt032_cmd *cmds[VPM150M_MAX_COMMANDS];
memset(cmds, 0, sizeof(cmds));
vpmadt032_setpage(vpm, DspAddress >> 16);
DspAddress &= 0xffff;
for (i=0; i < NumWords; ++i) {
if (!(cmds[i] = vpmadt032_getreg_full_async(vpm,0,DspAddress+i))) {
return;
}
}
for (i=NumWords-1; i >=0; --i) {
ret = vpmadt032_getreg_full_return(vpm,0,DspAddress+i,&pWordValues[i],
cmds[i]);
if (0 != ret) {
return;
}
}
}
else {
for (i=0; i<NumWords; ++i) {
vpmadt032_getreg(vpm, DspAddress + i, &pWordValues[i]);
}
}
return;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* gpakWriteDspMemory - Write DSP memory.
*
* FUNCTION
* This function writes a contiguous block of words to DSP memory starting at
* the specified address.
*
* RETURNS
* nothing
*
*/
void gpakWriteDspMemory(
unsigned short int DspId, /* DSP Identifier (0 to MAX_DSP_CORES-1) */
DSP_ADDRESS DspAddress, /* DSP's memory address of first word */
unsigned int NumWords, /* number of contiguous words to write */
DSP_WORD *pWordValues /* pointer to array of word values to write */
)
{
struct vpmadt032 *vpm = find_iface(DspId);
int i;
//dev_info(&vpm->vb->pdev->dev, "Writing %d words to memory\n", NumWords);
if (vpm) {
for (i = 0; i < NumWords; ++i) {
vpmadt032_setreg(vpm, DspAddress + i, pWordValues[i]);
}
#if 0
for (i = 0; i < NumWords; i++) {
if (wctdm_vpmadt032_getreg(wc, DspAddress + i) != pWordValues[i]) {
dev_notice(&vpm->vb->pdev->dev, "Error in write. Address %x is not %x\n", DspAddress + i, pWordValues[i]);
}
}
#endif
}
return;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* gpakHostDelay - Delay for a fixed time interval.
*
* FUNCTION
* This function delays for a fixed time interval before returning. The time
* interval is the Host Port Interface sampling period when polling a DSP for
* replies to command messages.
*
* RETURNS
* nothing
*
*/
void gpakHostDelay(void)
{
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* gpakLockAccess - Lock access to the specified DSP.
*
* FUNCTION
* This function aquires exclusive access to the specified DSP.
*
* RETURNS
* nothing
*
*/
void gpakLockAccess(unsigned short DspId)
{
struct vpmadt032 *vpm;
vpm = find_iface(DspId);
if (!vpm)
return;
down(&vpm->sem);
return;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* gpakUnlockAccess - Unlock access to the specified DSP.
*
* FUNCTION
* This function releases exclusive access to the specified DSP.
*
* RETURNS
* nothing
*
*/
void gpakUnlockAccess(unsigned short DspId)
{
struct vpmadt032 *vpm;
vpm = find_iface(DspId);
if (vpm) {
up(&vpm->sem);
}
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* gpakReadFile - Read a block of bytes from a G.PAK Download file.
*
* FUNCTION
* This function reads a contiguous block of bytes from a G.PAK Download file
* starting at the current file position.
*
* RETURNS
* The number of bytes read from the file.
* -1 indicates an error occurred.
* 0 indicates all bytes have been read (end of file)
*
*/
int gpakReadFile(
GPAK_FILE_ID FileId, /* G.PAK Download File Identifier */
unsigned char *pBuffer, /* pointer to buffer for storing bytes */
unsigned int NumBytes /* number of bytes to read */
)
{
/* The firmware is loaded into the part by a closed-source firmware
* loader, and therefore this function should never be called. */
WARN_ON(1);
return -1;
}
|