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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* cm206.h Header file for cm206.c.
  2.    Copyright (c) 1995 David van Leeuwen 
  3. */
  4. #ifndef LINUX_CM206_H
  5. #define LINUX_CM206_H
  6. #include <linux/ioctl.h>
  7. /* First, the cm260 stuff */
  8. /* The ports and irq used. Although CM206_BASE and CM206_IRQ are defined
  9.    below, the values are not used unless autoprobing is turned off and 
  10.    no LILO boot options or module command line options are given. Change
  11.    these values to your own as last resort if autoprobing and options
  12.    don't work. */
  13. #define CM206_BASE 0x340
  14. #define CM206_IRQ 11
  15. #define r_data_status (cm206_base)
  16. #define r_uart_receive (cm206_base+0x2)
  17. #define r_fifo_output_buffer (cm206_base+0x4)
  18. #define r_line_status (cm206_base+0x6)
  19. #define r_data_control (cm206_base+0x8)
  20. #define r_uart_transmit (cm206_base+0xa)
  21. #define r_test_clock (cm206_base+0xc)
  22. #define r_test_control (cm206_base+0xe)
  23. /* the data_status flags */
  24. #define ds_ram_size 0x4000
  25. #define ds_toc_ready 0x2000
  26. #define ds_fifo_empty 0x1000
  27. #define ds_sync_error 0x800
  28. #define ds_crc_error 0x400
  29. #define ds_data_error 0x200
  30. #define ds_fifo_overflow 0x100
  31. #define ds_data_ready 0x80
  32. /* the line_status flags */
  33. #define ls_attention 0x10
  34. #define ls_parity_error 0x8
  35. #define ls_overrun 0x4
  36. #define ls_receive_buffer_full 0x2
  37. #define ls_transmitter_buffer_empty 0x1
  38. /* the data control register flags */
  39. #define dc_read_q_channel 0x4000
  40. #define dc_mask_sync_error 0x2000
  41. #define dc_toc_enable 0x1000
  42. #define dc_no_stop_on_error 0x800
  43. #define dc_break 0x400
  44. #define dc_initialize 0x200
  45. #define dc_mask_transmit_ready 0x100
  46. #define dc_flag_enable 0x80
  47. /* Define the default data control register flags here */
  48. #define dc_normal (dc_mask_sync_error | dc_no_stop_on_error | 
  49.    dc_mask_transmit_ready)
  50. /* now some constants related to the cm206 */
  51. /* another drive status byte, echoed by the cm206 on most commands */
  52. #define dsb_error_condition 0x1
  53. #define dsb_play_in_progress 0x4
  54. #define dsb_possible_media_change 0x8
  55. #define dsb_disc_present 0x10
  56. #define dsb_drive_not_ready 0x20
  57. #define dsb_tray_locked 0x40
  58. #define dsb_tray_not_closed 0x80
  59. #define dsb_not_useful (dsb_drive_not_ready | dsb_tray_not_closed)
  60. /* the cm206 command set */
  61. #define c_close_tray 0
  62. #define c_lock_tray 0x01
  63. #define c_unlock_tray 0x04
  64. #define c_open_tray 0x05
  65. #define c_seek 0x10
  66. #define c_read_data 0x20
  67. #define c_force_1x 0x21
  68. #define c_force_2x 0x22
  69. #define c_auto_mode 0x23
  70. #define c_play 0x30
  71. #define c_set_audio_mode 0x31
  72. #define c_read_current_q 0x41
  73. #define c_stream_q 0x42
  74. #define c_drive_status 0x50
  75. #define c_disc_status 0x51
  76. #define c_audio_status 0x52
  77. #define c_drive_configuration 0x53
  78. #define c_read_upc 0x60
  79. #define c_stop 0x70
  80. #define c_calc_checksum 0xe5
  81. #define c_gimme 0xf8
  82. /* finally, the (error) condition that the drive can be in      *
  83.  * OK, this is not always an error, but let's prefix it with e_ */
  84. #define e_none 0
  85. #define e_illegal_command 0x01
  86. #define e_sync 0x02
  87. #define e_seek 0x03
  88. #define e_parity 0x04
  89. #define e_focus 0x05
  90. #define e_header_sync 0x06
  91. #define e_code_incompatibility 0x07
  92. #define e_reset_done 0x08
  93. #define e_bad_parameter 0x09
  94. #define e_radial 0x0a
  95. #define e_sub_code 0x0b
  96. #define e_no_data_track 0x0c
  97. #define e_scan 0x0d
  98. #define e_tray_open 0x0f
  99. #define e_no_disc 0x10
  100. #define e_tray stalled 0x11
  101. /* drive configuration masks */
  102. #define dcf_revision_code 0x7
  103. #define dcf_transfer_rate 0x60
  104. #define dcf_motorized_tray 0x80
  105. /* disc status byte */
  106. #define cds_multi_session 0x2
  107. #define cds_all_audio 0x8
  108. #define cds_xa_mode 0xf0
  109. /* finally some ioctls for the driver */
  110. #define CM206CTL_GET_STAT _IO( 0x20, 0 )
  111. #define CM206CTL_GET_LAST_STAT _IO( 0x20, 1 )
  112. #ifdef STATISTICS
  113. /* This is an ugly way to guarantee that the names of the statistics
  114.  * are the same in the code and in the diagnostics program.  */
  115. #ifdef __KERNEL__
  116. #define x(a) st_ ## a
  117. #define y enum
  118. #else
  119. #define x(a) #a
  120. #define y char * stats_name[] = 
  121. #endif
  122. y {x(interrupt), x(data_ready), x(fifo_overflow), x(data_error),
  123.      x(crc_error), x(sync_error), x(lost_intr), x(echo),
  124.      x(write_timeout), x(receive_timeout), x(read_timeout),
  125.      x(dsb_timeout), x(stop_0xff), x(back_read_timeout),
  126.      x(sector_transferred), x(read_restarted), x(read_background),
  127.      x(bh), x(open), x(ioctl_multisession), x(attention)
  128. #ifdef __KERNEL__
  129.      , x(last_entry)
  130. #endif
  131.  };
  132. #ifdef __KERNEL__
  133. #define NR_STATS st_last_entry
  134. #else
  135. #define NR_STATS (sizeof(stats_name)/sizeof(char*))
  136. #endif
  137. #undef y
  138. #undef x
  139. #endif /* STATISTICS */
  140. #endif /* LINUX_CM206_H */