CommonIO 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. S/390 common I/O-Layer - command line parameters, procfs and debugfs entries
  2. ============================================================================
  3. Command line parameters
  4. -----------------------
  5. * ccw_timeout_log
  6. Enable logging of debug information in case of ccw device timeouts.
  7. * cio_msg = yes | no
  8. Determines whether information on found devices and sensed device
  9. characteristics should be shown during startup or when new devices are
  10. found, i. e. messages of the types "Detected device 0.0.4711 on subchannel
  11. 0.0.0042" and "SenseID: Device 0.0.4711 reports: ...".
  12. Default is off.
  13. * cio_ignore = {all} |
  14. {<device> | <range of devices>} |
  15. {!<device> | !<range of devices>}
  16. The given devices will be ignored by the common I/O-layer; no detection
  17. and device sensing will be done on any of those devices. The subchannel to
  18. which the device in question is attached will be treated as if no device was
  19. attached.
  20. An ignored device can be un-ignored later; see the "/proc entries"-section for
  21. details.
  22. The devices must be given either as bus ids (0.x.abcd) or as hexadecimal
  23. device numbers (0xabcd or abcd, for 2.4 backward compatibility). If you
  24. give a device number 0xabcd, it will be interpreted as 0.0.abcd.
  25. You can use the 'all' keyword to ignore all devices.
  26. The '!' operator will cause the I/O-layer to _not_ ignore a device.
  27. The command line is parsed from left to right.
  28. For example,
  29. cio_ignore=0.0.0023-0.0.0042,0.0.4711
  30. will ignore all devices ranging from 0.0.0023 to 0.0.0042 and the device
  31. 0.0.4711, if detected.
  32. As another example,
  33. cio_ignore=all,!0.0.4711,!0.0.fd00-0.0.fd02
  34. will ignore all devices but 0.0.4711, 0.0.fd00, 0.0.fd01, 0.0.fd02.
  35. By default, no devices are ignored.
  36. /proc entries
  37. -------------
  38. * /proc/cio_ignore
  39. Lists the ranges of devices (by bus id) which are ignored by common I/O.
  40. You can un-ignore certain or all devices by piping to /proc/cio_ignore.
  41. "free all" will un-ignore all ignored devices,
  42. "free <device range>, <device range>, ..." will un-ignore the specified
  43. devices.
  44. For example, if devices 0.0.0023 to 0.0.0042 and 0.0.4711 are ignored,
  45. - echo free 0.0.0030-0.0.0032 > /proc/cio_ignore
  46. will un-ignore devices 0.0.0030 to 0.0.0032 and will leave devices 0.0.0023
  47. to 0.0.002f, 0.0.0033 to 0.0.0042 and 0.0.4711 ignored;
  48. - echo free 0.0.0041 > /proc/cio_ignore will furthermore un-ignore device
  49. 0.0.0041;
  50. - echo free all > /proc/cio_ignore will un-ignore all remaining ignored
  51. devices.
  52. When a device is un-ignored, device recognition and sensing is performed and
  53. the device driver will be notified if possible, so the device will become
  54. available to the system. Note that un-ignoring is performed asynchronously.
  55. You can also add ranges of devices to be ignored by piping to
  56. /proc/cio_ignore; "add <device range>, <device range>, ..." will ignore the
  57. specified devices.
  58. Note: While already known devices can be added to the list of devices to be
  59. ignored, there will be no effect on then. However, if such a device
  60. disappears and then reappears, it will then be ignored.
  61. For example,
  62. "echo add 0.0.a000-0.0.accc, 0.0.af00-0.0.afff > /proc/cio_ignore"
  63. will add 0.0.a000-0.0.accc and 0.0.af00-0.0.afff to the list of ignored
  64. devices.
  65. The devices can be specified either by bus id (0.x.abcd) or, for 2.4 backward
  66. compatibility, by the device number in hexadecimal (0xabcd or abcd). Device
  67. numbers given as 0xabcd will be interpreted as 0.0.abcd.
  68. * For some of the information present in the /proc filesystem in 2.4 (namely,
  69. /proc/subchannels and /proc/chpids), see driver-model.txt.
  70. Information formerly in /proc/irq_count is now in /proc/interrupts.
  71. debugfs entries
  72. ---------------
  73. * /sys/kernel/debug/s390dbf/cio_*/ (S/390 debug feature)
  74. Some views generated by the debug feature to hold various debug outputs.
  75. - /sys/kernel/debug/s390dbf/cio_crw/sprintf
  76. Messages from the processing of pending channel report words (machine check
  77. handling).
  78. - /sys/kernel/debug/s390dbf/cio_msg/sprintf
  79. Various debug messages from the common I/O-layer, including messages
  80. printed when cio_msg=yes.
  81. - /sys/kernel/debug/s390dbf/cio_trace/hex_ascii
  82. Logs the calling of functions in the common I/O-layer and, if applicable,
  83. which subchannel they were called for, as well as dumps of some data
  84. structures (like irb in an error case).
  85. The level of logging can be changed to be more or less verbose by piping to
  86. /sys/kernel/debug/s390dbf/cio_*/level a number between 0 and 6; see the
  87. documentation on the S/390 debug feature (Documentation/s390/s390dbf.txt)
  88. for details.