cmb.h 425 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef S390_CMB_H
  3. #define S390_CMB_H
  4. #include <uapi/asm/cmb.h>
  5. struct ccw_device;
  6. extern int enable_cmf(struct ccw_device *cdev);
  7. extern int disable_cmf(struct ccw_device *cdev);
  8. extern int __disable_cmf(struct ccw_device *cdev);
  9. extern u64 cmf_read(struct ccw_device *cdev, int index);
  10. extern int cmf_readall(struct ccw_device *cdev, struct cmbdata *data);
  11. #endif /* S390_CMB_H */