cmtdef.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:21k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * (C)Copyright 1998,1999 SysKonnect,
  4.  * a business unit of Schneider & Koch & Co. Datensysteme GmbH.
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * The information in this file is provided "AS IS" without warranty.
  12.  *
  13.  ******************************************************************************/
  14. #ifndef _CMTDEF_
  15. #define _CMTDEF_
  16. /* **************************************************************** */
  17. /*
  18.  * implementation specific constants
  19.  * MODIIFY THE FOLLWOING THREE DEFINES
  20.  */
  21. #define AMDPLC /* if Amd PLC chip used */
  22. #ifdef CONC
  23. #define NUMPHYS 12 /* 2 for SAS or DAS, more for Concentrator */
  24. #else
  25. #ifdef CONC_II
  26. #define NUMPHYS 24 /* 2 for SAS or DAS, more for Concentrator */
  27. #else
  28. #define NUMPHYS 2 /* 2 for SAS or DAS, more for Concentrator */
  29. #endif
  30. #endif
  31. #define NUMMACS 1 /* only 1 supported at the moment */
  32. #define NUMPATHS 2 /* primary and secondary path supported */
  33. /*
  34.  * DO NOT MODIFY BEYOND THIS POINT
  35.  */
  36. /* **************************************************************** */
  37. #if NUMPHYS > 2
  38. #define CONCENTRATOR
  39. #endif
  40. /*
  41.  * Definitions for comfortable LINT usage
  42.  */
  43. #ifdef lint
  44. #define LINT_USE(x) (x)=(x)
  45. #else
  46. #define LINT_USE(x)
  47. #endif
  48. #ifdef DEBUG
  49. #define DB_PR(flag,a,b,c) { if (flag) printf(a,b,c) ; }
  50. #else
  51. #define DB_PR(flag,a,b,c)
  52. #endif
  53. #ifdef DEBUG_BRD
  54. #define DB_ECM(a,b,c) DB_PR((smc->debug.d_smt&1),a,b,c)
  55. #define DB_ECMN(n,a,b,c) DB_PR((smc->debug.d_ecm >=(n)),a,b,c)
  56. #define DB_RMT(a,b,c) DB_PR((smc->debug.d_smt&2),a,b,c)
  57. #define DB_RMTN(n,a,b,c) DB_PR((smc->debug.d_rmt >=(n)),a,b,c)
  58. #define DB_CFM(a,b,c) DB_PR((smc->debug.d_smt&4),a,b,c)
  59. #define DB_CFMN(n,a,b,c) DB_PR((smc->debug.d_cfm >=(n)),a,b,c)
  60. #define DB_PCM(a,b,c) DB_PR((smc->debug.d_smt&8),a,b,c)
  61. #define DB_PCMN(n,a,b,c) DB_PR((smc->debug.d_pcm >=(n)),a,b,c)
  62. #define DB_SMT(a,b,c) DB_PR((smc->debug.d_smtf),a,b,c)
  63. #define DB_SMTN(n,a,b,c) DB_PR((smc->debug.d_smtf >=(n)),a,b,c)
  64. #define DB_SBA(a,b,c) DB_PR((smc->debug.d_sba),a,b,c)
  65. #define DB_SBAN(n,a,b,c) DB_PR((smc->debug.d_sba >=(n)),a,b,c)
  66. #define DB_ESS(a,b,c) DB_PR((smc->debug.d_ess),a,b,c)
  67. #define DB_ESSN(n,a,b,c) DB_PR((smc->debug.d_ess >=(n)),a,b,c)
  68. #else
  69. #define DB_ECM(a,b,c) DB_PR((debug.d_smt&1),a,b,c)
  70. #define DB_ECMN(n,a,b,c) DB_PR((debug.d_ecm >=(n)),a,b,c)
  71. #define DB_RMT(a,b,c) DB_PR((debug.d_smt&2),a,b,c)
  72. #define DB_RMTN(n,a,b,c) DB_PR((debug.d_rmt >=(n)),a,b,c)
  73. #define DB_CFM(a,b,c) DB_PR((debug.d_smt&4),a,b,c)
  74. #define DB_CFMN(n,a,b,c) DB_PR((debug.d_cfm >=(n)),a,b,c)
  75. #define DB_PCM(a,b,c) DB_PR((debug.d_smt&8),a,b,c)
  76. #define DB_PCMN(n,a,b,c) DB_PR((debug.d_pcm >=(n)),a,b,c)
  77. #define DB_SMT(a,b,c) DB_PR((debug.d_smtf),a,b,c)
  78. #define DB_SMTN(n,a,b,c) DB_PR((debug.d_smtf >=(n)),a,b,c)
  79. #define DB_SBA(a,b,c) DB_PR((debug.d_sba),a,b,c)
  80. #define DB_SBAN(n,a,b,c) DB_PR((debug.d_sba >=(n)),a,b,c)
  81. #define DB_ESS(a,b,c) DB_PR((debug.d_ess),a,b,c)
  82. #define DB_ESSN(n,a,b,c) DB_PR((debug.d_ess >=(n)),a,b,c)
  83. #endif
  84. #ifndef SS_NOT_DS
  85. #define SK_LOC_DECL(type,var) type var
  86. #else
  87. #define SK_LOC_DECL(type,var) static type var
  88. #endif
  89. /*
  90.  * PHYs and PORTS
  91.  * Note: Don't touch the definition of PA and PB. Those might be used
  92.  * by some "for" loops.
  93.  */
  94. #define PA 0
  95. #define PB 1
  96. #if defined(SUPERNET_3) || defined(CONC_II)
  97. /*
  98.  * The port indices have to be different,
  99.  * because the MAC output goes through the 2. PLC
  100.  * Conc II: It has to be the first port in the row.
  101.  */
  102. #define PS 0 /* Internal PLC which is the same as PA */
  103. #else
  104. #define PS 1
  105. #endif
  106. #define PM 2 /* PM .. PA+NUM_PHYS-1 */
  107. /*
  108.  * PHY types - as in path descriptor 'fddiPHYType'
  109.  */
  110. #define TA 0 /* A port */
  111. #define TB 1 /* B port */
  112. #define TS 2 /* S port */
  113. #define TM 3 /* M port */
  114. #define TNONE 4
  115. /*
  116.  * indexes in MIB
  117.  */
  118. #define INDEX_MAC 1
  119. #define INDEX_PATH 1
  120. #define INDEX_PORT 1
  121. /*
  122.  * policies
  123.  */
  124. #define POLICY_AA (1<<0) /* reject AA */
  125. #define POLICY_AB (1<<1) /* reject AB */
  126. #define POLICY_AS (1<<2) /* reject AS */
  127. #define POLICY_AM (1<<3) /* reject AM */
  128. #define POLICY_BA (1<<4) /* reject BA */
  129. #define POLICY_BB (1<<5) /* reject BB */
  130. #define POLICY_BS (1<<6) /* reject BS */
  131. #define POLICY_BM (1<<7) /* reject BM */
  132. #define POLICY_SA (1<<8) /* reject SA */
  133. #define POLICY_SB (1<<9) /* reject SB */
  134. #define POLICY_SS (1<<10) /* reject SS */
  135. #define POLICY_SM (1<<11) /* reject SM */
  136. #define POLICY_MA (1<<12) /* reject MA */
  137. #define POLICY_MB (1<<13) /* reject MB */
  138. #define POLICY_MS (1<<14) /* reject MS */
  139. #define POLICY_MM (1<<15) /* reject MM */
  140. /*
  141.  * commands
  142.  */
  143. /*
  144.  * EVENTS
  145.  * event classes
  146.  */
  147. #define EVENT_ECM 1 /* event class ECM */
  148. #define EVENT_CFM 2 /* event class CFM */
  149. #define EVENT_RMT 3 /* event class RMT */
  150. #define EVENT_SMT 4 /* event class SMT */
  151. #define EVENT_PCM 5 /* event class PCM */
  152. #define EVENT_PCMA 5 /* event class PCMA */
  153. #define EVENT_PCMB 6 /* event class PCMB */
  154. /* WARNING :
  155.  * EVENT_PCM* must be last in the above list
  156.  * if more then two ports are used, EVENT_PCM .. EVENT_PCMA+NUM_PHYS-1
  157.  * are used !
  158.  */
  159. #define EV_TOKEN(class,event) (((u_long)(class)<<16L)|((u_long)(event)))
  160. #define EV_T_CLASS(token) ((int)((token)>>16)&0xffff)
  161. #define EV_T_EVENT(token) ((int)(token)&0xffff)
  162. /*
  163.  * ECM events
  164.  */
  165. #define EC_CONNECT 1 /* connect request */
  166. #define EC_DISCONNECT 2 /* disconnect request */
  167. #define EC_TRACE_PROP 3 /* trace propagation */
  168. #define EC_PATH_TEST 4 /* path test */
  169. #define EC_TIMEOUT_TD 5 /* timer TD_min */
  170. #define EC_TIMEOUT_TMAX 6 /* timer trace_max */
  171. #define EC_TIMEOUT_IMAX 7 /* timer I_max */
  172. #define EC_TIMEOUT_INMAX 8 /* timer IN_max */
  173. #define EC_TEST_DONE 9 /* path test done */
  174. /*
  175.  * CFM events
  176.  */
  177. #define CF_LOOP 1 /* cf_loop flag from PCM */
  178. #define CF_LOOP_A 1 /* cf_loop flag from PCM */
  179. #define CF_LOOP_B 2 /* cf_loop flag from PCM */
  180. #define CF_JOIN 3 /* cf_join flag from PCM */
  181. #define CF_JOIN_A 3 /* cf_join flag from PCM */
  182. #define CF_JOIN_B 4 /* cf_join flag from PCM */
  183. /*
  184.  * PCM events
  185.  */
  186. #define PC_START 1
  187. #define PC_STOP 2
  188. #define PC_LOOP 3
  189. #define PC_JOIN 4
  190. #define PC_SIGNAL 5
  191. #define PC_REJECT 6
  192. #define PC_MAINT     7
  193. #define PC_TRACE 8
  194. #define PC_PDR 9
  195. #define PC_ENABLE 10
  196. #define PC_DISABLE 11
  197. /*
  198.  * must be ordered as in LineStateType
  199.  */
  200. #define PC_QLS 12
  201. #define PC_ILS 13
  202. #define PC_MLS 14
  203. #define PC_HLS 15
  204. #define PC_LS_PDR 16
  205. #define PC_LS_NONE 17
  206. #define LS2MIB(x) ((x)-PC_QLS)
  207. #define MIB2LS(x) ((x)+PC_QLS)
  208. #define PC_TIMEOUT_TB_MAX 18 /* timer TB_max */
  209. #define PC_TIMEOUT_TB_MIN 19 /* timer TB_min */
  210. #define PC_TIMEOUT_C_MIN 20 /* timer C_Min */
  211. #define PC_TIMEOUT_T_OUT 21 /* timer T_Out */
  212. #define PC_TIMEOUT_TL_MIN 22 /* timer TL_Min */
  213. #define PC_TIMEOUT_T_NEXT 23 /* timer t_next[] */
  214. #define PC_TIMEOUT_LCT 24
  215. #define PC_NSE 25 /* NOISE hardware timer */
  216. #define PC_LEM 26 /* LEM done */
  217. /*
  218.  * RMT events   meaning from
  219.  */
  220. #define RM_RING_OP 1 /* ring operational MAC */
  221. #define RM_RING_NON_OP 2 /* ring not operational MAC */
  222. #define RM_MY_BEACON 3 /* recvd my beacon MAC */
  223. #define RM_OTHER_BEACON 4 /* recvd other beacon MAC */
  224. #define RM_MY_CLAIM 5 /* recvd my claim MAC */
  225. #define RM_TRT_EXP 6 /* TRT exp MAC */
  226. #define RM_VALID_CLAIM 7 /* claim from dup addr MAC */
  227. #define RM_JOIN 8 /* signal rm_join CFM */
  228. #define RM_LOOP 9 /* signal rm_loop CFM */
  229. #define RM_DUP_ADDR 10 /* dup_addr_test hange SMT-NIF */
  230. #define RM_ENABLE_FLAG 11 /* enable flag */
  231. #define RM_TIMEOUT_NON_OP 12 /* timeout T_Non_OP */
  232. #define RM_TIMEOUT_T_STUCK 13 /* timeout T_Stuck */
  233. #define RM_TIMEOUT_ANNOUNCE 14 /* timeout T_Announce */
  234. #define RM_TIMEOUT_T_DIRECT 15 /* timeout T_Direct */
  235. #define RM_TIMEOUT_D_MAX 16 /* timeout D_Max */
  236. #define RM_TIMEOUT_POLL 17 /* claim/beacon poller */
  237. #define RM_TX_STATE_CHANGE 18 /* To restart timer for D_Max */
  238. /*
  239.  * SMT events
  240.  */
  241. #define SM_TIMER 1 /* timer */
  242. #define SM_FAST 2 /* smt_force_irq */
  243. /* PC modes */
  244. #define PM_NONE 0
  245. #define PM_PEER 1
  246. #define PM_TREE 2
  247. /*
  248.  * PCM withhold codes
  249.  * MIB PC-WithholdType ENUM
  250.  */
  251. #define PC_WH_NONE 0 /* ok */
  252. #define PC_WH_M_M 1 /* M to M */
  253. #define PC_WH_OTHER 2 /* other incompatible phys */
  254. #define PC_WH_PATH 3 /* path not available */
  255. /*
  256.  * LCT duration
  257.  */
  258. #define LC_SHORT 1 /* short LCT */
  259. #define LC_MEDIUM 2 /* medium LCT */
  260. #define LC_LONG 3 /* long LCT */
  261. #define LC_EXTENDED 4 /* extended LCT */
  262. /*
  263.  * path_test values
  264.  */
  265. #define PT_NONE 0
  266. #define PT_TESTING 1 /* test is running */
  267. #define PT_PASSED 2 /* test passed */
  268. #define PT_FAILED 3 /* test failed */
  269. #define PT_PENDING 4 /* path test follows */
  270. #define PT_EXITING 5 /* disconnected while in trace/leave */
  271. /*
  272.  * duplicate address test
  273.  * MIB DupAddressTest ENUM
  274.  */
  275. #define DA_NONE 0 /*  */
  276. #define DA_PASSED 1 /* test passed */
  277. #define DA_FAILED 2 /* test failed */
  278. /*
  279.  * optical bypass
  280.  */
  281. #define BP_DEINSERT 0 /* disable bypass */
  282. #define BP_INSERT 1 /* enable bypass */
  283. /*
  284.  * ODL enable/disable
  285.  */
  286. #define PM_TRANSMIT_DISABLE 0 /* disable xmit */
  287. #define PM_TRANSMIT_ENABLE 1 /* enable xmit */
  288. /*
  289.  * parameter for config_mux
  290.  * note : number is index in config_endec table !
  291.  */
  292. #define MUX_THRUA 0 /* through A */
  293. #define MUX_THRUB 1 /* through B */
  294. #define MUX_WRAPA 2 /* wrap A */
  295. #define MUX_WRAPB 3 /* wrap B */
  296. #define MUX_ISOLATE 4 /* isolated */
  297. #define MUX_WRAPS 5 /* SAS */
  298. /*
  299.  * MAC control
  300.  */
  301. #define MA_RESET 0
  302. #define MA_BEACON 1
  303. #define MA_CLAIM 2
  304. #define MA_DIRECTED 3 /* directed beacon */
  305. #define MA_TREQ 4 /* change T_Req */
  306. #define MA_OFFLINE 5 /* switch MAC to offline */
  307. /*
  308.  * trace prop
  309.  * bit map for trace propagation
  310.  */
  311. #define ENTITY_MAC (NUMPHYS)
  312. #define ENTITY_PHY(p) (p)
  313. #define ENTITY_BIT(m) (1<<(m))
  314. /*
  315.  * Resource Tag Types
  316.  */
  317. #define PATH_ISO 0 /* isolated */
  318. #define PATH_PRIM 3 /* primary path */
  319. #define PATH_THRU 5 /* through path */
  320. #define RES_MAC 2 /* resource type MAC */
  321. #define RES_PORT 4 /* resource type PORT */
  322. /*
  323.  * CFM state
  324.  * oops: MUST MATCH CF-StateType in SMT7.2 !
  325.  */
  326. #define SC0_ISOLATED 0 /* isolated */
  327. #define SC1_WRAP_A 5 /* wrap A (not used) */
  328. #define SC2_WRAP_B 6 /* wrap B (not used) */
  329. #define SC4_THRU_A 12 /* through A */
  330. #define SC5_THRU_B 7 /* through B (used in SMT 6.2) */
  331. #define SC7_WRAP_S 8 /* SAS (not used) */
  332. #define SC9_C_WRAP_A 9 /* c wrap A */
  333. #define SC10_C_WRAP_B 10 /* c wrap B */
  334. #define SC11_C_WRAP_S 11 /* c wrap S */
  335. /*
  336.  * convert MIB time in units of 80nS to uS
  337.  */
  338. #define MIB2US(t) ((t)/12)
  339. #define SEC2MIB(s) ((s)*12500000L)
  340. /*
  341.  * SMT timer
  342.  */
  343. struct smt_timer {
  344. struct smt_timer *tm_next ; /* linked list */
  345. struct s_smc *tm_smc ; /* pointer to context */
  346. u_long tm_delta ; /* delta time */
  347. u_long tm_token ; /* token value */
  348. u_short tm_active ; /* flag : active/inactive */
  349. u_short tm_pad ; /* pad field */
  350. } ;
  351. /*
  352.  * communication structures
  353.  */
  354. struct mac_parameter {
  355. u_long t_neg ; /* T_Neg parameter */
  356. u_long t_pri ; /* T_Pri register in MAC */
  357. } ;
  358. /*
  359.  * MAC counters
  360.  */
  361. struct mac_counter {
  362. u_long mac_nobuf_counter ; /* MAC SW counter: no buffer */
  363. u_long mac_r_restart_counter ; /* MAC SW counter: rx restarted */
  364. } ;
  365. /*
  366.  * para struct context for SMT parameters
  367.  */
  368. struct s_pcon {
  369. int pc_len ;
  370. int pc_err ;
  371. int pc_badset ;
  372. void *pc_p ;
  373. } ;
  374. /*
  375.  * link error monitor
  376.  */
  377. #define LEM_AVG 5
  378. struct lem_counter {
  379. #ifdef AM29K
  380. int lem_on ;
  381. u_long lem_errors ;
  382. u_long lem_symbols ;
  383. u_long lem_tsymbols ;
  384. int lem_s_count ;
  385. int lem_n_s ;
  386. int lem_values ;
  387. int lem_index ;
  388. int lem_avg_ber[LEM_AVG] ;
  389. int lem_sum ;
  390. #else
  391. u_short lem_float_ber ; /* 10E-nn bit error rate */
  392. u_long lem_errors ; /* accumulated error count */
  393. u_short lem_on ;
  394. #endif
  395. } ;
  396. #define NUMBITS 10
  397. #ifdef AMDPLC
  398. /*
  399.  * PLC state table
  400.  */
  401. struct s_plc {
  402. u_short p_state ; /* current state */
  403. u_short p_bits ; /* number of bits to send */
  404. u_short p_start ; /* first bit pos */
  405. u_short p_pad ; /* padding for alignment */
  406. u_long soft_err ; /* error counter */
  407. u_long parity_err ; /* error counter */
  408. u_long ebuf_err ; /* error counter */
  409. u_long ebuf_cont ; /* continous error counter */
  410. u_long phyinv ; /* error counter */
  411. u_long vsym_ctr ; /* error counter */
  412. u_long mini_ctr ; /* error counter */
  413. u_long tpc_exp ; /* error counter */
  414. u_long np_err ; /* error counter */
  415. u_long b_pcs ; /* error counter */
  416. u_long b_tpc ; /* error counter */
  417. u_long b_tne ; /* error counter */
  418. u_long b_qls ; /* error counter */
  419. u_long b_ils ; /* error counter */
  420. u_long b_hls ; /* error counter */
  421. } ;
  422. #endif
  423. #ifdef PROTOTYP_INC
  424. #include "fddi/driver.pro"
  425. #else /* PROTOTYP_INC */
  426. /*
  427.  * function prototypes
  428.  */
  429. #include "h/mbuf.h" /* Type definitions for MBUFs */
  430. void hwt_restart(                       /* hwt.c */
  431. #ifdef ANSIC
  432.         struct s_smc *smc
  433. #endif
  434. ) ;
  435. SMbuf *smt_build_frame(                 /* smt.c */
  436. #ifdef ANSIC
  437.         struct s_smc *smc,
  438.         int class,
  439.         int type,
  440.         int length
  441. #endif
  442. ) ;
  443. SMbuf *smt_get_mbuf(                     /* drvsr.c */
  444. #ifdef ANSIC
  445.         struct s_smc *smc
  446. #endif
  447. ) ;
  448. void *sm_to_para(                       /* smt.c */
  449. #ifdef ANSIC
  450. struct s_smc *smc,
  451.         struct smt_header *sm,
  452.         int para
  453. #endif
  454. ) ;
  455. #ifndef SK_UNUSED
  456. #define SK_UNUSED(var) (void)(var)
  457. #endif
  458. void queue_event() ;
  459. void ecm() ;
  460. void ecm_init() ;
  461. void rmt() ;
  462. void rmt_init() ;
  463. void pcm() ;
  464. void pcm_init() ;
  465. void cfm() ;
  466. void cfm_init() ;
  467. void smt_timer_start() ;
  468. void smt_timer_stop() ;
  469. void pcm_status_state() ;
  470. void plc_config_mux() ;
  471. void sm_lem_evaluate() ;
  472. void smt_clear_una_dna() ;
  473. void mac_status_para() ;
  474. void mac_update_counter() ;
  475. void sm_pm_ls_latch() ;
  476. void sm_ma_control() ;
  477. void sm_mac_check_beacon_claim() ;
  478. void config_mux() ;
  479. void smt_agent_init() ;
  480. void smt_timer_init() ;
  481. void smt_received_pack() ;
  482. void smt_add_para() ;
  483. void smt_swap_para() ;
  484. void ev_init() ;
  485. void hwt_init() ;
  486. u_long hwt_read() ;
  487. void hwt_stop() ;
  488. void hwt_start() ;
  489. void smt_send_mbuf() ;
  490. void smt_free_mbuf() ;
  491. void sm_pm_bypass_req() ;
  492. void rmt_indication() ;
  493. void cfm_state_change() ;
  494. void rx_indication() ;
  495. void tx_indication() ;
  496. #ifndef NO_SMT_PANIC
  497. void smt_panic() ;
  498. #else
  499. #ifdef DEBUG
  500. void smt_panic() ;
  501. #else
  502. #define smt_panic(smc,text)
  503. #endif /* DEBUG */
  504. #endif /* NO_SMT_PANIC */
  505. void smt_stat_counter() ;
  506. void smt_timer_poll() ;
  507. u_long smt_get_time() ;
  508. u_long smt_get_tid() ;
  509. void smt_timer_done() ;
  510. void smt_set_defaults() ;
  511. void smt_fixup_mib() ;
  512. void smt_reset_defaults() ;
  513. void smt_agent_task() ;
  514. void smt_please_reconnect() ;
  515. int smt_check_para() ;
  516. void driver_get_bia() ;
  517. #ifdef SUPERNET_3
  518. void drv_reset_indication() ;
  519. #endif /* SUPERNET_3 */
  520. void smt_start_watchdog() ;
  521. void smt_event() ;
  522. void pcm_event() ;
  523. void rmt_event() ;
  524. void cfm_event() ;
  525. void timer_event() ;
  526. void ev_dispatcher() ;
  527. void smt_get_state() ;
  528. void ecm_get_state() ;
  529. void pcm_get_state() ;
  530. void rmt_get_state() ;
  531. void ecm_state_change() ;
  532. int sm_pm_bypass_present() ;
  533. void pcm_state_change() ;
  534. void rmt_state_change() ;
  535. int sm_pm_get_ls() ;
  536. int pcm_get_s_port() ;
  537. int pcm_rooted_station() ;
  538. int cfm_get_mac_input() ;
  539. int cfm_get_mac_output() ;
  540. int port_to_mib() ;
  541. int cem_build_path() ;
  542. int sm_mac_get_tx_state() ;
  543. int is_individual() ;
  544. int is_my_addr() ;
  545. int is_broadcast() ;
  546. int is_equal() ;
  547. char *get_pcmstate() ;
  548. int smt_action() ;
  549. u_short smt_online() ;
  550. void smt_force_irq() ;
  551. void smt_pmf_received_pack() ;
  552. void smt_send_frame() ;
  553. void smt_set_timestamp() ;
  554. void mac_set_rx_mode() ;
  555. int mac_add_multicast() ;
  556. int mac_set_func_addr() ;
  557. void mac_del_multicast() ;
  558. void mac_update_multicast() ;
  559. void mac_clear_multicast() ;
  560. void mac_rx_directed_beacon() ;
  561. void set_formac_tsync() ;
  562. void formac_reinit_tx() ;
  563. void formac_tx_restart() ;
  564. void process_receive() ;
  565. void init_driver_fplus() ;
  566. void rtm_irq() ;
  567. void rtm_set_timer() ;
  568. void ring_status_indication() ;
  569. void llc_recover_tx() ;
  570. void llc_restart_tx() ;
  571. void plc_clear_irq() ;
  572. void plc_irq() ;
  573. int smt_set_mac_opvalues() ;
  574. #ifdef TAG_MODE
  575. void mac_drv_pci_fix() ;
  576. void mac_do_pci_fix() ;
  577. void mac_drv_clear_tx_queue() ;
  578. void mac_drv_repair_descr() ;
  579. u_long hwt_quick_read() ;
  580. void hwt_wait_time() ;
  581. #endif
  582. #ifdef SMT_PNMI
  583. #ifdef ANSIC
  584. int pnmi_init (struct s_smc* smc);
  585. int pnmi_process_ndis_id (struct s_smc* smc, u_long ndis_oid, void* buf,
  586. int len, int* BytesAccessed, int* BytesNeeded, u_char action);
  587. #else
  588. int pnmi_init ();
  589. int pnmi_process_ndis_id ();
  590. #endif
  591. #endif
  592. #ifdef SBA
  593. #ifndef _H2INC
  594. void sba() ;
  595. #endif
  596. void sba_raf_received_pack() ;
  597. void sba_timer_poll() ;
  598. void smt_init_sba() ;
  599. #endif
  600. #ifdef ESS
  601. int ess_raf_received_pack() ;
  602. void ess_timer_poll() ;
  603. void ess_para_change() ;
  604. #endif
  605. #ifdef BOOT
  606. #define smt_srf_event(a,b,c,d)
  607. #define smt_init_evc(a)
  608. #else
  609. void smt_init_evc() ;
  610. void smt_srf_event() ;
  611. #endif
  612. #ifndef SMT_REAL_TOKEN_CT
  613. void smt_emulate_token_ct();
  614. #endif
  615. #if defined(DEBUG) && !defined(BOOT)
  616. void dump_smt() ;
  617. #else
  618. #define dump_smt(smc,sm,text)
  619. #endif
  620. #ifdef DEBUG
  621. char *addr_to_string() ;
  622. void dump_hex() ;
  623. #endif
  624. #endif /* PROTOTYP_INC */
  625. /* PNMI default defines */
  626. #ifndef PNMI_INIT
  627. #define PNMI_INIT(smc) /* Nothing */
  628. #endif
  629. #ifndef PNMI_GET_ID
  630. #define PNMI_GET_ID( smc, ndis_oid, buf, len, BytesWritten, BytesNeeded ) 
  631. ( 1 ? (-1) : (-1) )
  632. #endif
  633. #ifndef PNMI_SET_ID
  634. #define PNMI_SET_ID( smc, ndis_oid, buf, len, BytesRead, BytesNeeded, 
  635. set_type) ( 1 ? (-1) : (-1) )
  636. #endif
  637. /*
  638.  * SMT_PANIC defines
  639.  */
  640. #ifndef SMT_PANIC
  641. #define SMT_PANIC(smc,nr,msg) smt_panic (smc, msg)
  642. #endif
  643. #ifndef SMT_ERR_LOG
  644. #define SMT_ERR_LOG(smc,nr,msg) SMT_PANIC (smc, nr, msg)
  645. #endif
  646. #ifndef SMT_EBASE
  647. #define SMT_EBASE 100
  648. #endif
  649. #define SMT_E0100 SMT_EBASE + 0
  650. #define SMT_E0100_MSG "cfm FSM: illegal ce_type"
  651. #define SMT_E0101 SMT_EBASE + 1
  652. #define SMT_E0101_MSG "CEM: case ???"
  653. #define SMT_E0102 SMT_EBASE + 2
  654. #define SMT_E0102_MSG "CEM A: illegal state"
  655. #define SMT_E0103 SMT_EBASE + 3
  656. #define SMT_E0103_MSG "CEM B: illegal state"
  657. #define SMT_E0104 SMT_EBASE + 4
  658. #define SMT_E0104_MSG "CEM M: illegal state"
  659. #define SMT_E0105 SMT_EBASE + 5
  660. #define SMT_E0105_MSG "CEM S: illegal state"
  661. #define SMT_E0106 SMT_EBASE + 6
  662. #define SMT_E0106_MSG "CFM : illegal state"
  663. #define SMT_E0107 SMT_EBASE + 7
  664. #define SMT_E0107_MSG "ECM : illegal state"
  665. #define SMT_E0108 SMT_EBASE + 8
  666. #define SMT_E0108_MSG "prop_actions : NAC in DAS CFM"
  667. #define SMT_E0109 SMT_EBASE + 9
  668. #define SMT_E0109_MSG "ST2U.FM_SERRSF error in special frame"
  669. #define SMT_E0110 SMT_EBASE + 10
  670. #define SMT_E0110_MSG "ST2U.FM_SRFRCTOV recv. count. overflow"
  671. #define SMT_E0111 SMT_EBASE + 11
  672. #define SMT_E0111_MSG "ST2U.FM_SNFSLD NP & FORMAC simult. load"
  673. #define SMT_E0112 SMT_EBASE + 12
  674. #define SMT_E0112_MSG "ST2U.FM_SRCVFRM single-frame recv.-mode"
  675. #define SMT_E0113 SMT_EBASE + 13
  676. #define SMT_E0113_MSG "FPLUS: Buffer Memory Error"
  677. #define SMT_E0114 SMT_EBASE + 14
  678. #define SMT_E0114_MSG "ST2U.FM_SERRSF error in special frame"
  679. #define SMT_E0115 SMT_EBASE + 15
  680. #define SMT_E0115_MSG "ST3L: parity error in receive queue 2"
  681. #define SMT_E0116 SMT_EBASE + 16
  682. #define SMT_E0116_MSG "ST3L: parity error in receive queue 1"
  683. #define SMT_E0117 SMT_EBASE + 17
  684. #define SMT_E0117_MSG "E_SMT_001: RxD count for receive queue 1 = 0"
  685. #define SMT_E0118 SMT_EBASE + 18
  686. #define SMT_E0118_MSG "PCM : illegal state"
  687. #define SMT_E0119 SMT_EBASE + 19
  688. #define SMT_E0119_MSG "smt_add_para"
  689. #define SMT_E0120 SMT_EBASE + 20
  690. #define SMT_E0120_MSG "smt_set_para"
  691. #define SMT_E0121 SMT_EBASE + 21
  692. #define SMT_E0121_MSG "illegal event in dispatcher"
  693. #define SMT_E0122 SMT_EBASE + 22
  694. #define SMT_E0122_MSG "RMT : illegal state"
  695. #define SMT_E0123 SMT_EBASE + 23
  696. #define SMT_E0123_MSG "SBA: state machine has illegal state"
  697. #define SMT_E0124 SMT_EBASE + 24
  698. #define SMT_E0124_MSG "sba_free_session() called with NULL pointer"
  699. #define SMT_E0125 SMT_EBASE + 25
  700. #define SMT_E0125_MSG "SBA : illegal session pointer"
  701. #define SMT_E0126 SMT_EBASE + 26
  702. #define SMT_E0126_MSG "smt_free_mbuf() called with NULL pointern"
  703. #define SMT_E0127 SMT_EBASE + 27
  704. #define SMT_E0127_MSG "sizeof evcs"
  705. #define SMT_E0128 SMT_EBASE + 28
  706. #define SMT_E0128_MSG "evc->evc_cond_state = 0"
  707. #define SMT_E0129 SMT_EBASE + 29
  708. #define SMT_E0129_MSG "evc->evc_multiple = 0"
  709. #define SMT_E0130 SMT_EBASE + 30
  710. #define SMT_E0130_MSG write_mdr_warning
  711. #define SMT_E0131 SMT_EBASE + 31
  712. #define SMT_E0131_MSG cam_warning
  713. #define SMT_E0132 SMT_EBASE + 32
  714. #define SMT_E0132_MSG "ST1L.FM_SPCEPDx parity/coding error"
  715. #define SMT_E0133 SMT_EBASE + 33
  716. #define SMT_E0133_MSG "ST1L.FM_STBURx tx buffer underrun"
  717. #define SMT_E0134 SMT_EBASE + 34
  718. #define SMT_E0134_MSG "ST1L.FM_SPCEPDx parity error"
  719. #define SMT_E0135 SMT_EBASE + 35
  720. #define SMT_E0135_MSG "RMT: duplicate MAC address detected. Ring left!"
  721. #define SMT_E0136 SMT_EBASE + 36
  722. #define SMT_E0136_MSG "Elasticity Buffer hang-up"
  723. #define SMT_E0137 SMT_EBASE + 37
  724. #define SMT_E0137_MSG "SMT: queue overrun"
  725. #define SMT_E0138 SMT_EBASE + 38
  726. #define SMT_E0138_MSG "RMT: duplicate MAC address detected. Ring NOT left!"
  727. #endif /* _CMTDEF_ */