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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.mediabay.h 1.8 12/01/01 20:09:11 benh
  3.  */
  4. /*
  5.  * mediabay.h: definitions for using the media bay
  6.  * on PowerBook 3400 and similar computers.
  7.  *
  8.  * Copyright (C) 1997 Paul Mackerras.
  9.  */
  10. #ifndef _PPC_MEDIABAY_H
  11. #define _PPC_MEDIABAY_H
  12. #ifdef __KERNEL__
  13. #define MB_FD 0 /* media bay contains floppy drive (automatic eject ?) */
  14. #define MB_FD1 1 /* media bay contains floppy drive (manual eject ?) */
  15. #define MB_SOUND 2 /* sound device ? */
  16. #define MB_CD 3 /* media bay contains ATA drive such as CD or ZIP */
  17. #define MB_PCI 5 /* media bay contains a PCI device */
  18. #define MB_POWER 6 /* media bay contains a Power device (???) */
  19. #define MB_NO 7 /* media bay contains nothing */
  20. void media_bay_init(void);
  21. int check_media_bay(struct device_node *which_bay, int what);
  22. int check_media_bay_by_base(unsigned long base, int what);
  23. /* Number of bays in the machine or 0 */
  24. extern int media_bay_count;
  25. /* called by pmac-ide.c to register IDE controller for media bay */
  26. extern int media_bay_set_ide_infos(struct device_node* which_bay,
  27. unsigned long base, int irq, int index);
  28. #endif /* __KERNEL__ */
  29. #endif /* _PPC_MEDIABAY_H */