X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=blobdiff_plain;f=src%2Fftdi.c;h=782bd0f2d567c1a6b9351f775f15ef121a743b72;hp=895f9e1c1ad3ab98f27792da5cb0a579b2e82b22;hb=8a987aa2e1335d9ef3ebbdf496a7b071317b40a3;hpb=56ac0383edadfa388c3af9df52f3b4c140560527 diff --git a/src/ftdi.c b/src/ftdi.c index 895f9e1..782bd0f 100644 --- a/src/ftdi.c +++ b/src/ftdi.c @@ -2,7 +2,7 @@ ftdi.c - description ------------------- begin : Fri Apr 4 2003 - copyright : (C) 2003-2010 by Intra2net AG + copyright : (C) 2003-2011 by Intra2net AG and the libftdi developers email : opensource@intra2net.com ***************************************************************************/ @@ -95,10 +95,7 @@ int ftdi_init(struct ftdi_context *ftdi) ftdi->writebuffer_chunksize = 4096; ftdi->max_packet_size = 0; - ftdi->interface = 0; - ftdi->index = 0; - ftdi->in_ep = 0x02; - ftdi->out_ep = 0x81; + ftdi_set_interface(ftdi, INTERFACE_ANY); ftdi->bitbang_mode = 1; /* when bitbang is enabled this holds the number of the mode */ ftdi->error_str = NULL; @@ -154,7 +151,10 @@ int ftdi_set_interface(struct ftdi_context *ftdi, enum ftdi_interface interface) { case INTERFACE_ANY: case INTERFACE_A: - /* ftdi_usb_open_desc cares to set the right index, depending on the found chip */ + ftdi->interface = 0; + ftdi->index = INTERFACE_A; + ftdi->in_ep = 0x02; + ftdi->out_ep = 0x81; break; case INTERFACE_B: ftdi->interface = 1; @@ -557,19 +557,6 @@ int ftdi_usb_open_dev(struct ftdi_context *ftdi, libusb_device *dev) else if (desc.bcdDevice == 0x800) ftdi->type = TYPE_4232H; - // Set default interface on dual/quad type chips - switch (ftdi->type) - { - case TYPE_2232C: - case TYPE_2232H: - case TYPE_4232H: - if (!ftdi->index) - ftdi->index = INTERFACE_A; - break; - default: - break; - } - // Determine maximum packet size ftdi->max_packet_size = _ftdi_determine_max_packet_size(ftdi, dev); @@ -1389,19 +1376,22 @@ static void ftdi_write_data_cb(struct libusb_transfer *transfer) struct ftdi_transfer_control *ftdi_write_data_submit(struct ftdi_context *ftdi, unsigned char *buf, int size) { struct ftdi_transfer_control *tc; - struct libusb_transfer *transfer = libusb_alloc_transfer(0); + struct libusb_transfer *transfer; int write_size, ret; if (ftdi == NULL || ftdi->usb_dev == NULL) - { - libusb_free_transfer(transfer); return NULL; - } tc = (struct ftdi_transfer_control *) malloc (sizeof (*tc)); + if (!tc) + return NULL; - if (!tc || !transfer) + transfer = libusb_alloc_transfer(0); + if (!transfer) + { + free(tc); return NULL; + } tc->ftdi = ftdi; tc->completed = 0; @@ -1423,8 +1413,7 @@ struct ftdi_transfer_control *ftdi_write_data_submit(struct ftdi_context *ftdi, if (ret < 0) { libusb_free_transfer(transfer); - tc->completed = 1; - tc->transfer = NULL; + free(tc); return NULL; } tc->transfer = transfer; @@ -2269,10 +2258,10 @@ int ftdi_eeprom_initdefaults(struct ftdi_context *ftdi, char * manufacturer, \retval >=0: size of eeprom user area in bytes \retval -1: eeprom size (128 bytes) exceeded by custom strings - \retval -2: Invalid eeprom pointer - \retval -3: Invalid cbus function setting - \retval -4: Chip doesn't support invert - \retval -5: Chip doesn't support high current drive + \retval -2: Invalid eeprom or ftdi pointer + \retval -3: Invalid cbus function setting (FIXME: Not in the code?) + \retval -4: Chip doesn't support invert (FIXME: Not in the code?) + \retval -5: Chip doesn't support high current drive (FIXME: Not in the code?) \retval -6: No connected EEPROM or EEPROM Type unknown */ int ftdi_eeprom_build(struct ftdi_context *ftdi) @@ -2293,7 +2282,7 @@ int ftdi_eeprom_build(struct ftdi_context *ftdi) output = eeprom->buf; if (eeprom->chip == -1) - ftdi_error_return(-5,"No connected EEPROM or EEPROM type unknown"); + ftdi_error_return(-6,"No connected EEPROM or EEPROM type unknown"); if ((eeprom->chip == 0x56) || (eeprom->chip == 0x66)) eeprom->size = 0x100; @@ -2324,6 +2313,9 @@ int ftdi_eeprom_build(struct ftdi_context *ftdi) case TYPE_4232H: user_area_size = 86; break; + default: + user_area_size = 0; + break; } user_area_size -= (manufacturer_size + product_size + serial_size) * 2; @@ -2952,7 +2944,6 @@ int ftdi_eeprom_decode(struct ftdi_context *ftdi, int verbose) "IOMODE","BB_WR","BB_RD" }; char *cbus_BB[] = {"RXF","TXE","RD", "WR"}; - int i; if (eeprom->invert) { @@ -2969,8 +2960,15 @@ int ftdi_eeprom_decode(struct ftdi_context *ftdi, int verbose) fprintf(stdout,"C%d Function: %s\n", i, cbus_mux[eeprom->cbus_function[i]]); else + { + /* FIXME for Uwe: This results in an access above array bounds. + Also I couldn't find documentation about this mode. fprintf(stdout,"C%d BB Function: %s\n", i, cbus_BB[i]); + */ + fprintf(stdout, "Unknown CBUS mode. Might be special mode?\n"); + (void)cbus_BB; + } } } } @@ -2980,12 +2978,12 @@ int ftdi_eeprom_decode(struct ftdi_context *ftdi, int verbose) /** Get a value from the decoded EEPROM structure - \\param ftdi pointer to ftdi_context - \\param value_name Enum of the value to query - \\param Pointer to store read value + \param ftdi pointer to ftdi_context + \param value_name Enum of the value to query + \param value Pointer to store read value - \\retval 0: all fine - \\retval -1: Value doesn't exist + \retval 0: all fine + \retval -1: Value doesn't exist */ int ftdi_get_eeprom_value(struct ftdi_context *ftdi, enum ftdi_eeprom_value value_name, int* value) { @@ -3115,13 +3113,13 @@ int ftdi_get_eeprom_value(struct ftdi_context *ftdi, enum ftdi_eeprom_value valu Set a value in the decoded EEPROM Structure No parameter checking is performed - \\param ftdi pointer to ftdi_context - \\param value_name Enum of the value to query - \\param Value to set + \param ftdi pointer to ftdi_context + \param value_name Enum of the value to query + \param value to set - \\retval 0: all fine - \\retval -1: Value doesn't exist - \\retval -2: Value not user settable + \retval 0: all fine + \retval -1: Value doesn't exist + \retval -2: Value not user settable */ int ftdi_set_eeprom_value(struct ftdi_context *ftdi, enum ftdi_eeprom_value value_name, int value) { @@ -3249,7 +3247,7 @@ int ftdi_set_eeprom_value(struct ftdi_context *ftdi, enum ftdi_eeprom_value valu /** Get the read-only buffer to the binary EEPROM content \param ftdi pointer to ftdi_context - \param ftdi buffer to receive EEPROM content + \param buf buffer to receive EEPROM content \param size Size of receiving buffer \retval 0: All fine