tape_class.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright IBM Corp. 2004 All Rights Reserved.
  3. *
  4. * Tape class device support
  5. *
  6. * Author: Stefan Bader <shbader@de.ibm.com>
  7. * Based on simple class device code by Greg K-H
  8. */
  9. #ifndef __TAPE_CLASS_H__
  10. #define __TAPE_CLASS_H__
  11. #include <linux/init.h>
  12. #include <linux/module.h>
  13. #include <linux/fs.h>
  14. #include <linux/major.h>
  15. #include <linux/cdev.h>
  16. #include <linux/device.h>
  17. #include <linux/kdev_t.h>
  18. #define TAPECLASS_NAME_LEN 32
  19. struct tape_class_device {
  20. struct cdev *char_device;
  21. struct device *class_device;
  22. char device_name[TAPECLASS_NAME_LEN];
  23. char mode_name[TAPECLASS_NAME_LEN];
  24. };
  25. /*
  26. * Register a tape device and return a pointer to the tape class device
  27. * created by the call.
  28. *
  29. * device
  30. * The pointer to the struct device of the physical (base) device.
  31. * dev
  32. * The intended major/minor number. The major number may be 0 to
  33. * get a dynamic major number.
  34. * fops
  35. * The pointer to the drivers file operations for the tape device.
  36. * device_name
  37. * Pointer to the logical device name (will also be used as kobject name
  38. * of the cdev). This can also be called the name of the tape class
  39. * device.
  40. * mode_name
  41. * Points to the name of the tape mode. This creates a link with that
  42. * name from the physical device to the logical device (class).
  43. */
  44. struct tape_class_device *register_tape_dev(
  45. struct device * device,
  46. dev_t dev,
  47. const struct file_operations *fops,
  48. char * device_name,
  49. char * node_name
  50. );
  51. void unregister_tape_dev(struct device *device, struct tape_class_device *tcd);
  52. #endif /* __TAPE_CLASS_H__ */