cdu31a
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. CDU31A/CDU33A Driver Info
  2. -------------------------
  3. Information on the Sony CDU31A/CDU33A CDROM driver for the Linux
  4. kernel.
  5.    Corey Minyard (minyard@metronet.com)
  6.   
  7.    Colossians 3:17
  8. Crude Table of Contents
  9. -----------------------
  10.   Setting Up the Hardware
  11.   Configuring the Kernel
  12.   Configuring as a Module
  13.   Driver Special Features
  14.   
  15. This device driver handles Sony CDU31A/CDU33A CDROM drives and
  16. provides a complete block-level interface as well as an ioctl()
  17. interface as specified in include/linux/cdrom.h).  With this
  18. interface, CDROMs can be accessed, standard audio CDs can be played
  19. back normally, and CD audio information can be read off the drive.
  20. Note that this will only work for CDU31A/CDU33A drives.  Some vendors
  21. market their drives as CDU31A compatible.  They lie.  Their drives are
  22. really CDU31A hardware interface compatible (they can plug into the
  23. same card).  They are not software compatible.
  24. Setting Up the Hardware
  25. -----------------------
  26. The CDU31A driver is unable to safely tell if an interface card is
  27. present that it can use because the interface card does not announce
  28. its presence in any way besides placing 4 I/O locations in memory.  It
  29. used to just probe memory and attempt commands, but Linus wisely asked
  30. me to remove that because it could really screw up other hardware in
  31. the system.
  32. Because of this, you must tell the kernel where the drive interface
  33. is, what interrupts are used, and possibly if you are on a PAS-16
  34. soundcard.
  35. If you have the Sony CDU31A/CDU33A drive interface card, the following
  36. diagram will help you set it up.  If you have another card, you are on
  37. your own.  You need to make sure that the I/O address and interrupt is
  38. not used by another card in the system.  You will need to know the I/O
  39. address and interrupt you have set.  Note that use of interrupts is
  40. highly recommended, if possible, it really cuts down on CPU used.
  41. Unfortunately, most soundcards do not support interrupts for their
  42. CDROM interfaces.  By default, the Sony interface card comes with
  43. interrupts disabled.
  44.    
  45.         +----------+-----------------+----------------------+
  46.         |  JP1     |  34 Pin Conn    |                      |
  47.         |  JP2     +-----------------+                      |
  48.         |  JP3                                              |
  49.         |  JP4                                              |
  50.         |                                                   +--+
  51.         |                                                   |  +-+
  52.         |                                                   |  | |  External
  53.         |                                                   |  | |  Connector
  54.         |                                                   |  | |
  55.         |                                                   |  +-+
  56.         |                                                   +--+
  57.         |                                                   |
  58.         |                                          +--------+
  59.         |                                          |
  60.         +------------------------------------------+
  61.    
  62.       JP1 sets the Base Address, using the following settings:
  63.    
  64.         Address         Pin 1           Pin 2
  65.         -------         -----           -----
  66.         0x320           Short           Short
  67.         0x330           Short           Open
  68.         0x340           Open            Short
  69.         0x360           Open            Open
  70.    
  71.       JP2 and JP3 configure the DMA channel; they must be set the same.
  72.    
  73.         DMA             Pin 1           Pin 2           Pin 3
  74.         ---             -----           -----           -----
  75.         1               On              Off             On
  76.         2               Off             On              Off
  77.         3               Off             Off             On
  78.    
  79.       JP4 Configures the IRQ:
  80.    
  81.         IRQ     Pin 1           Pin 2           Pin 3           Pin 4
  82.         ---     -----           -----           -----           -----
  83.         3       Off             Off             On              Off
  84.         4       Off             Off*            Off             On
  85.         5       On              Off             Off             Off
  86.         6       Off             On              Off             Off
  87.    
  88.                   The documentation states to set this for interrupt
  89.                   4, but I think that is a mistake.
  90. Note that if you have another interface card, you will need to look at
  91. the documentation to find the I/O base address.  This is specified to
  92. the SLCD.SYS driver for DOS with the /B: parameter, so you can look at
  93. you DOS driver setup to find the address, if necessary.
  94. Configuring the Kernel
  95. ----------------------
  96. You must tell the kernel where the drive is at boot time.  This can be
  97. done at the Linux boot prompt, by using LILO, or by using Bootlin.
  98. Note that this is no substitute for HOWTOs and LILO documentation, if
  99. you are confused please read those for info on bootline configuration
  100. and LILO.
  101. At the linux boot prompt, press the ALT key and add the following line
  102. after the boot name (you can let the kernel boot, it will tell you the
  103. default boot name while booting):
  104. cdu31a=<base address>,<interrupt>[,PAS]
  105. The base address needs to have "0x" in front of it, since it is in
  106. hex.  For instance, to configure a drive at address 320 on interrupt 5,
  107. use the following:
  108. cdu31a=0x320,5
  109. I use the following boot line:
  110. cdu31a=0x1f88,0,PAS
  111. because I have a PAS-16 which does not support interrupt for the
  112. CDU31A interface.
  113. Adding this as an append line at the beginning of the /etc/lilo.conf
  114. file will set it for lilo configurations.  I have the following as the
  115. first line in my lilo.conf file:
  116. append="cdu31a=0x1f88,0"
  117. I'm not sure how to set up Bootlin (I have never used it), if someone
  118. would like to fill in this section please do.
  119. Configuring as a Module
  120. -----------------------
  121. The driver supports loading as a module.  However, you must specify
  122. the boot address and interrupt on the boot line to insmod.  You can't
  123. use modprobe to load it, since modprobe doesn't support setting
  124. variables.
  125. Anyway, I use the following line to load my driver as a module
  126.   /sbin/insmod /lib/modules/`uname -r`/misc/cdu31a.o cdu31a_port=0x1f88
  127. You can set the following variables in the driver:
  128.   cdu31a_port=<I/O address> - sets the base I/O.  If hex, put 0x in
  129.       front of it.  This must be specified.
  130.   cdu31a_irq=<interrupt> - Sets the interrupt number.  Leaving this
  131.    off will turn interrupts off.
  132. Driver Special Features
  133. -----------------------
  134. This section describes features beyond the normal audio and CD-ROM
  135. functions of the drive.
  136. 2048 byte buffer mode
  137. If a disk is mounted with -o block=2048, data is copied straight from
  138. the drive data port to the buffer.  Otherwise, the readahead buffer
  139. must be involved to hold the other 1K of data when a 1K block
  140. operation is done.  Note that with 2048 byte blocks you cannot execute
  141. files from the CD.
  142. XA compatibility
  143. The driver should support XA disks for both the CDU31A and CDU33A.  It
  144. does this transparently, the using program doesn't need to set it.
  145. Multi-Session
  146. A multi-session disk looks just like a normal disk to the user.  Just
  147. mount one normally, and all the data should be there.  A special
  148. thanks to Koen for help with this!
  149. Raw sector I/O
  150. Using the CDROMREADAUDIO it is possible to read raw audio and data
  151. tracks.  Both operations return 2352 bytes per sector.  On the data
  152. tracks, the first 12 bytes is not returned by the drive and the value
  153. of that data is indeterminate.