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

嵌入式Linux

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * (C)Copyright 1998,1999 SysKonnect,
  4.  * a business unit of Schneider & Koch & Co. Datensysteme GmbH.
  5.  *
  6.  * See the file "skfddi.c" for further information.
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * The information in this file is provided "AS IS" without warranty.
  14.  *
  15.  ******************************************************************************/
  16. /*
  17.  * FORMAC+ Driver for tag mode
  18.  */
  19. #include "h/types.h"
  20. #include "h/fddi.h"
  21. #include "h/smc.h"
  22. #include "h/supern_2.h"
  23. #include "can.c"
  24. #ifndef lint
  25. static const char ID_sccs[] = "@(#)fplustm.c 1.32 99/02/23 (C) SK " ;
  26. #endif
  27. #ifndef UNUSED
  28. #ifdef  lint
  29. #define UNUSED(x) (x) = (x)
  30. #else
  31. #define UNUSED(x)
  32. #endif
  33. #endif
  34. #define FM_ADDRX  (FM_ADDET|FM_EXGPA0|FM_EXGPA1)
  35. #define MS2BCLK(x) ((x)*12500L)
  36. #define US2BCLK(x) ((x)*1250L)
  37. /*
  38.  * prototypes for static function
  39.  */
  40. static void build_claim_beacon() ;
  41. static int init_mac() ;
  42. static void rtm_init() ;
  43. static void smt_split_up_fifo() ;
  44. #if (!defined(NO_SMT_PANIC) || defined(DEBUG))
  45. static char write_mdr_warning [] = "E350 write_mdr() FM_SNPPND is setn";
  46. static char cam_warning [] = "E_SMT_004: CAM still busyn";
  47. #endif
  48. #define DUMMY_READ() smc->hw.mc_dummy = (u_short) inp(ADDR(B0_RAP))
  49. #define CHECK_NPP() { unsigned k = 10000 ;
  50. while ((inpw(FM_A(FM_STMCHN)) & FM_SNPPND) && k) k--;
  51. if (!k) { 
  52. SMT_PANIC(smc,SMT_E0130, SMT_E0130_MSG) ; 
  53. }
  54. }
  55. #define CHECK_CAM() { unsigned k = 10 ;
  56. while (!(inpw(FM_A(FM_AFSTAT)) & FM_DONE) && k) k--;
  57. if (!k) { 
  58. SMT_PANIC(smc,SMT_E0131, SMT_E0131_MSG) ; 
  59. }
  60. }
  61. const struct fddi_addr fddi_broadcast = {{0xff,0xff,0xff,0xff,0xff,0xff}};
  62. static const struct fddi_addr null_addr = {{0,0,0,0,0,0}};
  63. static const struct fddi_addr dbeacon_multi = {{0x01,0x80,0xc2,0x00,0x01,0x00}};
  64. static const u_short my_said = 0xffff ; /* short address (n.u.) */
  65. static const u_short my_sagp = 0xffff ; /* short group address (n.u.) */
  66. /*
  67.  * define my address
  68.  */
  69. #ifdef USE_CAN_ADDR
  70. #define MA smc->hw.fddi_canon_addr
  71. #else
  72. #define MA smc->hw.fddi_home_addr
  73. #endif
  74. /*
  75.  * useful interrupt bits
  76.  */
  77. static int mac_imsk1u = FM_STXABRS | FM_STXABRA0 | FM_SXMTABT ;
  78. static int mac_imsk1l = FM_SQLCKS | FM_SQLCKA0 | FM_SPCEPDS | FM_SPCEPDA0|
  79. FM_STBURS | FM_STBURA0 ;
  80. /* delete FM_SRBFL after tests */
  81. static int mac_imsk2u = FM_SERRSF | FM_SNFSLD | FM_SRCVOVR | FM_SRBFL |
  82. FM_SMYCLM ;
  83. static int mac_imsk2l = FM_STRTEXR | FM_SDUPCLM | FM_SFRMCTR |
  84. FM_SERRCTR | FM_SLSTCTR |
  85. FM_STRTEXP | FM_SMULTDA | FM_SRNGOP ;
  86. static int mac_imsk3u = FM_SRCVOVR2 | FM_SRBFL2 ;
  87. static int mac_imsk3l = FM_SRPERRQ2 | FM_SRPERRQ1 ;
  88. static int mac_beacon_imsk2u = FM_SOTRBEC | FM_SMYBEC | FM_SBEC |
  89. FM_SLOCLM | FM_SHICLM | FM_SMYCLM | FM_SCLM ;
  90. static u_long mac_get_tneg(smc)
  91. struct s_smc *smc ;
  92. {
  93. u_long tneg ;
  94. tneg = (u_long)((long)inpw(FM_A(FM_TNEG))<<5) ;
  95. return((u_long)((tneg + ((inpw(FM_A(FM_TMRS))>>10)&0x1f)) |
  96. 0xffe00000L)) ;
  97. }
  98. void mac_update_counter(smc)
  99. struct s_smc *smc ;
  100. {
  101. smc->mib.m[MAC0].fddiMACFrame_Ct =
  102. (smc->mib.m[MAC0].fddiMACFrame_Ct & 0xffff0000L)
  103. + (u_short) inpw(FM_A(FM_FCNTR)) ;
  104. smc->mib.m[MAC0].fddiMACLost_Ct =
  105. (smc->mib.m[MAC0].fddiMACLost_Ct & 0xffff0000L)
  106. + (u_short) inpw(FM_A(FM_LCNTR)) ;
  107. smc->mib.m[MAC0].fddiMACError_Ct =
  108. (smc->mib.m[MAC0].fddiMACError_Ct & 0xffff0000L)
  109. + (u_short) inpw(FM_A(FM_ECNTR)) ;
  110. smc->mib.m[MAC0].fddiMACT_Neg = mac_get_tneg(smc) ;
  111. #ifdef SMT_REAL_TOKEN_CT
  112. /*
  113.  * If the token counter is emulated it is updated in smt_event.
  114.  */
  115. TBD
  116. #else
  117. smt_emulate_token_ct( smc, MAC0 );
  118. #endif
  119. }
  120. /*
  121.  * write long value into buffer memory over memory data register (MDR),
  122.  */
  123. void write_mdr(smc,val)
  124. struct s_smc *smc ;
  125. u_long val;
  126. {
  127. CHECK_NPP() ;
  128. MDRW(val) ;
  129. }
  130. /*
  131.  * read long value from buffer memory over memory data register (MDR),
  132.  */
  133. u_long read_mdr(smc,addr)
  134. struct s_smc *smc ;
  135. unsigned int addr;
  136. {
  137. long p ;
  138. CHECK_NPP() ;
  139. MARR(addr) ;
  140. outpw(FM_A(FM_CMDREG1),FM_IRMEMWO) ;
  141. CHECK_NPP() ; /* needed for PCI to prevent from timeing violations */
  142. /* p = MDRR() ; */ /* bad read values if the workaround */
  143. /* smc->hw.mc_dummy = *((short volatile far *)(addr)))*/
  144. /* is used */
  145. p = (u_long)inpw(FM_A(FM_MDRU))<<16 ;
  146. p += (u_long)inpw(FM_A(FM_MDRL)) ;
  147. return(p) ;
  148. }
  149. /*
  150.  * clear buffer memory
  151.  */
  152. static void init_ram(smc)
  153. struct s_smc *smc ;
  154. {
  155. u_short i ;
  156. smc->hw.fp.fifo.rbc_ram_start = 0 ;
  157. smc->hw.fp.fifo.rbc_ram_end =
  158. smc->hw.fp.fifo.rbc_ram_start + RBC_MEM_SIZE ;
  159. CHECK_NPP() ;
  160. MARW(smc->hw.fp.fifo.rbc_ram_start) ;
  161. for (i = smc->hw.fp.fifo.rbc_ram_start;
  162. i < (u_short) (smc->hw.fp.fifo.rbc_ram_end-1); i++)
  163. write_mdr(smc,0L) ;
  164. /* Erase the last byte too */
  165. write_mdr(smc,0L) ;
  166. }
  167. /*
  168.  * set receive FIFO pointer
  169.  */
  170. static void set_recvptr(smc)
  171. struct s_smc *smc ;
  172. {
  173. /*
  174.  * initialize the pointer for receive queue 1
  175.  */
  176. outpw(FM_A(FM_RPR1),smc->hw.fp.fifo.rx1_fifo_start) ; /* RPR1 */
  177. outpw(FM_A(FM_SWPR1),smc->hw.fp.fifo.rx1_fifo_start) ; /* SWPR1 */
  178. outpw(FM_A(FM_WPR1),smc->hw.fp.fifo.rx1_fifo_start) ; /* WPR1 */
  179. outpw(FM_A(FM_EARV1),smc->hw.fp.fifo.tx_s_start-1) ; /* EARV1 */
  180. /*
  181.  * initialize the pointer for receive queue 2
  182.  */
  183. if (smc->hw.fp.fifo.rx2_fifo_size) {
  184. outpw(FM_A(FM_RPR2),smc->hw.fp.fifo.rx2_fifo_start) ;
  185. outpw(FM_A(FM_SWPR2),smc->hw.fp.fifo.rx2_fifo_start) ;
  186. outpw(FM_A(FM_WPR2),smc->hw.fp.fifo.rx2_fifo_start) ;
  187. outpw(FM_A(FM_EARV2),smc->hw.fp.fifo.rbc_ram_end-1) ;
  188. }
  189. else {
  190. outpw(FM_A(FM_RPR2),smc->hw.fp.fifo.rbc_ram_end-1) ;
  191. outpw(FM_A(FM_SWPR2),smc->hw.fp.fifo.rbc_ram_end-1) ;
  192. outpw(FM_A(FM_WPR2),smc->hw.fp.fifo.rbc_ram_end-1) ;
  193. outpw(FM_A(FM_EARV2),smc->hw.fp.fifo.rbc_ram_end-1) ;
  194. }
  195. }
  196. /*
  197.  * set transmit FIFO pointer
  198.  */
  199. static void set_txptr(smc)
  200. struct s_smc *smc ;
  201. {
  202. outpw(FM_A(FM_CMDREG2),FM_IRSTQ) ; /* reset transmit queues */
  203. /*
  204.  * initialize the pointer for asynchronous transmit queue
  205.  */
  206. outpw(FM_A(FM_RPXA0),smc->hw.fp.fifo.tx_a0_start) ; /* RPXA0 */
  207. outpw(FM_A(FM_SWPXA0),smc->hw.fp.fifo.tx_a0_start) ; /* SWPXA0 */
  208. outpw(FM_A(FM_WPXA0),smc->hw.fp.fifo.tx_a0_start) ; /* WPXA0 */
  209. outpw(FM_A(FM_EAA0),smc->hw.fp.fifo.rx2_fifo_start-1) ; /* EAA0 */
  210. /*
  211.  * initialize the pointer for synchronous transmit queue
  212.  */
  213. if (smc->hw.fp.fifo.tx_s_size) {
  214. outpw(FM_A(FM_RPXS),smc->hw.fp.fifo.tx_s_start) ;
  215. outpw(FM_A(FM_SWPXS),smc->hw.fp.fifo.tx_s_start) ;
  216. outpw(FM_A(FM_WPXS),smc->hw.fp.fifo.tx_s_start) ;
  217. outpw(FM_A(FM_EAS),smc->hw.fp.fifo.tx_a0_start-1) ;
  218. }
  219. else {
  220. outpw(FM_A(FM_RPXS),smc->hw.fp.fifo.tx_a0_start-1) ;
  221. outpw(FM_A(FM_SWPXS),smc->hw.fp.fifo.tx_a0_start-1) ;
  222. outpw(FM_A(FM_WPXS),smc->hw.fp.fifo.tx_a0_start-1) ;
  223. outpw(FM_A(FM_EAS),smc->hw.fp.fifo.tx_a0_start-1) ;
  224. }
  225. }
  226. /*
  227.  * init memory buffer management registers
  228.  */
  229. static void init_rbc(smc)
  230. struct s_smc *smc ;
  231. {
  232. u_short rbc_ram_addr ;
  233. /*
  234.  * set unused pointers or permanent pointers
  235.  */
  236. rbc_ram_addr = smc->hw.fp.fifo.rx2_fifo_start - 1 ;
  237. outpw(FM_A(FM_RPXA1),rbc_ram_addr) ; /* a1-send pointer */
  238. outpw(FM_A(FM_WPXA1),rbc_ram_addr) ;
  239. outpw(FM_A(FM_SWPXA1),rbc_ram_addr) ;
  240. outpw(FM_A(FM_EAA1),rbc_ram_addr) ;
  241. set_recvptr(smc) ;
  242. set_txptr(smc) ;
  243. }
  244. /*
  245.  * init rx pointer
  246.  */
  247. static void init_rx(smc)
  248. struct s_smc *smc ;
  249. {
  250. struct s_smt_rx_queue *queue ;
  251. /*
  252.  * init all tx data structures for receive queue 1
  253.  */
  254. smc->hw.fp.rx[QUEUE_R1] = queue = &smc->hw.fp.rx_q[QUEUE_R1] ;
  255. queue->rx_bmu_ctl = (HW_PTR) ADDR(B0_R1_CSR) ;
  256. queue->rx_bmu_dsc = (HW_PTR) ADDR(B4_R1_DA) ;
  257. /*
  258.  * init all tx data structures for receive queue 2
  259.  */
  260. smc->hw.fp.rx[QUEUE_R2] = queue = &smc->hw.fp.rx_q[QUEUE_R2] ;
  261. queue->rx_bmu_ctl = (HW_PTR) ADDR(B0_R2_CSR) ;
  262. queue->rx_bmu_dsc = (HW_PTR) ADDR(B4_R2_DA) ;
  263. }
  264. /*
  265.  * set the TSYNC register of the FORMAC to regulate synchronous transmission
  266.  */
  267. void set_formac_tsync(smc,sync_bw)
  268. struct s_smc *smc ;
  269. long sync_bw ;
  270. {
  271. outpw(FM_A(FM_TSYNC),(unsigned int) (((-sync_bw) >> 5) & 0xffff) ) ;
  272. }
  273. /*
  274.  * init all tx data structures
  275.  */
  276. static void init_tx(smc)
  277. struct s_smc *smc ;
  278. {
  279. struct s_smt_tx_queue *queue ;
  280. /*
  281.  * init all tx data structures for the synchronous queue
  282.  */
  283. smc->hw.fp.tx[QUEUE_S] = queue = &smc->hw.fp.tx_q[QUEUE_S] ;
  284. queue->tx_bmu_ctl = (HW_PTR) ADDR(B0_XS_CSR) ;
  285. queue->tx_bmu_dsc = (HW_PTR) ADDR(B5_XS_DA) ;
  286. #ifdef ESS
  287. set_formac_tsync(smc,smc->ess.sync_bw) ;
  288. #endif
  289. /*
  290.  * init all tx data structures for the asynchronous queue 0
  291.  */
  292. smc->hw.fp.tx[QUEUE_A0] = queue = &smc->hw.fp.tx_q[QUEUE_A0] ;
  293. queue->tx_bmu_ctl = (HW_PTR) ADDR(B0_XA_CSR) ;
  294. queue->tx_bmu_dsc = (HW_PTR) ADDR(B5_XA_DA) ;
  295. llc_recover_tx(smc) ;
  296. }
  297. static void mac_counter_init(smc)
  298. struct s_smc *smc ;
  299. {
  300. int i ;
  301. u_long *ec ;
  302. /*
  303.  * clear FORMAC+ frame-, lost- and error counter
  304.  */
  305. outpw(FM_A(FM_FCNTR),0) ;
  306. outpw(FM_A(FM_LCNTR),0) ;
  307. outpw(FM_A(FM_ECNTR),0) ;
  308. /*
  309.  * clear internal error counter stucture
  310.  */
  311. ec = (u_long *)&smc->hw.fp.err_stats ;
  312. for (i = (sizeof(struct err_st)/sizeof(long)) ; i ; i--)
  313. *ec++ = 0L ;
  314. smc->mib.m[MAC0].fddiMACRingOp_Ct = 0 ;
  315. }
  316. /*
  317.  * set FORMAC address, and t_request
  318.  */
  319. static void set_formac_addr(smc)
  320. struct s_smc *smc ;
  321. {
  322. long t_requ = smc->mib.m[MAC0].fddiMACT_Req ;
  323. outpw(FM_A(FM_SAID),my_said) ; /* set short address */
  324. outpw(FM_A(FM_LAIL),(unsigned)((smc->hw.fddi_home_addr.a[4]<<8) +
  325. smc->hw.fddi_home_addr.a[5])) ;
  326. outpw(FM_A(FM_LAIC),(unsigned)((smc->hw.fddi_home_addr.a[2]<<8) +
  327. smc->hw.fddi_home_addr.a[3])) ;
  328. outpw(FM_A(FM_LAIM),(unsigned)((smc->hw.fddi_home_addr.a[0]<<8) +
  329. smc->hw.fddi_home_addr.a[1])) ;
  330. outpw(FM_A(FM_SAGP),my_sagp) ; /* set short group address */
  331. outpw(FM_A(FM_LAGL),(unsigned)((smc->hw.fp.group_addr.a[4]<<8) +
  332. smc->hw.fp.group_addr.a[5])) ;
  333. outpw(FM_A(FM_LAGC),(unsigned)((smc->hw.fp.group_addr.a[2]<<8) +
  334. smc->hw.fp.group_addr.a[3])) ;
  335. outpw(FM_A(FM_LAGM),(unsigned)((smc->hw.fp.group_addr.a[0]<<8) +
  336. smc->hw.fp.group_addr.a[1])) ;
  337. /* set r_request regs. (MSW & LSW of TRT ) */
  338. outpw(FM_A(FM_TREQ1),(unsigned)(t_requ>>16)) ;
  339. outpw(FM_A(FM_TREQ0),(unsigned)t_requ) ;
  340. }
  341. void set_int(p,l)
  342. char *p;
  343. int l;
  344. {
  345. p[0] = (char)(l >> 24) ;
  346. p[1] = (char)(l >> 16) ;
  347. p[2] = (char)(l >> 8) ;
  348. p[3] = (char)(l >> 0) ;
  349. }
  350. /*
  351.  * copy TX descriptor to buffer mem
  352.  * append FC field and MAC frame
  353.  * if more bit is set in descr
  354.  * append pointer to descriptor (endless loop)
  355.  * else
  356.  * append 'end of chain' pointer
  357.  */
  358. static void copy_tx_mac(smc,td,mac,off,len)
  359. struct s_smc *smc ;
  360. u_long td; /* transmit descriptor */
  361. struct fddi_mac *mac; /* mac frame pointer */
  362. unsigned off; /* start address within buffer memory */
  363. int len ; /* lenght of the frame including the FC */
  364. {
  365. int i ;
  366. u_int *p ;
  367. CHECK_NPP() ;
  368. MARW(off) ; /* set memory address reg for writes */
  369. p = (u_int *) mac ;
  370. for (i = (len + 3)/4 ; i ; i--) {
  371. if (i == 1) {
  372. /* last word, set the tag bit */
  373. outpw(FM_A(FM_CMDREG2),FM_ISTTB) ;
  374. }
  375. write_mdr(smc,MDR_REVERSE(*p)) ;
  376. p++ ;
  377. }
  378. outpw(FM_A(FM_CMDREG2),FM_ISTTB) ; /* set the tag bit */
  379. write_mdr(smc,td) ; /* write over memory data reg to buffer */
  380. }
  381. /*
  382. BEGIN_MANUAL_ENTRY(module;tests;3)
  383. How to test directed beacon frames
  384. ----------------------------------------------------------------
  385. o Insert a break point in the function build_claim_beacon()
  386.   before calling copy_tx_mac() for building the claim frame.
  387. o Modify the RM3_DETECT case so that the RM6_DETECT state
  388.   will always entered from the RM3_DETECT state (function rmt_fsm(),
  389.   rmt.c)
  390. o Compile the driver.
  391. o Set the parameter TREQ in the protocol.ini or net.cfg to a
  392.   small value to make sure your station will win the claim
  393.   process.
  394. o Start the driver.
  395. o When you reach the break point, modify the SA and DA address
  396.   of the claim frame (e.g. SA = DA = 10005affffff).
  397. o When you see RM3_DETECT and RM6_DETECT, observe the direct
  398.   beacon frames on the UPPSLANA.
  399. END_MANUAL_ENTRY
  400.  */
  401. static void directed_beacon(smc)
  402. struct s_smc *smc ;
  403. {
  404. SK_LOC_DECL(u_int,a[2]) ;
  405. /*
  406.  * set UNA in frame
  407.  * enable FORMAC to send endless queue of directed beacon
  408.  * important: the UNA starts at byte 1 (not at byte 0)
  409.  */
  410. * (char *) a = (char) ((long)DBEACON_INFO<<24L) ;
  411. a[1] = 0 ;
  412. memcpy((char *)a+1,(char *) &smc->mib.m[MAC0].fddiMACUpstreamNbr,6) ;
  413. CHECK_NPP() ;
  414.  /* set memory address reg for writes */
  415. MARW(smc->hw.fp.fifo.rbc_ram_start+DBEACON_FRAME_OFF+4) ;
  416. write_mdr(smc,MDR_REVERSE(a[0])) ;
  417. outpw(FM_A(FM_CMDREG2),FM_ISTTB) ; /* set the tag bit */
  418. write_mdr(smc,MDR_REVERSE(a[1])) ;
  419. outpw(FM_A(FM_SABC),smc->hw.fp.fifo.rbc_ram_start + DBEACON_FRAME_OFF) ;
  420. }
  421. /*
  422. setup claim & beacon pointer
  423. NOTE :
  424. special frame packets end with a pointer to their own
  425. descriptor, and the MORE bit is set in the descriptor
  426. */
  427. static void build_claim_beacon(smc,t_request)
  428. struct s_smc *smc ;
  429. u_long t_request;
  430. {
  431. u_int td ;
  432. int len ;
  433. struct fddi_mac_sf *mac ;
  434. /*
  435.  * build claim packet
  436.  */
  437. len = 17 ;
  438. td = TX_DESCRIPTOR | ((((u_int)len-1)&3)<<27) ;
  439. mac = &smc->hw.fp.mac_sfb ;
  440. mac->mac_fc = FC_CLAIM ;
  441. /* DA == SA in claim frame */
  442. mac->mac_source = mac->mac_dest = MA ;
  443. /* 2's complement */
  444. set_int((char *)mac->mac_info,(int)t_request) ;
  445. copy_tx_mac(smc,td,(struct fddi_mac *)mac,
  446. smc->hw.fp.fifo.rbc_ram_start + CLAIM_FRAME_OFF,len) ;
  447. /* set CLAIM start pointer */
  448. outpw(FM_A(FM_SACL),smc->hw.fp.fifo.rbc_ram_start + CLAIM_FRAME_OFF) ;
  449. /*
  450.  * build beacon packet
  451.  */
  452. len = 17 ;
  453. td = TX_DESCRIPTOR | ((((u_int)len-1)&3)<<27) ;
  454. mac->mac_fc = FC_BEACON ;
  455. mac->mac_source = MA ;
  456. mac->mac_dest = null_addr ; /* DA == 0 in beacon frame */
  457. set_int((char *) mac->mac_info,((int)BEACON_INFO<<24) + 0 ) ;
  458. copy_tx_mac(smc,td,(struct fddi_mac *)mac,
  459. smc->hw.fp.fifo.rbc_ram_start + BEACON_FRAME_OFF,len) ;
  460. /* set beacon start pointer */
  461. outpw(FM_A(FM_SABC),smc->hw.fp.fifo.rbc_ram_start + BEACON_FRAME_OFF) ;
  462. /*
  463.  * build directed beacon packet
  464.  * contains optional UNA
  465.  */
  466. len = 23 ;
  467. td = TX_DESCRIPTOR | ((((u_int)len-1)&3)<<27) ;
  468. mac->mac_fc = FC_BEACON ;
  469. mac->mac_source = MA ;
  470. mac->mac_dest = dbeacon_multi ; /* multicast */
  471. set_int((char *) mac->mac_info,((int)DBEACON_INFO<<24) + 0 ) ;
  472. set_int((char *) mac->mac_info+4,0) ;
  473. set_int((char *) mac->mac_info+8,0) ;
  474. copy_tx_mac(smc,td,(struct fddi_mac *)mac,
  475. smc->hw.fp.fifo.rbc_ram_start + DBEACON_FRAME_OFF,len) ;
  476. /* end of claim/beacon queue */
  477. outpw(FM_A(FM_EACB),smc->hw.fp.fifo.rx1_fifo_start-1) ;
  478. outpw(FM_A(FM_WPXSF),0) ;
  479. outpw(FM_A(FM_RPXSF),0) ;
  480. }
  481. void formac_rcv_restart(smc)
  482. struct s_smc *smc ;
  483. {
  484. /* enable receive function */
  485. SETMASK(FM_A(FM_MDREG1),smc->hw.fp.rx_mode,FM_ADDRX) ;
  486. outpw(FM_A(FM_CMDREG1),FM_ICLLR) ; /* clear receive lock */
  487. }
  488. void formac_tx_restart(smc)
  489. struct s_smc *smc ;
  490. {
  491. outpw(FM_A(FM_CMDREG1),FM_ICLLS) ; /* clear s-frame lock */
  492. outpw(FM_A(FM_CMDREG1),FM_ICLLA0) ; /* clear a-frame lock */
  493. }
  494. static void enable_formac(smc)
  495. struct s_smc *smc ;
  496. {
  497. /* set formac IMSK : 0 enables irq */
  498. outpw(FM_A(FM_IMSK1U),~mac_imsk1u) ;
  499. outpw(FM_A(FM_IMSK1L),~mac_imsk1l) ;
  500. outpw(FM_A(FM_IMSK2U),~mac_imsk2u) ;
  501. outpw(FM_A(FM_IMSK2L),~mac_imsk2l) ;
  502. outpw(FM_A(FM_IMSK3U),~mac_imsk3u) ;
  503. outpw(FM_A(FM_IMSK3L),~mac_imsk3l) ;
  504. }
  505. #if 0 /* Removed because the driver should use the ASICs TX complete IRQ. */
  506. /* The FORMACs tx complete IRQ should be used any longer */
  507. /*
  508. BEGIN_MANUAL_ENTRY(if,func;others;4)
  509. void enable_tx_irq(smc, queue)
  510. struct s_smc *smc ;
  511. u_short queue ;
  512. Function DOWNCALL (SMT, fplustm.c)
  513. enable_tx_irq() enables the FORMACs transmit complete
  514. interrupt of the queue.
  515. Para queue = QUEUE_S: synchronous queue
  516. = QUEUE_A0: asynchronous queue
  517. Note After any ring operational change the transmit complete
  518. interrupts are disabled.
  519. The operating system dependent module must enable
  520. the transmit complete interrupt of a queue,
  521. - when it queues the first frame,
  522.   because of no transmit resources are beeing
  523.   available and
  524. - when it escapes from the function llc_restart_tx
  525.   while some frames are still queued.
  526. END_MANUAL_ENTRY
  527.  */
  528. void enable_tx_irq(smc, queue)
  529. struct s_smc *smc ;
  530. u_short queue ; /* 0 = synchronous queue, 1 = asynchronous queue 0 */
  531. {
  532. u_short imask ;
  533. imask = ~(inpw(FM_A(FM_IMSK1U))) ;
  534. if (queue == 0) {
  535. outpw(FM_A(FM_IMSK1U),~(imask|FM_STEFRMS)) ;
  536. }
  537. if (queue == 1) {
  538. outpw(FM_A(FM_IMSK1U),~(imask|FM_STEFRMA0)) ;
  539. }
  540. }
  541. /*
  542. BEGIN_MANUAL_ENTRY(if,func;others;4)
  543. void disable_tx_irq(smc, queue)
  544. struct s_smc *smc ;
  545. u_short queue ;
  546. Function DOWNCALL (SMT, fplustm.c)
  547. disable_tx_irq disables the FORMACs transmit complete
  548. interrupt of the queue
  549. Para queue = QUEUE_S: synchronous queue
  550. = QUEUE_A0: asynchronous queue
  551. Note The operating system dependent module should disable
  552. the transmit complete interrupts if it escapes from the
  553. function llc_restart_tx and no frames are queued.
  554. END_MANUAL_ENTRY
  555.  */
  556. void disable_tx_irq(smc, queue)
  557. struct s_smc *smc ;
  558. u_short queue ; /* 0 = synchronous queue, 1 = asynchronous queue 0 */
  559. {
  560. u_short imask ;
  561. imask = ~(inpw(FM_A(FM_IMSK1U))) ;
  562. if (queue == 0) {
  563. outpw(FM_A(FM_IMSK1U),~(imask&~FM_STEFRMS)) ;
  564. }
  565. if (queue == 1) {
  566. outpw(FM_A(FM_IMSK1U),~(imask&~FM_STEFRMA0)) ;
  567. }
  568. }
  569. #endif
  570. static void disable_formac(smc)
  571. struct s_smc *smc ;
  572. {
  573. /* clear formac IMSK : 1 disables irq */
  574. outpw(FM_A(FM_IMSK1U),MW) ;
  575. outpw(FM_A(FM_IMSK1L),MW) ;
  576. outpw(FM_A(FM_IMSK2U),MW) ;
  577. outpw(FM_A(FM_IMSK2L),MW) ;
  578. outpw(FM_A(FM_IMSK3U),MW) ;
  579. outpw(FM_A(FM_IMSK3L),MW) ;
  580. }
  581. static void mac_ring_up(smc,up)
  582. struct s_smc *smc ;
  583. int up;
  584. {
  585. if (up) {
  586. formac_rcv_restart(smc) ; /* enable receive function */
  587. smc->hw.mac_ring_is_up = TRUE ;
  588. llc_restart_tx(smc) ; /* TX queue */
  589. }
  590. else {
  591. /* disable receive function */
  592. SETMASK(FM_A(FM_MDREG1),FM_MDISRCV,FM_ADDET) ;
  593. /* abort current transmit activity */
  594. outpw(FM_A(FM_CMDREG2),FM_IACTR) ;
  595. smc->hw.mac_ring_is_up = FALSE ;
  596. }
  597. }
  598. /*--------------------------- ISR handling ----------------------------------*/
  599. /*
  600.  * mac1_irq is in drvfbi.c
  601.  */
  602. /*
  603.  * mac2_irq: status bits for the receive queue 1, and ring status
  604.  *  ring status indication bits
  605.  */
  606. void mac2_irq(smc,code_s2u,code_s2l)
  607. struct s_smc *smc ;
  608. u_short code_s2u ;
  609. u_short code_s2l ;
  610. {
  611. u_short change_s2l ;
  612. u_short change_s2u ;
  613. /* (jd) 22-Feb-1999
  614.  * Restart 2_DMax Timer after end of claiming or beaconing
  615.  */
  616. if (code_s2u & (FM_SCLM|FM_SHICLM|FM_SBEC|FM_SOTRBEC)) {
  617. queue_event(smc,EVENT_RMT,RM_TX_STATE_CHANGE) ;
  618. }
  619. else if (code_s2l & (FM_STKISS)) {
  620. queue_event(smc,EVENT_RMT,RM_TX_STATE_CHANGE) ;
  621. }
  622. /*
  623.  * XOR current st bits with the last to avoid useless RMT event queuing
  624.  */
  625. change_s2l = smc->hw.fp.s2l ^ code_s2l ;
  626. change_s2u = smc->hw.fp.s2u ^ code_s2u ;
  627. if ((change_s2l & FM_SRNGOP) ||
  628. (!smc->hw.mac_ring_is_up && ((code_s2l & FM_SRNGOP)))) {
  629. if (code_s2l & FM_SRNGOP) {
  630. mac_ring_up(smc,1) ;
  631. queue_event(smc,EVENT_RMT,RM_RING_OP) ;
  632. smc->mib.m[MAC0].fddiMACRingOp_Ct++ ;
  633. }
  634. else {
  635. mac_ring_up(smc,0) ;
  636. queue_event(smc,EVENT_RMT,RM_RING_NON_OP) ;
  637. }
  638. goto mac2_end ;
  639. }
  640. if (code_s2l & FM_SMISFRM) { /* missed frame */
  641. smc->mib.m[MAC0].fddiMACNotCopied_Ct++ ;
  642. }
  643. if (code_s2u & (FM_SRCVOVR | /* recv. FIFO overflow */
  644. FM_SRBFL)) { /* recv. buffer full */
  645. smc->hw.mac_ct.mac_r_restart_counter++ ;
  646. /* formac_rcv_restart(smc) ; */
  647. smt_stat_counter(smc,1) ;
  648. /* goto mac2_end ; */
  649. }
  650. if (code_s2u & FM_SOTRBEC)
  651. queue_event(smc,EVENT_RMT,RM_OTHER_BEACON) ;
  652. if (code_s2u & FM_SMYBEC)
  653. queue_event(smc,EVENT_RMT,RM_MY_BEACON) ;
  654. if (change_s2u & code_s2u & FM_SLOCLM) {
  655. DB_RMTN(2,"RMT : lower claim receivedn",0,0) ;
  656. }
  657. if ((code_s2u & FM_SMYCLM) && !(code_s2l & FM_SDUPCLM)) {
  658. /*
  659.  * This is my claim and that claim is not detected as a
  660.  * duplicate one.
  661.  */
  662. queue_event(smc,EVENT_RMT,RM_MY_CLAIM) ;
  663. }
  664. if (code_s2l & FM_SDUPCLM) {
  665. /*
  666.  * If a duplicate claim frame (same SA but T_Bid != T_Req)
  667.  * this flag will be set.
  668.  * In the RMT state machine we need a RM_VALID_CLAIM event
  669.  * to do the appropriate state change.
  670.  * RM(34c)
  671.  */
  672. queue_event(smc,EVENT_RMT,RM_VALID_CLAIM) ;
  673. }
  674. if (change_s2u & code_s2u & FM_SHICLM) {
  675. DB_RMTN(2,"RMT : higher claim receivedn",0,0) ;
  676. }
  677. if ( (code_s2l & FM_STRTEXP) ||
  678.      (code_s2l & FM_STRTEXR) )
  679. queue_event(smc,EVENT_RMT,RM_TRT_EXP) ;
  680. if (code_s2l & FM_SMULTDA) {
  681. /*
  682.  * The MAC has found a 2. MAC with the same address.
  683.  * Signal dup_addr_test = failed to RMT state machine.
  684.  * RM(25)
  685.  */
  686. smc->r.dup_addr_test = DA_FAILED ;
  687. queue_event(smc,EVENT_RMT,RM_DUP_ADDR) ;
  688. }
  689. if (code_s2u & FM_SBEC)
  690. smc->hw.fp.err_stats.err_bec_stat++ ;
  691. if (code_s2u & FM_SCLM)
  692. smc->hw.fp.err_stats.err_clm_stat++ ;
  693. if (code_s2l & FM_STVXEXP)
  694. smc->mib.m[MAC0].fddiMACTvxExpired_Ct++ ;
  695. if ((code_s2u & (FM_SBEC|FM_SCLM))) {
  696. if (!(change_s2l & FM_SRNGOP) && (smc->hw.fp.s2l & FM_SRNGOP)) {
  697. mac_ring_up(smc,0) ;
  698. queue_event(smc,EVENT_RMT,RM_RING_NON_OP) ;
  699. mac_ring_up(smc,1) ;
  700. queue_event(smc,EVENT_RMT,RM_RING_OP) ;
  701. smc->mib.m[MAC0].fddiMACRingOp_Ct++ ;
  702. }
  703. }
  704. if (code_s2l & FM_SPHINV)
  705. smc->hw.fp.err_stats.err_phinv++ ;
  706. if (code_s2l & FM_SSIFG)
  707. smc->hw.fp.err_stats.err_sifg_det++ ;
  708. if (code_s2l & FM_STKISS)
  709. smc->hw.fp.err_stats.err_tkiss++ ;
  710. if (code_s2l & FM_STKERR)
  711. smc->hw.fp.err_stats.err_tkerr++ ;
  712. if (code_s2l & FM_SFRMCTR)
  713. smc->mib.m[MAC0].fddiMACFrame_Ct += 0x10000L ;
  714. if (code_s2l & FM_SERRCTR)
  715. smc->mib.m[MAC0].fddiMACError_Ct += 0x10000L ;
  716. if (code_s2l & FM_SLSTCTR)
  717. smc->mib.m[MAC0].fddiMACLost_Ct  += 0x10000L ;
  718. if (code_s2u & FM_SERRSF) {
  719. SMT_PANIC(smc,SMT_E0114, SMT_E0114_MSG) ;
  720. }
  721. mac2_end:
  722. /* notice old status */
  723. smc->hw.fp.s2l = code_s2l ;
  724. smc->hw.fp.s2u = code_s2u ;
  725. outpw(FM_A(FM_IMSK2U),~mac_imsk2u) ;
  726. }
  727. /*
  728.  * mac3_irq: receive queue 2 bits and address detection bits
  729.  */
  730. void mac3_irq(smc,code_s3u,code_s3l)
  731. struct s_smc *smc ;
  732. u_short code_s3u ;
  733. u_short code_s3l ;
  734. {
  735. UNUSED(code_s3l) ;
  736. if (code_s3u & (FM_SRCVOVR2 | /* recv. FIFO overflow */
  737. FM_SRBFL2)) { /* recv. buffer full */
  738. smc->hw.mac_ct.mac_r_restart_counter++ ;
  739. smt_stat_counter(smc,1);
  740. }
  741. if (code_s3u & FM_SRPERRQ2) { /* parity error receive queue 2 */
  742. SMT_PANIC(smc,SMT_E0115, SMT_E0115_MSG) ;
  743. }
  744. if (code_s3u & FM_SRPERRQ1) { /* parity error receive queue 2 */
  745. SMT_PANIC(smc,SMT_E0116, SMT_E0116_MSG) ;
  746. }
  747. }
  748. /*
  749.  * take formac offline
  750.  */
  751. static void formac_offline(smc)
  752. struct s_smc *smc ;
  753. {
  754. outpw(FM_A(FM_CMDREG2),FM_IACTR) ;/* abort current transmit activity */
  755. /* disable receive function */
  756. SETMASK(FM_A(FM_MDREG1),FM_MDISRCV,FM_ADDET) ;
  757. /* FORMAC+ 'Initialize Mode' */
  758. SETMASK(FM_A(FM_MDREG1),FM_MINIT,FM_MMODE) ;
  759. disable_formac(smc) ;
  760. smc->hw.mac_ring_is_up = FALSE ;
  761. smc->hw.hw_state = STOPPED ;
  762. }
  763. /*
  764.  * bring formac online
  765.  */
  766. static void formac_online(smc)
  767. struct s_smc *smc ;
  768. {
  769. enable_formac(smc) ;
  770. SETMASK(FM_A(FM_MDREG1),FM_MONLINE | FM_SELRA | MDR1INIT |
  771. smc->hw.fp.rx_mode, FM_MMODE | FM_SELRA | FM_ADDRX) ;
  772. }
  773. /*
  774.  * FORMAC+ full init. (tx, rx, timer, counter, claim & beacon)
  775.  */
  776. int init_fplus(smc)
  777. struct s_smc *smc ;
  778. {
  779. smc->hw.fp.nsa_mode = FM_MRNNSAFNMA ;
  780. smc->hw.fp.rx_mode = FM_MDAMA ;
  781. smc->hw.fp.group_addr = fddi_broadcast ;
  782. smc->hw.fp.func_addr = 0 ;
  783. smc->hw.fp.frselreg_init = 0 ;
  784. init_driver_fplus(smc) ;
  785. if (smc->s.sas == SMT_DAS)
  786. smc->hw.fp.mdr3init |= FM_MENDAS ;
  787. smc->hw.mac_ct.mac_nobuf_counter = 0 ;
  788. smc->hw.mac_ct.mac_r_restart_counter = 0 ;
  789. smc->hw.fp.fm_st1u = (HW_PTR) ADDR(B0_ST1U) ;
  790. smc->hw.fp.fm_st1l = (HW_PTR) ADDR(B0_ST1L) ;
  791. smc->hw.fp.fm_st2u = (HW_PTR) ADDR(B0_ST2U) ;
  792. smc->hw.fp.fm_st2l = (HW_PTR) ADDR(B0_ST2L) ;
  793. smc->hw.fp.fm_st3u = (HW_PTR) ADDR(B0_ST3U) ;
  794. smc->hw.fp.fm_st3l = (HW_PTR) ADDR(B0_ST3L) ;
  795. smc->hw.fp.s2l = smc->hw.fp.s2u = 0 ;
  796. smc->hw.mac_ring_is_up = 0 ;
  797. mac_counter_init(smc) ;
  798. /* convert BCKL units to symbol time */
  799. smc->hw.mac_pa.t_neg = (u_long)0 ;
  800. smc->hw.mac_pa.t_pri = (u_long)0 ;
  801. /* make sure all PCI settings are correct */
  802. mac_do_pci_fix(smc) ;
  803. return(init_mac(smc,1)) ;
  804. /* enable_formac(smc) ; */
  805. }
  806. static int init_mac(smc,all)
  807. struct s_smc *smc ;
  808. int all ;
  809. {
  810. u_short t_max,x ;
  811. u_long time=0 ;
  812. /*
  813.  * clear memory
  814.  */
  815. outpw(FM_A(FM_MDREG1),FM_MINIT) ; /* FORMAC+ init mode */
  816. set_formac_addr(smc) ;
  817. outpw(FM_A(FM_MDREG1),FM_MMEMACT) ; /* FORMAC+ memory activ mode */
  818. /* Note: Mode register 2 is set here, incase parity is enabled. */
  819. outpw(FM_A(FM_MDREG2),smc->hw.fp.mdr2init) ;
  820. if (all) {
  821. init_ram(smc) ;
  822. }
  823. else {
  824. /*
  825.  * reset the HPI, the Master and the BMUs
  826.  */
  827. outp(ADDR(B0_CTRL), CTRL_HPI_SET) ;
  828. time = hwt_quick_read(smc) ;
  829. }
  830. /*
  831.  * set all pointers, frames etc
  832.  */
  833. smt_split_up_fifo(smc) ;
  834. init_tx(smc) ;
  835. init_rx(smc) ;
  836. init_rbc(smc) ;
  837. build_claim_beacon(smc,smc->mib.m[MAC0].fddiMACT_Req) ;
  838. /* set RX threshold */
  839. /* see Errata #SN2 Phantom receive overflow */
  840. outpw(FM_A(FM_FRMTHR),14<<12) ; /* switch on */
  841. /* set formac work mode */
  842. outpw(FM_A(FM_MDREG1),MDR1INIT | FM_SELRA | smc->hw.fp.rx_mode) ;
  843. outpw(FM_A(FM_MDREG2),smc->hw.fp.mdr2init) ;
  844. outpw(FM_A(FM_MDREG3),smc->hw.fp.mdr3init) ;
  845. outpw(FM_A(FM_FRSELREG),smc->hw.fp.frselreg_init) ;
  846. /* set timer */
  847. /*
  848.  * errata #22 fplus:
  849.  * T_MAX must not be FFFE
  850.  * or one of FFDF, FFB8, FF91 (-0x27 etc..)
  851.  */
  852. t_max = (u_short)(smc->mib.m[MAC0].fddiMACT_Max/32) ;
  853. x = t_max/0x27 ;
  854. x *= 0x27 ;
  855. if ((t_max == 0xfffe) || (t_max - x == 0x16))
  856. t_max-- ;
  857. outpw(FM_A(FM_TMAX),(u_short)t_max) ;
  858. /* BugFix for report #10204 */
  859. if (smc->mib.m[MAC0].fddiMACTvxValue < (u_long) (- US2BCLK(52))) {
  860. outpw(FM_A(FM_TVX), (u_short) (- US2BCLK(52))/255 & MB) ;
  861. } else {
  862. outpw(FM_A(FM_TVX),
  863. (u_short)((smc->mib.m[MAC0].fddiMACTvxValue/255) & MB)) ;
  864. }
  865. outpw(FM_A(FM_CMDREG1),FM_ICLLS) ; /* clear s-frame lock */
  866. outpw(FM_A(FM_CMDREG1),FM_ICLLA0) ; /* clear a-frame lock */
  867. outpw(FM_A(FM_CMDREG1),FM_ICLLR); /* clear receive lock */
  868. /* Auto unlock receice threshold for receive queue 1 and 2 */
  869. outpw(FM_A(FM_UNLCKDLY),(0xff|(0xff<<8))) ;
  870. rtm_init(smc) ; /* RT-Monitor */
  871. if (!all) {
  872. /*
  873.  * after 10ms, reset the BMUs and repair the rings
  874.  */
  875. hwt_wait_time(smc,time,MS2BCLK(10)) ;
  876. outpd(ADDR(B0_R1_CSR),CSR_SET_RESET) ;
  877. outpd(ADDR(B0_XA_CSR),CSR_SET_RESET) ;
  878. outpd(ADDR(B0_XS_CSR),CSR_SET_RESET) ;
  879. outp(ADDR(B0_CTRL), CTRL_HPI_CLR) ;
  880. outpd(ADDR(B0_R1_CSR),CSR_CLR_RESET) ;
  881. outpd(ADDR(B0_XA_CSR),CSR_CLR_RESET) ;
  882. outpd(ADDR(B0_XS_CSR),CSR_CLR_RESET) ;
  883. if (!smc->hw.hw_is_64bit) {
  884. outpd(ADDR(B4_R1_F), RX_WATERMARK) ;
  885. outpd(ADDR(B5_XA_F), TX_WATERMARK) ;
  886. outpd(ADDR(B5_XS_F), TX_WATERMARK) ;
  887. }
  888. smc->hw.hw_state = STOPPED ;
  889. mac_drv_repair_descr(smc) ;
  890. }
  891. smc->hw.hw_state = STARTED ;
  892. return(0) ;
  893. }
  894. /*
  895.  * called by CFM
  896.  */
  897. void config_mux(smc,mux)
  898. struct s_smc *smc ;
  899. int mux;
  900. {
  901. plc_config_mux(smc,mux) ;
  902. SETMASK(FM_A(FM_MDREG1),FM_SELRA,FM_SELRA) ;
  903. }
  904. /*
  905.  * called by RMT
  906.  * enable CLAIM/BEACON interrupts
  907.  * (only called if these events are of interest, e.g. in DETECT state
  908.  * the interrupt must not be permanently enabled
  909.  * RMT calls this function periodically (timer driven polling)
  910.  */
  911. void sm_mac_check_beacon_claim(smc)
  912. struct s_smc *smc ;
  913. {
  914. /* set formac IMSK : 0 enables irq */
  915. outpw(FM_A(FM_IMSK2U),~(mac_imsk2u | mac_beacon_imsk2u)) ;
  916. /* the driver must receive the directed beacons */
  917. formac_rcv_restart(smc) ;
  918. process_receive(smc) ;
  919. }
  920. /*-------------------------- interface functions ----------------------------*/
  921. /*
  922.  * control ODL output
  923.  */
  924. void sm_pm_control(smc,mode)
  925. struct s_smc *smc ;
  926. int mode;
  927. {
  928. SK_UNUSED(smc) ;
  929. /*
  930.  * if PCM logic has set LS_REQUEST = Transmit QUIET Line State
  931.  * /FOTOFF signal turn activ -> ODL disable
  932.  */
  933. switch(mode) {
  934. case PM_TRANSMIT_DISABLE :
  935. break ;
  936. case PM_TRANSMIT_ENABLE :
  937. break ;
  938. }
  939. }
  940. /*
  941.  * control MAC layer (called by RMT)
  942.  */
  943. void sm_ma_control(smc,mode)
  944. struct s_smc *smc ;
  945. int mode;
  946. {
  947. switch(mode) {
  948. case MA_OFFLINE :
  949. /* Add to make the MAC offline in RM0_ISOLATED state */
  950. formac_offline(smc) ;
  951. break ;
  952. case MA_RESET :
  953. (void)init_mac(smc,0) ;
  954. break ;
  955. case MA_BEACON :
  956. formac_online(smc) ;
  957. break ;
  958. case MA_DIRECTED :
  959. directed_beacon(smc) ;
  960. break ;
  961. case MA_TREQ :
  962. /*
  963.  * no actions necessary, TREQ is already set
  964.  */
  965. break ;
  966. }
  967. }
  968. int sm_mac_get_tx_state(smc)
  969. struct s_smc *smc ;
  970. {
  971. return((inpw(FM_A(FM_STMCHN))>>4)&7) ;
  972. }
  973. /*
  974.  * multicast functions
  975.  */
  976. static struct s_fpmc *mac_get_mc_table(smc,user,own,del,can)
  977. struct s_smc *smc ;
  978. struct fddi_addr *user ;
  979. struct fddi_addr *own ;
  980. int del ;
  981. int can ;
  982. {
  983. struct s_fpmc *tb ;
  984. struct s_fpmc *slot ;
  985. u_char *p ;
  986. int i ;
  987. /*
  988.  * set own = can(user)
  989.  */
  990. *own = *user ;
  991. if (can) {
  992. p = own->a ;
  993. for (i = 0 ; i < 6 ; i++, p++)
  994. *p = canonical[*p] ;
  995. }
  996. slot = 0 ;
  997. for (i = 0, tb = smc->hw.fp.mc.table ; i < FPMAX_MULTICAST ; i++, tb++){
  998. if (!tb->n) { /* not used */
  999. if (!del && !slot) /* if !del save first free */
  1000. slot = tb ;
  1001. continue ;
  1002. }
  1003. if (memcmp((char *)&tb->a,(char *)own,6))
  1004. continue ;
  1005. return(tb) ;
  1006. }
  1007. return(slot) ; /* return first free or NULL */
  1008. }
  1009. /*
  1010. BEGIN_MANUAL_ENTRY(if,func;others;2)
  1011. void mac_clear_multicast(smc)
  1012. struct s_smc *smc ;
  1013. Function DOWNCALL (SMT, fplustm.c)
  1014. Clear all multicast entries
  1015. END_MANUAL_ENTRY()
  1016.  */
  1017. void mac_clear_multicast(smc)
  1018. struct s_smc *smc ;
  1019. {
  1020. struct s_fpmc *tb ;
  1021. int i ;
  1022. smc->hw.fp.os_slots_used = 0 ; /* note the SMT addresses */
  1023. /* will not be deleted */
  1024. for (i = 0, tb = smc->hw.fp.mc.table ; i < FPMAX_MULTICAST ; i++, tb++){
  1025. if (!tb->perm) {
  1026. tb->n = 0 ;
  1027. }
  1028. }
  1029. }
  1030. /*
  1031. BEGIN_MANUAL_ENTRY(if,func;others;2)
  1032. int mac_set_func_addr(smc,f_addr)
  1033. struct s_smc *smc ;
  1034. u_long f_addr ;
  1035. Function DOWNCALL (SMT, fplustm.c)
  1036. Set a Token-Ring functional address, the address will
  1037. be activated after calling mac_update_multicast()
  1038. Para f_addr functional bits in non-canonical format
  1039. Returns 0: always success
  1040. END_MANUAL_ENTRY()
  1041.  */
  1042. int mac_set_func_addr(smc,f_addr)
  1043. struct s_smc *smc ;
  1044. u_long f_addr ;
  1045. {
  1046. smc->hw.fp.func_addr = f_addr ;
  1047. return(0) ;
  1048. }
  1049. /*
  1050. BEGIN_MANUAL_ENTRY(if,func;others;2)
  1051. int mac_add_multicast(smc,addr,can)
  1052. struct s_smc *smc ;
  1053. struct fddi_addr *addr ;
  1054. int can ;
  1055. Function DOWNCALL (SMC, fplustm.c)
  1056. Add an entry to the multicast table
  1057. Para addr pointer to a multicast address
  1058. can = 0: the multicast address has the physical format
  1059. = 1: the multicast address has the canonical format
  1060. | 0x80 permanent
  1061. Returns 0: success
  1062. 1: address table full
  1063. Note After a 'driver reset' or a 'station set address' all
  1064. entries of the multicast table are cleared.
  1065. In this case the driver has to fill the multicast table again.
  1066. After the operating system dependent module filled
  1067. the multicast table it must call mac_update_multicast
  1068. to activate the new multicast addresses!
  1069. END_MANUAL_ENTRY()
  1070.  */
  1071. int mac_add_multicast(smc,addr,can)
  1072. struct s_smc *smc ;
  1073. struct fddi_addr *addr ;
  1074. int can ;
  1075. {
  1076. SK_LOC_DECL(struct fddi_addr,own) ;
  1077. struct s_fpmc *tb ;
  1078. /*
  1079.  * check if there are free table entries
  1080.  */
  1081. if (can & 0x80) {
  1082. if (smc->hw.fp.smt_slots_used >= SMT_MAX_MULTI) {
  1083. return(1) ;
  1084. }
  1085. }
  1086. else {
  1087. if (smc->hw.fp.os_slots_used >= FPMAX_MULTICAST-SMT_MAX_MULTI) {
  1088. return(1) ;
  1089. }
  1090. }
  1091. /*
  1092.  * find empty slot
  1093.  */
  1094. if (!(tb = mac_get_mc_table(smc,addr,&own,0,can & ~0x80)))
  1095. return(1) ;
  1096. tb->n++ ;
  1097. tb->a = own ;
  1098. tb->perm = (can & 0x80) ? 1 : 0 ;
  1099. if (can & 0x80)
  1100. smc->hw.fp.smt_slots_used++ ;
  1101. else
  1102. smc->hw.fp.os_slots_used++ ;
  1103. return(0) ;
  1104. }
  1105. /*
  1106. BEGIN_MANUAL_ENTRY(if,func;others;2)
  1107. void mac_del_multicast(smc,addr,can)
  1108. struct s_smc *smc ;
  1109. struct fddi_addr *addr ;
  1110. int can ;
  1111. Function DOWNCALL (SMT, fplustm.c)
  1112. Delete an entry from the multicast table
  1113. Para addr pointer to a multicast address
  1114. can = 0: the multicast address has the physical format
  1115. = 1: the multicast address has the canonical format
  1116. | 0x80 permanent
  1117. END_MANUAL_ENTRY()
  1118.  */
  1119. void mac_del_multicast(smc,addr,can)
  1120. struct s_smc *smc ;
  1121. struct fddi_addr *addr ;
  1122. int can ;
  1123. {
  1124. SK_LOC_DECL(struct fddi_addr,own) ;
  1125. struct s_fpmc *tb ;
  1126. if (!(tb = mac_get_mc_table(smc,addr,&own,1,can & ~0x80)))
  1127. return ;
  1128. /*
  1129.  * permanent addresses must be deleted with perm bit
  1130.  * and vice versa
  1131.  */
  1132. if (( tb->perm &&  (can & 0x80)) ||
  1133.     (!tb->perm && !(can & 0x80))) {
  1134. /*
  1135.  * delete it
  1136.  */
  1137. if (tb->n) {
  1138. tb->n-- ;
  1139. if (tb->perm) {
  1140. smc->hw.fp.smt_slots_used-- ;
  1141. }
  1142. else {
  1143. smc->hw.fp.os_slots_used-- ;
  1144. }
  1145. }
  1146. }
  1147. }
  1148. /*
  1149.  * mode
  1150.  */
  1151. #define RX_MODE_PROM 0x1
  1152. #define RX_MODE_ALL_MULTI 0x2
  1153. /*
  1154. BEGIN_MANUAL_ENTRY(if,func;others;2)
  1155. void mac_update_multicast(smc)
  1156. struct s_smc *smc ;
  1157. Function DOWNCALL (SMT, fplustm.c)
  1158. Update FORMAC multicast registers
  1159. END_MANUAL_ENTRY()
  1160.  */
  1161. void mac_update_multicast(smc)
  1162. struct s_smc *smc ;
  1163. {
  1164. struct s_fpmc *tb ;
  1165. u_char *fu ;
  1166. int i ;
  1167. /*
  1168.  * invalidate the CAM
  1169.  */
  1170. outpw(FM_A(FM_AFCMD),FM_IINV_CAM) ;
  1171. /*
  1172.  * set the functional address
  1173.  */
  1174. if (smc->hw.fp.func_addr) {
  1175. fu = (u_char *) &smc->hw.fp.func_addr ;
  1176. outpw(FM_A(FM_AFMASK2),0xffff) ;
  1177. outpw(FM_A(FM_AFMASK1),(u_short) ~((fu[0] << 8) + fu[1])) ;
  1178. outpw(FM_A(FM_AFMASK0),(u_short) ~((fu[2] << 8) + fu[3])) ;
  1179. outpw(FM_A(FM_AFPERS),FM_VALID|FM_DA) ;
  1180. outpw(FM_A(FM_AFCOMP2), 0xc000) ;
  1181. outpw(FM_A(FM_AFCOMP1), 0x0000) ;
  1182. outpw(FM_A(FM_AFCOMP0), 0x0000) ;
  1183. outpw(FM_A(FM_AFCMD),FM_IWRITE_CAM) ;
  1184. }
  1185. /*
  1186.  * set the mask and the personality register(s)
  1187.  */
  1188. outpw(FM_A(FM_AFMASK0),0xffff) ;
  1189. outpw(FM_A(FM_AFMASK1),0xffff) ;
  1190. outpw(FM_A(FM_AFMASK2),0xffff) ;
  1191. outpw(FM_A(FM_AFPERS),FM_VALID|FM_DA) ;
  1192. for (i = 0, tb = smc->hw.fp.mc.table; i < FPMAX_MULTICAST; i++, tb++) {
  1193. if (tb->n) {
  1194. CHECK_CAM() ;
  1195. /*
  1196.  * write the multicast address into the CAM
  1197.  */
  1198. outpw(FM_A(FM_AFCOMP2),
  1199. (u_short)((tb->a.a[0]<<8)+tb->a.a[1])) ;
  1200. outpw(FM_A(FM_AFCOMP1),
  1201. (u_short)((tb->a.a[2]<<8)+tb->a.a[3])) ;
  1202. outpw(FM_A(FM_AFCOMP0),
  1203. (u_short)((tb->a.a[4]<<8)+tb->a.a[5])) ;
  1204. outpw(FM_A(FM_AFCMD),FM_IWRITE_CAM) ;
  1205. }
  1206. }
  1207. }
  1208. /*
  1209. BEGIN_MANUAL_ENTRY(if,func;others;3)
  1210. void mac_set_rx_mode(smc,mode)
  1211. struct s_smc *smc ;
  1212. int mode ;
  1213. Function DOWNCALL/INTERN (SMT, fplustm.c)
  1214. This function enables / disables the selected receive.
  1215. Don't call this function if the hardware module is
  1216. used -- use mac_drv_rx_mode() instead of.
  1217. Para mode = 1 RX_ENABLE_ALLMULTI enable all multicasts
  1218. 2 RX_DISABLE_ALLMULTI disable "enable all multicasts"
  1219. 3 RX_ENABLE_PROMISC enable promiscous
  1220. 4 RX_DISABLE_PROMISC disable promiscous
  1221. 5 RX_ENABLE_NSA enable reception of NSA frames
  1222. 6 RX_DISABLE_NSA disable reception of NSA frames
  1223. Note The selected receive modes will be lost after 'driver reset'
  1224. or 'set station address'
  1225. END_MANUAL_ENTRY
  1226.  */
  1227. void mac_set_rx_mode(smc,mode)
  1228. struct s_smc *smc ;
  1229. int mode ;
  1230. {
  1231. switch (mode) {
  1232. case RX_ENABLE_ALLMULTI :
  1233. smc->hw.fp.rx_prom |= RX_MODE_ALL_MULTI ;
  1234. break ;
  1235. case RX_DISABLE_ALLMULTI :
  1236. smc->hw.fp.rx_prom &= ~RX_MODE_ALL_MULTI ;
  1237. break ;
  1238. case RX_ENABLE_PROMISC :
  1239. smc->hw.fp.rx_prom |= RX_MODE_PROM ;
  1240. break ;
  1241. case RX_DISABLE_PROMISC :
  1242. smc->hw.fp.rx_prom &= ~RX_MODE_PROM ;
  1243. break ;
  1244. case RX_ENABLE_NSA :
  1245. smc->hw.fp.nsa_mode = FM_MDAMA ;
  1246. smc->hw.fp.rx_mode = (smc->hw.fp.rx_mode & ~FM_ADDET) |
  1247. smc->hw.fp.nsa_mode ;
  1248. break ;
  1249. case RX_DISABLE_NSA :
  1250. smc->hw.fp.nsa_mode = FM_MRNNSAFNMA ;
  1251. smc->hw.fp.rx_mode = (smc->hw.fp.rx_mode & ~FM_ADDET) |
  1252. smc->hw.fp.nsa_mode ;
  1253. break ;
  1254. }
  1255. if (smc->hw.fp.rx_prom & RX_MODE_PROM) {
  1256. smc->hw.fp.rx_mode = FM_MLIMPROM ;
  1257. }
  1258. else if (smc->hw.fp.rx_prom & RX_MODE_ALL_MULTI) {
  1259. smc->hw.fp.rx_mode = smc->hw.fp.nsa_mode | FM_EXGPA0 ;
  1260. }
  1261. else
  1262. smc->hw.fp.rx_mode = smc->hw.fp.nsa_mode ;
  1263. SETMASK(FM_A(FM_MDREG1),smc->hw.fp.rx_mode,FM_ADDRX) ;
  1264. mac_update_multicast(smc) ;
  1265. }
  1266. /*
  1267. BEGIN_MANUAL_ENTRY(module;tests;3)
  1268. How to test the Restricted Token Monitor
  1269. ----------------------------------------------------------------
  1270. o Insert a break point in the function rtm_irq()
  1271. o Remove all stations with a restricted token monitor from the
  1272.   network.
  1273. o Connect a UPPS ISA or EISA station to the network.
  1274. o Give the FORMAC of UPPS station the command to send
  1275.   restricted tokens until the ring becomes instable.
  1276. o Now connect your test test client.
  1277. o The restricted token monitor should detect the restricted token,
  1278.   and your break point will be reached.
  1279. o You can ovserve how the station will clean the ring.
  1280. END_MANUAL_ENTRY
  1281.  */
  1282. void rtm_irq(smc)
  1283. struct s_smc *smc ;
  1284. {
  1285. outpw(ADDR(B2_RTM_CRTL),TIM_CL_IRQ) ; /* clear IRQ */
  1286. if (inpw(ADDR(B2_RTM_CRTL)) & TIM_RES_TOK) {
  1287. outpw(FM_A(FM_CMDREG1),FM_ICL) ; /* force claim */
  1288. DB_RMT("RMT: fddiPATHT_Rmode expiredn",0,0) ;
  1289. AIX_EVENT(smc, (u_long) FDDI_RING_STATUS,
  1290. (u_long) FDDI_SMT_EVENT,
  1291. (u_long) FDDI_RTT, smt_get_event_word(smc));
  1292. }
  1293. outpw(ADDR(B2_RTM_CRTL),TIM_START) ; /* enable RTM monitoring */
  1294. }
  1295. static void rtm_init(smc)
  1296. struct s_smc *smc ;
  1297. {
  1298. outpd(ADDR(B2_RTM_INI),0) ; /* timer = 0 */
  1299. outpw(ADDR(B2_RTM_CRTL),TIM_START) ; /* enable IRQ */
  1300. }
  1301. void rtm_set_timer(smc)
  1302. struct s_smc *smc ;
  1303. {
  1304. /*
  1305.  * MIB timer and hardware timer have the same resolution of 80nS
  1306.  */
  1307. DB_RMT("RMT: setting new fddiPATHT_Rmode, t = %d ns n",
  1308. (int) smc->mib.a[PATH0].fddiPATHT_Rmode,0) ;
  1309. outpd(ADDR(B2_RTM_INI),smc->mib.a[PATH0].fddiPATHT_Rmode) ;
  1310. }
  1311. static void smt_split_up_fifo(smc)
  1312. struct s_smc *smc ;
  1313. {
  1314. /*
  1315. BEGIN_MANUAL_ENTRY(module;mem;1)
  1316. -------------------------------------------------------------
  1317. RECEIVE BUFFER MEMORY DIVERSION
  1318. -------------------------------------------------------------
  1319. R1_RxD == SMT_R1_RXD_COUNT
  1320. R2_RxD == SMT_R2_RXD_COUNT
  1321. SMT_R1_RXD_COUNT must be unequal zero
  1322.    | R1_RxD R2_RxD |R1_RxD R2_RxD | R1_RxD R2_RxD
  1323.    |   x      0    |  x     1-3   |   x     < 3
  1324. ----------------------------------------------------------------------
  1325.    |   63,75 kB    |    54,75   | R1_RxD
  1326. rx queue 1 | RX_FIFO_SPACE | RX_LARGE_FIFO| ------------- * 63,75 kB
  1327.    |    |   | R1_RxD+R2_RxD
  1328. ----------------------------------------------------------------------
  1329.    |    |    9 kB   |     R2_RxD
  1330. rx queue 2 | 0 kB    | RX_SMALL_FIFO| ------------- * 63,75 kB
  1331.    |  (not used)   |   | R1_RxD+R2_RxD
  1332. END_MANUAL_ENTRY
  1333. */
  1334. if (SMT_R1_RXD_COUNT == 0) {
  1335. SMT_PANIC(smc,SMT_E0117, SMT_E0117_MSG) ;
  1336. }
  1337. switch(SMT_R2_RXD_COUNT) {
  1338. case 0:
  1339. smc->hw.fp.fifo.rx1_fifo_size = RX_FIFO_SPACE ;
  1340. smc->hw.fp.fifo.rx2_fifo_size = 0 ;
  1341. break ;
  1342. case 1:
  1343. case 2:
  1344. case 3:
  1345. smc->hw.fp.fifo.rx1_fifo_size = RX_LARGE_FIFO ;
  1346. smc->hw.fp.fifo.rx2_fifo_size = RX_SMALL_FIFO ;
  1347. break ;
  1348. default: /* this is not the real defaule */
  1349. smc->hw.fp.fifo.rx1_fifo_size = RX_FIFO_SPACE *
  1350. SMT_R1_RXD_COUNT/(SMT_R1_RXD_COUNT+SMT_R2_RXD_COUNT) ;
  1351. smc->hw.fp.fifo.rx2_fifo_size = RX_FIFO_SPACE *
  1352. SMT_R2_RXD_COUNT/(SMT_R1_RXD_COUNT+SMT_R2_RXD_COUNT) ;
  1353. break ;
  1354. }
  1355. /*
  1356. BEGIN_MANUAL_ENTRY(module;mem;1)
  1357. -------------------------------------------------------------
  1358. TRANSMIT BUFFER MEMORY DIVERSION
  1359. -------------------------------------------------------------
  1360.  | no sync bw | sync bw available and | sync bw available and
  1361.  | available | SynchTxMode = SPLIT | SynchTxMode = ALL
  1362. -----------------------------------------------------------------------
  1363. sync tx  |     0 kB | 32 kB | 55 kB
  1364. queue  | |   TX_MEDIUM_FIFO |   TX_LARGE_FIFO
  1365. -----------------------------------------------------------------------
  1366. async tx |    64 kB | 32 kB |  9 k
  1367. queue  | TX_FIFO_SPACE|   TX_MEDIUM_FIFO |   TX_SMALL_FIFO
  1368. END_MANUAL_ENTRY
  1369. */
  1370. /*
  1371.  * set the tx mode bits
  1372.  */
  1373. if (smc->mib.a[PATH0].fddiPATHSbaPayload) {
  1374. #ifdef ESS
  1375. smc->hw.fp.fifo.fifo_config_mode |=
  1376. smc->mib.fddiESSSynchTxMode | SYNC_TRAFFIC_ON ;
  1377. #endif
  1378. }
  1379. else {
  1380. smc->hw.fp.fifo.fifo_config_mode &=
  1381. ~(SEND_ASYNC_AS_SYNC|SYNC_TRAFFIC_ON) ;
  1382. }
  1383. /*
  1384.  * split up the FIFO
  1385.  */
  1386. if (smc->hw.fp.fifo.fifo_config_mode & SYNC_TRAFFIC_ON) {
  1387. if (smc->hw.fp.fifo.fifo_config_mode & SEND_ASYNC_AS_SYNC) {
  1388. smc->hw.fp.fifo.tx_s_size = TX_LARGE_FIFO ;
  1389. smc->hw.fp.fifo.tx_a0_size = TX_SMALL_FIFO ;
  1390. }
  1391. else {
  1392. smc->hw.fp.fifo.tx_s_size = TX_MEDIUM_FIFO ;
  1393. smc->hw.fp.fifo.tx_a0_size = TX_MEDIUM_FIFO ;
  1394. }
  1395. }
  1396. else {
  1397. smc->hw.fp.fifo.tx_s_size = 0 ;
  1398. smc->hw.fp.fifo.tx_a0_size = TX_FIFO_SPACE ;
  1399. }
  1400. smc->hw.fp.fifo.rx1_fifo_start = smc->hw.fp.fifo.rbc_ram_start +
  1401. RX_FIFO_OFF ;
  1402. smc->hw.fp.fifo.tx_s_start = smc->hw.fp.fifo.rx1_fifo_start +
  1403. smc->hw.fp.fifo.rx1_fifo_size ;
  1404. smc->hw.fp.fifo.tx_a0_start = smc->hw.fp.fifo.tx_s_start +
  1405. smc->hw.fp.fifo.tx_s_size ;
  1406. smc->hw.fp.fifo.rx2_fifo_start = smc->hw.fp.fifo.tx_a0_start +
  1407. smc->hw.fp.fifo.tx_a0_size ;
  1408. DB_SMT("FIFO split: mode = %xn",smc->hw.fp.fifo.fifo_config_mode,0) ;
  1409. DB_SMT("rbc_ram_start = %x  rbc_ram_end =  %xn",
  1410. smc->hw.fp.fifo.rbc_ram_start, smc->hw.fp.fifo.rbc_ram_end) ;
  1411. DB_SMT("rx1_fifo_start = %x  tx_s_start =  %xn",
  1412. smc->hw.fp.fifo.rx1_fifo_start, smc->hw.fp.fifo.tx_s_start) ;
  1413. DB_SMT("tx_a0_start = %x  rx2_fifo_start =  %xn",
  1414. smc->hw.fp.fifo.tx_a0_start, smc->hw.fp.fifo.rx2_fifo_start) ;
  1415. }
  1416. void formac_reinit_tx(smc)
  1417. struct s_smc *smc ;
  1418. {
  1419. /*
  1420.  * Split up the FIFO and reinitialize the MAC if synchronous
  1421.  * bandwidth becomes available but no synchronous queue is
  1422.  * configured.
  1423.  */
  1424. if (!smc->hw.fp.fifo.tx_s_size && smc->mib.a[PATH0].fddiPATHSbaPayload){
  1425. (void)init_mac(smc,0) ;
  1426. }
  1427. }