func.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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 : func.h
  24. ** SID : 1.3
  25. ** Last Modified : 11/6/98 11:34:10
  26. ** Retrieved : 11/6/98 11:34:21
  27. **
  28. ** ident @(#)func.h 1.3
  29. **
  30. ** -----------------------------------------------------------------------------
  31. */
  32. #ifndef __func_h_def
  33. #define __func_h_def
  34. #include <linux/kdev_t.h>
  35. #ifdef SCCS_LABELS
  36. #ifndef lint
  37. static char *_func_h_sccs_ = "@(#)func.h 1.3";
  38. #endif
  39. #endif
  40. /* rioboot.c */
  41. int RIOBootCodeRTA(struct rio_info *, struct DownLoad *);
  42. int RIOBootCodeHOST(struct rio_info *, struct DownLoad *);
  43. int RIOBootCodeUNKNOWN(struct rio_info *, struct DownLoad *);
  44. void msec_timeout(struct Host *);
  45. int RIOBootRup(struct rio_info *, unsigned int, struct Host *, struct PKT *);
  46. int RIOBootOk(struct rio_info *, struct Host *, unsigned long);
  47. int RIORtaBound(struct rio_info *, unsigned int);
  48. void rio_fill_host_slot(int, int, unsigned int, struct Host *);
  49. /* riocmd.c */
  50. int RIOFoadRta(struct Host *, struct Map *);
  51. int RIOZombieRta(struct Host *, struct Map *);
  52. int RIOCommandRta(struct rio_info *, unsigned long, int (*func) (struct Host *, struct Map *));
  53. int RIOIdentifyRta(struct rio_info *, void *);
  54. int RIOKillNeighbour(struct rio_info *, void *);
  55. int RIOSuspendBootRta(struct Host *, int, int);
  56. int RIOFoadWakeup(struct rio_info *);
  57. struct CmdBlk *RIOGetCmdBlk(void);
  58. void RIOFreeCmdBlk(struct CmdBlk *);
  59. int RIOQueueCmdBlk(struct Host *, unsigned int, struct CmdBlk *);
  60. void RIOPollHostCommands(struct rio_info *, struct Host *);
  61. int RIOWFlushMark(unsigned long, struct CmdBlk *);
  62. int RIORFlushEnable(unsigned long, struct CmdBlk *);
  63. int RIOUnUse(unsigned long, struct CmdBlk *);
  64. /* rioctrl.c */
  65. int riocontrol(struct rio_info *, dev_t, int, caddr_t, int);
  66. int RIOPreemptiveCmd(struct rio_info *, struct Port *, unsigned char);
  67. /* rioinit.c */
  68. void rioinit(struct rio_info *, struct RioHostInfo *);
  69. void RIOInitHosts(struct rio_info *, struct RioHostInfo *);
  70. void RIOISAinit(struct rio_info *, int);
  71. int RIODoAT(struct rio_info *, int, int);
  72. caddr_t RIOCheckForATCard(int);
  73. int RIOAssignAT(struct rio_info *, int, caddr_t, int);
  74. int RIOBoardTest(unsigned long, caddr_t, unsigned char, int);
  75. void RIOAllocDataStructs(struct rio_info *);
  76. void RIOSetupDataStructs(struct rio_info *);
  77. int RIODefaultName(struct rio_info *, struct Host *, unsigned int);
  78. struct rioVersion *RIOVersid(void);
  79. void RIOHostReset(unsigned int, struct DpRam *, unsigned int);
  80. /* riointr.c */
  81. void RIOTxEnable(char *);
  82. void RIOServiceHost(struct rio_info *, struct Host *, int);
  83. int riotproc(struct rio_info *, struct ttystatics *, int, int);
  84. /* rioparam.c */
  85. int RIOParam(struct Port *, int, int, int);
  86. int RIODelay(struct Port *PortP, int);
  87. int RIODelay_ni(struct Port *PortP, int);
  88. void ms_timeout(struct Port *);
  89. int can_add_transmit(struct PKT **, struct Port *);
  90. void add_transmit(struct Port *);
  91. void put_free_end(struct Host *, struct PKT *);
  92. int can_remove_receive(struct PKT **, struct Port *);
  93. void remove_receive(struct Port *);
  94. /* rioroute.c */
  95. int RIORouteRup(struct rio_info *, unsigned int, struct Host *, struct PKT *);
  96. void RIOFixPhbs(struct rio_info *, struct Host *, unsigned int);
  97. unsigned int GetUnitType(unsigned int);
  98. int RIOSetChange(struct rio_info *);
  99. int RIOFindFreeID(struct rio_info *, struct Host *, unsigned int *, unsigned int *);
  100. /* riotty.c */
  101. int riotopen(struct tty_struct *tty, struct file *filp);
  102. int riotclose(void *ptr);
  103. int riotioctl(struct rio_info *, struct tty_struct *, int, caddr_t);
  104. void ttyseth(struct Port *, struct ttystatics *, struct old_sgttyb *sg);
  105. /* riotable.c */
  106. int RIONewTable(struct rio_info *);
  107. int RIOApel(struct rio_info *);
  108. int RIODeleteRta(struct rio_info *, struct Map *);
  109. int RIOAssignRta(struct rio_info *, struct Map *);
  110. int RIOReMapPorts(struct rio_info *, struct Host *, struct Map *);
  111. int RIOChangeName(struct rio_info *, struct Map *);
  112. #if 0
  113. /* riodrvr.c */
  114. struct rio_info *rio_install(struct RioHostInfo *);
  115. int rio_uninstall(struct rio_info *);
  116. int rio_open(struct rio_info *, int, struct file *);
  117. int rio_close(struct rio_info *, struct file *);
  118. int rio_read(struct rio_info *, struct file *, char *, int);
  119. int rio_write(struct rio_info *, struct file *f, char *, int);
  120. int rio_ioctl(struct rio_info *, struct file *, int, char *);
  121. int rio_select(struct rio_info *, struct file *f, int, struct sel *);
  122. int rio_intr(char *);
  123. int rio_isr_thread(char *);
  124. struct rio_info *rio_info_store(int cmd, struct rio_info *p);
  125. #endif
  126. extern void rio_copy_to_card(void *to, void *from, int len);
  127. extern int rio_minor(struct tty_struct *tty);
  128. extern int rio_ismodem(struct tty_struct *tty);
  129. extern void rio_start_card_running(struct Host *HostP);
  130. #endif /* __func_h_def */