chandev.8
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. .TH chandev 8
  2. .SH NAME
  3. channel device layer
  4. .Dd December 6, 2000
  5. .Os Linux for Zseries
  6. .SH SYNOPSIS
  7. The channel device layer is a layer to provide a consistent interface for
  8. configuration & default machine check (devices appearing & disappearing )
  9. handling on Linux for s/390 & z/Series channel devices.
  10. s/390 & z/Series channel devices include among others
  11. .Bl -item
  12. .It
  13. lcs ( the most common ethernet/token ring/fddi standard on zSeries )
  14. .It
  15. ctc/escon hi speed like serial link standard on s/390 & z/Series.
  16. .It
  17. claw used to talk to cisco routers.
  18. .It
  19. qeth gigabit ethernet.
  20. .It
  21. osad used by osa/sf to configure osa devices, e.g. to share a osa card between 2 or more vm guests. osad is just added to the channel device layer for completeness, there are no plans at the current time to write a driver to exploit this under linux.
  22. .It
  23. These devices use two channels one read & one write for configuration &
  24. or communication ( & a third channel the data channel in the case of gigabit ethernet ).
  25. The motivation behind developing this layer was that there was a lot of
  26. duplicate code among the channel device drivers for configuration. 
  27. Also the lcs & ctc drivers tended to fight over 3088/08's & 3088/1F's which could 
  28. be either 2216/3172 channel attached lcs compatible devices or escon/ctc pipes 
  29. between guests & to resolve this fight both device drivers had to be configured 
  30. separately,  this is now simplified by doing the configuration in a single place
  31. ( the channel device layer ).
  32. This layer isn't invasive & it is quite okay to use channel drivers
  33. which don't use the channel device layer in conjunction with
  34. drivers which do.
  35. .El
  36. .SH DESCRIPTION
  37. The current setup can be read from /proc/chandev
  38. arguments can be entered by...
  39. .Bl -enum
  40. .It
  41. Piping to /proc/chandev.
  42. e.g. echo reprobe >/proc/chandev
  43. will cause uninitialised channel devices to be probed.
  44. .It
  45. Entering them into /etc/chandev.conf comments are prefixed with #.
  46. .It
  47. Or from the boot command line using the 'chandev=' keyword
  48. e.g. chandev=noauto,0x0,0x480d;noauto,0x4810,0xffff
  49. will allow only devno's 0x480e & 0x480f to be autodetected.
  50. .El
  51. .Bl -item
  52. .It
  53. Multiple options can be passed separated by semicolons, no spaces or newlines are allowed between parameters on the kernel parameter line as it complicates parsing, spaces are allowed in /proc/chandev & chandev.conf, newlines are allowed in chandev.conf only. To be consistent with other hotpluggable architectures the script pointed to /proc/sys/kernel/hotplug (normally /sbin/hotplug) will be called automatically on startup or a machine check of a device as follows.
  54. /sbin/hotplug chandev <start starting_devnames> <machine_check (devname last/pre_recovery_status) (current/post_recovery_status)>.
  55. The chandev layer doesn't open stdin stdout or stderr so it is advisable that you add the following lines to the start of your script, here is a sample script which starts devices as they become available.
  56. .It
  57. #!/bin/bash
  58. .It
  59. exec >/dev/console 2>&1 0>&1
  60. .It
  61. # Uncomment line below for debugging.
  62. .It
  63. # echo $*
  64. .It
  65. if [ "$1" = "chandev" ] && [ "$2" = "start" ]
  66. .It
  67. then
  68. .It
  69.     shift 2
  70. .It
  71.     while [ "$1" != "" ]  && [ "$1" != "machine_check" ]
  72. .It
  73.     do
  74. .It
  75.         isup=`ifconfig $1 2>/dev/null | grep UP`
  76. .It
  77. if [ "$isup" = "" ]
  78. .It
  79. then
  80. .It
  81.      ifup $1
  82. .It
  83. fi
  84. .It
  85. shift
  86. .It
  87.     done
  88. .It
  89. fi
  90. .It
  91. .It
  92. e.g. if tr0 & ctc0 were starting up & eth0 & eth1 devices disappeared & eth2 got a revalidate machine check ( which is normally fully recoverable ) nearly simultainously the parameters would be.
  93. .It
  94. /sbin/hotplug chandev start tr0 ctc0 machine_check eth0 gone gone eth1 gone gone eth2 revalidate good
  95. .It
  96. This can be used for example to call /etc/rc.d/init.d/network start when a device appears & make the ipldelay kernel boot parameter obselete on native machines or recover from bad machine checks where the default machine check handling isn't adequete. The machine checks that can be presented as parameters are good not_operational no_path revalidate device_gone. Normally you wouldn't want to do anything like stop networking when a device disappears as this is hopefully temporary, I just added it to be complete. The chandev layer waits a few seconds for machine checks to settle before running /sbin/hotplug because several machine checks usually happen at once & the forked scripts would possibly race against each other to shutdown & start resources at the same time & behave rather stupidly.
  97. .El
  98. valid chandev arguments are <> indicate optional parameters, | indicate a choice.
  99. .B glossary
  100. .Bl -item
  101. .It
  102. devno: is a 16 bit unsigned number used to uniquely identify a subchannel to a device.
  103. .It
  104. force list: is a term specific to channel device layer describing a range of devno's to be forced to configure in a particular manner as opposed to autodetect
  105. .El
  106. .B commonly used options
  107. .Bl -item
  108. .It
  109. .Bl -item
  110. .It
  111. .B (ctc|escon|lcs|osad|qeth)<devif_num>, 
  112. read_devno,write_devno,<data_devno,memory_usage_in_k,port_no/protocol_no,checksum_received_ip_pkts,use_hw_stats>
  113. .It
  114. devif_num of -1 indicates you don't care what device interface number is chosen, omitting it indicates this is a range of devices for which you want to force to be detected as a particular type, qeth devices can't be forced as a range as it makes no sense for them.
  115. The data_devno field is only valid for qeth devices, all parameters including & after memory_usage_in_k can be set optionally, if not set they
  116. go to default values. memory_usage_in_k ( 0 the default ) means let the driver choose,checksum_received_ip_pkts & use_hw_stats are set to false
  117. .It
  118. e.g. ctc0,0x7c00,0x7c01
  119. .It
  120. Tells the channel layer to force ctc0 if detected to use cuu's 7c00 & 7c01 port,port_no is the relative adapter no on lcs, on ctc/escon this field is the ctc/escon protocol number ( default 0 ), don't do checksumming on received ip packets & as ctc doesn't have hardware stats so it ignores this parameter. This can be used for instance to force a device if it presents bad sense data to the IO layer & thus autodetection fails.
  121. .It
  122. lcs,0x7c00,0x7d00,4096,-1
  123. All devices between 0x7c00 & 7d00 should be detected as lcs, let the driver use 4096k for each instance, don't care what port relative adapter number is chosen, don't checksum received ip packets & use hw stats .
  124. .It
  125. qeth1,0x7c00,0x7c01,0x7c02
  126. .It
  127. devif_num=1,read=0x7c00,write=0x7c01,data=0x7c02, don't checksum received ip packets & use hw stats.
  128. .El
  129. .It
  130. .Bl -item
  131. .B claw devif_num, 
  132. read_devno,write_devno<,memory_usage_in_k,checksum_received_ip_pkts,use_hw_stats,>
  133. host_name,adapter_name,api_type
  134. .It
  135. CLAW currently is not autodetected as the host_name,adapter_name & api_type
  136. need to be set up, possibly some convention for setting these automatically
  137. may be contrived in the future & auto detection may be done but currently there isn't any.
  138. The names host_name,adapter_name,api_type may be 8 upto characters in length,
  139. host_name is the name of this host, adapter_name is the name of the adjacent host,
  140. api_type may be name 1 to 8 chars in length API & TCPIP are common values.
  141. The remainder of the parameters are the same as the description for other ctc escon etc. 
  142. .It
  143. A typical setup may be
  144. .It
  145. claw0,0xe00,0xe01,linuxa,rs6k,TCPIP
  146. .It
  147. .El
  148. .Bl -item
  149. .It
  150. .B add_parms
  151. ,chan_type,<lo_devno,hi_devno,>string
  152. .It
  153. chan_type bitfield 
  154. .It
  155. ctc=0x1, escon=0x2, lcs=0x4, osad=0x8, qeth=0x10, claw=0x20.
  156. .It
  157. This is for device driver specific options passed as a string to the driver
  158. not dealt with by the channel device layer it can't contain spaces.
  159. low_devno & hi_devno are optional parameters to specify a range.
  160. The channel device layer doesn't concatenate strings if device ranges overlap,
  161. before passing to a device driver.
  162. .El
  163. .It
  164. .Bl -item
  165. .It
  166. .B del_parms
  167. <,chan_type,exact_match,lo_devno>
  168. .It
  169. This deletes some or all device driver specific options not specifying chan_type causes it to delete all the strings. exact_match=1 specifies only to remove driver parms where chan_type is exactly equal exact_match=0 specifies to remove parms where any bit matches chan_type.
  170. lo_devno is an optional parameter the delete to only happen if lo_devno matches a lo_devno in one of the ranges.
  171. .El
  172. .It
  173. .Bl -item
  174. .It
  175. .B noauto
  176. <,lo_devno,hi_devno>
  177. .It
  178. Don't probe a range of device numbers for channel devices.
  179. .El
  180. .It
  181. .Bl -item
  182. .It
  183. .B use_devno_names
  184. .It
  185. Tells the channel layer to assign device names based on the read channel cuu number.
  186. .It
  187. e.g. a token ring read channel 0x7c00 would have an interface called tr0x7c00 this avoids name collisions on devices.
  188. .El
  189. .B power user options
  190. .Bl -item
  191. .It
  192. .Bl -item
  193. .It
  194. .B del_noauto
  195. ,<devno>
  196. .It
  197.  Delete a range or all noauto ranges when devno is within a range.
  198. .El
  199. .It
  200. .Bl -item
  201. .It
  202. .B del_force
  203. ,read_devno
  204. .It
  205. Delete a forced channel device from force list.
  206. .El
  207. .It
  208. .Bl -item
  209. .It
  210. .B dont_use_devno_names
  211. .It
  212. Opposite to use_devno_names described above.
  213. .El
  214. .It
  215. .Bl -item
  216. .It
  217. .B add_model
  218. ,chan_type, cu_type, cu_model, dev_type, dev_model, max_port_no, automatic_machine_check_handling
  219. .It
  220. Tells the channel layer to probe for the device described, -1 for any of the parameters other than chan_type & automatic_machine_check_handling is a wildcard.
  221. Set max_port_no to 0 for non lcs devices.
  222. .It
  223. auto machine check recovery bitfield
  224. .It
  225. not_operational=0x1, no_path=0x2, revalidate=0x4, gone=0x8
  226. .It
  227. chan_type bitfield
  228. .It
  229. ctc=0x1, escon=0x2, lcs=0x4, osad=0x8, qeth=0x10, claw=0x20
  230. .El
  231. .Bl -item
  232. .It
  233. .B del_model
  234. ,cu_type,cu_model,dev_type,dev_model
  235. .It
  236. -1 for any parameter is a wildcard.
  237. .El
  238. .Bl -item
  239. .It
  240. .B del_all_models
  241. .It 
  242. should be obvious.
  243. .El
  244. .Bl -item
  245. .It
  246. .B  non_cautious_auto_detect
  247. .It
  248. Tells the channel device layer to attempt to auto detect devices even if their type/model pairs don't unambigously identify the device, e.g. 3088/1F's can either be escon CTC's or channel attached 3172 lcs compatible devices. If the wrong device driver attempts to probe these channels there may be big delays on startup or even a kernel lockup, use this option with caution.
  249. .El
  250. .Bl -item
  251. .It
  252. .B cautious_auto_detect
  253. .It
  254.  See non_cautious_auto_detect this is the default.
  255. .El
  256. .Bl -item
  257. .It
  258. .B auto_msck
  259. <,lo_devno>,<hi_devno>,auto_msck_recovery
  260. .It
  261. This is used to specify the kind of machine check recovery that occurs over a device range.
  262. .El
  263. .It
  264. .Bl -item
  265. .It
  266. .B del_auto_msck
  267. <,devno>
  268. .It
  269. Delete a range or all machine check recovery ranges when devno is within a range.
  270. .El
  271. .It
  272. .Bl -item
  273. .It
  274. .B reset_clean
  275. .It
  276. Resets all model info, forced devices & noauto lists to null.
  277. .El
  278. .It
  279. .Bl -item
  280. .It
  281. .B reset_conf
  282. .It
  283. Resets all model info, forced devices & noauto lists back to default settings.
  284. .El
  285. .It
  286. .Bl -item
  287. .It
  288. .B reset_conf_clean
  289. .It
  290. Resets all model info, forced devices & noauto lists to empty.
  291. .El
  292. .It
  293. .Bl -item
  294. .It
  295. .B shutdown
  296. <device name|read devno>
  297. .It
  298. Shuts down a particular device by device name or read devno,
  299. deregisters it & releases its interrupts
  300. or shuts down all devices if no parameter is used.
  301. .El
  302. .It
  303. .Bl -item
  304. .It
  305. .B reprobe
  306. .It
  307. Calls probe method for channels whose interrupts are not owned.
  308. .El
  309. .It
  310. .Bl -item
  311. .It
  312. .B unregister_probe <probefunc_addr>
  313. .It
  314. unregisters a single probe function or all of them.
  315. .El
  316. .Bl -item
  317. .It
  318. .B unregister_probe_by_chan_type
  319. .It
  320. unregisters all probe functions which match the chan_type bitfield exactly,
  321. useful if you want a configuration to survice a kernel upgrade.
  322. .El
  323. .Bl -item
  324. .It
  325. .B read_conf
  326. .It
  327. Read instructions from /etc/chandev.conf.
  328. .El
  329. .It
  330. .Bl -item
  331. .It
  332. .B dont_read_conf
  333. .It
  334. Don't automatically read /etc/chandev.conf on boot.
  335. .El
  336. .Bl -item
  337. .It
  338. .B persist 
  339. ,chan_type
  340. .It
  341. Force drivers modules to stay loaded even if no device is found,
  342. this is useful for debugging & one wishes to examine debug entries in 
  343. /proc/s390dbf/ to find out why a module failed to load.
  344. .It
  345. e.g.
  346. .It
  347. persist,-1 forces all devices to persist.
  348. .It
  349. persist,0 forces all channel devices to be non persistent.
  350. .El
  351. .It
  352. e.g the following sequence of commands should be roughly equivalent
  353. to rebooting for channel devices.
  354. .Bl -item
  355. .It
  356. shutdown
  357. .It
  358. reset_conf
  359. .It
  360. read_conf
  361. .It
  362. reprobe
  363. .El
  364. .El
  365. .SH SEE ALSO
  366. .Bl -item
  367. .It
  368. If you wish to write a driver channel device layer compatible
  369. .It
  370. /linux/include/asm-s390/chandev.h for the apis which are commented.
  371. .It
  372. /linux/drivers/s390/misc/chandev.c for the code.
  373. .El
  374. .SH FILES
  375. .Bl -item
  376. .It
  377. .B /proc/chandev
  378. .It
  379. cat /proc/chandev to see current options chosen.
  380. .It
  381. echo <command> >/proc/chandev to enter a new command
  382. .It
  383. .B /etc/chandev.conf 
  384. .It
  385. A file which can be used to configure the channel 
  386. device layer.
  387. .It
  388. kernel parameters with the 
  389. .B 'chandev=' 
  390. keyword.
  391. .It
  392. .B /sbin/hotplug
  393. .It 
  394. A user script/executable which is run when devices come online "appear"
  395. or go offline "disappear".
  396. .El
  397. .SH AUTHORS
  398. DJ Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)