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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * topic.h 1.8 1999/08/28 04:01:47
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License
  5.  * Version 1.1 (the "License"); you may not use this file except in
  6.  * compliance with the License. You may obtain a copy of the License
  7.  * at http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS"
  10.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  11.  * the License for the specific language governing rights and
  12.  * limitations under the License. 
  13.  *
  14.  * The initial developer of the original code is David A. Hinds
  15.  * <dhinds@hyper.stanford.edu>.  Portions created by David A. Hinds
  16.  * are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.
  17.  *
  18.  * Alternatively, the contents of this file may be used under the
  19.  * terms of the GNU General Public License version 2 (the "GPL"), in which
  20.  * case the provisions of the GPL are applicable instead of the
  21.  * above.  If you wish to allow the use of your version of this file
  22.  * only under the terms of the GPL and not to allow others to use
  23.  * your version of this file under the MPL, indicate your decision by
  24.  * deleting the provisions above and replace them with the notice and
  25.  * other provisions required by the GPL.  If you do not delete the
  26.  * provisions above, a recipient may use your version of this file
  27.  * under either the MPL or the GPL.
  28.  * topic.h $Release$ 1999/08/28 04:01:47
  29.  */
  30. #ifndef _LINUX_TOPIC_H
  31. #define _LINUX_TOPIC_H
  32. #ifndef PCI_VENDOR_ID_TOSHIBA
  33. #define PCI_VENDOR_ID_TOSHIBA 0x1179
  34. #endif
  35. #ifndef PCI_DEVICE_ID_TOSHIBA_TOPIC95_A
  36. #define PCI_DEVICE_ID_TOSHIBA_TOPIC95_A 0x0603
  37. #endif
  38. #ifndef PCI_DEVICE_ID_TOSHIBA_TOPIC95_B
  39. #define PCI_DEVICE_ID_TOSHIBA_TOPIC95_B 0x060a
  40. #endif
  41. #ifndef PCI_DEVICE_ID_TOSHIBA_TOPIC97
  42. #define PCI_DEVICE_ID_TOSHIBA_TOPIC97 0x060f
  43. #endif
  44. /* Register definitions for Toshiba ToPIC95 controllers */
  45. #define TOPIC_SOCKET_CONTROL 0x0090 /* 32 bit */
  46. #define  TOPIC_SCR_IRQSEL 0x00000001
  47. #define TOPIC_SLOT_CONTROL 0x00a0 /* 8 bit */
  48. #define  TOPIC_SLOT_SLOTON 0x80
  49. #define  TOPIC_SLOT_SLOTEN 0x40
  50. #define  TOPIC_SLOT_ID_LOCK 0x20
  51. #define  TOPIC_SLOT_ID_WP 0x10
  52. #define  TOPIC_SLOT_PORT_MASK 0x0c
  53. #define  TOPIC_SLOT_PORT_SHIFT 2
  54. #define  TOPIC_SLOT_OFS_MASK 0x03
  55. #define TOPIC_CARD_CONTROL 0x00a1 /* 8 bit */
  56. #define  TOPIC_CCR_INTB 0x20
  57. #define  TOPIC_CCR_INTA 0x10
  58. #define  TOPIC_CCR_CLOCK 0x0c
  59. #define  TOPIC_CCR_PCICLK 0x0c
  60. #define  TOPIC_CCR_PCICLK_2 0x08
  61. #define  TOPIC_CCR_CCLK 0x04
  62. #define TOPIC97_INT_CONTROL 0x00a1 /* 8 bit */
  63. #define  TOPIC97_ICR_INTB 0x20
  64. #define  TOPIC97_ICR_INTA 0x10
  65. #define  TOPIC97_ICR_STSIRQNP 0x04
  66. #define  TOPIC97_ICR_IRQNP 0x02
  67. #define  TOPIC97_ICR_IRQSEL 0x01
  68. #define TOPIC_CARD_DETECT 0x00a3 /* 8 bit */
  69. #define  TOPIC_CDR_MODE_PC32 0x80
  70. #define  TOPIC_CDR_VS1 0x04
  71. #define  TOPIC_CDR_VS2 0x02
  72. #define  TOPIC_CDR_SW_DETECT 0x01
  73. #define TOPIC_REGISTER_CONTROL 0x00a4 /* 32 bit */
  74. #define  TOPIC_RCR_RESUME_RESET 0x80000000
  75. #define  TOPIC_RCR_REMOVE_RESET 0x40000000
  76. #define  TOPIC97_RCR_CLKRUN_ENA 0x20000000
  77. #define  TOPIC97_RCR_TESTMODE 0x10000000
  78. #define  TOPIC97_RCR_IOPLUP 0x08000000
  79. #define  TOPIC_RCR_BUFOFF_PWROFF 0x02000000
  80. #define  TOPIC_RCR_BUFOFF_SIGOFF 0x01000000
  81. #define  TOPIC97_RCR_CB_DEV_MASK 0x0000f800
  82. #define  TOPIC97_RCR_CB_DEV_SHIFT 11
  83. #define  TOPIC97_RCR_RI_DISABLE 0x00000004
  84. #define  TOPIC97_RCR_CAUDIO_OFF 0x00000002
  85. #define  TOPIC_RCR_CAUDIO_INVERT 0x00000001
  86. #endif /* _LINUX_TOPIC_H */