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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Linux ARCnet driver - COM20020 chipset support - function declarations
  3.  * 
  4.  * Written 1997 by David Woodhouse.
  5.  * Written 1994-1999 by Avery Pennarun.
  6.  * Derived from skeleton.c by Donald Becker.
  7.  *
  8.  * Special thanks to Contemporary Controls, Inc. (www.ccontrols.com)
  9.  *  for sponsoring the further development of this driver.
  10.  *
  11.  * **********************
  12.  *
  13.  * The original copyright of skeleton.c was as follows:
  14.  *
  15.  * skeleton.c Written 1993 by Donald Becker.
  16.  * Copyright 1993 United States Government as represented by the
  17.  * Director, National Security Agency.  This software may only be used
  18.  * and distributed according to the terms of the GNU General Public License as
  19.  * modified by SRC, incorporated herein by reference.
  20.  *
  21.  * **********************
  22.  *
  23.  * For more details, see drivers/net/arcnet.c
  24.  *
  25.  * **********************
  26.  */
  27. #ifndef __COM20020_H
  28. #define __COM20020_H
  29. int com20020_check(struct net_device *dev);
  30. int com20020_found(struct net_device *dev, int shared);
  31. void com20020_remove(struct net_device *dev);
  32. /* The number of low I/O ports used by the card. */
  33. #define ARCNET_TOTAL_SIZE 9
  34. /* various register addresses */
  35. #define _INTMASK  (ioaddr+0) /* writable */
  36. #define _STATUS   (ioaddr+0) /* readable */
  37. #define _COMMAND  (ioaddr+1) /* standard arcnet commands */
  38. #define _DIAGSTAT (ioaddr+1) /* diagnostic status register */
  39. #define _ADDR_HI  (ioaddr+2) /* control registers for IO-mapped memory */
  40. #define _ADDR_LO  (ioaddr+3)
  41. #define _MEMDATA  (ioaddr+4) /* data port for IO-mapped memory */
  42. #define _SUBADR   (ioaddr+5) /* the extended port _XREG refers to */
  43. #define _CONFIG   (ioaddr+6) /* configuration register */
  44. #define _XREG     (ioaddr+7) /* extra registers (indexed by _CONFIG 
  45. or _SUBADR) */
  46. /* in the ADDR_HI register */
  47. #define RDDATAflag 0x80 /* next access is a read (not a write) */
  48. /* in the DIAGSTAT register */
  49. #define NEWNXTIDflag 0x02 /* ID to which token is passed has changed */
  50. /* in the CONFIG register */
  51. #define RESETcfg 0x80 /* put card in reset state */
  52. #define TXENcfg 0x20 /* enable TX */
  53. /* in SETUP register */
  54. #define PROMISCset 0x10 /* enable RCV_ALL */
  55. /* COM2002x */
  56. #define SUB_TENTATIVE 0 /* tentative node ID */
  57. #define SUB_NODE 1 /* node ID */
  58. #define SUB_SETUP1 2 /* various options */
  59. #define SUB_TEST 3 /* test/diag register */
  60. /* COM20022 only */
  61. #define SUB_SETUP2 4 /* sundry options */
  62. #define SUB_BUSCTL 5 /* bus control options */
  63. #define SUB_DMACOUNT 6 /* DMA count options */
  64. #define SET_SUBADR(x) do { 
  65. if ((x) < 4) 
  66. lp->config = (lp->config & ~0x03) | (x); 
  67. SETCONF; 
  68. else 
  69. outb(x, _SUBADR); 
  70. } while (0)
  71. #undef ARCRESET
  72. #undef ASTATUS
  73. #undef ACOMMAND
  74. #undef AINTMASK
  75. #define ARCRESET { outb(lp->config | 0x80, _CONFIG); 
  76.     udelay(5);                        
  77.     outb(lp->config , _CONFIG);       
  78.                   }
  79. #define ARCRESET0 { outb(0x18 | 0x80, _CONFIG);   
  80.     udelay(5);                       
  81.     outb(0x18 , _CONFIG);            
  82.                   }
  83. #define ASTATUS() inb(_STATUS)
  84. #define ACOMMAND(cmd) outb((cmd),_COMMAND)
  85. #define AINTMASK(msk) outb((msk),_INTMASK)
  86. #define SETCONF outb(lp->config, _CONFIG)
  87. #endif /* __COM20020_H */