optcd.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* linux/include/linux/optcd.h - Optics Storage 8000 AT CDROM driver
  2. $Id: optcd.h,v 1.2 1996/01/15 18:43:44 root Exp root $
  3. Copyright (C) 1995 Leo Spiekman (spiekman@dutette.et.tudelft.nl)
  4. Configuration file for linux/drivers/cdrom/optcd.c
  5. */
  6. #ifndef _LINUX_OPTCD_H
  7. #define _LINUX_OPTCD_H
  8. /* I/O base of drive. Drive uses base to base+2.
  9.    This setting can be overridden with the kernel or insmod command
  10.    line option 'optcd=<portbase>'. Use address of 0 to disable driver. */
  11. #define OPTCD_PORTBASE 0x340
  12. /* enable / disable parts of driver by define / undef */
  13. #define MULTISESSION /* multisession support (ALPHA) */
  14. /* Change 0 to 1 to debug various parts of the driver */
  15. #define DEBUG_DRIVE_IF 0 /* Low level drive interface */
  16. #define DEBUG_CONV 0 /* Address conversions */
  17. #define DEBUG_BUFFERS 0 /* Buffering and block size conversion */
  18. #define DEBUG_REQUEST 0 /* Request mechanism */
  19. #define DEBUG_STATE 0 /* State machine */
  20. #define DEBUG_TOC 0 /* Q-channel and Table of Contents */
  21. #define DEBUG_MULTIS 0 /* Multisession code */
  22. #define DEBUG_VFS 0 /* VFS interface */
  23. /* Don't touch these unless you know what you're doing. */
  24. /* Various timeout loop repetition counts. */
  25. #define BUSY_TIMEOUT 10000000 /* for busy wait */
  26. #define FAST_TIMEOUT 100000 /* ibid. for probing */
  27. #define SLEEP_TIMEOUT 6000 /* for timer wait */
  28. #define MULTI_SEEK_TIMEOUT 1000 /* for timer wait */
  29. #define READ_TIMEOUT 6000 /* for poll wait */
  30. #define STOP_TIMEOUT 2000 /* for poll wait */
  31. #define RESET_WAIT 5000 /* busy wait at drive reset */
  32. /* # of buffers for block size conversion. 6 is optimal for my setup (P75),
  33.    giving 280 kb/s, with 0.4% CPU usage. Experiment to find your optimal
  34.    setting */
  35. #define N_BUFS 6
  36. #endif /* _LINUX_OPTCD_H */