⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 keyspan.c

📁 这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自测试~但就算用来做参考资料也是非常好的
💻 C
📖 第 1 页 / 共 4 页
字号:
	}		/* Select firmware image on the basis of idProduct */	switch (serial->dev->descriptor.idProduct) {	case keyspan_usa28_pre_product_id:		record = &keyspan_usa28_firmware[0];		fw_name = "USA28";		break;	case keyspan_usa28x_pre_product_id:		record = &keyspan_usa28x_firmware[0];		fw_name = "USA28X";		break;	case keyspan_usa28xa_pre_product_id:		record = &keyspan_usa28xa_firmware[0];		fw_name = "USA28XA";		break;	case keyspan_usa28xb_pre_product_id:		record = &keyspan_usa28xb_firmware[0];		fw_name = "USA28XB";		break;	case keyspan_usa19_pre_product_id:		record = &keyspan_usa19_firmware[0];		fw_name = "USA19";		break;			     	case keyspan_usa19qi_pre_product_id:		record = &keyspan_usa19qi_firmware[0];		fw_name = "USA19QI";		break;			     	case keyspan_usa19qw_pre_product_id:		record = &keyspan_usa19qw_firmware[0];		fw_name = "USA19QI";		break;			     	case keyspan_usa18x_pre_product_id:		record = &keyspan_usa18x_firmware[0];		fw_name = "USA18X";		break;			     	case keyspan_usa19w_pre_product_id:		record = &keyspan_usa19w_firmware[0];		fw_name = "USA19W";		break;			case keyspan_usa49w_pre_product_id:		record = &keyspan_usa49w_firmware[0];		fw_name = "USA49W";		break;	default:		record = NULL;		fw_name = "Unknown";		break;	}	if (record == NULL) {		err("Required keyspan firmware image (%s) unavailable.", fw_name);		return(1);	}	dbg("Uploading Keyspan %s firmware.", fw_name);		/* download the firmware image */	response = ezusb_set_reset(serial, 1);	while(record->address != 0xffff) {		response = ezusb_writememory(serial, record->address,					     (unsigned char *)record->data,					     record->data_size, 0xa0);		if (response < 0) {			err("ezusb_writememory failed for Keyspan"			    "firmware (%d %04X %p %d)",			    response, 			    record->address, record->data, record->data_size);			break;		}		record++;	}		/* bring device out of reset. Renumeration will occur in a		   moment and the new device will bind to the real driver */	response = ezusb_set_reset(serial, 0);	/* we don't want this device to have a driver assigned to it. */	return (1);}/* Helper functions used by keyspan_setup_urbs */static struct urb *keyspan_setup_urb (struct usb_serial *serial, int endpoint,				      int dir, void *ctx, char *buf, int len,				      void (*callback)(struct urb *)){	struct urb *urb;	if (endpoint == -1)		return NULL;		/* endpoint not needed */	dbg ("%s - alloc for endpoint %d.", __FUNCTION__, endpoint);	urb = usb_alloc_urb(0);		/* No ISO */	if (urb == NULL) {		dbg ("%s - alloc for endpoint %d failed.", __FUNCTION__, endpoint);		return NULL;	}		/* Fill URB using supplied data. */	FILL_BULK_URB(urb, serial->dev,		      usb_sndbulkpipe(serial->dev, endpoint) | dir,		      buf, len, callback, ctx);	return urb;}static struct callbacks {	void	(*instat_callback)(struct urb *);	void	(*glocont_callback)(struct urb *);	void	(*indat_callback)(struct urb *);	void	(*outdat_callback)(struct urb *);	void	(*inack_callback)(struct urb *);	void	(*outcont_callback)(struct urb *);} keyspan_callbacks[] = {	{		/* msg_usa26 callbacks */		.instat_callback =	usa26_instat_callback,		.glocont_callback =	usa26_glocont_callback,		.indat_callback =	usa26_indat_callback,		.outdat_callback =	usa2x_outdat_callback,		.inack_callback =	usa26_inack_callback,		.outcont_callback =	usa26_outcont_callback,	}, {		/* msg_usa28 callbacks */		.instat_callback =	usa28_instat_callback,		.glocont_callback =	usa28_glocont_callback,		.indat_callback =	usa28_indat_callback,		.outdat_callback =	usa2x_outdat_callback,		.inack_callback =	usa28_inack_callback,		.outcont_callback =	usa28_outcont_callback,	}, {		/* msg_usa49 callbacks */		.instat_callback =	usa49_instat_callback,		.glocont_callback =	usa49_glocont_callback,		.indat_callback =	usa49_indat_callback,		.outdat_callback =	usa2x_outdat_callback,		.inack_callback =	usa49_inack_callback,		.outcont_callback =	usa49_outcont_callback,	}};	/* Generic setup urbs function that uses	   data in device_details */static void keyspan_setup_urbs(struct usb_serial *serial){	int				i, j;	struct keyspan_serial_private 	*s_priv;	const struct keyspan_device_details	*d_details;	struct usb_serial_port		*port;	struct keyspan_port_private	*p_priv;	struct callbacks		*cback;	int				endp;	dbg ("%s", __FUNCTION__);	s_priv = (struct keyspan_serial_private *)(serial->private);	d_details = s_priv->device_details;		/* Setup values for the various callback routines */	cback = &keyspan_callbacks[d_details->msg_format];		/* Allocate and set up urbs for each one that is in use, 		   starting with instat endpoints */	s_priv->instat_urb = keyspan_setup_urb		(serial, d_details->instat_endpoint, USB_DIR_IN,		 serial, s_priv->instat_buf, INSTAT_BUFLEN,		 cback->instat_callback);	s_priv->glocont_urb = keyspan_setup_urb		(serial, d_details->glocont_endpoint, USB_DIR_OUT,		 serial, s_priv->glocont_buf, GLOCONT_BUFLEN,		 cback->glocont_callback);		/* Setup endpoints for each port specific thing */	for (i = 0; i < d_details->num_ports; i ++) {		port = &serial->port[i];		p_priv = (struct keyspan_port_private *)(port->private);		/* Do indat endpoints first, once for each flip */		endp = d_details->indat_endpoints[i];		for (j = 0; j <= d_details->indat_endp_flip; ++j, ++endp) {			p_priv->in_urbs[j] = keyspan_setup_urb				(serial, endp, USB_DIR_IN, port,				 p_priv->in_buffer[j], 64,				 cback->indat_callback);		}		for (; j < 2; ++j)			p_priv->in_urbs[j] = NULL;		/* outdat endpoints also have flip */		endp = d_details->outdat_endpoints[i];		for (j = 0; j <= d_details->outdat_endp_flip; ++j, ++endp) {			p_priv->out_urbs[j] = keyspan_setup_urb				(serial, endp, USB_DIR_OUT, port,				 p_priv->out_buffer[j], 64,				 cback->outdat_callback);		}		for (; j < 2; ++j)			p_priv->out_urbs[j] = NULL;		/* inack endpoint */		p_priv->inack_urb = keyspan_setup_urb			(serial, d_details->inack_endpoints[i], USB_DIR_IN,			 port, p_priv->inack_buffer, 1, cback->inack_callback);		/* outcont endpoint */		p_priv->outcont_urb = keyspan_setup_urb			(serial, d_details->outcont_endpoints[i], USB_DIR_OUT,			 port, p_priv->outcont_buffer, 64,			 cback->outcont_callback);	}	}/* usa19 function doesn't require prescaler */static int keyspan_usa19_calc_baud(u32 baud_rate, u32 baudclk, u8 *rate_hi,				   u8 *rate_low, u8 *prescaler, int portnum){	u32 	b16,	/* baud rate times 16 (actual rate used internally) */		div,	/* divisor */			cnt;	/* inverse of divisor (programmed into 8051) */			dbg ("%s - %d.", __FUNCTION__, baud_rate);		/* prevent divide by zero...  */	if( (b16 = (baud_rate * 16L)) == 0) {		return (KEYSPAN_INVALID_BAUD_RATE);	}		/* Any "standard" rate over 57k6 is marginal on the USA-19		   as we run out of divisor resolution. */	if (baud_rate > 57600) {		return (KEYSPAN_INVALID_BAUD_RATE);	}		/* calculate the divisor and the counter (its inverse) */	if( (div = (baudclk / b16)) == 0) {		return (KEYSPAN_INVALID_BAUD_RATE);	}	else {		cnt = 0 - div;	}	if(div > 0xffff) {		return (KEYSPAN_INVALID_BAUD_RATE);	}		/* return the counter values if non-null */	if (rate_low) {		*rate_low = (u8) (cnt & 0xff);	}	if (rate_hi) {		*rate_hi = (u8) ((cnt >> 8) & 0xff);	}	if (rate_low && rate_hi) {		dbg ("%s - %d %02x %02x.", __FUNCTION__, baud_rate, *rate_hi, *rate_low);	}		return (KEYSPAN_BAUD_RATE_OK);}static int keyspan_usa19w_calc_baud(u32 baud_rate, u32 baudclk, u8 *rate_hi,				    u8 *rate_low, u8 *prescaler, int portnum){	u32 	b16,	/* baud rate times 16 (actual rate used internally) */		clk,	/* clock with 13/8 prescaler */		div,	/* divisor using 13/8 prescaler */			res,	/* resulting baud rate using 13/8 prescaler */		diff,	/* error using 13/8 prescaler */		smallest_diff;	u8	best_prescaler;	int	i;	dbg ("%s - %d.", __FUNCTION__, baud_rate);		/* prevent divide by zero */	if( (b16 = baud_rate * 16L) == 0) {		return (KEYSPAN_INVALID_BAUD_RATE);	}		/* Calculate prescaler by trying them all and looking		   for best fit */				/* start with largest possible difference */	smallest_diff = 0xffffffff;		/* 0 is an invalid prescaler, used as a flag */	best_prescaler = 0;	for(i = 8; i <= 0xff; ++i) {		clk = (baudclk * 8) / (u32) i;				if( (div = clk / b16) == 0) {			continue;		}		res = clk / div;		diff= (res > b16) ? (res-b16) : (b16-res);		if(diff < smallest_diff) {			best_prescaler = i;			smallest_diff = diff;		}	}	if(best_prescaler == 0) {		return (KEYSPAN_INVALID_BAUD_RATE);	}	clk = (baudclk * 8) / (u32) best_prescaler;	div = clk / b16;		/* return the divisor and prescaler if non-null */	if (rate_low) {		*rate_low = (u8) (div & 0xff);	}	if (rate_hi) {		*rate_hi = (u8) ((div >> 8) & 0xff);	}	if (prescaler) {		*prescaler = best_prescaler;		/*  dbg("%s - %d %d", __FUNCTION__, *prescaler, div); */	}	return (KEYSPAN_BAUD_RATE_OK);}	/* USA-28 supports different maximum baud rates on each port */static int keyspan_usa28_calc_baud(u32 baud_rate, u32 baudclk, u8 *rate_hi,				    u8 *rate_low, u8 *prescaler, int portnum){	u32 	b16,	/* baud rate times 16 (actual rate used internally) */		div,	/* divisor */			cnt;	/* inverse of divisor (programmed into 8051) */	dbg ("%s - %d.", __FUNCTION__, baud_rate);		/* prevent divide by zero */	if ((b16 = baud_rate * 16L) == 0)		return (KEYSPAN_INVALID_BAUD_RATE);		/* calculate the divisor and the counter (its inverse) */	if ((div = (KEYSPAN_USA28_BAUDCLK / b16)) == 0) {		return (KEYSPAN_INVALID_BAUD_RATE);	}	else {		cnt = 0 - div;	}		/* check for out of range, based on portnum, 		   and return result */	if(portnum == 0) {		if(div > 0xffff)			return (KEYSPAN_INVALID_BAUD_RATE);	}	else {		if(portnum == 1) {			if(div > 0xff) {				return (KEYSPAN_INVALID_BAUD_RATE);			}		}		else {			return (KEYSPAN_INVALID_BAUD_RATE);		}	}		/* return the counter values if not NULL		   (port 1 will ignore retHi) */	if (rate_low) {		*rate_low = (u8) (cnt & 0xff);	}	if (rate_hi) {		*rate_hi = (u8) ((cnt >> 8) & 0xff);	}	dbg ("%s - %d OK.", __FUNCTION__, baud_rate);	return (KEYSPAN_BAUD_RATE_OK);}static int keyspan_usa26_send_setup(struct usb_serial *serial,				    struct usb_serial_port *port,				    int reset_port){	struct keyspan_usa26_portControlMessage	msg;			struct keyspan_serial_private 		*s_priv;	struct keyspan_port_private 		*p_priv;	const struct keyspan_device_details	*d_details;	int 					outcont_urb;	struct urb				*this_urb;	int 					device_port, err;	dbg ("%s reset=%d", __FUNCTION__, reset_port); 	s_priv = (struct keyspan_serial_private *)(serial->private);	p_priv = (struct keyspan_port_private *)(port->private);	d_details = s_priv->device_details;	device_port = port->number - port->serial->minor;	outcont_urb = d_details->outcont_endpoints[port->number];	this_urb = p_priv->outcont_urb;	dbg("%s - endpoint %d", __FUNCTION__, usb_pipeendpoint(this_urb->pipe));		/* Make sure we have an urb then send the message */	if (this_urb == NULL) {		dbg("%s - oops no urb.", __FUNCTION__);		return -1;	}	/* Save reset port val for resend.	Don't overwrite resend for close condition. */	if (p_priv->resend_cont != 3)		p_priv->resend_cont = reset_port + 1;	if (this_urb->status == -EINPROGRESS) {		/*  dbg ("%s - already writing", __FUNCTION__); */		return(-1);	}	memset(&msg, 0, sizeof (struct keyspan_usa26_portControlMessage));			/* Only set baud rate if it's changed */		if (p_priv->old_baud != p_priv->baud) {		p_priv->old_baud = p_priv->baud;		msg.setClocking = 0xff;		if (d_details->calculate_baud_rate		    (p_priv->baud, d_details->baudclk, &msg.baudHi,		     &msg.baudLo, &msg.prescaler, device_port) == KEYSPAN_INVALID_BAUD_RATE ) {			dbg("%s - Invalid baud rate %d requested, using 9600.", __FUNCTION__,			    p_priv->baud);			msg.baudLo = 0;			msg.baudHi = 125;	/* Values for 9600 baud */			msg.prescaler = 10;		}		msg.setPrescaler = 0xff;	}	msg.lcr = (p_priv->cflag & CSTOPB)? STOPBITS_678_2: STOPBITS_5678_1;	switch (p_priv->cflag & CSIZE) {	case CS5:		msg.lcr |= USA_DATABITS_5;		break;	case CS6:		msg.lcr |= USA_DATABITS_6;		break;	case CS7:		msg.lcr |= USA_DATABITS_7;		break;	case CS8:		msg.lcr |= USA_DATABITS_8;		break;	}	if (p_priv->cflag & PARENB) {		/* note USA_PARITY_NONE == 0 */		msg.lcr |= (p_priv->cflag & PARODD)?			USA_PARITY_ODD: USA_PARITY_EVEN;	}	msg.setLcr = 0xff;	msg.ctsFlowControl = (p_priv->flow_control == flow_cts);	msg.xonFlowControl = 0;	msg.setFlowControl = 0xff;	msg.forwardingLength = 16;	msg.xonChar = 17;	msg.xoffChar = 19;	/* Opening port */	if (reset_port == 1) {		msg._txOn = 1;		msg._txOff = 0;		msg.txFlush = 0;		msg.txBreak = 0;		msg.rxOn = 1;		msg.rxOff = 0;		msg.rxFlush = 1;		msg.rxForward = 0;		msg.returnStatus = 0;		msg.resetDataToggle = 0xff;	}	/* Closing port */	else if (reset_port == 2) {		msg._txOn = 0;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -