| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* 
 | 
					
						
							|  |  |  |  * Emagic EMI 2|6 usb audio interface firmware loader. | 
					
						
							|  |  |  |  * Copyright (C) 2002 | 
					
						
							| 
									
										
										
										
											2007-10-19 23:21:04 +02:00
										 |  |  |  * 	Tapio Laxström (tapio.laxstrom@iptime.fi) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License, as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, version 2. | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * emi26.c,v 1.13 2002/03/08 13:10:26 tapio Exp | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/errno.h>
 | 
					
						
							|  |  |  | #include <linux/slab.h>
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/usb.h>
 | 
					
						
							| 
									
										
										
										
											2006-05-09 12:37:22 -07:00
										 |  |  | #include <linux/delay.h>
 | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | #include <linux/firmware.h>
 | 
					
						
							|  |  |  | #include <linux/ihex.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define EMI26_VENDOR_ID 		0x086a  /* Emagic Soft-und Hardware GmBH */
 | 
					
						
							|  |  |  | #define EMI26_PRODUCT_ID		0x0100	/* EMI 2|6 without firmware */
 | 
					
						
							|  |  |  | #define EMI26B_PRODUCT_ID		0x0102	/* EMI 2|6 without firmware */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define ANCHOR_LOAD_INTERNAL	0xA0	/* Vendor specific request code for Anchor Upload/Download (This one is implemented in the core) */
 | 
					
						
							|  |  |  | #define ANCHOR_LOAD_EXTERNAL	0xA3	/* This command is not implemented in the core. Requires firmware */
 | 
					
						
							|  |  |  | #define ANCHOR_LOAD_FPGA	0xA5	/* This command is not implemented in the core. Requires firmware. Emagic extension */
 | 
					
						
							|  |  |  | #define MAX_INTERNAL_ADDRESS	0x1B3F	/* This is the highest internal RAM address for the AN2131Q */
 | 
					
						
							|  |  |  | #define CPUCS_REG		0x7F92  /* EZ-USB Control and Status Register.  Bit 0 controls 8051 reset */ 
 | 
					
						
							|  |  |  | #define INTERNAL_RAM(address)   (address <= MAX_INTERNAL_ADDRESS)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | static int emi26_writememory( struct usb_device *dev, int address, | 
					
						
							|  |  |  | 			      const unsigned char *data, int length, | 
					
						
							|  |  |  | 			      __u8 bRequest); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | static int emi26_set_reset(struct usb_device *dev, unsigned char reset_bit); | 
					
						
							|  |  |  | static int emi26_load_firmware (struct usb_device *dev); | 
					
						
							|  |  |  | static int emi26_probe(struct usb_interface *intf, const struct usb_device_id *id); | 
					
						
							|  |  |  | static void emi26_disconnect(struct usb_interface *intf); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* thanks to drivers/usb/serial/keyspan_pda.c code */ | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | static int emi26_writememory (struct usb_device *dev, int address, | 
					
						
							|  |  |  | 			      const unsigned char *data, int length, | 
					
						
							|  |  |  | 			      __u8 request) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int result; | 
					
						
							| 
									
										
										
										
											2006-10-26 21:06:24 +02:00
										 |  |  | 	unsigned char *buffer =  kmemdup(data, length, GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!buffer) { | 
					
						
							| 
									
										
										
										
											2008-08-14 09:37:34 -07:00
										 |  |  | 		dev_err(&dev->dev, "kmalloc(%d) failed.\n", length); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Note: usb_control_msg returns negative value on error or length of the
 | 
					
						
							|  |  |  | 	 * 		 data that was written! */ | 
					
						
							|  |  |  | 	result = usb_control_msg (dev, usb_sndctrlpipe(dev, 0), request, 0x40, address, 0, buffer, length, 300); | 
					
						
							|  |  |  | 	kfree (buffer); | 
					
						
							|  |  |  | 	return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* thanks to drivers/usb/serial/keyspan_pda.c code */ | 
					
						
							|  |  |  | static int emi26_set_reset (struct usb_device *dev, unsigned char reset_bit) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int response; | 
					
						
							| 
									
										
										
										
											2008-08-18 13:21:04 -07:00
										 |  |  | 	dev_info(&dev->dev, "%s - %d\n", __func__, reset_bit); | 
					
						
							| 
									
										
										
										
											2008-03-03 16:08:34 -08:00
										 |  |  | 	/* printk(KERN_DEBUG "%s - %d", __func__, reset_bit); */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	response = emi26_writememory (dev, CPUCS_REG, &reset_bit, 1, 0xa0); | 
					
						
							|  |  |  | 	if (response < 0) { | 
					
						
							| 
									
										
										
										
											2008-08-14 09:37:34 -07:00
										 |  |  | 		dev_err(&dev->dev, "set_reset (%d) failed\n", reset_bit); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return response; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define FW_LOAD_SIZE		1023
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int emi26_load_firmware (struct usb_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | 	const struct firmware *loader_fw = NULL; | 
					
						
							|  |  |  | 	const struct firmware *bitstream_fw = NULL; | 
					
						
							|  |  |  | 	const struct firmware *firmware_fw = NULL; | 
					
						
							|  |  |  | 	const struct ihex_binrec *rec; | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 	int err = -ENOMEM; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i; | 
					
						
							|  |  |  | 	__u32 addr;	/* Address to write */ | 
					
						
							|  |  |  | 	__u8 *buf; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	buf = kmalloc(FW_LOAD_SIZE, GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 	if (!buf) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto wraperr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | 	err = request_ihex_firmware(&loader_fw, "emi26/loader.fw", &dev->dev); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto nofw; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = request_ihex_firmware(&bitstream_fw, "emi26/bitstream.fw", | 
					
						
							|  |  |  | 				    &dev->dev); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto nofw; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = request_ihex_firmware(&firmware_fw, "emi26/firmware.fw", | 
					
						
							|  |  |  | 				    &dev->dev); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 	nofw: | 
					
						
							| 
									
										
										
										
											2008-08-14 09:37:34 -07:00
										 |  |  | 		dev_err(&dev->dev, "%s - request_firmware() failed\n", | 
					
						
							|  |  |  | 			__func__); | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | 		goto wraperr; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* Assert reset (stop the CPU in the EMI) */ | 
					
						
							|  |  |  | 	err = emi26_set_reset(dev,1); | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto wraperr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | 	rec = (const struct ihex_binrec *)loader_fw->data; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* 1. We need to put the loader for the FPGA into the EZ-USB */ | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | 	while (rec) { | 
					
						
							|  |  |  | 		err = emi26_writememory(dev, be32_to_cpu(rec->addr), | 
					
						
							|  |  |  | 					rec->data, be16_to_cpu(rec->len), | 
					
						
							|  |  |  | 					ANCHOR_LOAD_INTERNAL); | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 		if (err < 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			goto wraperr; | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | 		rec = ihex_next_binrec(rec); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* De-assert reset (let the CPU run) */ | 
					
						
							|  |  |  | 	err = emi26_set_reset(dev,0); | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2007-10-25 15:38:44 +02:00
										 |  |  | 		goto wraperr; | 
					
						
							| 
									
										
										
										
											2006-05-09 12:37:22 -07:00
										 |  |  | 	msleep(250);	/* let device settle */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* 2. We upload the FPGA firmware into the EMI
 | 
					
						
							|  |  |  | 	 * Note: collect up to 1023 (yes!) bytes and send them with | 
					
						
							|  |  |  | 	 * a single request. This is _much_ faster! */ | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | 	rec = (const struct ihex_binrec *)bitstream_fw->data; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	do { | 
					
						
							|  |  |  | 		i = 0; | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | 		addr = be32_to_cpu(rec->addr); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* intel hex records are terminated with type 0 element */ | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | 		while (rec && (i + be16_to_cpu(rec->len) < FW_LOAD_SIZE)) { | 
					
						
							|  |  |  | 			memcpy(buf + i, rec->data, be16_to_cpu(rec->len)); | 
					
						
							|  |  |  | 			i += be16_to_cpu(rec->len); | 
					
						
							|  |  |  | 			rec = ihex_next_binrec(rec); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		err = emi26_writememory(dev, addr, buf, i, ANCHOR_LOAD_FPGA); | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 		if (err < 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			goto wraperr; | 
					
						
							| 
									
										
										
										
											2009-01-04 13:25:13 +01:00
										 |  |  | 	} while (rec); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Assert reset (stop the CPU in the EMI) */ | 
					
						
							|  |  |  | 	err = emi26_set_reset(dev,1); | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto wraperr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* 3. We need to put the loader for the firmware into the EZ-USB (again...) */ | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | 	for (rec = (const struct ihex_binrec *)loader_fw->data; | 
					
						
							|  |  |  | 	     rec; rec = ihex_next_binrec(rec)) { | 
					
						
							|  |  |  | 		err = emi26_writememory(dev, be32_to_cpu(rec->addr), | 
					
						
							|  |  |  | 					rec->data, be16_to_cpu(rec->len), | 
					
						
							|  |  |  | 					ANCHOR_LOAD_INTERNAL); | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 		if (err < 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			goto wraperr; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-05-09 12:37:22 -07:00
										 |  |  | 	msleep(250);	/* let device settle */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* De-assert reset (let the CPU run) */ | 
					
						
							|  |  |  | 	err = emi26_set_reset(dev,0); | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto wraperr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* 4. We put the part of the firmware that lies in the external RAM into the EZ-USB */ | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (rec = (const struct ihex_binrec *)firmware_fw->data; | 
					
						
							|  |  |  | 	     rec; rec = ihex_next_binrec(rec)) { | 
					
						
							|  |  |  | 		if (!INTERNAL_RAM(be32_to_cpu(rec->addr))) { | 
					
						
							|  |  |  | 			err = emi26_writememory(dev, be32_to_cpu(rec->addr), | 
					
						
							|  |  |  | 						rec->data, be16_to_cpu(rec->len), | 
					
						
							|  |  |  | 						ANCHOR_LOAD_EXTERNAL); | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 			if (err < 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				goto wraperr; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* Assert reset (stop the CPU in the EMI) */ | 
					
						
							|  |  |  | 	err = emi26_set_reset(dev,1); | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto wraperr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | 	for (rec = (const struct ihex_binrec *)firmware_fw->data; | 
					
						
							|  |  |  | 	     rec; rec = ihex_next_binrec(rec)) { | 
					
						
							|  |  |  | 		if (INTERNAL_RAM(be32_to_cpu(rec->addr))) { | 
					
						
							|  |  |  | 			err = emi26_writememory(dev, be32_to_cpu(rec->addr), | 
					
						
							|  |  |  | 						rec->data, be16_to_cpu(rec->len), | 
					
						
							|  |  |  | 						ANCHOR_LOAD_INTERNAL); | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 			if (err < 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				goto wraperr; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* De-assert reset (let the CPU run) */ | 
					
						
							|  |  |  | 	err = emi26_set_reset(dev,0); | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 	if (err < 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto wraperr; | 
					
						
							| 
									
										
										
										
											2006-05-09 12:37:22 -07:00
										 |  |  | 	msleep(250);	/* let device settle */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* return 1 to fail the driver inialization
 | 
					
						
							|  |  |  | 	 * and give real driver change to load */ | 
					
						
							|  |  |  | 	err = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | wraperr: | 
					
						
							| 
									
										
										
										
											2012-04-20 16:53:37 -07:00
										 |  |  | 	if (err < 0) | 
					
						
							|  |  |  | 		dev_err(&dev->dev,"%s - error loading firmware: error = %d\n", | 
					
						
							|  |  |  | 			__func__, err); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | 	release_firmware(loader_fw); | 
					
						
							|  |  |  | 	release_firmware(bitstream_fw); | 
					
						
							|  |  |  | 	release_firmware(firmware_fw); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	kfree(buf); | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-10 15:34:45 +01:00
										 |  |  | static const struct usb_device_id id_table[] = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	{ USB_DEVICE(EMI26_VENDOR_ID, EMI26_PRODUCT_ID) }, | 
					
						
							|  |  |  | 	{ USB_DEVICE(EMI26_VENDOR_ID, EMI26B_PRODUCT_ID) }, | 
					
						
							|  |  |  | 	{ }                                             /* Terminating entry */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_DEVICE_TABLE (usb, id_table); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int emi26_probe(struct usb_interface *intf, const struct usb_device_id *id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct usb_device *dev = interface_to_usbdev(intf); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-18 13:21:04 -07:00
										 |  |  | 	dev_info(&intf->dev, "%s start\n", __func__); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	emi26_load_firmware(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* do not return the driver context, let real audio driver do that */ | 
					
						
							|  |  |  | 	return -EIO; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void emi26_disconnect(struct usb_interface *intf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct usb_driver emi26_driver = { | 
					
						
							|  |  |  | 	.name		= "emi26 - firmware loader", | 
					
						
							|  |  |  | 	.probe		= emi26_probe, | 
					
						
							|  |  |  | 	.disconnect	= emi26_disconnect, | 
					
						
							|  |  |  | 	.id_table	= id_table, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-18 09:34:02 -08:00
										 |  |  | module_usb_driver(emi26_driver); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-19 23:21:04 +02:00
										 |  |  | MODULE_AUTHOR("Tapio Laxström"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | MODULE_DESCRIPTION("Emagic EMI 2|6 firmware loader."); | 
					
						
							|  |  |  | MODULE_LICENSE("GPL"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-30 16:19:39 +03:00
										 |  |  | MODULE_FIRMWARE("emi26/loader.fw"); | 
					
						
							|  |  |  | MODULE_FIRMWARE("emi26/bitstream.fw"); | 
					
						
							|  |  |  | MODULE_FIRMWARE("emi26/firmware.fw"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* vi:ai:syntax=c:sw=8:ts=8:tw=80
 | 
					
						
							|  |  |  |  */ |