flexcop-usb.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618
  1. /*
  2. * Linux driver for digital TV devices equipped with B2C2 FlexcopII(b)/III
  3. * flexcop-usb.c - covers the USB part
  4. * see flexcop.c for copyright information
  5. */
  6. #define FC_LOG_PREFIX "flexcop_usb"
  7. #include "flexcop-usb.h"
  8. #include "flexcop-common.h"
  9. /* Version information */
  10. #define DRIVER_VERSION "0.1"
  11. #define DRIVER_NAME "Technisat/B2C2 FlexCop II/IIb/III Digital TV USB Driver"
  12. #define DRIVER_AUTHOR "Patrick Boettcher <patrick.boettcher@posteo.de>"
  13. /* debug */
  14. #ifdef CONFIG_DVB_B2C2_FLEXCOP_DEBUG
  15. #define dprintk(level,args...) \
  16. do { if ((debug & level)) printk(args); } while (0)
  17. #define debug_dump(b, l, method) do {\
  18. int i; \
  19. for (i = 0; i < l; i++) \
  20. method("%02x ", b[i]); \
  21. method("\n"); \
  22. } while (0)
  23. #define DEBSTATUS ""
  24. #else
  25. #define dprintk(level, args...)
  26. #define debug_dump(b, l, method)
  27. #define DEBSTATUS " (debugging is not enabled)"
  28. #endif
  29. static int debug;
  30. module_param(debug, int, 0644);
  31. MODULE_PARM_DESC(debug, "set debugging level (1=info,ts=2,"
  32. "ctrl=4,i2c=8,v8mem=16 (or-able))." DEBSTATUS);
  33. #undef DEBSTATUS
  34. #define deb_info(args...) dprintk(0x01, args)
  35. #define deb_ts(args...) dprintk(0x02, args)
  36. #define deb_ctrl(args...) dprintk(0x04, args)
  37. #define deb_i2c(args...) dprintk(0x08, args)
  38. #define deb_v8(args...) dprintk(0x10, args)
  39. /* JLP 111700: we will include the 1 bit gap between the upper and lower 3 bits
  40. * in the IBI address, to make the V8 code simpler.
  41. * PCI ADDRESS FORMAT: 0x71C -> 0000 0111 0001 1100 (the six bits used)
  42. * in general: 0000 0HHH 000L LL00
  43. * IBI ADDRESS FORMAT: RHHH BLLL
  44. *
  45. * where R is the read(1)/write(0) bit, B is the busy bit
  46. * and HHH and LLL are the two sets of three bits from the PCI address.
  47. */
  48. #define B2C2_FLEX_PCIOFFSET_TO_INTERNALADDR(usPCI) (u8) \
  49. (((usPCI >> 2) & 0x07) + ((usPCI >> 4) & 0x70))
  50. #define B2C2_FLEX_INTERNALADDR_TO_PCIOFFSET(ucAddr) (u16) \
  51. (((ucAddr & 0x07) << 2) + ((ucAddr & 0x70) << 4))
  52. /*
  53. * DKT 020228
  54. * - forget about this VENDOR_BUFFER_SIZE, read and write register
  55. * deal with DWORD or 4 bytes, that should be should from now on
  56. * - from now on, we don't support anything older than firm 1.00
  57. * I eliminated the write register as a 2 trip of writing hi word and lo word
  58. * and force this to write only 4 bytes at a time.
  59. * NOTE: this should work with all the firmware from 1.00 and newer
  60. */
  61. static int flexcop_usb_readwrite_dw(struct flexcop_device *fc, u16 wRegOffsPCI, u32 *val, u8 read)
  62. {
  63. struct flexcop_usb *fc_usb = fc->bus_specific;
  64. u8 request = read ? B2C2_USB_READ_REG : B2C2_USB_WRITE_REG;
  65. u8 request_type = (read ? USB_DIR_IN : USB_DIR_OUT) | USB_TYPE_VENDOR;
  66. u8 wAddress = B2C2_FLEX_PCIOFFSET_TO_INTERNALADDR(wRegOffsPCI) |
  67. (read ? 0x80 : 0);
  68. int ret;
  69. mutex_lock(&fc_usb->data_mutex);
  70. if (!read)
  71. memcpy(fc_usb->data, val, sizeof(*val));
  72. ret = usb_control_msg(fc_usb->udev,
  73. read ? B2C2_USB_CTRL_PIPE_IN : B2C2_USB_CTRL_PIPE_OUT,
  74. request,
  75. request_type, /* 0xc0 read or 0x40 write */
  76. wAddress,
  77. 0,
  78. fc_usb->data,
  79. sizeof(u32),
  80. B2C2_WAIT_FOR_OPERATION_RDW * HZ);
  81. if (ret != sizeof(u32)) {
  82. err("error while %s dword from %d (%d).", read ? "reading" :
  83. "writing", wAddress, wRegOffsPCI);
  84. if (ret >= 0)
  85. ret = -EIO;
  86. }
  87. if (read && ret >= 0)
  88. memcpy(val, fc_usb->data, sizeof(*val));
  89. mutex_unlock(&fc_usb->data_mutex);
  90. return ret;
  91. }
  92. /*
  93. * DKT 010817 - add support for V8 memory read/write and flash update
  94. */
  95. static int flexcop_usb_v8_memory_req(struct flexcop_usb *fc_usb,
  96. flexcop_usb_request_t req, u8 page, u16 wAddress,
  97. u8 *pbBuffer, u32 buflen)
  98. {
  99. u8 request_type = USB_TYPE_VENDOR;
  100. u16 wIndex;
  101. int nWaitTime, pipe, ret;
  102. wIndex = page << 8;
  103. if (buflen > sizeof(fc_usb->data)) {
  104. err("Buffer size bigger than max URB control message\n");
  105. return -EIO;
  106. }
  107. switch (req) {
  108. case B2C2_USB_READ_V8_MEM:
  109. nWaitTime = B2C2_WAIT_FOR_OPERATION_V8READ;
  110. request_type |= USB_DIR_IN;
  111. pipe = B2C2_USB_CTRL_PIPE_IN;
  112. break;
  113. case B2C2_USB_WRITE_V8_MEM:
  114. wIndex |= pbBuffer[0];
  115. request_type |= USB_DIR_OUT;
  116. nWaitTime = B2C2_WAIT_FOR_OPERATION_V8WRITE;
  117. pipe = B2C2_USB_CTRL_PIPE_OUT;
  118. break;
  119. case B2C2_USB_FLASH_BLOCK:
  120. request_type |= USB_DIR_OUT;
  121. nWaitTime = B2C2_WAIT_FOR_OPERATION_V8FLASH;
  122. pipe = B2C2_USB_CTRL_PIPE_OUT;
  123. break;
  124. default:
  125. deb_info("unsupported request for v8_mem_req %x.\n", req);
  126. return -EINVAL;
  127. }
  128. deb_v8("v8mem: %02x %02x %04x %04x, len: %d\n", request_type, req,
  129. wAddress, wIndex, buflen);
  130. mutex_lock(&fc_usb->data_mutex);
  131. if ((request_type & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT)
  132. memcpy(fc_usb->data, pbBuffer, buflen);
  133. ret = usb_control_msg(fc_usb->udev, pipe,
  134. req,
  135. request_type,
  136. wAddress,
  137. wIndex,
  138. fc_usb->data,
  139. buflen,
  140. nWaitTime * HZ);
  141. if (ret != buflen)
  142. ret = -EIO;
  143. if (ret >= 0) {
  144. ret = 0;
  145. if ((request_type & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN)
  146. memcpy(pbBuffer, fc_usb->data, buflen);
  147. }
  148. mutex_unlock(&fc_usb->data_mutex);
  149. debug_dump(pbBuffer, ret, deb_v8);
  150. return ret;
  151. }
  152. #define bytes_left_to_read_on_page(paddr,buflen) \
  153. ((V8_MEMORY_PAGE_SIZE - (paddr & V8_MEMORY_PAGE_MASK)) > buflen \
  154. ? buflen : (V8_MEMORY_PAGE_SIZE - (paddr & V8_MEMORY_PAGE_MASK)))
  155. static int flexcop_usb_memory_req(struct flexcop_usb *fc_usb,
  156. flexcop_usb_request_t req, flexcop_usb_mem_page_t page_start,
  157. u32 addr, int extended, u8 *buf, u32 len)
  158. {
  159. int i,ret = 0;
  160. u16 wMax;
  161. u32 pagechunk = 0;
  162. switch(req) {
  163. case B2C2_USB_READ_V8_MEM:
  164. wMax = USB_MEM_READ_MAX;
  165. break;
  166. case B2C2_USB_WRITE_V8_MEM:
  167. wMax = USB_MEM_WRITE_MAX;
  168. break;
  169. case B2C2_USB_FLASH_BLOCK:
  170. wMax = USB_FLASH_MAX;
  171. break;
  172. default:
  173. return -EINVAL;
  174. break;
  175. }
  176. for (i = 0; i < len;) {
  177. pagechunk =
  178. wMax < bytes_left_to_read_on_page(addr, len) ?
  179. wMax :
  180. bytes_left_to_read_on_page(addr, len);
  181. deb_info("%x\n",
  182. (addr & V8_MEMORY_PAGE_MASK) |
  183. (V8_MEMORY_EXTENDED*extended));
  184. ret = flexcop_usb_v8_memory_req(fc_usb, req,
  185. page_start + (addr / V8_MEMORY_PAGE_SIZE),
  186. (addr & V8_MEMORY_PAGE_MASK) |
  187. (V8_MEMORY_EXTENDED*extended),
  188. &buf[i], pagechunk);
  189. if (ret < 0)
  190. return ret;
  191. addr += pagechunk;
  192. len -= pagechunk;
  193. }
  194. return 0;
  195. }
  196. static int flexcop_usb_get_mac_addr(struct flexcop_device *fc, int extended)
  197. {
  198. return flexcop_usb_memory_req(fc->bus_specific, B2C2_USB_READ_V8_MEM,
  199. V8_MEMORY_PAGE_FLASH, 0x1f010, 1,
  200. fc->dvb_adapter.proposed_mac, 6);
  201. }
  202. /* usb i2c stuff */
  203. static int flexcop_usb_i2c_req(struct flexcop_i2c_adapter *i2c,
  204. flexcop_usb_request_t req, flexcop_usb_i2c_function_t func,
  205. u8 chipaddr, u8 addr, u8 *buf, u8 buflen)
  206. {
  207. struct flexcop_usb *fc_usb = i2c->fc->bus_specific;
  208. u16 wValue, wIndex;
  209. int nWaitTime, pipe, ret;
  210. u8 request_type = USB_TYPE_VENDOR;
  211. if (buflen > sizeof(fc_usb->data)) {
  212. err("Buffer size bigger than max URB control message\n");
  213. return -EIO;
  214. }
  215. switch (func) {
  216. case USB_FUNC_I2C_WRITE:
  217. case USB_FUNC_I2C_MULTIWRITE:
  218. case USB_FUNC_I2C_REPEATWRITE:
  219. /* DKT 020208 - add this to support special case of DiSEqC */
  220. case USB_FUNC_I2C_CHECKWRITE:
  221. pipe = B2C2_USB_CTRL_PIPE_OUT;
  222. nWaitTime = 2;
  223. request_type |= USB_DIR_OUT;
  224. break;
  225. case USB_FUNC_I2C_READ:
  226. case USB_FUNC_I2C_REPEATREAD:
  227. pipe = B2C2_USB_CTRL_PIPE_IN;
  228. nWaitTime = 2;
  229. request_type |= USB_DIR_IN;
  230. break;
  231. default:
  232. deb_info("unsupported function for i2c_req %x\n", func);
  233. return -EINVAL;
  234. }
  235. wValue = (func << 8) | (i2c->port << 4);
  236. wIndex = (chipaddr << 8 ) | addr;
  237. deb_i2c("i2c %2d: %02x %02x %02x %02x %02x %02x\n",
  238. func, request_type, req,
  239. wValue & 0xff, wValue >> 8,
  240. wIndex & 0xff, wIndex >> 8);
  241. mutex_lock(&fc_usb->data_mutex);
  242. if ((request_type & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT)
  243. memcpy(fc_usb->data, buf, buflen);
  244. ret = usb_control_msg(fc_usb->udev, pipe,
  245. req,
  246. request_type,
  247. wValue,
  248. wIndex,
  249. fc_usb->data,
  250. buflen,
  251. nWaitTime * HZ);
  252. if (ret != buflen)
  253. ret = -EIO;
  254. if (ret >= 0) {
  255. ret = 0;
  256. if ((request_type & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN)
  257. memcpy(buf, fc_usb->data, buflen);
  258. }
  259. mutex_unlock(&fc_usb->data_mutex);
  260. return 0;
  261. }
  262. /* actual bus specific access functions,
  263. make sure prototype are/will be equal to pci */
  264. static flexcop_ibi_value flexcop_usb_read_ibi_reg(struct flexcop_device *fc,
  265. flexcop_ibi_register reg)
  266. {
  267. flexcop_ibi_value val;
  268. val.raw = 0;
  269. flexcop_usb_readwrite_dw(fc, reg, &val.raw, 1);
  270. return val;
  271. }
  272. static int flexcop_usb_write_ibi_reg(struct flexcop_device *fc,
  273. flexcop_ibi_register reg, flexcop_ibi_value val)
  274. {
  275. return flexcop_usb_readwrite_dw(fc, reg, &val.raw, 0);
  276. }
  277. static int flexcop_usb_i2c_request(struct flexcop_i2c_adapter *i2c,
  278. flexcop_access_op_t op, u8 chipaddr, u8 addr, u8 *buf, u16 len)
  279. {
  280. if (op == FC_READ)
  281. return flexcop_usb_i2c_req(i2c, B2C2_USB_I2C_REQUEST,
  282. USB_FUNC_I2C_READ, chipaddr, addr, buf, len);
  283. else
  284. return flexcop_usb_i2c_req(i2c, B2C2_USB_I2C_REQUEST,
  285. USB_FUNC_I2C_WRITE, chipaddr, addr, buf, len);
  286. }
  287. static void flexcop_usb_process_frame(struct flexcop_usb *fc_usb,
  288. u8 *buffer, int buffer_length)
  289. {
  290. u8 *b;
  291. int l;
  292. deb_ts("tmp_buffer_length=%d, buffer_length=%d\n",
  293. fc_usb->tmp_buffer_length, buffer_length);
  294. if (fc_usb->tmp_buffer_length > 0) {
  295. memcpy(fc_usb->tmp_buffer+fc_usb->tmp_buffer_length, buffer,
  296. buffer_length);
  297. fc_usb->tmp_buffer_length += buffer_length;
  298. b = fc_usb->tmp_buffer;
  299. l = fc_usb->tmp_buffer_length;
  300. } else {
  301. b=buffer;
  302. l=buffer_length;
  303. }
  304. while (l >= 190) {
  305. if (*b == 0xff) {
  306. switch (*(b+1) & 0x03) {
  307. case 0x01: /* media packet */
  308. if (*(b+2) == 0x47)
  309. flexcop_pass_dmx_packets(
  310. fc_usb->fc_dev, b+2, 1);
  311. else
  312. deb_ts("not ts packet %*ph\n", 4, b+2);
  313. b += 190;
  314. l -= 190;
  315. break;
  316. default:
  317. deb_ts("wrong packet type\n");
  318. l = 0;
  319. break;
  320. }
  321. } else {
  322. deb_ts("wrong header\n");
  323. l = 0;
  324. }
  325. }
  326. if (l>0)
  327. memcpy(fc_usb->tmp_buffer, b, l);
  328. fc_usb->tmp_buffer_length = l;
  329. }
  330. static void flexcop_usb_urb_complete(struct urb *urb)
  331. {
  332. struct flexcop_usb *fc_usb = urb->context;
  333. int i;
  334. if (urb->actual_length > 0)
  335. deb_ts("urb completed, bufsize: %d actlen; %d\n",
  336. urb->transfer_buffer_length, urb->actual_length);
  337. for (i = 0; i < urb->number_of_packets; i++) {
  338. if (urb->iso_frame_desc[i].status < 0) {
  339. err("iso frame descriptor %d has an error: %d\n", i,
  340. urb->iso_frame_desc[i].status);
  341. } else
  342. if (urb->iso_frame_desc[i].actual_length > 0) {
  343. deb_ts("passed %d bytes to the demux\n",
  344. urb->iso_frame_desc[i].actual_length);
  345. flexcop_usb_process_frame(fc_usb,
  346. urb->transfer_buffer +
  347. urb->iso_frame_desc[i].offset,
  348. urb->iso_frame_desc[i].actual_length);
  349. }
  350. urb->iso_frame_desc[i].status = 0;
  351. urb->iso_frame_desc[i].actual_length = 0;
  352. }
  353. usb_submit_urb(urb,GFP_ATOMIC);
  354. }
  355. static int flexcop_usb_stream_control(struct flexcop_device *fc, int onoff)
  356. {
  357. /* submit/kill iso packets */
  358. return 0;
  359. }
  360. static void flexcop_usb_transfer_exit(struct flexcop_usb *fc_usb)
  361. {
  362. int i;
  363. for (i = 0; i < B2C2_USB_NUM_ISO_URB; i++)
  364. if (fc_usb->iso_urb[i] != NULL) {
  365. deb_ts("unlinking/killing urb no. %d\n",i);
  366. usb_kill_urb(fc_usb->iso_urb[i]);
  367. usb_free_urb(fc_usb->iso_urb[i]);
  368. }
  369. if (fc_usb->iso_buffer != NULL)
  370. usb_free_coherent(fc_usb->udev,
  371. fc_usb->buffer_size, fc_usb->iso_buffer,
  372. fc_usb->dma_addr);
  373. }
  374. static int flexcop_usb_transfer_init(struct flexcop_usb *fc_usb)
  375. {
  376. u16 frame_size = le16_to_cpu(
  377. fc_usb->uintf->cur_altsetting->endpoint[0].desc.wMaxPacketSize);
  378. int bufsize = B2C2_USB_NUM_ISO_URB * B2C2_USB_FRAMES_PER_ISO *
  379. frame_size, i, j, ret;
  380. int buffer_offset = 0;
  381. deb_ts("creating %d iso-urbs with %d frames "
  382. "each of %d bytes size = %d.\n", B2C2_USB_NUM_ISO_URB,
  383. B2C2_USB_FRAMES_PER_ISO, frame_size, bufsize);
  384. fc_usb->iso_buffer = usb_alloc_coherent(fc_usb->udev,
  385. bufsize, GFP_KERNEL, &fc_usb->dma_addr);
  386. if (fc_usb->iso_buffer == NULL)
  387. return -ENOMEM;
  388. memset(fc_usb->iso_buffer, 0, bufsize);
  389. fc_usb->buffer_size = bufsize;
  390. /* creating iso urbs */
  391. for (i = 0; i < B2C2_USB_NUM_ISO_URB; i++) {
  392. fc_usb->iso_urb[i] = usb_alloc_urb(B2C2_USB_FRAMES_PER_ISO,
  393. GFP_ATOMIC);
  394. if (fc_usb->iso_urb[i] == NULL) {
  395. ret = -ENOMEM;
  396. goto urb_error;
  397. }
  398. }
  399. /* initialising and submitting iso urbs */
  400. for (i = 0; i < B2C2_USB_NUM_ISO_URB; i++) {
  401. int frame_offset = 0;
  402. struct urb *urb = fc_usb->iso_urb[i];
  403. deb_ts("initializing and submitting urb no. %d "
  404. "(buf_offset: %d).\n", i, buffer_offset);
  405. urb->dev = fc_usb->udev;
  406. urb->context = fc_usb;
  407. urb->complete = flexcop_usb_urb_complete;
  408. urb->pipe = B2C2_USB_DATA_PIPE;
  409. urb->transfer_flags = URB_ISO_ASAP;
  410. urb->interval = 1;
  411. urb->number_of_packets = B2C2_USB_FRAMES_PER_ISO;
  412. urb->transfer_buffer_length = frame_size * B2C2_USB_FRAMES_PER_ISO;
  413. urb->transfer_buffer = fc_usb->iso_buffer + buffer_offset;
  414. buffer_offset += frame_size * B2C2_USB_FRAMES_PER_ISO;
  415. for (j = 0; j < B2C2_USB_FRAMES_PER_ISO; j++) {
  416. deb_ts("urb no: %d, frame: %d, frame_offset: %d\n",
  417. i, j, frame_offset);
  418. urb->iso_frame_desc[j].offset = frame_offset;
  419. urb->iso_frame_desc[j].length = frame_size;
  420. frame_offset += frame_size;
  421. }
  422. if ((ret = usb_submit_urb(fc_usb->iso_urb[i],GFP_ATOMIC))) {
  423. err("submitting urb %d failed with %d.", i, ret);
  424. goto urb_error;
  425. }
  426. deb_ts("submitted urb no. %d.\n",i);
  427. }
  428. /* SRAM */
  429. flexcop_sram_set_dest(fc_usb->fc_dev, FC_SRAM_DEST_MEDIA |
  430. FC_SRAM_DEST_NET | FC_SRAM_DEST_CAO | FC_SRAM_DEST_CAI,
  431. FC_SRAM_DEST_TARGET_WAN_USB);
  432. flexcop_wan_set_speed(fc_usb->fc_dev, FC_WAN_SPEED_8MBITS);
  433. flexcop_sram_ctrl(fc_usb->fc_dev, 1, 1, 1);
  434. return 0;
  435. urb_error:
  436. flexcop_usb_transfer_exit(fc_usb);
  437. return ret;
  438. }
  439. static int flexcop_usb_init(struct flexcop_usb *fc_usb)
  440. {
  441. /* use the alternate setting with the larges buffer */
  442. usb_set_interface(fc_usb->udev,0,1);
  443. switch (fc_usb->udev->speed) {
  444. case USB_SPEED_LOW:
  445. err("cannot handle USB speed because it is too slow.");
  446. return -ENODEV;
  447. break;
  448. case USB_SPEED_FULL:
  449. info("running at FULL speed.");
  450. break;
  451. case USB_SPEED_HIGH:
  452. info("running at HIGH speed.");
  453. break;
  454. case USB_SPEED_UNKNOWN: /* fall through */
  455. default:
  456. err("cannot handle USB speed because it is unknown.");
  457. return -ENODEV;
  458. }
  459. usb_set_intfdata(fc_usb->uintf, fc_usb);
  460. return 0;
  461. }
  462. static void flexcop_usb_exit(struct flexcop_usb *fc_usb)
  463. {
  464. usb_set_intfdata(fc_usb->uintf, NULL);
  465. }
  466. static int flexcop_usb_probe(struct usb_interface *intf,
  467. const struct usb_device_id *id)
  468. {
  469. struct usb_device *udev = interface_to_usbdev(intf);
  470. struct flexcop_usb *fc_usb = NULL;
  471. struct flexcop_device *fc = NULL;
  472. int ret;
  473. if ((fc = flexcop_device_kmalloc(sizeof(struct flexcop_usb))) == NULL) {
  474. err("out of memory\n");
  475. return -ENOMEM;
  476. }
  477. /* general flexcop init */
  478. fc_usb = fc->bus_specific;
  479. fc_usb->fc_dev = fc;
  480. mutex_init(&fc_usb->data_mutex);
  481. fc->read_ibi_reg = flexcop_usb_read_ibi_reg;
  482. fc->write_ibi_reg = flexcop_usb_write_ibi_reg;
  483. fc->i2c_request = flexcop_usb_i2c_request;
  484. fc->get_mac_addr = flexcop_usb_get_mac_addr;
  485. fc->stream_control = flexcop_usb_stream_control;
  486. fc->pid_filtering = 1;
  487. fc->bus_type = FC_USB;
  488. fc->dev = &udev->dev;
  489. fc->owner = THIS_MODULE;
  490. /* bus specific part */
  491. fc_usb->udev = udev;
  492. fc_usb->uintf = intf;
  493. if ((ret = flexcop_usb_init(fc_usb)) != 0)
  494. goto err_kfree;
  495. /* init flexcop */
  496. if ((ret = flexcop_device_initialize(fc)) != 0)
  497. goto err_usb_exit;
  498. /* xfer init */
  499. if ((ret = flexcop_usb_transfer_init(fc_usb)) != 0)
  500. goto err_fc_exit;
  501. info("%s successfully initialized and connected.", DRIVER_NAME);
  502. return 0;
  503. err_fc_exit:
  504. flexcop_device_exit(fc);
  505. err_usb_exit:
  506. flexcop_usb_exit(fc_usb);
  507. err_kfree:
  508. flexcop_device_kfree(fc);
  509. return ret;
  510. }
  511. static void flexcop_usb_disconnect(struct usb_interface *intf)
  512. {
  513. struct flexcop_usb *fc_usb = usb_get_intfdata(intf);
  514. flexcop_usb_transfer_exit(fc_usb);
  515. flexcop_device_exit(fc_usb->fc_dev);
  516. flexcop_usb_exit(fc_usb);
  517. flexcop_device_kfree(fc_usb->fc_dev);
  518. info("%s successfully deinitialized and disconnected.", DRIVER_NAME);
  519. }
  520. static struct usb_device_id flexcop_usb_table [] = {
  521. { USB_DEVICE(0x0af7, 0x0101) },
  522. { }
  523. };
  524. MODULE_DEVICE_TABLE (usb, flexcop_usb_table);
  525. /* usb specific object needed to register this driver with the usb subsystem */
  526. static struct usb_driver flexcop_usb_driver = {
  527. .name = "b2c2_flexcop_usb",
  528. .probe = flexcop_usb_probe,
  529. .disconnect = flexcop_usb_disconnect,
  530. .id_table = flexcop_usb_table,
  531. };
  532. module_usb_driver(flexcop_usb_driver);
  533. MODULE_AUTHOR(DRIVER_AUTHOR);
  534. MODULE_DESCRIPTION(DRIVER_NAME);
  535. MODULE_LICENSE("GPL");