chp.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright IBM Corp. 2007, 2010
  4. * Author(s): Peter Oberparleiter <[email protected]>
  5. */
  6. #ifndef S390_CHP_H
  7. #define S390_CHP_H
  8. #include <linux/types.h>
  9. #include <linux/device.h>
  10. #include <linux/mutex.h>
  11. #include <asm/chpid.h>
  12. #include "chsc.h"
  13. #include "css.h"
  14. #define CHP_STATUS_STANDBY 0
  15. #define CHP_STATUS_CONFIGURED 1
  16. #define CHP_STATUS_RESERVED 2
  17. #define CHP_STATUS_NOT_RECOGNIZED 3
  18. #define CHP_ONLINE 0
  19. #define CHP_OFFLINE 1
  20. #define CHP_VARY_ON 2
  21. #define CHP_VARY_OFF 3
  22. #define CHP_FCES_EVENT 4
  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_fmt0 desc;
  40. struct channel_path_desc_fmt1 desc_fmt1;
  41. struct channel_path_desc_fmt3 desc_fmt3;
  42. /* Channel-measurement related stuff: */
  43. int cmg;
  44. int shared;
  45. struct cmg_chars cmg_chars;
  46. };
  47. /* Return channel_path struct for given chpid. */
  48. static inline struct channel_path *chpid_to_chp(struct chp_id chpid)
  49. {
  50. return css_by_id(chpid.cssid)->chps[chpid.id];
  51. }
  52. int chp_get_status(struct chp_id chpid);
  53. u8 chp_get_sch_opm(struct subchannel *sch);
  54. int chp_is_registered(struct chp_id chpid);
  55. struct channel_path_desc_fmt0 *chp_get_chp_desc(struct chp_id chpid);
  56. void chp_remove_cmg_attr(struct channel_path *chp);
  57. int chp_add_cmg_attr(struct channel_path *chp);
  58. int chp_update_desc(struct channel_path *chp);
  59. int chp_new(struct chp_id chpid);
  60. void chp_cfg_schedule(struct chp_id chpid, int configure);
  61. void chp_cfg_cancel_deconfigure(struct chp_id chpid);
  62. int chp_info_get_status(struct chp_id chpid);
  63. int chp_ssd_get_mask(struct chsc_ssd_info *, struct chp_link *);
  64. #endif /* S390_CHP_H */