mcabook.tmpl 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" []>
  4. <book id="MCAGuide">
  5. <bookinfo>
  6. <title>MCA Driver Programming Interface</title>
  7. <authorgroup>
  8. <author>
  9. <firstname>Alan</firstname>
  10. <surname>Cox</surname>
  11. <affiliation>
  12. <address>
  13. <email>alan@lxorguk.ukuu.org.uk</email>
  14. </address>
  15. </affiliation>
  16. </author>
  17. <author>
  18. <firstname>David</firstname>
  19. <surname>Weinehall</surname>
  20. </author>
  21. <author>
  22. <firstname>Chris</firstname>
  23. <surname>Beauregard</surname>
  24. </author>
  25. </authorgroup>
  26. <copyright>
  27. <year>2000</year>
  28. <holder>Alan Cox</holder>
  29. <holder>David Weinehall</holder>
  30. <holder>Chris Beauregard</holder>
  31. </copyright>
  32. <legalnotice>
  33. <para>
  34. This documentation is free software; you can redistribute
  35. it and/or modify it under the terms of the GNU General Public
  36. License as published by the Free Software Foundation; either
  37. version 2 of the License, or (at your option) any later
  38. version.
  39. </para>
  40. <para>
  41. This program is distributed in the hope that it will be
  42. useful, but WITHOUT ANY WARRANTY; without even the implied
  43. warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  44. See the GNU General Public License for more details.
  45. </para>
  46. <para>
  47. You should have received a copy of the GNU General Public
  48. License along with this program; if not, write to the Free
  49. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  50. MA 02111-1307 USA
  51. </para>
  52. <para>
  53. For more details see the file COPYING in the source
  54. distribution of Linux.
  55. </para>
  56. </legalnotice>
  57. </bookinfo>
  58. <toc></toc>
  59. <chapter id="intro">
  60. <title>Introduction</title>
  61. <para>
  62. The MCA bus functions provide a generalised interface to find MCA
  63. bus cards, to claim them for a driver, and to read and manipulate POS
  64. registers without being aware of the motherboard internals or
  65. certain deep magic specific to onboard devices.
  66. </para>
  67. <para>
  68. The basic interface to the MCA bus devices is the slot. Each slot
  69. is numbered and virtual slot numbers are assigned to the internal
  70. devices. Using a pci_dev as other busses do does not really make
  71. sense in the MCA context as the MCA bus resources require card
  72. specific interpretation.
  73. </para>
  74. <para>
  75. Finally the MCA bus functions provide a parallel set of DMA
  76. functions mimicing the ISA bus DMA functions as closely as possible,
  77. although also supporting the additional DMA functionality on the
  78. MCA bus controllers.
  79. </para>
  80. </chapter>
  81. <chapter id="bugs">
  82. <title>Known Bugs And Assumptions</title>
  83. <para>
  84. None.
  85. </para>
  86. </chapter>
  87. <chapter id="pubfunctions">
  88. <title>Public Functions Provided</title>
  89. !Edrivers/mca/mca-legacy.c
  90. </chapter>
  91. <chapter id="dmafunctions">
  92. <title>DMA Functions Provided</title>
  93. !Iarch/x86/include/asm/mca_dma.h
  94. </chapter>
  95. </book>