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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*********************************************************************
  2.  *                
  3.  * Filename:      toshoboe.h
  4.  * Version:       0.1
  5.  * Description:   Driver for the Toshiba OBOE (or type-O)
  6.  *                FIR Chipset. 
  7.  * Status:        Experimental.
  8.  * Author:        James McKenzie <james@fishsoup.dhs.org>
  9.  * Created at:    Sat May 8  12:35:27 1999
  10.  * 
  11.  *     Copyright (c) 1999-2000 James McKenzie, All Rights Reserved.
  12.  *      
  13.  *     This program is free software; you can redistribute it and/or 
  14.  *     modify it under the terms of the GNU General Public License as 
  15.  *     published by the Free Software Foundation; either version 2 of 
  16.  *     the License, or (at your option) any later version.
  17.  *  
  18.  *     Neither James McKenzie nor Cambridge University admit liability nor
  19.  *     provide warranty for any of this software. This material is 
  20.  *     provided "AS-IS" and at no charge.
  21.  *
  22.  *     Applicable Models : Libretto 100CT. and many more
  23.  *
  24.  ********************************************************************/
  25. #ifndef TOSHOBOE_H
  26. #define TOSHOBOE_H
  27. /* Registers */
  28. /*Receive and transmit task registers (read only) */
  29. #define OBOE_RCVT (0x00+(self->base))
  30. #define OBOE_XMTT (0x01+(self->base))
  31. #define OBOE_XMTT_OFFSET 0x40
  32. /*Page pointers to the TaskFile structure */
  33. #define OBOE_TFP2 (0x02+(self->base))
  34. #define OBOE_TFP0 (0x04+(self->base))
  35. #define OBOE_TFP1 (0x05+(self->base))
  36. /*Dunno */
  37. #define OBOE_REG_3 (0x03+(self->base))
  38. /*Number of tasks to use in Xmit and Recv queues */
  39. #define OBOE_NTR (0x07+(self->base))
  40. #define OBOE_NTR_XMIT4 0x00
  41. #define OBOE_NTR_XMIT8 0x10
  42. #define OBOE_NTR_XMIT16 0x30
  43. #define OBOE_NTR_XMIT32 0x70
  44. #define OBOE_NTR_XMIT64 0xf0
  45. #define OBOE_NTR_RECV4 0x00
  46. #define OBOE_NTR_RECV8 0x01
  47. #define OBOE_NTR_RECV6 0x03
  48. #define OBOE_NTR_RECV32 0x07
  49. #define OBOE_NTR_RECV64 0x0f
  50. /* Dunno */
  51. #define OBOE_REG_9 (0x09+(self->base))
  52. /* Interrupt Status Register */
  53. #define OBOE_ISR (0x0c+(self->base))
  54. #define OBOE_ISR_TXDONE 0x80
  55. #define OBOE_ISR_RXDONE 0x40
  56. #define OBOE_ISR_20 0x20
  57. #define OBOE_ISR_10 0x10
  58. #define OBOE_ISR_8 0x08         /*This is collision or parity or something */
  59. #define OBOE_ISR_4 0x08
  60. #define OBOE_ISR_2 0x08
  61. #define OBOE_ISR_1 0x08
  62. /*Dunno */
  63. #define OBOE_REG_D (0x0d+(self->base))
  64. /*Register Lock Register */
  65. #define OBOE_LOCK ((self->base)+0x0e)
  66. /*Speed control registers */
  67. #define OBOE_PMDL (0x10+(self->base))
  68. #define OBOE_PMDL_SIR 0x18
  69. #define OBOE_PMDL_MIR 0xa0
  70. #define OBOE_PMDL_FIR 0x40
  71. #define OBOE_SMDL (0x18+(self->base))
  72. #define OBOE_SMDL_SIR 0x20
  73. #define OBOE_SMDL_MIR 0x01
  74. #define OBOE_SMDL_FIR 0x0f
  75. #define OBOE_UDIV (0x19+(self->base))
  76. /*Dunno */
  77. #define OBOE_REG_11 (0x11+(self->base))
  78. /*Chip Reset Register */
  79. #define OBOE_RST (0x15+(self->base))
  80. #define OBOE_RST_WRAP 0x8
  81. /*Dunno */
  82. #define OBOE_REG_1A (0x1a+(self->base))
  83. #define OBOE_REG_1B (0x1b+(self->base))
  84. /* The PCI ID of the OBOE chip */
  85. #ifndef PCI_DEVICE_ID_FIR701
  86. #define PCI_DEVICE_ID_FIR701  0x0701
  87. #endif
  88. typedef unsigned int dword;
  89. typedef unsigned short int word;
  90. typedef unsigned char byte;
  91. typedef dword Paddr;
  92. struct OboeTask
  93.   {
  94.     __u16 len;
  95.     __u8 unused;
  96.     __u8 control;
  97.     __u32 buffer;
  98.   };
  99. #define OBOE_NTASKS 64
  100. struct OboeTaskFile
  101.   {
  102.     struct OboeTask recv[OBOE_NTASKS];
  103.     struct OboeTask xmit[OBOE_NTASKS];
  104.   };
  105. #define OBOE_TASK_BUF_LEN (sizeof(struct OboeTaskFile) << 1)
  106. /*These set the number of slots in use */
  107. #define TX_SLOTS 4
  108. #define RX_SLOTS 4
  109. /* You need also to change this, toshiba uses 4,8 and 4,4 */
  110. /* It makes no difference if you are only going to use ONETASK mode */
  111. /* remember each buffer use XX_BUF_SZ more _PHYSICAL_ memory */
  112. #define OBOE_NTR_VAL  (OBOE_NTR_XMIT4 | OBOE_NTR_RECV4)
  113. struct toshoboe_cb
  114.   {
  115.     struct net_device *netdev;      /* Yes! we are some kind of netdevice */
  116.     struct net_device_stats stats;
  117.     struct irlap_cb    *irlap;  /* The link layer we are binded to */
  118.     struct qos_info     qos;    /* QoS capabilities for this device */
  119.     chipio_t io;                /* IrDA controller information */
  120.     __u32 flags;                /* Interface flags */
  121.     __u32 new_speed;
  122.     struct pci_dev *pdev;       /*PCI device */
  123.     int base;                   /*IO base */
  124.     int txpending;              /*how many tx's are pending */
  125.     int txs, rxs;               /*Which slots are we at  */
  126.     void *taskfilebuf;          /*The unaligned taskfile buffer */
  127.     struct OboeTaskFile *taskfile;  /*The taskfile   */
  128.     void *xmit_bufs[TX_SLOTS];  /*The buffers   */
  129.     void *recv_bufs[RX_SLOTS];
  130.     int open;
  131.     int stopped; /*Stopped by some or other APM stuff*/
  132.   };
  133. #endif