mct_u232.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. /*
  2. * Definitions for MCT (Magic Control Technology) USB-RS232 Converter Driver
  3. *
  4. * Copyright (C) 2000 Wolfgang Grandegger (wolfgang@ces.ch)
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This driver is for the device MCT USB-RS232 Converter (25 pin, Model No.
  12. * U232-P25) from Magic Control Technology Corp. (there is also a 9 pin
  13. * Model No. U232-P9). See http://www.mct.com.tw/products/product_us232.html
  14. * for further information. The properties of this device are listed at the end
  15. * of this file. This device was used in the Dlink DSB-S25.
  16. *
  17. * All of the information about the device was acquired by using SniffUSB
  18. * on Windows98. The technical details of the reverse engineering are
  19. * summarized at the end of this file.
  20. */
  21. #ifndef __LINUX_USB_SERIAL_MCT_U232_H
  22. #define __LINUX_USB_SERIAL_MCT_U232_H
  23. #define MCT_U232_VID 0x0711 /* Vendor Id */
  24. #define MCT_U232_PID 0x0210 /* Original MCT Product Id */
  25. /* U232-P25, Sitecom */
  26. #define MCT_U232_SITECOM_PID 0x0230 /* Sitecom Product Id */
  27. /* DU-H3SP USB BAY hub */
  28. #define MCT_U232_DU_H3SP_PID 0x0200 /* D-Link DU-H3SP USB BAY */
  29. /* Belkin badge the MCT U232-P9 as the F5U109 */
  30. #define MCT_U232_BELKIN_F5U109_VID 0x050d /* Vendor Id */
  31. #define MCT_U232_BELKIN_F5U109_PID 0x0109 /* Product Id */
  32. /*
  33. * Vendor Request Interface
  34. */
  35. #define MCT_U232_SET_REQUEST_TYPE 0x40
  36. #define MCT_U232_GET_REQUEST_TYPE 0xc0
  37. /* Get Modem Status Register (MSR) */
  38. #define MCT_U232_GET_MODEM_STAT_REQUEST 2
  39. #define MCT_U232_GET_MODEM_STAT_SIZE 1
  40. /* Get Line Control Register (LCR) */
  41. /* ... not used by this driver */
  42. #define MCT_U232_GET_LINE_CTRL_REQUEST 6
  43. #define MCT_U232_GET_LINE_CTRL_SIZE 1
  44. /* Set Baud Rate Divisor */
  45. #define MCT_U232_SET_BAUD_RATE_REQUEST 5
  46. #define MCT_U232_SET_BAUD_RATE_SIZE 4
  47. /* Set Line Control Register (LCR) */
  48. #define MCT_U232_SET_LINE_CTRL_REQUEST 7
  49. #define MCT_U232_SET_LINE_CTRL_SIZE 1
  50. /* Set Modem Control Register (MCR) */
  51. #define MCT_U232_SET_MODEM_CTRL_REQUEST 10
  52. #define MCT_U232_SET_MODEM_CTRL_SIZE 1
  53. /*
  54. * This USB device request code is not well understood. It is transmitted by
  55. * the MCT-supplied Windows driver whenever the baud rate changes.
  56. */
  57. #define MCT_U232_SET_UNKNOWN1_REQUEST 11 /* Unknown functionality */
  58. #define MCT_U232_SET_UNKNOWN1_SIZE 1
  59. /*
  60. * This USB device request code appears to control whether CTS is required
  61. * during transmission.
  62. *
  63. * Sending a zero byte allows data transmission to a device which is not
  64. * asserting CTS. Sending a '1' byte will cause transmission to be deferred
  65. * until the device asserts CTS.
  66. */
  67. #define MCT_U232_SET_CTS_REQUEST 12
  68. #define MCT_U232_SET_CTS_SIZE 1
  69. #define MCT_U232_MAX_SIZE 4 /* of MCT_XXX_SIZE */
  70. /*
  71. * Baud rate (divisor)
  72. * Actually, there are two of them, MCT website calls them "Philips solution"
  73. * and "Intel solution". They are the regular MCT and "Sitecom" for us.
  74. * This is pointless to document in the header, see the code for the bits.
  75. */
  76. static int mct_u232_calculate_baud_rate(struct usb_serial *serial,
  77. speed_t value, speed_t *result);
  78. /*
  79. * Line Control Register (LCR)
  80. */
  81. #define MCT_U232_SET_BREAK 0x40
  82. #define MCT_U232_PARITY_SPACE 0x38
  83. #define MCT_U232_PARITY_MARK 0x28
  84. #define MCT_U232_PARITY_EVEN 0x18
  85. #define MCT_U232_PARITY_ODD 0x08
  86. #define MCT_U232_PARITY_NONE 0x00
  87. #define MCT_U232_DATA_BITS_5 0x00
  88. #define MCT_U232_DATA_BITS_6 0x01
  89. #define MCT_U232_DATA_BITS_7 0x02
  90. #define MCT_U232_DATA_BITS_8 0x03
  91. #define MCT_U232_STOP_BITS_2 0x04
  92. #define MCT_U232_STOP_BITS_1 0x00
  93. /*
  94. * Modem Control Register (MCR)
  95. */
  96. #define MCT_U232_MCR_NONE 0x8 /* Deactivate DTR and RTS */
  97. #define MCT_U232_MCR_RTS 0xa /* Activate RTS */
  98. #define MCT_U232_MCR_DTR 0x9 /* Activate DTR */
  99. /*
  100. * Modem Status Register (MSR)
  101. */
  102. #define MCT_U232_MSR_INDEX 0x0 /* data[index] */
  103. #define MCT_U232_MSR_CD 0x80 /* Current CD */
  104. #define MCT_U232_MSR_RI 0x40 /* Current RI */
  105. #define MCT_U232_MSR_DSR 0x20 /* Current DSR */
  106. #define MCT_U232_MSR_CTS 0x10 /* Current CTS */
  107. #define MCT_U232_MSR_DCD 0x08 /* Delta CD */
  108. #define MCT_U232_MSR_DRI 0x04 /* Delta RI */
  109. #define MCT_U232_MSR_DDSR 0x02 /* Delta DSR */
  110. #define MCT_U232_MSR_DCTS 0x01 /* Delta CTS */
  111. /*
  112. * Line Status Register (LSR)
  113. */
  114. #define MCT_U232_LSR_INDEX 1 /* data[index] */
  115. #define MCT_U232_LSR_ERR 0x80 /* OE | PE | FE | BI */
  116. #define MCT_U232_LSR_TEMT 0x40 /* transmit register empty */
  117. #define MCT_U232_LSR_THRE 0x20 /* transmit holding register empty */
  118. #define MCT_U232_LSR_BI 0x10 /* break indicator */
  119. #define MCT_U232_LSR_FE 0x08 /* framing error */
  120. #define MCT_U232_LSR_OE 0x02 /* overrun error */
  121. #define MCT_U232_LSR_PE 0x04 /* parity error */
  122. #define MCT_U232_LSR_OE 0x02 /* overrun error */
  123. #define MCT_U232_LSR_DR 0x01 /* receive data ready */
  124. /* -----------------------------------------------------------------------------
  125. * Technical Specification reverse engineered with SniffUSB on Windows98
  126. * =====================================================================
  127. *
  128. * The technical details of the device have been acquired be using "SniffUSB"
  129. * and the vendor-supplied device driver (version 2.3A) under Windows98. To
  130. * identify the USB vendor-specific requests and to assign them to terminal
  131. * settings (flow control, baud rate, etc.) the program "SerialSettings" from
  132. * William G. Greathouse has been proven to be very useful. I also used the
  133. * Win98 "HyperTerminal" and "usb-robot" on Linux for testing. The results and
  134. * observations are summarized below:
  135. *
  136. * The USB requests seem to be directly mapped to the registers of a 8250,
  137. * 16450 or 16550 UART. The FreeBSD handbook (appendix F.4 "Input/Output
  138. * devices") contains a comprehensive description of UARTs and its registers.
  139. * The bit descriptions are actually taken from there.
  140. *
  141. *
  142. * Baud rate (divisor)
  143. * -------------------
  144. *
  145. * BmRequestType: 0x40 (0100 0000B)
  146. * bRequest: 0x05
  147. * wValue: 0x0000
  148. * wIndex: 0x0000
  149. * wLength: 0x0004
  150. * Data: divisor = 115200 / baud_rate
  151. *
  152. * SniffUSB observations (Nov 2003): Contrary to the 'wLength' value of 4
  153. * shown above, observations with a Belkin F5U109 adapter, using the
  154. * MCT-supplied Windows98 driver (U2SPORT.VXD, "File version: 1.21P.0104 for
  155. * Win98/Me"), show this request has a length of 1 byte, presumably because
  156. * of the fact that the Belkin adapter and the 'Sitecom U232-P25' adapter
  157. * use a baud-rate code instead of a conventional RS-232 baud rate divisor.
  158. * The current source code for this driver does not reflect this fact, but
  159. * the driver works fine with this adapter/driver combination nonetheless.
  160. *
  161. *
  162. * Line Control Register (LCR)
  163. * ---------------------------
  164. *
  165. * BmRequestType: 0x40 (0100 0000B) 0xc0 (1100 0000B)
  166. * bRequest: 0x07 0x06
  167. * wValue: 0x0000
  168. * wIndex: 0x0000
  169. * wLength: 0x0001
  170. * Data: LCR (see below)
  171. *
  172. * Bit 7: Divisor Latch Access Bit (DLAB). When set, access to the data
  173. * transmit/receive register (THR/RBR) and the Interrupt Enable Register
  174. * (IER) is disabled. Any access to these ports is now redirected to the
  175. * Divisor Latch Registers. Setting this bit, loading the Divisor
  176. * Registers, and clearing DLAB should be done with interrupts disabled.
  177. * Bit 6: Set Break. When set to "1", the transmitter begins to transmit
  178. * continuous Spacing until this bit is set to "0". This overrides any
  179. * bits of characters that are being transmitted.
  180. * Bit 5: Stick Parity. When parity is enabled, setting this bit causes parity
  181. * to always be "1" or "0", based on the value of Bit 4.
  182. * Bit 4: Even Parity Select (EPS). When parity is enabled and Bit 5 is "0",
  183. * setting this bit causes even parity to be transmitted and expected.
  184. * Otherwise, odd parity is used.
  185. * Bit 3: Parity Enable (PEN). When set to "1", a parity bit is inserted
  186. * between the last bit of the data and the Stop Bit. The UART will also
  187. * expect parity to be present in the received data.
  188. * Bit 2: Number of Stop Bits (STB). If set to "1" and using 5-bit data words,
  189. * 1.5 Stop Bits are transmitted and expected in each data word. For
  190. * 6, 7 and 8-bit data words, 2 Stop Bits are transmitted and expected.
  191. * When this bit is set to "0", one Stop Bit is used on each data word.
  192. * Bit 1: Word Length Select Bit #1 (WLSB1)
  193. * Bit 0: Word Length Select Bit #0 (WLSB0)
  194. * Together these bits specify the number of bits in each data word.
  195. * 1 0 Word Length
  196. * 0 0 5 Data Bits
  197. * 0 1 6 Data Bits
  198. * 1 0 7 Data Bits
  199. * 1 1 8 Data Bits
  200. *
  201. * SniffUSB observations: Bit 7 seems not to be used. There seem to be two bugs
  202. * in the Win98 driver: the break does not work (bit 6 is not asserted) and the
  203. * stick parity bit is not cleared when set once. The LCR can also be read
  204. * back with USB request 6 but this has never been observed with SniffUSB.
  205. *
  206. *
  207. * Modem Control Register (MCR)
  208. * ----------------------------
  209. *
  210. * BmRequestType: 0x40 (0100 0000B)
  211. * bRequest: 0x0a
  212. * wValue: 0x0000
  213. * wIndex: 0x0000
  214. * wLength: 0x0001
  215. * Data: MCR (Bit 4..7, see below)
  216. *
  217. * Bit 7: Reserved, always 0.
  218. * Bit 6: Reserved, always 0.
  219. * Bit 5: Reserved, always 0.
  220. * Bit 4: Loop-Back Enable. When set to "1", the UART transmitter and receiver
  221. * are internally connected together to allow diagnostic operations. In
  222. * addition, the UART modem control outputs are connected to the UART
  223. * modem control inputs. CTS is connected to RTS, DTR is connected to
  224. * DSR, OUT1 is connected to RI, and OUT 2 is connected to DCD.
  225. * Bit 3: OUT 2. An auxiliary output that the host processor may set high or
  226. * low. In the IBM PC serial adapter (and most clones), OUT 2 is used
  227. * to tri-state (disable) the interrupt signal from the
  228. * 8250/16450/16550 UART.
  229. * Bit 2: OUT 1. An auxiliary output that the host processor may set high or
  230. * low. This output is not used on the IBM PC serial adapter.
  231. * Bit 1: Request to Send (RTS). When set to "1", the output of the UART -RTS
  232. * line is Low (Active).
  233. * Bit 0: Data Terminal Ready (DTR). When set to "1", the output of the UART
  234. * -DTR line is Low (Active).
  235. *
  236. * SniffUSB observations: Bit 2 and 4 seem not to be used but bit 3 has been
  237. * seen _always_ set.
  238. *
  239. *
  240. * Modem Status Register (MSR)
  241. * ---------------------------
  242. *
  243. * BmRequestType: 0xc0 (1100 0000B)
  244. * bRequest: 0x02
  245. * wValue: 0x0000
  246. * wIndex: 0x0000
  247. * wLength: 0x0001
  248. * Data: MSR (see below)
  249. *
  250. * Bit 7: Data Carrier Detect (CD). Reflects the state of the DCD line on the
  251. * UART.
  252. * Bit 6: Ring Indicator (RI). Reflects the state of the RI line on the UART.
  253. * Bit 5: Data Set Ready (DSR). Reflects the state of the DSR line on the UART.
  254. * Bit 4: Clear To Send (CTS). Reflects the state of the CTS line on the UART.
  255. * Bit 3: Delta Data Carrier Detect (DDCD). Set to "1" if the -DCD line has
  256. * changed state one more more times since the last time the MSR was
  257. * read by the host.
  258. * Bit 2: Trailing Edge Ring Indicator (TERI). Set to "1" if the -RI line has
  259. * had a low to high transition since the last time the MSR was read by
  260. * the host.
  261. * Bit 1: Delta Data Set Ready (DDSR). Set to "1" if the -DSR line has changed
  262. * state one more more times since the last time the MSR was read by the
  263. * host.
  264. * Bit 0: Delta Clear To Send (DCTS). Set to "1" if the -CTS line has changed
  265. * state one more times since the last time the MSR was read by the
  266. * host.
  267. *
  268. * SniffUSB observations: the MSR is also returned as first byte on the
  269. * interrupt-in endpoint 0x83 to signal changes of modem status lines. The USB
  270. * request to read MSR cannot be applied during normal device operation.
  271. *
  272. *
  273. * Line Status Register (LSR)
  274. * --------------------------
  275. *
  276. * Bit 7 Error in Receiver FIFO. On the 8250/16450 UART, this bit is zero.
  277. * This bit is set to "1" when any of the bytes in the FIFO have one
  278. * or more of the following error conditions: PE, FE, or BI.
  279. * Bit 6 Transmitter Empty (TEMT). When set to "1", there are no words
  280. * remaining in the transmit FIFO or the transmit shift register. The
  281. * transmitter is completely idle.
  282. * Bit 5 Transmitter Holding Register Empty (THRE). When set to "1", the
  283. * FIFO (or holding register) now has room for at least one additional
  284. * word to transmit. The transmitter may still be transmitting when
  285. * this bit is set to "1".
  286. * Bit 4 Break Interrupt (BI). The receiver has detected a Break signal.
  287. * Bit 3 Framing Error (FE). A Start Bit was detected but the Stop Bit did
  288. * not appear at the expected time. The received word is probably
  289. * garbled.
  290. * Bit 2 Parity Error (PE). The parity bit was incorrect for the word
  291. * received.
  292. * Bit 1 Overrun Error (OE). A new word was received and there was no room
  293. * in the receive buffer. The newly-arrived word in the shift register
  294. * is discarded. On 8250/16450 UARTs, the word in the holding register
  295. * is discarded and the newly- arrived word is put in the holding
  296. * register.
  297. * Bit 0 Data Ready (DR). One or more words are in the receive FIFO that the
  298. * host may read. A word must be completely received and moved from
  299. * the shift register into the FIFO (or holding register for
  300. * 8250/16450 designs) before this bit is set.
  301. *
  302. * SniffUSB observations: the LSR is returned as second byte on the
  303. * interrupt-in endpoint 0x83 to signal error conditions. Such errors have
  304. * been seen with minicom/zmodem transfers (CRC errors).
  305. *
  306. *
  307. * Unknown #1
  308. * -------------------
  309. *
  310. * BmRequestType: 0x40 (0100 0000B)
  311. * bRequest: 0x0b
  312. * wValue: 0x0000
  313. * wIndex: 0x0000
  314. * wLength: 0x0001
  315. * Data: 0x00
  316. *
  317. * SniffUSB observations (Nov 2003): With the MCT-supplied Windows98 driver
  318. * (U2SPORT.VXD, "File version: 1.21P.0104 for Win98/Me"), this request
  319. * occurs immediately after a "Baud rate (divisor)" message. It was not
  320. * observed at any other time. It is unclear what purpose this message
  321. * serves.
  322. *
  323. *
  324. * Unknown #2
  325. * -------------------
  326. *
  327. * BmRequestType: 0x40 (0100 0000B)
  328. * bRequest: 0x0c
  329. * wValue: 0x0000
  330. * wIndex: 0x0000
  331. * wLength: 0x0001
  332. * Data: 0x00
  333. *
  334. * SniffUSB observations (Nov 2003): With the MCT-supplied Windows98 driver
  335. * (U2SPORT.VXD, "File version: 1.21P.0104 for Win98/Me"), this request
  336. * occurs immediately after the 'Unknown #1' message (see above). It was
  337. * not observed at any other time. It is unclear what other purpose (if
  338. * any) this message might serve, but without it, the USB/RS-232 adapter
  339. * will not write to RS-232 devices which do not assert the 'CTS' signal.
  340. *
  341. *
  342. * Flow control
  343. * ------------
  344. *
  345. * SniffUSB observations: no flow control specific requests have been realized
  346. * apart from DTR/RTS settings. Both signals are dropped for no flow control
  347. * but asserted for hardware or software flow control.
  348. *
  349. *
  350. * Endpoint usage
  351. * --------------
  352. *
  353. * SniffUSB observations: the bulk-out endpoint 0x1 and interrupt-in endpoint
  354. * 0x81 is used to transmit and receive characters. The second interrupt-in
  355. * endpoint 0x83 signals exceptional conditions like modem line changes and
  356. * errors. The first byte returned is the MSR and the second byte the LSR.
  357. *
  358. *
  359. * Other observations
  360. * ------------------
  361. *
  362. * Queued bulk transfers like used in visor.c did not work.
  363. *
  364. *
  365. * Properties of the USB device used (as found in /var/log/messages)
  366. * -----------------------------------------------------------------
  367. *
  368. * Manufacturer: MCT Corporation.
  369. * Product: USB-232 Interfact Controller
  370. * SerialNumber: U2S22050
  371. *
  372. * Length = 18
  373. * DescriptorType = 01
  374. * USB version = 1.00
  375. * Vendor:Product = 0711:0210
  376. * MaxPacketSize0 = 8
  377. * NumConfigurations = 1
  378. * Device version = 1.02
  379. * Device Class:SubClass:Protocol = 00:00:00
  380. * Per-interface classes
  381. * Configuration:
  382. * bLength = 9
  383. * bDescriptorType = 02
  384. * wTotalLength = 0027
  385. * bNumInterfaces = 01
  386. * bConfigurationValue = 01
  387. * iConfiguration = 00
  388. * bmAttributes = c0
  389. * MaxPower = 100mA
  390. *
  391. * Interface: 0
  392. * Alternate Setting: 0
  393. * bLength = 9
  394. * bDescriptorType = 04
  395. * bInterfaceNumber = 00
  396. * bAlternateSetting = 00
  397. * bNumEndpoints = 03
  398. * bInterface Class:SubClass:Protocol = 00:00:00
  399. * iInterface = 00
  400. * Endpoint:
  401. * bLength = 7
  402. * bDescriptorType = 05
  403. * bEndpointAddress = 81 (in)
  404. * bmAttributes = 03 (Interrupt)
  405. * wMaxPacketSize = 0040
  406. * bInterval = 02
  407. * Endpoint:
  408. * bLength = 7
  409. * bDescriptorType = 05
  410. * bEndpointAddress = 01 (out)
  411. * bmAttributes = 02 (Bulk)
  412. * wMaxPacketSize = 0040
  413. * bInterval = 00
  414. * Endpoint:
  415. * bLength = 7
  416. * bDescriptorType = 05
  417. * bEndpointAddress = 83 (in)
  418. * bmAttributes = 03 (Interrupt)
  419. * wMaxPacketSize = 0002
  420. * bInterval = 02
  421. *
  422. *
  423. * Hardware details (added by Martin Hamilton, 2001/12/06)
  424. * -----------------------------------------------------------------
  425. *
  426. * This info was gleaned from opening a Belkin F5U109 DB9 USB serial
  427. * adaptor, which turns out to simply be a re-badged U232-P9. We
  428. * know this because there is a sticky label on the circuit board
  429. * which says "U232-P9" ;-)
  430. *
  431. * The circuit board inside the adaptor contains a Philips PDIUSBD12
  432. * USB endpoint chip and a Philips P87C52UBAA microcontroller with
  433. * embedded UART. Exhaustive documentation for these is available at:
  434. *
  435. * http://www.semiconductors.philips.com/pip/p87c52ubaa
  436. * http://www.nxp.com/acrobat_download/various/PDIUSBD12_PROGRAMMING_GUIDE.pdf
  437. *
  438. * Thanks to Julian Highfield for the pointer to the Philips database.
  439. *
  440. */
  441. #endif /* __LINUX_USB_SERIAL_MCT_U232_H */