rioroute.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:35k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. ** -----------------------------------------------------------------------------
  3. **
  4. **  Perle Specialix driver for Linux
  5. **  Ported from existing RIO Driver for SCO sources.
  6.  *
  7.  *  (C) 1990 - 2000 Specialix International Ltd., Byfleet, Surrey, UK.
  8.  *
  9.  *      This program is free software; you can redistribute it and/or modify
  10.  *      it under the terms of the GNU General Public License as published by
  11.  *      the Free Software Foundation; either version 2 of the License, or
  12.  *      (at your option) any later version.
  13.  *
  14.  *      This program is distributed in the hope that it will be useful,
  15.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  *      GNU General Public License for more details.
  18.  *
  19.  *      You should have received a copy of the GNU General Public License
  20.  *      along with this program; if not, write to the Free Software
  21.  *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22. **
  23. ** Module : rioroute.c
  24. ** SID : 1.3
  25. ** Last Modified : 11/6/98 10:33:46
  26. ** Retrieved : 11/6/98 10:33:50
  27. **
  28. **  ident @(#)rioroute.c 1.3
  29. **
  30. ** -----------------------------------------------------------------------------
  31. */
  32. #ifdef SCCS_LABELS
  33. static char *_rioroute_c_sccs_ = "@(#)rioroute.c 1.3";
  34. #endif
  35. #define __NO_VERSION__
  36. #include <linux/module.h>
  37. #include <linux/slab.h>
  38. #include <linux/errno.h>
  39. #include <asm/io.h>
  40. #include <asm/system.h>
  41. #include <asm/string.h>
  42. #include <asm/semaphore.h>
  43. #include <asm/uaccess.h>
  44. #include <linux/termios.h>
  45. #include <linux/serial.h>
  46. #include <linux/compatmac.h>
  47. #include <linux/generic_serial.h>
  48. #include "linux_compat.h"
  49. #include "rio_linux.h"
  50. #include "typdef.h"
  51. #include "pkt.h"
  52. #include "daemon.h"
  53. #include "rio.h"
  54. #include "riospace.h"
  55. #include "top.h"
  56. #include "cmdpkt.h"
  57. #include "map.h"
  58. #include "riotypes.h"
  59. #include "rup.h"
  60. #include "port.h"
  61. #include "riodrvr.h"
  62. #include "rioinfo.h"
  63. #include "func.h"
  64. #include "errors.h"
  65. #include "pci.h"
  66. #include "parmmap.h"
  67. #include "unixrup.h"
  68. #include "board.h"
  69. #include "host.h"
  70. #include "error.h"
  71. #include "phb.h"
  72. #include "link.h"
  73. #include "cmdblk.h"
  74. #include "route.h"
  75. #include "control.h"
  76. #include "cirrus.h"
  77. #include "rioioctl.h"
  78. #include "param.h"
  79. #include "list.h"
  80. #include "sam.h"
  81. /*
  82. ** Incoming on the ROUTE_RUP
  83. ** I wrote this while I was tired. Forgive me.
  84. */
  85. int RIORouteRup( struct rio_info *p, uint Rup, struct Host *HostP, PKT *PacketP )
  86. {
  87.   struct PktCmd *PktCmdP = (struct PktCmd *)PacketP->data;
  88.   struct PktCmd_M *PktReplyP;
  89.   struct CmdBlk *CmdBlkP;
  90.   struct Port *PortP;
  91.   struct Map *MapP;
  92.   struct Top *TopP;
  93.   int ThisLink, ThisLinkMin, ThisLinkMax;
  94.   int port;
  95.   int Mod, Mod1, Mod2;
  96.   ushort RtaType;
  97.   uint RtaUniq;
  98.   uint ThisUnit, ThisUnit2; /* 2 ids to accommodate 16 port RTA */
  99.   uint OldUnit, NewUnit, OldLink, NewLink;
  100.   char *MyType, *MyName;
  101.   int Lies;
  102.   unsigned long flags;
  103. #ifdef STACK
  104.     RIOStackCheck("RIORouteRup");
  105. #endif
  106. #ifdef CHECK
  107.     CheckPacketP(PacketP);
  108.     CheckHostP(HostP);
  109.     CheckRup(Rup);
  110.     CheckHost(Host);
  111. #endif
  112.   /*
  113.   ** Is this unit telling us it's current link topology?
  114.   */
  115.   if ( RBYTE(PktCmdP->Command) == ROUTE_TOPOLOGY )
  116.   {
  117.     MapP = HostP->Mapping;
  118.     /*
  119.     ** The packet can be sent either by the host or by an RTA.
  120.     ** If it comes from the host, then we need to fill in the
  121.     ** Topology array in the host structure. If it came in
  122.     ** from an RTA then we need to fill in the Mapping structure's
  123.     ** Topology array for the unit.
  124.     */
  125.     if ( Rup >= (ushort)MAX_RUP )
  126.     {
  127.       ThisUnit = HOST_ID;
  128.       TopP = HostP->Topology;
  129.       MyType = "Host";
  130.       MyName = HostP->Name;
  131.       ThisLinkMin = ThisLinkMax = Rup - MAX_RUP;
  132.     }
  133.     else
  134.     {
  135.       ThisUnit = Rup+1;
  136.       TopP = HostP->Mapping[Rup].Topology;
  137.       MyType = "RTA";
  138.       MyName = HostP->Mapping[Rup].Name;
  139.       ThisLinkMin = 0;
  140.       ThisLinkMax = LINKS_PER_UNIT - 1;
  141.     }
  142.     /*
  143.     ** Lies will not be tolerated.
  144.     ** If any pair of links claim to be connected to the same
  145.     ** place, then ignore this packet completely.
  146.     */
  147.     Lies = 0;
  148.     for ( ThisLink=ThisLinkMin + 1; ThisLink <= ThisLinkMax; ThisLink++)
  149.     {
  150.       /*
  151.       ** it won't lie about network interconnect, total disconnects
  152.       ** and no-IDs. (or at least, it doesn't *matter* if it does)
  153.       */
  154.       if ( RBYTE(PktCmdP->RouteTopology[ThisLink].Unit) > (ushort)MAX_RUP )
  155.   continue;
  156.       for ( NewLink=ThisLinkMin; NewLink < ThisLink; NewLink++ )
  157.       {
  158.         if ( (RBYTE(PktCmdP->RouteTopology[ThisLink].Unit) ==
  159.               RBYTE(PktCmdP->RouteTopology[NewLink].Unit)) &&
  160.      (RBYTE(PktCmdP->RouteTopology[ThisLink].Link) ==
  161.               RBYTE(PktCmdP->RouteTopology[NewLink].Link)) )
  162. {
  163.           Lies++;
  164. }
  165.       }
  166.     }
  167.     if ( Lies )
  168.     {
  169.       rio_dprintk (RIO_DEBUG_ROUTE, "LIES! DAMN LIES! %d LIES!n",Lies);
  170.       rio_dprintk (RIO_DEBUG_ROUTE, "%d:%c %d:%c %d:%c %d:%cn",
  171.           RBYTE(PktCmdP->RouteTopology[0].Unit), 
  172.   'A'+RBYTE(PktCmdP->RouteTopology[0].Link),
  173.           RBYTE(PktCmdP->RouteTopology[1].Unit),
  174.   'A'+RBYTE(PktCmdP->RouteTopology[1].Link),
  175.           RBYTE(PktCmdP->RouteTopology[2].Unit),
  176.   'A'+RBYTE(PktCmdP->RouteTopology[2].Link),
  177.           RBYTE(PktCmdP->RouteTopology[3].Unit),
  178.   'A'+RBYTE(PktCmdP->RouteTopology[3].Link));
  179.       return TRUE;
  180.     }
  181.     /*
  182.     ** now, process each link.
  183.     */
  184.     for ( ThisLink=ThisLinkMin; ThisLink <= ThisLinkMax; ThisLink++)
  185.     {
  186.       /*
  187.       ** this is what it was connected to
  188.       */
  189.       OldUnit = TopP[ThisLink].Unit;
  190.       OldLink = TopP[ThisLink].Link;
  191.       /*
  192.       ** this is what it is now connected to
  193.       */
  194.       NewUnit = RBYTE(PktCmdP->RouteTopology[ThisLink].Unit);
  195.       NewLink = RBYTE(PktCmdP->RouteTopology[ThisLink].Link);
  196.       if ( OldUnit != NewUnit || OldLink != NewLink )
  197.       {
  198. /*
  199. ** something has changed!
  200. */
  201.         if ( NewUnit > MAX_RUP &&
  202.      NewUnit != ROUTE_DISCONNECT &&
  203.      NewUnit != ROUTE_NO_ID &&
  204.      NewUnit != ROUTE_INTERCONNECT )
  205. {
  206.     rio_dprintk (RIO_DEBUG_ROUTE, "I have a link from %s %s to unit %d:%d - I don't like it.n",
  207.   MyType,
  208.   MyName,
  209.   NewUnit,
  210.   NewLink);
  211. }
  212. else
  213. {
  214.   /*
  215.   ** put the new values in
  216.   */
  217.   TopP[ThisLink].Unit = NewUnit;
  218.   TopP[ThisLink].Link = NewLink;
  219.   RIOSetChange(p);
  220.   if ( OldUnit <= MAX_RUP )
  221.   {
  222.     /*
  223.     ** If something has become bust, then re-enable them messages
  224.     */
  225.     if (! p->RIONoMessage)
  226. RIOConCon(p,HostP,ThisUnit,ThisLink,OldUnit,OldLink,DISCONNECT);
  227.   }
  228.   if ( ( NewUnit <= MAX_RUP ) && !p->RIONoMessage )
  229.     RIOConCon(p,HostP,ThisUnit,ThisLink,NewUnit,NewLink,CONNECT);
  230.   if ( NewUnit == ROUTE_NO_ID )
  231.     rio_dprintk (RIO_DEBUG_ROUTE, "%s %s (%c) is connected to an unconfigured unit.n",
  232.     MyType,MyName,'A'+ThisLink);
  233.   if ( NewUnit == ROUTE_INTERCONNECT )
  234.   {
  235.     if (! p->RIONoMessage)
  236. cprintf("%s '%s' (%c) is connected to another network.n", MyType,MyName,'A'+ThisLink);
  237.   }
  238.   /*
  239.   ** perform an update for 'the other end', so that these messages
  240.   ** only appears once. Only disconnect the other end if it is pointing
  241.   ** at us!
  242.   */
  243.   if ( OldUnit == HOST_ID )
  244.   {
  245.     if ( HostP->Topology[OldLink].Unit == ThisUnit &&
  246.  HostP->Topology[OldLink].Link == ThisLink )
  247.     {
  248.       rio_dprintk (RIO_DEBUG_ROUTE, "SETTING HOST (%c) TO DISCONNECTED!n", OldLink+'A');
  249.       HostP->Topology[OldLink].Unit = ROUTE_DISCONNECT;
  250.       HostP->Topology[OldLink].Link = NO_LINK;
  251.     }
  252.     else
  253.     {
  254.       rio_dprintk (RIO_DEBUG_ROUTE, "HOST(%c) WAS NOT CONNECTED TO %s (%c)!n",
  255.     OldLink+'A',HostP->Mapping[ThisUnit-1].Name,ThisLink+'A');
  256.     }
  257.   }
  258.   else if ( OldUnit <= MAX_RUP )
  259.   {
  260.     if ( HostP->Mapping[OldUnit-1].Topology[OldLink].Unit == ThisUnit &&
  261.          HostP->Mapping[OldUnit-1].Topology[OldLink].Link == ThisLink )
  262.     {
  263.       rio_dprintk (RIO_DEBUG_ROUTE, "SETTING RTA %s (%c) TO DISCONNECTED!n",
  264.    HostP->Mapping[OldUnit-1].Name,OldLink+'A');
  265.       HostP->Mapping[OldUnit-1].Topology[OldLink].Unit=ROUTE_DISCONNECT;
  266.       HostP->Mapping[OldUnit-1].Topology[OldLink].Link=NO_LINK;
  267.     }
  268.     else
  269.     {
  270.       rio_dprintk (RIO_DEBUG_ROUTE, "RTA %s (%c) WAS NOT CONNECTED TO %s (%c)n",
  271.     HostP->Mapping[OldUnit-1].Name,OldLink+'A',
  272.     HostP->Mapping[ThisUnit-1].Name,ThisLink+'A');
  273.     }
  274.   }
  275.   if ( NewUnit == HOST_ID )
  276.   {
  277.     rio_dprintk (RIO_DEBUG_ROUTE, "MARKING HOST (%c) CONNECTED TO %s (%c)n",
  278. NewLink+'A',MyName,ThisLink+'A');
  279.     HostP->Topology[NewLink].Unit = ThisUnit;
  280.     HostP->Topology[NewLink].Link = ThisLink;
  281.   }
  282.   else if ( NewUnit <= MAX_RUP )
  283.   {
  284.     rio_dprintk (RIO_DEBUG_ROUTE, "MARKING RTA %s (%c) CONNECTED TO %s (%c)n",
  285.       HostP->Mapping[NewUnit-1].Name,NewLink+'A',MyName,ThisLink+'A');
  286.     HostP->Mapping[NewUnit-1].Topology[NewLink].Unit=ThisUnit;
  287.     HostP->Mapping[NewUnit-1].Topology[NewLink].Link=ThisLink;
  288.   }
  289. }
  290. RIOSetChange(p);
  291. RIOCheckIsolated(p, HostP, OldUnit );
  292.       }
  293.     }
  294.     return TRUE;
  295.   }
  296.   /*
  297.   ** The only other command we recognise is a route_request command
  298.   */
  299.   if ( RBYTE(PktCmdP->Command) != ROUTE_REQUEST )
  300.   {
  301.     rio_dprintk (RIO_DEBUG_ROUTE, "Unknown command %d received on rup %d host %d ROUTE_RUPn", 
  302.    RBYTE(PktCmdP->Command),Rup,(int)HostP);
  303.     return TRUE;
  304.   }
  305.       
  306.   RtaUniq = (RBYTE(PktCmdP->UniqNum[0])) +
  307.     (RBYTE(PktCmdP->UniqNum[1]) << 8) +
  308.     (RBYTE(PktCmdP->UniqNum[2]) << 16) +
  309.     (RBYTE(PktCmdP->UniqNum[3]) << 24);
  310.   /*
  311.   ** Determine if 8 or 16 port RTA
  312.   */
  313.   RtaType = GetUnitType(RtaUniq);
  314.   rio_dprintk (RIO_DEBUG_ROUTE, "Received a request for an ID for serial number %xn", RtaUniq);
  315.   Mod = RBYTE(PktCmdP->ModuleTypes);
  316.   Mod1 = LONYBLE(Mod);
  317.   if (RtaType == TYPE_RTA16)
  318.   {
  319.     /*
  320.     ** Only one ident is set for a 16 port RTA. To make compatible
  321.     ** with 8 port, set 2nd ident in Mod2 to the same as Mod1.
  322.     */
  323.     Mod2 = Mod1;
  324.     rio_dprintk (RIO_DEBUG_ROUTE, "Backplane type is %s (all ports)n",
  325.      p->RIOModuleTypes[Mod1].Name);
  326.   }
  327.   else
  328.   {
  329.     Mod2 = HINYBLE(Mod);
  330.     rio_dprintk (RIO_DEBUG_ROUTE, "Module types are %s (ports 0-3) and %s (ports 4-7)n",
  331.      p->RIOModuleTypes[Mod1].Name, p->RIOModuleTypes[Mod2].Name);
  332.   }
  333.   if ( RtaUniq == 0xffffffff )
  334.   {
  335.       ShowPacket( DBG_SPECIAL, PacketP );
  336.   }
  337.   /*
  338.   ** try to unhook a command block from the command free list.
  339.   */
  340.   if ( !(CmdBlkP = RIOGetCmdBlk()) )
  341.   {
  342.     rio_dprintk (RIO_DEBUG_ROUTE, "No command blocks to route RTA! come back later.n");
  343.     return 0;
  344.   }
  345.   /*
  346.   ** Fill in the default info on the command block
  347.   */
  348.   CmdBlkP->Packet.dest_unit = Rup;
  349.   CmdBlkP->Packet.dest_port = ROUTE_RUP;
  350.   CmdBlkP->Packet.src_unit = HOST_ID;
  351.   CmdBlkP->Packet.src_port = ROUTE_RUP;
  352.   CmdBlkP->Packet.len = PKT_CMD_BIT | 1;
  353.   CmdBlkP->PreFuncP = CmdBlkP->PostFuncP = NULL;
  354.   PktReplyP = (struct PktCmd_M *)CmdBlkP->Packet.data;
  355.   if (! RIOBootOk(p, HostP, RtaUniq))
  356.   {
  357.     rio_dprintk (RIO_DEBUG_ROUTE, "RTA %x tried to get an ID, but does not belong - FOAD it!n",
  358.   RtaUniq);
  359.     PktReplyP->Command = ROUTE_FOAD;
  360.     HostP->Copy("RT_FOAD", PktReplyP->CommandText, 7);
  361.     RIOQueueCmdBlk(HostP, Rup, CmdBlkP);
  362.     return TRUE;
  363.   }
  364.   /*
  365.   ** Check to see if the RTA is configured for this host
  366.   */
  367.   for ( ThisUnit=0; ThisUnit<MAX_RUP; ThisUnit++ )
  368.   {
  369.     rio_dprintk (RIO_DEBUG_ROUTE, "Entry %d Flags=%s %s UniqueNum=0x%xn",
  370. ThisUnit,
  371. HostP->Mapping[ThisUnit].Flags & SLOT_IN_USE ?
  372.     "Slot-In-Use":"Not In Use",
  373. HostP->Mapping[ThisUnit].Flags & SLOT_TENTATIVE ? 
  374.     "Slot-Tentative":"Not Tentative",
  375. HostP->Mapping[ThisUnit].RtaUniqueNum);
  376.     /*
  377.     ** We have an entry for it.
  378.     */
  379.     if ( (HostP->Mapping[ThisUnit].Flags & (SLOT_IN_USE | SLOT_TENTATIVE)) &&
  380.          (HostP->Mapping[ThisUnit].RtaUniqueNum == RtaUniq) )
  381.     {
  382.       if (RtaType == TYPE_RTA16)
  383.       {
  384.   ThisUnit2 = HostP->Mapping[ThisUnit].ID2 - 1;
  385.           rio_dprintk (RIO_DEBUG_ROUTE, "Found unit 0x%x at slots %d+%dn",
  386.     RtaUniq,ThisUnit,ThisUnit2);
  387.       }
  388.       else
  389.           rio_dprintk (RIO_DEBUG_ROUTE, "Found unit 0x%x at slot %dn",
  390.     RtaUniq,ThisUnit);
  391.       /*
  392.       ** If we have no knowledge of booting it, then the host has
  393.       ** been re-booted, and so we must kill the RTA, so that it
  394.       ** will be booted again (potentially with new bins)
  395.       ** and it will then re-ask for an ID, which we will service.
  396.       */
  397.       if ( (HostP->Mapping[ThisUnit].Flags & SLOT_IN_USE) && 
  398.   !(HostP->Mapping[ThisUnit].Flags & RTA_BOOTED) )
  399.       {
  400. if ( !(HostP->Mapping[ThisUnit].Flags & MSG_DONE) )
  401. {
  402.     if ( !p->RIONoMessage )
  403.         cprintf("RTA '%s' is being updated.n",HostP->Mapping[ThisUnit].Name);
  404.     HostP->Mapping[ThisUnit].Flags |= MSG_DONE;
  405. }
  406. PktReplyP->Command = ROUTE_FOAD;
  407. HostP->Copy("RT_FOAD",PktReplyP->CommandText,7);
  408. RIOQueueCmdBlk(HostP, Rup, CmdBlkP);
  409. return TRUE;
  410.       }
  411.       /*
  412.       ** Send the ID (entry) to this RTA. The ID number is implicit as
  413.       ** the offset into the table. It is worth noting at this stage
  414.       ** that offset zero in the table contains the entries for the
  415.       ** RTA with ID 1!!!!
  416.       */
  417.       PktReplyP->Command = ROUTE_ALLOCATE;
  418.       PktReplyP->IDNum   = ThisUnit+1;
  419.       if (RtaType == TYPE_RTA16)
  420.       {
  421.         if (HostP->Mapping[ThisUnit].Flags & SLOT_IN_USE)
  422.     /*
  423.     ** Adjust the phb and tx pkt dest_units for 2nd block of 8
  424.     ** only if the RTA has ports associated (SLOT_IN_USE)
  425.     */
  426.     RIOFixPhbs(p, HostP, ThisUnit2);
  427.     PktReplyP->IDNum2  = ThisUnit2+1;
  428.     rio_dprintk (RIO_DEBUG_ROUTE, "RTA '%s' has been allocated IDs %d+%dn",
  429.           HostP->Mapping[ThisUnit].Name, PktReplyP->IDNum, PktReplyP->IDNum2);
  430.       }
  431.       else
  432.       {
  433.     PktReplyP->IDNum2 = ROUTE_NO_ID;
  434.     rio_dprintk (RIO_DEBUG_ROUTE, "RTA '%s' has been allocated ID %dn",
  435.           HostP->Mapping[ThisUnit].Name,PktReplyP->IDNum);
  436.       }
  437.       HostP->Copy("RT_ALLOCAT",PktReplyP->CommandText,10);
  438.       RIOQueueCmdBlk( HostP, Rup, CmdBlkP);
  439.       /*
  440.       ** If this is a freshly booted RTA, then we need to re-open
  441.       ** the ports, if any where open, so that data may once more
  442.       ** flow around the system!
  443.       */
  444.       if ( (HostP->Mapping[ThisUnit].Flags & RTA_NEWBOOT) &&
  445.    (HostP->Mapping[ThisUnit].SysPort != NO_PORT) )
  446.       {
  447. /*
  448. ** look at the ports associated with this beast and
  449. ** see if any where open. If they was, then re-open
  450. ** them, using the info from the tty flags.
  451. */
  452. for ( port=0; port<PORTS_PER_RTA; port++ )
  453. {
  454.   PortP = p->RIOPortp[port+HostP->Mapping[ThisUnit].SysPort];
  455.   if ( PortP->State & (RIO_MOPEN|RIO_LOPEN) )
  456.   {
  457.     rio_dprintk (RIO_DEBUG_ROUTE, "Re-opened this portn");
  458.     rio_spin_lock_irqsave(&PortP->portSem, flags);
  459.     PortP->MagicFlags |= MAGIC_REBOOT;
  460.     rio_spin_unlock_irqrestore(&PortP->portSem, flags);
  461.   }
  462. }
  463. if (RtaType == TYPE_RTA16)
  464. {
  465.   for ( port=0; port<PORTS_PER_RTA; port++ )
  466.   {
  467.     PortP = p->RIOPortp[port+HostP->Mapping[ThisUnit2].SysPort];
  468.     if ( PortP->State & (RIO_MOPEN|RIO_LOPEN) )
  469.     {
  470.       rio_dprintk (RIO_DEBUG_ROUTE, "Re-opened this portn");
  471.       rio_spin_lock_irqsave(&PortP->portSem, flags);
  472.       PortP->MagicFlags |= MAGIC_REBOOT;
  473.       rio_spin_unlock_irqrestore(&PortP->portSem, flags);
  474.     }
  475.   }
  476. }
  477.       }
  478.       /*
  479.       ** keep a copy of the module types!
  480.       */
  481.       HostP->UnixRups[ThisUnit].ModTypes = Mod;
  482.       if (RtaType == TYPE_RTA16)
  483.       HostP->UnixRups[ThisUnit2].ModTypes = Mod;
  484.       /*
  485.       ** If either of the modules on this unit is read-only or write-only
  486.       ** or none-xprint, then we need to transfer that info over to the
  487.       ** relevent ports.
  488.       */
  489.       if ( HostP->Mapping[ThisUnit].SysPort != NO_PORT )
  490.       {
  491.         for ( port=0; port<PORTS_PER_MODULE; port++ )
  492. {
  493.   p->RIOPortp[port+HostP->Mapping[ThisUnit].SysPort]->Config &= ~RIO_NOMASK;
  494.   p->RIOPortp[port+HostP->Mapping[ThisUnit].SysPort]->Config |=
  495.    p->RIOModuleTypes[Mod1].Flags[port];
  496.   p->RIOPortp[port+PORTS_PER_MODULE+HostP->Mapping[ThisUnit].SysPort]->Config &= ~RIO_NOMASK;
  497.   p->RIOPortp[port+PORTS_PER_MODULE+HostP->Mapping[ThisUnit].SysPort]->Config |= p->RIOModuleTypes[Mod2].Flags[port];
  498. }
  499. if (RtaType == TYPE_RTA16)
  500. {
  501.           for ( port=0; port<PORTS_PER_MODULE; port++ )
  502.   {
  503.     p->RIOPortp[port+HostP->Mapping[ThisUnit2].SysPort]->Config &= ~RIO_NOMASK;
  504.     p->RIOPortp[port+HostP->Mapping[ThisUnit2].SysPort]->Config |= p->RIOModuleTypes[Mod1].Flags[port];
  505.     p->RIOPortp[port+PORTS_PER_MODULE+HostP->Mapping[ThisUnit2].SysPort]->Config &= ~RIO_NOMASK;
  506.     p->RIOPortp[port+PORTS_PER_MODULE+HostP->Mapping[ThisUnit2].SysPort]->Config |= p->RIOModuleTypes[Mod2].Flags[port];
  507.           }
  508. }
  509.       }
  510.       /*
  511.       ** Job done, get on with the interrupts!
  512.       */
  513.       return TRUE;
  514.     }
  515.   }
  516.   /*
  517.   ** There is no table entry for this RTA at all.
  518.   **
  519.   ** Lets check to see if we actually booted this unit - if not,
  520.   ** then we reset it and it will go round the loop of being booted
  521.   ** we can then worry about trying to fit it into the table.
  522.   */
  523.   for ( ThisUnit=0; ThisUnit<HostP->NumExtraBooted; ThisUnit++ )
  524.     if ( HostP->ExtraUnits[ThisUnit] == RtaUniq )
  525.       break;
  526.   if ( ThisUnit == HostP->NumExtraBooted && ThisUnit != MAX_EXTRA_UNITS )
  527.   {
  528.     /*
  529.     ** if the unit wasn't in the table, and the table wasn't full, then
  530.     ** we reset the unit, because we didn't boot it.
  531.     ** However, if the table is full, it could be that we did boot
  532.     ** this unit, and so we won't reboot it, because it isn't really
  533.     ** all that disasterous to keep the old bins in most cases. This
  534.     ** is a rather tacky feature, but we are on the edge of reallity
  535.     ** here, because the implication is that someone has connected
  536.     ** 16+MAX_EXTRA_UNITS onto one host.
  537.     */
  538.     static int UnknownMesgDone = 0;
  539.     if ( !UnknownMesgDone )
  540.     {
  541. if (! p->RIONoMessage)
  542.     cprintf("One or more unknown RTAs are being updated.n");
  543. UnknownMesgDone = 1;
  544.     }
  545.     PktReplyP->Command = ROUTE_FOAD;
  546.     HostP->Copy("RT_FOAD",PktReplyP->CommandText,7);
  547.   }
  548.   else
  549.   {
  550.     /*
  551.     ** we did boot it (as an extra), and there may now be a table
  552.     ** slot free (because of a delete), so we will try to make
  553.     ** a tentative entry for it, so that the configurator can see it
  554.     ** and fill in the details for us.
  555.     */
  556.     if (RtaType == TYPE_RTA16)
  557.     {
  558. if (RIOFindFreeID(p, HostP, &ThisUnit, &ThisUnit2) == 0)
  559. {
  560.     RIODefaultName(p, HostP, ThisUnit);
  561.     FillSlot(ThisUnit, ThisUnit2, RtaUniq, HostP);
  562. }
  563.     }
  564.     else
  565.     {
  566. if (RIOFindFreeID(p, HostP, &ThisUnit, NULL) == 0)
  567. {
  568.     RIODefaultName(p, HostP, ThisUnit);
  569.     FillSlot(ThisUnit, 0, RtaUniq, HostP);
  570. }
  571.     }
  572.     PktReplyP->Command = ROUTE_USED;
  573.     HostP->Copy("RT_USED",PktReplyP->CommandText,7);
  574.   }
  575.   RIOQueueCmdBlk( HostP, Rup, CmdBlkP);
  576.   return TRUE;
  577. }
  578. void
  579. RIOFixPhbs(p, HostP, unit)
  580. struct rio_info *p;
  581. struct Host *HostP;
  582. uint unit;
  583. {
  584. ushort link, port;
  585. struct Port *PortP;
  586. unsigned long flags;
  587. int PortN = HostP->Mapping[unit].SysPort;
  588. rio_dprintk (RIO_DEBUG_ROUTE, "RIOFixPhbs unit %d sysport %dn", unit, PortN);
  589. if (PortN != -1) {
  590. ushort dest_unit = HostP->Mapping[unit].ID2;
  591. /*
  592. ** Get the link number used for the 1st 8 phbs on this unit.
  593. */
  594. PortP = p->RIOPortp[HostP->Mapping[dest_unit - 1].SysPort];
  595. link = RWORD(PortP->PhbP->link);
  596. for (port = 0; port < PORTS_PER_RTA; port++, PortN++) {
  597. ushort dest_port = port + 8;
  598. #if 0
  599. uint PktInt;
  600. #endif
  601. WORD *TxPktP;
  602. PKT *Pkt;
  603. PortP = p->RIOPortp[PortN];
  604. rio_spin_lock_irqsave(&PortP->portSem, flags);
  605. /*
  606. ** If RTA is not powered on, the tx packets will be
  607. ** unset, so go no further.
  608. */
  609. if (PortP->TxStart == 0) {
  610. rio_dprintk (RIO_DEBUG_ROUTE, "Tx pkts not set up yetn");
  611. rio_spin_unlock_irqrestore(&PortP->portSem, flags);
  612. break;
  613. }
  614. /*
  615. ** For the second slot of a 16 port RTA, the driver needs to
  616. ** sort out the phb to port mappings. The dest_unit for this
  617. ** group of 8 phbs is set to the dest_unit of the accompanying
  618. ** 8 port block. The dest_port of the second unit is set to
  619. ** be in the range 8-15 (i.e. 8 is added). Thus, for a 16 port
  620. ** RTA with IDs 5 and 6, traffic bound for port 6 of unit 6
  621. ** (being the second map ID) will be sent to dest_unit 5, port
  622. ** 14. When this RTA is deleted, dest_unit for ID 6 will be
  623. ** restored, and the dest_port will be reduced by 8.
  624. ** Transmit packets also have a destination field which needs
  625. ** adjusting in the same manner.
  626. ** Note that the unit/port bytes in 'dest' are swapped.
  627. ** We also need to adjust the phb and rup link numbers for the
  628. ** second block of 8 ttys.
  629. */
  630. for (TxPktP = PortP->TxStart; TxPktP <= PortP->TxEnd; TxPktP++) {
  631. /*
  632. ** *TxPktP is the pointer to the transmit packet on the host
  633. ** card. This needs to be translated into a 32 bit pointer
  634. ** so it can be accessed from the driver.
  635. */
  636. Pkt = (PKT *) RIO_PTR(HostP->Caddr,RINDW(TxPktP));
  637. /*
  638. ** If the packet is used, reset it.
  639. */
  640. Pkt = (PKT *)((uint)Pkt & ~PKT_IN_USE);
  641. WBYTE(Pkt->dest_unit, dest_unit);
  642. WBYTE(Pkt->dest_port, dest_port);
  643. }
  644. rio_dprintk (RIO_DEBUG_ROUTE, "phb dest: Old %x:%x New %x:%xn",
  645. RWORD(PortP->PhbP->destination) & 0xff,
  646. (RWORD(PortP->PhbP->destination) >> 8) & 0xff,
  647. dest_unit, dest_port);
  648. WWORD(PortP->PhbP->destination, dest_unit + (dest_port << 8));
  649. WWORD(PortP->PhbP->link, link);
  650. rio_spin_unlock_irqrestore(&PortP->portSem, flags);
  651. }
  652. /*
  653. ** Now make sure the range of ports to be serviced includes
  654. ** the 2nd 8 on this 16 port RTA.
  655. */
  656. if (link > 3) return;
  657. if (((unit * 8) + 7) > RWORD(HostP->LinkStrP[link].last_port)) {
  658. rio_dprintk (RIO_DEBUG_ROUTE, "last port on host link %d: %dn", link, (unit * 8) + 7);
  659. WWORD(HostP->LinkStrP[link].last_port, (unit * 8) + 7);
  660. }
  661. }
  662. }
  663. /*
  664. ** Check to see if the new disconnection has isolated this unit.
  665. ** If it has, then invalidate all its link information, and tell
  666. ** the world about it. This is done to ensure that the configurator
  667. ** only gets up-to-date information about what is going on.
  668. */
  669. int
  670. RIOCheckIsolated(p, HostP, UnitId)
  671. struct rio_info * p;
  672. struct Host *HostP;
  673. uint UnitId;
  674. {
  675. unsigned long flags;
  676. rio_spin_lock_irqsave(&HostP->HostLock, flags);
  677. #ifdef CHECK
  678. CheckHostP( HostP );
  679. CheckUnitId( UnitId );
  680. #endif
  681. if ( RIOCheck( HostP, UnitId ) ) {
  682. rio_dprintk (RIO_DEBUG_ROUTE, "Unit %d is NOT isolatedn", UnitId);
  683. rio_spin_unlock_irqrestore(&HostP->HostLock, flags);
  684. return(0);
  685. }
  686. RIOIsolate(p, HostP, UnitId );
  687. RIOSetChange(p);
  688. rio_spin_unlock_irqrestore(&HostP->HostLock, flags);
  689. return 1;
  690. }
  691. /*
  692. ** Invalidate all the link interconnectivity of this unit, and of
  693. ** all the units attached to it. This will mean that the entire
  694. ** subnet will re-introduce itself.
  695. */
  696. int
  697. RIOIsolate(p, HostP, UnitId)
  698. struct rio_info * p;
  699. struct Host * HostP;
  700. uint UnitId; 
  701. {
  702. uint link, unit;
  703. #ifdef CHECK
  704. CheckHostP( HostP );
  705. CheckUnitId( UnitId );
  706. #endif
  707. UnitId--; /* this trick relies on the Unit Id being UNSIGNED! */
  708. if ( UnitId > MAX_RUP ) /* dontcha just lurv unsigned maths! */
  709. return(0);
  710. if ( HostP->Mapping[UnitId].Flags & BEEN_HERE )
  711. return(0);
  712. HostP->Mapping[UnitId].Flags |= BEEN_HERE;
  713. if ( p->RIOPrintDisabled == DO_PRINT )
  714. rio_dprintk (RIO_DEBUG_ROUTE, "RIOMesgIsolated %s", HostP->Mapping[UnitId].Name);
  715. for ( link=0; link<LINKS_PER_UNIT; link++) {
  716. unit = HostP->Mapping[UnitId].Topology[link].Unit;
  717. HostP->Mapping[UnitId].Topology[link].Unit = ROUTE_DISCONNECT;
  718. HostP->Mapping[UnitId].Topology[link].Link = NO_LINK;
  719. RIOIsolate(p, HostP, unit );
  720. }
  721. HostP->Mapping[UnitId].Flags &= ~BEEN_HERE;
  722. return 1;
  723. }
  724. int
  725. RIOCheck(HostP, UnitId)
  726. struct Host *HostP;
  727. uint UnitId;
  728. {
  729.   unsigned char link;
  730. #ifdef CHECK
  731. CheckHostP( HostP );
  732. CheckUnitId( UnitId );
  733. #endif
  734. /*  rio_dprint(RIO_DEBUG_ROUTE, ("Check to see if unit %d has a route to the hostn",UnitId)); */
  735. rio_dprintk (RIO_DEBUG_ROUTE, "RIOCheck : UnitID = %dn", UnitId);
  736. if ( UnitId == HOST_ID ) {
  737. /* rio_dprint(RIO_DEBUG_ROUTE, ("Unit %d is NOT isolated - it IS the host!n", UnitId)); */
  738. return 1;
  739. }
  740. UnitId--;
  741. if ( UnitId >= MAX_RUP ) {
  742. /* rio_dprint(RIO_DEBUG_ROUTE, ("Unit %d - ignored.n", UnitId)); */
  743. return 0;
  744. }
  745. for ( link=0; link<LINKS_PER_UNIT; link++ ) {
  746. if ( HostP->Mapping[UnitId].Topology[link].Unit==HOST_ID ) {
  747. /* rio_dprint(RIO_DEBUG_ROUTE, ("Unit %d is connected directly to host via link (%c).n", 
  748. UnitId, 'A'+link)); */
  749. return 1;
  750. }
  751. }
  752. if ( HostP->Mapping[UnitId].Flags & BEEN_HERE ) {
  753. /* rio_dprint(RIO_DEBUG_ROUTE, ("Been to Unit %d before - ignoringn", UnitId)); */
  754. return 0;
  755. }
  756. HostP->Mapping[UnitId].Flags |= BEEN_HERE;
  757. for ( link=0; link < LINKS_PER_UNIT; link++ ) {
  758. /* rio_dprint(RIO_DEBUG_ROUTE, ("Unit %d check link (%c)n", UnitId,'A'+link)); */
  759. if ( RIOCheck( HostP, HostP->Mapping[UnitId].Topology[link].Unit ) ) {
  760. /* rio_dprint(RIO_DEBUG_ROUTE, ("Unit %d is connected to something that knows the host via link (%c)n", UnitId,link+'A')); */
  761. HostP->Mapping[UnitId].Flags &= ~BEEN_HERE;
  762. return 1;
  763. }
  764. }
  765. HostP->Mapping[UnitId].Flags &= ~BEEN_HERE;
  766. /* rio_dprint(RIO_DEBUG_ROUTE, ("Unit %d DOESNT KNOW THE HOST!n", UnitId)); */
  767. return 0;
  768. }
  769. /*
  770. ** Returns the type of unit (host, 16/8 port RTA)
  771. */
  772. uint
  773. GetUnitType(Uniq)
  774. uint Uniq;
  775. {
  776. switch ( (Uniq >> 28) & 0xf)
  777. {
  778. case RIO_AT:
  779. case RIO_MCA:
  780. case RIO_EISA:
  781. case RIO_PCI:
  782. rio_dprintk (RIO_DEBUG_ROUTE, "Unit type: Hostn");
  783. return(TYPE_HOST);
  784. case RIO_RTA_16:
  785. rio_dprintk (RIO_DEBUG_ROUTE, "Unit type: 16 port RTAn");
  786. return(TYPE_RTA16);
  787. case RIO_RTA:
  788. rio_dprintk (RIO_DEBUG_ROUTE, "Unit type: 8 port RTAn");
  789. return(TYPE_RTA8);
  790. default :
  791. rio_dprintk (RIO_DEBUG_ROUTE, "Unit type: Unrecognisedn");
  792. return(99);
  793. }
  794. }
  795. int
  796. RIOSetChange(p)
  797. struct rio_info * p;
  798. {
  799. if ( p->RIOQuickCheck != NOT_CHANGED )
  800. return(0);
  801. p->RIOQuickCheck = CHANGED;
  802. if ( p->RIOSignalProcess ) {
  803. rio_dprintk (RIO_DEBUG_ROUTE, "Send SIG-HUP");
  804. /*
  805. psignal( RIOSignalProcess, SIGHUP );
  806. */
  807. }
  808. return(0);
  809. }
  810. void
  811. RIOConCon(p, HostP, FromId, FromLink, ToId, ToLink, Change)
  812. struct rio_info * p;
  813. struct Host *HostP;
  814. uint FromId;
  815. uint FromLink;
  816. uint ToId;
  817. uint ToLink;
  818. int Change; 
  819. {
  820.     char *FromName;
  821.     char *FromType;
  822.     char *ToName;
  823.     char *ToType;
  824.     unsigned int tp;
  825. /*
  826. ** 15.10.1998 ARG - ESIL 0759
  827. ** (Part) fix for port being trashed when opened whilst RTA "disconnected"
  828. **
  829. ** What's this doing in here anyway ?
  830. ** It was causing the port to be 'unmapped' if opened whilst RTA "disconnected"
  831. **
  832. ** 09.12.1998 ARG - ESIL 0776 - part fix
  833. ** Okay, We've found out what this was all about now !
  834. ** Someone had botched this to use RIOHalted to indicated the number of RTAs
  835. ** 'disconnected'. The value in RIOHalted was then being used in the
  836. ** 'RIO_QUICK_CHECK' ioctl. A none zero value indicating that a least one RTA
  837. ** is 'disconnected'. The change was put in to satisfy a customer's needs.
  838. ** Having taken this bit of code out 'RIO_QUICK_CHECK' now no longer works for
  839. ** the customer.
  840. **
  841.     if (Change == CONNECT) {
  842. if (p->RIOHalted) p->RIOHalted --;
  843.  }
  844.  else {
  845. p->RIOHalted ++;
  846.  }
  847. **
  848. ** So - we need to implement it slightly differently - a new member of the
  849. ** rio_info struct - RIORtaDisCons (RIO RTA connections) keeps track of RTA
  850. ** connections and disconnections. 
  851. */
  852.     if (Change == CONNECT) {
  853. if (p->RIORtaDisCons) p->RIORtaDisCons--;
  854.  }
  855.  else {
  856. p->RIORtaDisCons++;
  857.  }
  858.     if ( p->RIOPrintDisabled == DONT_PRINT )
  859. return;
  860.     if ( FromId > ToId ) {
  861. tp = FromId;
  862. FromId = ToId;
  863. ToId = tp;
  864. tp = FromLink;
  865. FromLink = ToLink;
  866. ToLink = tp;
  867.     }
  868.     FromName = FromId ? HostP->Mapping[FromId-1].Name : HostP->Name;
  869.     FromType = FromId ? "RTA" : "HOST";
  870.     ToName = ToId ? HostP->Mapping[ToId-1].Name : HostP->Name;
  871.     ToType = ToId ? "RTA" : "HOST";
  872.     rio_dprintk (RIO_DEBUG_ROUTE, "Link between %s '%s' (%c) and %s '%s' (%c) %s.n",
  873.     FromType, FromName, 'A'+FromLink,
  874.     ToType,   ToName,   'A'+ToLink,
  875.     (Change==CONNECT) ? "established" : "disconnected");
  876.     cprintf("Link between %s '%s' (%c) and %s '%s' (%c) %s.n",
  877.     FromType, FromName, 'A'+FromLink,
  878.     ToType,   ToName,   'A'+ToLink,
  879.     (Change==CONNECT) ? "established" : "disconnected");
  880. }
  881. /*
  882. ** RIORemoveFromSavedTable :
  883. **
  884. ** Delete and RTA entry from the saved table given to us
  885. ** by the configuration program.
  886. */
  887. int
  888. RIORemoveFromSavedTable(struct rio_info *p, struct Map *pMap)
  889. {
  890.     int entry;
  891.     /*
  892.     ** We loop for all entries even after finding an entry and
  893.     ** zeroing it because we may have two entries to delete if
  894.     ** its a 16 port RTA.
  895.     */
  896.     for (entry = 0; entry < TOTAL_MAP_ENTRIES; entry++)
  897.     {
  898. if (p->RIOSavedTable[entry].RtaUniqueNum == pMap->RtaUniqueNum)
  899. {
  900.     bzero((caddr_t)&p->RIOSavedTable[entry], sizeof(struct Map));
  901. }
  902.     }
  903.     return 0;
  904. }
  905. /*
  906. ** RIOCheckDisconnected :
  907. **
  908. ** Scan the unit links to and return zero if the unit is completely
  909. ** disconnected.
  910. */
  911. int
  912. RIOFreeDisconnected(struct rio_info *p, struct Host *HostP, int unit)
  913. {
  914.     int link;
  915.     rio_dprintk (RIO_DEBUG_ROUTE, "RIOFreeDisconnect unit %dn", unit);
  916.     /*
  917.     ** If the slot is tentative and does not belong to the
  918.     ** second half of a 16 port RTA then scan to see if
  919.     ** is disconnected.
  920.     */
  921.     for (link = 0; link < LINKS_PER_UNIT; link++)
  922.     {
  923. if (HostP->Mapping[unit].Topology[link].Unit != ROUTE_DISCONNECT)
  924.     break;
  925.     }
  926.     /*
  927.     ** If not all links are disconnected then we can forget about it.
  928.     */
  929.     if (link < LINKS_PER_UNIT)
  930.     return 1;
  931. #if NEED_TO_FIX_THIS
  932.     /* Ok so all the links are disconnected. But we may have only just
  933.     ** made this slot tentative and not yet received a topology update.
  934.     ** Lets check how long ago we made it tentative.
  935.     */
  936.     rio_dprintk (RIO_DEBUG_ROUTE, "Just about to check LBOLT on entry %dn", unit);
  937.     if (drv_getparm(LBOLT, (ulong_t *) &current_time))
  938.         rio_dprintk (RIO_DEBUG_ROUTE, "drv_getparm(LBOLT,....) Failed.n");
  939.     elapse_time = current_time - TentTime[unit];
  940.     rio_dprintk (RIO_DEBUG_ROUTE, "elapse %d = current %d - tent %d (%d usec)n",
  941.         elapse_time, current_time, TentTime[unit], drv_hztousec(elapse_time));
  942.     if (drv_hztousec(elapse_time) < WAIT_TO_FINISH)
  943.     {
  944.       rio_dprintk (RIO_DEBUG_ROUTE, "Skipping slot %d, not timed out yet %dn",
  945.             unit, drv_hztousec(elapse_time));
  946.         return 1;
  947.     }
  948. #endif
  949.     /*
  950.     ** We have found an usable slot.
  951.     ** If it is half of a 16 port RTA then delete the other half.
  952.     */
  953.     if (HostP->Mapping[unit].ID2 != 0)
  954.     {
  955. int nOther = (HostP->Mapping[unit].ID2) -1;
  956. rio_dprintk (RIO_DEBUG_ROUTE, "RioFreedis second slot %d.n", nOther);
  957. bzero((caddr_t)&HostP->Mapping[nOther], sizeof(struct Map));
  958.     }
  959.     RIORemoveFromSavedTable(p, &HostP->Mapping[unit]);
  960.     return 0;
  961. }
  962. /*
  963. ** RIOFindFreeID :
  964. **
  965. ** This function scans the given host table for either one
  966. ** or two free unit ID's.
  967. */
  968. int
  969. RIOFindFreeID(struct rio_info *p, struct Host *HostP, uint *pID1, uint *pID2)
  970. {
  971.     int unit,tempID;
  972.     /*
  973.     ** Initialise the ID's to MAX_RUP.
  974.     ** We do this to make the loop for setting the ID's as simple as
  975.     ** possible.
  976.     */
  977.     *pID1 = MAX_RUP;
  978.     if (pID2 != NULL)
  979. *pID2 = MAX_RUP;
  980.     /*
  981.     ** Scan all entries of the host mapping table for free slots.
  982.     ** We scan for free slots first and then if that is not successful
  983.     ** we start all over again looking for tentative slots we can re-use.
  984.     */
  985.     for (unit = 0; unit < MAX_RUP; unit++)
  986.     {
  987. rio_dprintk (RIO_DEBUG_ROUTE, "Scanning unit %dn",unit);
  988. /*
  989. ** If the flags are zero then the slot is empty.
  990. */
  991. if (HostP->Mapping[unit].Flags == 0)
  992. {
  993.     rio_dprintk (RIO_DEBUG_ROUTE, "      This slot is empty.n");
  994.     /*
  995.     ** If we haven't allocated the first ID then do it now.
  996.     */
  997.     if (*pID1 == MAX_RUP)
  998.     {
  999. rio_dprintk (RIO_DEBUG_ROUTE, "Make tentative entry for first unit %dn", unit);
  1000. *pID1 = unit;
  1001. /*
  1002. ** If the second ID is not needed then we can return
  1003. ** now.
  1004. */
  1005. if (pID2 == NULL)
  1006.     return 0;
  1007.     }
  1008.     else
  1009.     {
  1010. /*
  1011. ** Allocate the second slot and return.
  1012. */
  1013. rio_dprintk (RIO_DEBUG_ROUTE, "Make tentative entry for second unit %dn", unit);
  1014. *pID2 = unit;
  1015. return 0;
  1016.     }
  1017. }
  1018.     }
  1019.     /*
  1020.     ** If we manage to come out of the free slot loop then we
  1021.     ** need to start all over again looking for tentative slots
  1022.     ** that we can re-use.
  1023.     */
  1024.     rio_dprintk (RIO_DEBUG_ROUTE, "Starting to scan for tentative slotsn");
  1025.     for (unit = 0; unit < MAX_RUP; unit++)
  1026.     {
  1027. if (((HostP->Mapping[unit].Flags & SLOT_TENTATIVE) ||
  1028.                        (HostP->Mapping[unit].Flags == 0))  && ! 
  1029.    (HostP->Mapping[unit].Flags & RTA16_SECOND_SLOT ))
  1030. {
  1031.     rio_dprintk (RIO_DEBUG_ROUTE, "    Slot %d looks promising.n",unit);
  1032.     if(unit == *pID1)
  1033.     {
  1034.      rio_dprintk (RIO_DEBUG_ROUTE, "    No it isn't, its the 1st halfn");
  1035. continue;
  1036.     }
  1037.     /*
  1038.     ** Slot is Tentative or Empty, but not a tentative second 
  1039.     ** slot of a 16 porter.
  1040.     ** Attempt to free up this slot (and its parnter if
  1041.     ** it is a 16 port slot. The second slot will become
  1042.     ** empty after a call to RIOFreeDisconnected so thats why
  1043.     ** we look for empty slots above  as well).
  1044.     */
  1045.     if (HostP->Mapping[unit].Flags != 0) 
  1046.      if (RIOFreeDisconnected(p, HostP, unit) != 0)
  1047.     continue;
  1048.     /*
  1049.     ** If we haven't allocated the first ID then do it now.
  1050.     */
  1051.     if (*pID1 == MAX_RUP)
  1052.     {
  1053. rio_dprintk (RIO_DEBUG_ROUTE, "Grab tentative entry for first unit %dn", unit);
  1054. *pID1 = unit;
  1055. /*
  1056. ** Clear out this slot now that we intend to use it.
  1057. */
  1058. bzero(&HostP->Mapping[unit], sizeof(struct Map));
  1059. /*
  1060. ** If the second ID is not needed then we can return
  1061. ** now.
  1062. */
  1063. if (pID2 == NULL)
  1064.     return 0;
  1065.     }
  1066.     else
  1067.     {
  1068. /*
  1069. ** Allocate the second slot and return.
  1070. */
  1071. rio_dprintk (RIO_DEBUG_ROUTE, "Grab tentative/empty  entry for second unit %dn",
  1072.       unit);
  1073. *pID2 = unit;
  1074. /*
  1075. ** Clear out this slot now that we intend to use it.
  1076. */
  1077. bzero(&HostP->Mapping[unit], sizeof(struct Map));
  1078. /* At this point under the right(wrong?) conditions
  1079. ** we may have a first unit ID being higher than the
  1080. ** second unit ID. This is a bad idea if we are about
  1081. ** to fill the slots with a 16 port RTA.
  1082. ** Better check and swap them over.
  1083. */
  1084. if (*pID1 > *pID2)
  1085. {
  1086. rio_dprintk (RIO_DEBUG_ROUTE, "Swapping IDS %d %dn", *pID1, *pID2);
  1087. tempID = *pID1;
  1088. *pID1 = *pID2;
  1089. *pID2 = tempID;
  1090. }
  1091. return 0;
  1092.     }
  1093. }
  1094.     }
  1095.     /*
  1096.     ** If we manage to get to the end of the second loop then we
  1097.     ** can give up and return a failure.
  1098.     */
  1099.     return 1;
  1100. }
  1101. /*
  1102. ** The link switch scenario.
  1103. **
  1104. ** Rta Wun (A) is connected to Tuw (A).
  1105. ** The tables are all up to date, and the system is OK.
  1106. **
  1107. ** If Wun (A) is now moved to Wun (B) before Wun (A) can
  1108. ** become disconnected, then the follow happens:
  1109. **
  1110. ** Tuw (A) spots the change of unit:link at the other end
  1111. ** of its link and Tuw sends a topology packet reflecting
  1112. ** the change: Tuw (A) now disconnected from Wun (A), and
  1113. ** this is closely followed by a packet indicating that 
  1114. ** Tuw (A) is now connected to Wun (B).
  1115. **
  1116. ** Wun (B) will spot that it has now become connected, and
  1117. ** Wun will send a topology packet, which indicates that
  1118. ** both Wun (A) and Wun (B) is connected to Tuw (A).
  1119. **
  1120. ** Eventually Wun (A) realises that it is now disconnected
  1121. ** and Wun will send out a topology packet indicating that
  1122. ** Wun (A) is now disconnected.
  1123. */