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
|
/*
* Copyright (C) 1995 Advanced RISC Machines Limited. All rights reserved.
*
* This software may be freely used, copied, modified, and distributed
* provided that the above copyright notice is preserved in all copies of the
* software.
*/
/* -*-C-*-
*
* $Revision: 1.2 $
* $Date: 2003/01/16 10:40:13 $
*
*
* hostchan.c - Semi Synchronous Host side channel interface for Angel.
*/
#include <stdio.h>
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#else
# include "winsock.h"
# include "time.h"
#endif
#include "hsys.h"
#include "host.h"
#include "logging.h"
#include "chandefs.h"
#include "chanpriv.h"
#include "devclnt.h"
#include "buffers.h"
#include "drivers.h"
#include "adperr.h"
#include "devsw.h"
#include "hostchan.h"
#ifndef UNUSED
#define UNUSED(x) (x = x) /* Silence compiler warnings for unused arguments */
#endif
#define HEARTRATE 5000000
/*
* list of available drivers, declared in drivers.c
*/
extern DeviceDescr *devices[];
static DeviceDescr *deviceToUse = NULL;
static struct Channel {
ChannelCallback callback;
void *callback_state;
} channels[CI_NUM_CHANNELS];
static unsigned char HomeSeq;
static unsigned char OppoSeq;
/*
* Handler for DC_APPL packets
*/
static DC_Appl_Handler dc_appl_handler = NULL;
/*
* slots for registered asynchronous processing callback procedures
*/
#define MAX_ASYNC_CALLBACKS 8
static unsigned int num_async_callbacks = 0;
static Adp_Async_Callback async_callbacks[MAX_ASYNC_CALLBACKS];
/*
* writeQueueRoot is the queue of write requests pending acknowledgement
* writeQueueSend is the queue of pending write requests which will
* be a subset of the list writeQueueRoot
*/
static Packet *writeQueueRoot = NULL;
static Packet *writeQueueSend = NULL;
static Packet *resend_pkt = NULL;
static int resending = FALSE;
/* heartbeat_enabled is a flag used to indicate whether the heartbeat is
* currently turned on, heartbeat_enabled will be false in situations
* where even though a heartbeat is being used it is problematical or
* dis-advantageous to have it turned on, for instance during the
* initial stages of boot up
*/
unsigned int heartbeat_enabled = FALSE;
/* heartbeat_configured is set up by the device driver to indicate whether
* the heartbeat is being used during this debug session. In contrast to
* heartbeat_enabled it must not be changed during a session. The logic for
* deciding whether to send a heartbeat is: Is heartbeat_configured for this
* session? if and only if it is then if heartbeat[is currently]_enabled and
* we are due to send a pulse then send it
*/
unsigned int heartbeat_configured = TRUE;
void Adp_initSeq( void ) {
Packet *tmp_pkt = writeQueueSend;
HomeSeq = 0;
OppoSeq = 0;
if ( writeQueueSend != NULL) {
while (writeQueueSend->pk_next !=NULL) {
tmp_pkt = writeQueueSend;
writeQueueSend = tmp_pkt->pk_next;
DevSW_FreePacket(tmp_pkt);
}
}
tmp_pkt = writeQueueRoot;
if ( writeQueueRoot == NULL)
return;
while (writeQueueRoot->pk_next !=NULL) {
tmp_pkt = writeQueueRoot;
writeQueueRoot = tmp_pkt->pk_next;
DevSW_FreePacket(tmp_pkt);
}
return;
}
/**********************************************************************/
/*
* Function: DummyCallback
* Purpose: Default callback routine to handle unexpected input
* on a channel
*
* Params:
* Input: packet The received packet
*
* state Contains nothing of significance
*
* Returns: Nothing
*/
static void DummyCallback(Packet *packet, void *state)
{
ChannelID chan;
const char fmt[] = "Unexpected read on channel %u, length %d\n";
char fmtbuf[sizeof(fmt) + 24];
UNUSED(state);
chan = *(packet->pk_buffer);
sprintf(fmtbuf, fmt, chan, packet->pk_length);
printf(fmtbuf);
/*
* junk this packet
*/
DevSW_FreePacket(packet);
}
/*
* Function: BlockingCallback
* Purpose: Callback routine used to implement a blocking read call
*
* Params:
* Input: packet The received packet.
*
* Output: state Address of higher level's pointer to the received
* packet.
*
* Returns: Nothing
*/
static void BlockingCallback(Packet *packet, void *state)
{
/*
* Pass the packet back to the caller which requested a packet
* from this channel. This also flags the completion of the I/O
* request to the blocking read call.
*/
*((Packet **)state) = packet;
}
/*
* Function: FireCallback
* Purpose: Pass received packet along to the callback routine for
* the appropriate channel
*
* Params:
* Input: packet The received packet.
*
* Returns: Nothing
*
* Post-conditions: The Target-to-Host sequence number for the channel
* will have been incremented.
*/
static void FireCallback(Packet *packet)
{
ChannelID chan;
struct Channel *ch;
/*
* is this a sensible channel number?
*/
chan = *(packet->pk_buffer);
if (invalidChannelID(chan))
{
printf("ERROR: invalid ChannelID received from target\n");
/*
* free the packet's resources, 'cause no-one else will
*/
DevSW_FreePacket(packet);
return;
}
/*
* looks OK - increment sequence number, and pass packet to callback
*/
ch = channels + chan;
(ch->callback)(packet, ch->callback_state);
}
/**********************************************************************/
/*
* These are the externally visible functions. They are documented
* in hostchan.h
*/
void Adp_addToQueue(Packet **head, Packet *newpkt)
{
/*
* this is a bit of a hack
*/
Packet *pk;
/*
* make sure that the hack we are about to use will work as expected
*/
ASSERT(&(((Packet *)0)->pk_next) == 0, "bad struct Packet layout");
#if defined(DEBUG) && 0
printf("Adp_addToQueue(%p, %p)\n", head, newpkt);
#endif
/*
* here's the hack - it relies upon the next
* pointer being at the start of Packet.
*/
pk = (Packet *)(head);
/*
* skip to the end of the queue
*/
while (pk->pk_next != NULL)
pk = pk->pk_next;
/*
* now add the new element
*/
newpkt->pk_next = NULL;
pk->pk_next = newpkt;
}
Packet *Adp_removeFromQueue(Packet **head)
{
struct Packet *pk;
pk = *head;
if (pk != NULL)
*head = pk->pk_next;
return pk;
}
void Adp_SetLogEnable(int logEnableFlag)
{
DevSW_SetLogEnable(logEnableFlag);
}
void Adp_SetLogfile(const char *filename)
{
DevSW_SetLogfile(filename);
}
AdpErrs Adp_OpenDevice(const char *name, const char *arg,
unsigned int heartbeat_on)
{
int i;
AdpErrs retc;
ChannelID chan;
#ifdef DEBUG
printf("Adp_OpenDevice(%s, %s)\n", name, arg ? arg : "<NULL>");
#endif
heartbeat_configured = heartbeat_on;
if (deviceToUse != NULL)
return adp_device_already_open;
for (i = 0; (deviceToUse = devices[i]) != NULL; ++i)
if (DevSW_Match(deviceToUse, name, arg) == adp_ok)
break;
if (deviceToUse == NULL)
return adp_device_not_found;
/*
* we seem to have found a suitable device driver, so try to open it
*/
if ((retc = DevSW_Open(deviceToUse, name, arg, DC_DBUG)) != adp_ok)
{
/* we don't have a device to use */
deviceToUse = NULL;
return retc;
}
/*
* there is no explicit open on channels any more, so
* initialise state for all channels.
*/
for (chan = 0; chan < CI_NUM_CHANNELS; ++chan)
{
struct Channel *ch = channels + chan;
ch->callback = DummyCallback;
ch->callback_state = NULL;
OppoSeq = 0;
HomeSeq = 0;
}
return adp_ok;
}
AdpErrs Adp_CloseDevice(void)
{
AdpErrs retc;
#ifdef DEBUG
printf("Adp_CloseDevice\n");
#endif
if (deviceToUse == NULL)
return adp_device_not_open;
heartbeat_enabled = FALSE;
retc = DevSW_Close(deviceToUse, DC_DBUG);
/*
* we have to clear deviceToUse, even when the lower layers
* faulted the close, otherwise the condition will never clear
*/
if (retc != adp_ok)
WARN("DevSW_Close faulted the call");
deviceToUse = NULL;
return retc;
}
AdpErrs Adp_Ioctl(int opcode, void *args)
{
#ifdef DEBUG
printf("Adp_Ioctl\n");
#endif
if (deviceToUse == NULL)
return adp_device_not_open;
return DevSW_Ioctl(deviceToUse, opcode, args);
}
AdpErrs Adp_ChannelRegisterRead(const ChannelID chan,
const ChannelCallback cbfunc,
void *cbstate)
{
#ifdef DEBUG
printf("Adp_ChannelRegisterRead(%d, %p, %x)\n", chan, cbfunc, cbstate);
#endif
if (deviceToUse == NULL)
return adp_device_not_open;
if (invalidChannelID(chan))
return adp_bad_channel_id;
if (cbfunc == NULL)
{
channels[chan].callback = DummyCallback;
channels[chan].callback_state = NULL;
}
else
{
channels[chan].callback = cbfunc;
channels[chan].callback_state = cbstate;
}
return adp_ok;
}
AdpErrs Adp_ChannelRead(const ChannelID chan, Packet **packet)
{
struct Channel *ch;
#ifdef DEBUG
printf("Adp_ChannelRead(%d, %x)\n", chan, *packet);
#endif
if (deviceToUse == NULL)
return adp_device_not_open;
if (invalidChannelID(chan))
return adp_bad_channel_id;
/*
* if a callback has already been registered for this
* channel, then we do not allow this blocking read.
*/
ch = channels + chan;
if (ch->callback != DummyCallback)
return adp_callback_already_registered;
/*
* OK, use our own callback to wait for a packet to arrive
* on this channel
*/
ch->callback = BlockingCallback;
ch->callback_state = packet;
*packet = NULL;
/*
* keep polling until a packet appears for this channel
*/
while (((volatile Packet *)(*packet)) == NULL)
/*
* this call will block until a packet is read on any channel
*/
Adp_AsynchronousProcessing(async_block_on_read);
/*
* OK, the packet has arrived: clear the callback
*/
ch->callback = DummyCallback;
ch->callback_state = NULL;
return adp_ok;
}
static AdpErrs ChannelWrite(
const ChannelID chan, Packet *packet, AsyncMode mode)
{
struct Channel *ch;
unsigned char *cptr;
#ifdef DEBUG
printf( "Adp_ChannelWrite(%d, %x)\n", chan, packet );
#endif
if (deviceToUse == NULL)
return adp_device_not_open;
if (invalidChannelID(chan))
return adp_bad_channel_id;
/*
* fill in the channels header at the start of this buffer
*/
ch = channels + chan;
cptr = packet->pk_buffer;
*cptr++ = chan;
*cptr = 0;
packet->pk_length += CHAN_HEADER_SIZE;
/*
* OK, add this packet to the write queue, and try to flush it out
*/
Adp_addToQueue(&writeQueueSend, packet);
Adp_AsynchronousProcessing(mode);
return adp_ok;
}
AdpErrs Adp_ChannelWrite(const ChannelID chan, Packet *packet) {
return ChannelWrite(chan, packet, async_block_on_write);
}
AdpErrs Adp_ChannelWriteAsync(const ChannelID chan, Packet *packet) {
return ChannelWrite(chan, packet, async_block_on_nothing);
}
static AdpErrs send_resend_msg(DeviceID devid) {
/*
* Send a resend message, usually in response to a bad packet or
* a resend request */
Packet * packet;
packet = DevSW_AllocatePacket(CF_DATA_BYTE_POS);
packet->pk_buffer[CF_CHANNEL_BYTE_POS] = CI_PRIVATE;
packet->pk_buffer[CF_HOME_SEQ_BYTE_POS] = HomeSeq;
packet->pk_buffer[CF_OPPO_SEQ_BYTE_POS] = OppoSeq;
packet->pk_buffer[CF_FLAGS_BYTE_POS] = CF_RELIABLE | CF_RESEND;
packet->pk_length = CF_DATA_BYTE_POS;
return DevSW_Write(deviceToUse, packet, devid);
}
static AdpErrs check_seq(unsigned char msg_home, unsigned char msg_oppo) {
Packet *tmp_pkt;
UNUSED(msg_oppo);
/*
* check if we have got an ack for anything and if so remove it from the
* queue
*/
if (msg_home == (unsigned char)(OppoSeq+1)) {
/*
* arrived in sequence can increment our opposing seq number and remove
* the relevant packet from our queue
* check that the packet we're going to remove really is the right one
*/
tmp_pkt = writeQueueRoot;
while ((tmp_pkt->pk_next != NULL) &&
(tmp_pkt->pk_next->pk_buffer[CF_HOME_SEQ_BYTE_POS]
!= OppoSeq)){
tmp_pkt = tmp_pkt->pk_next;
}
OppoSeq++;
if (tmp_pkt->pk_next == NULL) {
#ifdef DEBUG
printf("trying to remove a non existant packet\n");
#endif
return adp_bad_packet;
}
else {
Packet *tmp = tmp_pkt->pk_next;
#ifdef RET_DEBUG
printf("removing a packet from the root queue\n");
#endif
tmp_pkt->pk_next = tmp_pkt->pk_next->pk_next;
/* remove the appropriate packet */
DevSW_FreePacket(tmp);
return adp_ok;
}
}
else if (msg_home < (unsigned char) (OppoSeq+1)){
/* already received this message */
#ifdef RET_DEBUG
printf("sequence numbers low\n");
#endif
return adp_seq_low;
}
else { /* we've missed something */
#ifdef RET_DEBUG
printf("sequence numbers high\n");
#endif
return adp_seq_high;
}
}
static unsigned long tv_diff(const struct timeval *time_now,
const struct timeval *time_was)
{
return ( ((time_now->tv_sec * 1000000) + time_now->tv_usec)
- ((time_was->tv_sec * 1000000) + time_was->tv_usec) );
}
#if !defined(__unix) && !defined(__CYGWIN__)
static void gettimeofday( struct timeval *time_now, void *dummy )
{
time_t t = clock();
UNUSED(dummy);
time_now->tv_sec = t/CLOCKS_PER_SEC;
time_now->tv_usec = (t%CLOCKS_PER_SEC)*(1000000/CLOCKS_PER_SEC);
}
#endif
static AdpErrs pacemaker(void)
{
Packet *packet;
packet = DevSW_AllocatePacket(CF_DATA_BYTE_POS);
if (packet == NULL) {
printf("ERROR: could not allocate a packet in pacemaker()\n");
return adp_malloc_failure;
}
packet->pk_buffer[CF_CHANNEL_BYTE_POS] = CI_PRIVATE;
packet->pk_buffer[CF_HOME_SEQ_BYTE_POS] = HomeSeq;
packet->pk_buffer[CF_OPPO_SEQ_BYTE_POS] = OppoSeq;
packet->pk_buffer[CF_FLAGS_BYTE_POS] = CF_RELIABLE | CF_HEARTBEAT;
packet->pk_length = CF_DATA_BYTE_POS;
return DevSW_Write(deviceToUse, packet, DC_DBUG);
}
#ifdef FAKE_BAD_LINE_RX
static AdpErrs fake_bad_line_rx( const Packet *const packet, AdpErrs adp_err )
{
static unsigned int bl_num = 0;
if ( (packet != NULL)
&& (bl_num++ >= 20 )
&& ((bl_num % FAKE_BAD_LINE_RX) == 0))
{
printf("DEBUG: faking a bad packet\n");
return adp_bad_packet;
}
return adp_err;
}
#endif /* def FAKE_BAD_LINE_RX */
#ifdef FAKE_BAD_LINE_TX
static unsigned char tmp_ch;
static void fake_bad_line_tx( void )
{
static unsigned int bl_num = 0;
/* give the thing a chance to boot then try corrupting stuff */
if ( (bl_num++ >= 20) && ((bl_num % FAKE_BAD_LINE_TX) == 0))
{
printf("DEBUG: faking a bad packet for tx\n");
tmp_ch = writeQueueSend->pk_buffer[CF_FLAGS_BYTE_POS];
writeQueueSend->pk_buffer[CF_FLAGS_BYTE_POS] = 77;
}
}
static void unfake_bad_line_tx( void )
{
static unsigned int bl_num = 0;
/*
* must reset the packet so that its not corrupted when we
* resend it
*/
if ( (bl_num >= 20) && ((bl_num % FAKE_BAD_LINE_TX) != 0))
{
writeQueueSend->pk_buffer[CF_FLAGS_BYTE_POS] = tmp_ch;
}
}
#endif /* def FAKE_BAD_LINE_TX */
/*
* NOTE: we are assuming that a resolution of microseconds will
* be good enough for the purporses of the heartbeat. If this proves
* not to be the case then we may need a rethink, possibly using
* [get,set]itimer
*/
static struct timeval time_now;
static struct timeval time_lastalive;
static void async_process_dbug_read( const AsyncMode mode,
bool *const finished )
{
Packet *packet;
unsigned int msg_home, msg_oppo;
AdpErrs adp_err;
adp_err = DevSW_Read(deviceToUse, DC_DBUG, &packet,
mode == async_block_on_read );
#ifdef FAKE_BAD_LINE_RX
adp_err = fake_bad_line_rx( packet, adp_err );
#endif
if (adp_err == adp_bad_packet) {
/* We got a bad packet, ask for a resend, send a resend message */
#ifdef DEBUG
printf("received a bad packet\n");
#endif
send_resend_msg(DC_DBUG);
}
else if (packet != NULL)
{
/* update the heartbeat clock */
gettimeofday(&time_lastalive, NULL);
/*
* we got a live one here - were we waiting for it?
*/
if (mode == async_block_on_read)
/* not any more */
*finished = TRUE;
#ifdef RETRANS
if (packet->pk_length < CF_DATA_BYTE_POS) {
/* we've got a packet with no header information! */
printf("ERROR: packet with no transport header\n");
send_resend_msg(DC_DBUG);
}
else {
#ifdef RET_DEBUG
unsigned int c;
#endif
/*
* TODO: Check to see if its acknowledgeing anything, remove
* those packets it is from the queue. If its a retrans add the
* packets to the queue
*/
msg_home = packet->pk_buffer[CF_HOME_SEQ_BYTE_POS];
msg_oppo = packet->pk_buffer[CF_OPPO_SEQ_BYTE_POS];
#ifdef RET_DEBUG
printf("msg seq numbers are hseq 0x%x oseq 0x%x\n",
msg_home, msg_oppo);
for (c=0;c<packet->pk_length;c++)
printf("%02.2x", packet->pk_buffer[c]);
printf("\n");
#endif
/* now was it a resend request? */
if ((packet->pk_buffer[CF_FLAGS_BYTE_POS])
& CF_RESEND) {
/* we've been asked for a resend so we had better resend */
/*
* I don't think we can use a resend as acknowledgement for
* anything so lets not do this for the moment
* check_seq(msg_home, msg_oppo);
*/
#ifdef RET_DEBUG
printf("received a resend request\n");
#endif
if (HomeSeq != msg_oppo) {
int found = FALSE;
/* need to resend from msg_oppo +1 upwards */
DevSW_FreePacket(packet);
resending = TRUE;
/* find the correct packet to resend from */
packet = writeQueueRoot;
while (((packet->pk_next) != NULL) && !found) {
if ((packet->pk_buffer[CF_OPPO_SEQ_BYTE_POS])
!= msg_oppo+1) {
resend_pkt = packet;
found = TRUE;
}
packet = packet->pk_next;
}
if (!found) {
panic("trying to resend non-existent packets\n");
}
}
else if (OppoSeq != msg_home) {
/*
* send a resend request telling the target where we think
* the world is at
*/
DevSW_FreePacket(packet);
send_resend_msg(DC_DBUG);
}
}
else {
/* not a resend request, lets check the sequence numbers */
if ((packet->pk_buffer[CF_CHANNEL_BYTE_POS] != CI_HBOOT) &&
(packet->pk_buffer[CF_CHANNEL_BYTE_POS] != CI_TBOOT)) {
adp_err = check_seq(msg_home, msg_oppo);
if (adp_err == adp_seq_low) {
/* we have already received this packet so discard */
DevSW_FreePacket(packet);
}
else if (adp_err == adp_seq_high) {
/*
* we must have missed a packet somewhere, discard this
* packet and tell the target where we are
*/
DevSW_FreePacket(packet);
send_resend_msg(DC_DBUG);
}
else
/*
* now pass the packet to whoever is waiting for it
*/
FireCallback(packet);
}
else
FireCallback(packet);
}
}
#else
/*
* now pass the packet to whoever is waiting for it
*/
FireCallback(packet);
#endif
}
}
static void async_process_appl_read(void)
{
Packet *packet;
AdpErrs adp_err;
/* see if there is anything for the DC_APPL channel */
adp_err = DevSW_Read(deviceToUse, DC_APPL, &packet, FALSE);
if (adp_err == adp_ok && packet != NULL)
{
/* got an application packet on a shared device */
#ifdef DEBUG
printf("GOT DC_APPL PACKET: len %d\nData: ", packet->pk_length);
{
unsigned int c;
for ( c = 0; c < packet->pk_length; ++c )
printf( "%02X ", packet->pk_buffer[c] );
}
printf("\n");
#endif
if (dc_appl_handler != NULL)
{
dc_appl_handler( deviceToUse, packet );
}
else
{
/* for now, just free it!! */
#ifdef DEBUG
printf("no handler - dropping DC_APPL packet\n");
#endif
DevSW_FreePacket( packet );
}
}
}
static void async_process_write( const AsyncMode mode,
bool *const finished )
{
Packet *packet;
#ifdef DEBUG
static unsigned int num_written = 0;
#endif
/*
* NOTE: here we rely in the fact that any packet in the writeQueueSend
* section of the queue will need its sequence number setting up while
* and packet in the writeQueueRoot section will have its sequence
* numbers set up from when it was first sent so we can easily look
* up the packet numbers when(if) we want to resend the packet.
*/
#ifdef DEBUG
if (writeQueueSend!=NULL)
printf("written 0x%x\n",num_written += writeQueueSend->pk_length);
#endif
/*
* give the switcher a chance to complete any partial writes
*/
if (DevSW_FlushPendingWrite(deviceToUse) == adp_write_busy)
{
/* no point trying a new write */
return;
}
/*
* now see whether there is anything to write
*/
packet = NULL;
if (resending) {
packet = resend_pkt;
#ifdef RET_DEBUG
printf("resending hseq 0x%x oseq 0x%x\n",
packet->pk_buffer[CF_HOME_SEQ_BYTE_POS],
packet->pk_buffer[CF_OPPO_SEQ_BYTE_POS]);
#endif
}
else if (writeQueueSend != NULL) {
#ifdef RETRANS
/* set up the sequence number on the packet */
packet = writeQueueSend;
HomeSeq++;
(writeQueueSend->pk_buffer[CF_OPPO_SEQ_BYTE_POS])
= OppoSeq;
(writeQueueSend->pk_buffer[CF_HOME_SEQ_BYTE_POS])
= HomeSeq;
(writeQueueSend->pk_buffer[CF_FLAGS_BYTE_POS])
= CF_RELIABLE;
# ifdef RET_DEBUG
printf("sending packet with hseq 0x%x oseq 0x%x\n",
writeQueueSend->pk_buffer[CF_HOME_SEQ_BYTE_POS],
writeQueueSend->pk_buffer[CF_OPPO_SEQ_BYTE_POS]);
# endif
#endif /* RETRANS */
}
if (packet != NULL) {
AdpErrs dev_err;
#ifdef FAKE_BAD_LINE_TX
fake_bad_line_tx();
#endif
dev_err = DevSW_Write(deviceToUse, packet, DC_DBUG);
if (dev_err == adp_ok) {
#ifdef RETRANS
if (resending) {
/* check to see if we've recovered yet */
if ((packet->pk_next) == NULL){
# ifdef RET_DEBUG
printf("we have recovered\n");
# endif
resending = FALSE;
}
else {
resend_pkt = resend_pkt->pk_next;
}
}
else {
/*
* move the packet we just sent from the send queue to the root
*/
Packet *tmp_pkt, *tmp;
# ifdef FAKE_BAD_LINE_TX
unfake_bad_line_tx();
# endif
tmp_pkt = writeQueueSend;
writeQueueSend = writeQueueSend->pk_next;
tmp_pkt->pk_next = NULL;
if (writeQueueRoot == NULL)
writeQueueRoot = tmp_pkt;
else {
tmp = writeQueueRoot;
while (tmp->pk_next != NULL) {
tmp = tmp->pk_next;
}
tmp->pk_next = tmp_pkt;
}
}
#else /* not RETRANS */
/*
* switcher has taken the write, so remove it from the
* queue, and free its resources
*/
DevSW_FreePacket(Adp_removeFromQueue(&writeQueueSend));
#endif /* if RETRANS ... else ... */
if (mode == async_block_on_write)
*finished = DevSW_WriteFinished(deviceToUse);
} /* endif write ok */
}
else /* packet == NULL */
{
if (mode == async_block_on_write)
*finished = DevSW_WriteFinished(deviceToUse);
}
}
static void async_process_heartbeat( void )
{
/* check to see whether we need to send a heartbeat */
gettimeofday(&time_now, NULL);
if (tv_diff(&time_now, &time_lastalive) >= HEARTRATE)
{
/*
* if we've not booted then don't do send a heartrate the link
* must be reliable enough for us to boot without any clever stuff,
* if we can't do this then theres little chance of the link staying
* together even with the resends etc
*/
if (heartbeat_enabled) {
gettimeofday(&time_lastalive, NULL);
pacemaker();
}
}
}
static void async_process_callbacks( void )
{
/* call any registered asynchronous callbacks */
unsigned int i;
for ( i = 0; i < num_async_callbacks; ++i )
async_callbacks[i]( deviceToUse, &time_now );
}
void Adp_AsynchronousProcessing(const AsyncMode mode)
{
bool finished = FALSE;
#ifdef DEBUG
unsigned int wc = 0, dc = 0, ac = 0, hc = 0;
# define INC_COUNT(x) ((x)++)
#else
# define INC_COUNT(x)
#endif
if ((time_lastalive.tv_sec == 0) && (time_lastalive.tv_usec == 0)) {
/* first time through, needs initing */
gettimeofday(&time_lastalive, NULL);
}
/* main loop */
do
{
async_process_write( mode, &finished );
INC_COUNT(wc);
if ( ! finished && mode != async_block_on_write )
{
async_process_dbug_read( mode, &finished );
INC_COUNT(dc);
}
if ( ! finished && mode != async_block_on_write )
{
async_process_appl_read();
INC_COUNT(ac);
}
if ( ! finished )
{
if (heartbeat_configured)
async_process_heartbeat();
async_process_callbacks();
INC_COUNT(hc);
}
} while (!finished && mode != async_block_on_nothing);
#ifdef DEBUG
if ( mode != async_block_on_nothing )
printf( "Async: %s - w %d, d %d, a %d, h %d\n",
mode == async_block_on_write ? "blk_write" : "blk_read",
wc, dc, ac, hc );
#endif
}
/*
* install a handler for DC_APPL packets (can be NULL), returning old one.
*/
DC_Appl_Handler Adp_Install_DC_Appl_Handler(const DC_Appl_Handler handler)
{
DC_Appl_Handler old_handler = dc_appl_handler;
#ifdef DEBUG
printf( "Installing DC_APPL handler %x (old %x)\n", handler, old_handler );
#endif
dc_appl_handler = handler;
return old_handler;
}
/*
* add an asynchronous processing callback to the list
* TRUE == okay, FALSE == no more async processing slots
*/
bool Adp_Install_Async_Callback( const Adp_Async_Callback callback_proc )
{
if ( num_async_callbacks < MAX_ASYNC_CALLBACKS && callback_proc != NULL )
{
async_callbacks[num_async_callbacks] = callback_proc;
++num_async_callbacks;
return TRUE;
}
else
return FALSE;
}
/*
* delay for a given period (in microseconds)
*/
void Adp_delay(unsigned int period)
{
struct timeval tv;
#ifdef DEBUG
printf("delaying for %d microseconds\n", period);
#endif
tv.tv_sec = (period / 1000000);
tv.tv_usec = (period % 1000000);
(void)select(0, NULL, NULL, NULL, &tv);
}
/* EOF hostchan.c */
|