chp.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * drivers/s390/cio/chp.h
  3. *
  4. * Copyright IBM Corp. 2007,2010
  5. * Author(s): Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
  6. */
  7. #ifndef S390_CHP_H
  8. #define S390_CHP_H S390_CHP_H
  9. #include <linux/types.h>
  10. #include <linux/device.h>
  11. #include <linux/mutex.h>
  12. #include <asm/chpid.h>
  13. #include "chsc.h"
  14. #include "css.h"
  15. #define CHP_STATUS_STANDBY 0
  16. #define CHP_STATUS_CONFIGURED 1
  17. #define CHP_STATUS_RESERVED 2
  18. #define CHP_STATUS_NOT_RECOGNIZED 3
  19. #define CHP_ONLINE 0
  20. #define CHP_OFFLINE 1
  21. #define CHP_VARY_ON 2
  22. #define CHP_VARY_OFF 3
  23. struct chp_link {
  24. struct chp_id chpid;
  25. u32 fla_mask;
  26. u16 fla;
  27. };
  28. static inline int chp_test_bit(u8 *bitmap, int num)
  29. {
  30. int byte = num >> 3;
  31. int mask = 128 >> (num & 7);
  32. return (bitmap[byte] & mask) ? 1 : 0;
  33. }
  34. struct channel_path {
  35. struct device dev;
  36. struct chp_id chpid;
  37. struct mutex lock; /* Serialize access to below members. */
  38. int state;
  39. struct channel_path_desc desc;
  40. /* Channel-measurement related stuff: */
  41. int cmg;
  42. int shared;
  43. void *cmg_chars;
  44. };
  45. /* Return channel_path struct for given chpid. */
  46. static inline struct channel_path *chpid_to_chp(struct chp_id chpid)
  47. {
  48. return channel_subsystems[chpid.cssid]->chps[chpid.id];
  49. }
  50. int chp_get_status(struct chp_id chpid);
  51. u8 chp_get_sch_opm(struct subchannel *sch);
  52. int chp_is_registered(struct chp_id chpid);
  53. void *chp_get_chp_desc(struct chp_id chpid);
  54. void chp_remove_cmg_attr(struct channel_path *chp);
  55. int chp_add_cmg_attr(struct channel_path *chp);
  56. int chp_new(struct chp_id chpid);
  57. void chp_cfg_schedule(struct chp_id chpid, int configure);
  58. void chp_cfg_cancel_deconfigure(struct chp_id chpid);
  59. int chp_info_get_status(struct chp_id chpid);
  60. int chp_ssd_get_mask(struct chsc_ssd_info *, struct chp_link *);
  61. #endif /* S390_CHP_H */