mct_u232.h 19 KB

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