blob: 4e0f167a6c4ef49832bd1357517e738b397980a0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Emagic EMI 2|6 usb audio interface firmware loader.
3 * Copyright (C) 2002
Jan Engelhardt96de0e22007-10-19 23:21:04 +02004 * Tapio Laxström (tapio.laxstrom@iptime.fi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
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, version 2.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10#include <linux/kernel.h>
11#include <linux/errno.h>
12#include <linux/slab.h>
13#include <linux/init.h>
14#include <linux/module.h>
15#include <linux/usb.h>
Monty16c23f72006-05-09 12:37:22 -070016#include <linux/delay.h>
David Woodhouseb8e24bf2008-05-30 17:35:47 +030017#include <linux/firmware.h>
18#include <linux/ihex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20/* include firmware (variables)*/
21
22/* FIXME: This is quick and dirty solution! */
23#define SPDIF /* if you want SPDIF comment next line */
24//#undef SPDIF /* if you want MIDI uncomment this line */
25
26#ifdef SPDIF
David Woodhouseb8e24bf2008-05-30 17:35:47 +030027#define FIRMWARE_FW "emi62/spdif.fw"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#else
David Woodhouseb8e24bf2008-05-30 17:35:47 +030029#define FIRMWARE_FW "emi62/midi.fw"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#endif
31
32#define EMI62_VENDOR_ID 0x086a /* Emagic Soft-und Hardware GmBH */
33#define EMI62_PRODUCT_ID 0x0110 /* EMI 6|2m without firmware */
34
35#define ANCHOR_LOAD_INTERNAL 0xA0 /* Vendor specific request code for Anchor Upload/Download (This one is implemented in the core) */
36#define ANCHOR_LOAD_EXTERNAL 0xA3 /* This command is not implemented in the core. Requires firmware */
37#define ANCHOR_LOAD_FPGA 0xA5 /* This command is not implemented in the core. Requires firmware. Emagic extension */
38#define MAX_INTERNAL_ADDRESS 0x1B3F /* This is the highest internal RAM address for the AN2131Q */
39#define CPUCS_REG 0x7F92 /* EZ-USB Control and Status Register. Bit 0 controls 8051 reset */
40#define INTERNAL_RAM(address) (address <= MAX_INTERNAL_ADDRESS)
41
David Woodhouseb8e24bf2008-05-30 17:35:47 +030042static int emi62_writememory(struct usb_device *dev, int address,
43 const unsigned char *data, int length,
44 __u8 bRequest);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static int emi62_set_reset(struct usb_device *dev, unsigned char reset_bit);
46static int emi62_load_firmware (struct usb_device *dev);
47static int emi62_probe(struct usb_interface *intf, const struct usb_device_id *id);
48static void emi62_disconnect(struct usb_interface *intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/* thanks to drivers/usb/serial/keyspan_pda.c code */
David Woodhouseb8e24bf2008-05-30 17:35:47 +030051static int emi62_writememory(struct usb_device *dev, int address,
52 const unsigned char *data, int length,
53 __u8 request)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55 int result;
Eric Sesterhenn5d7efe52006-10-26 21:06:24 +020056 unsigned char *buffer = kmemdup(data, length, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 if (!buffer) {
59 err("emi62: kmalloc(%d) failed.", length);
60 return -ENOMEM;
61 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 /* Note: usb_control_msg returns negative value on error or length of the
63 * data that was written! */
64 result = usb_control_msg (dev, usb_sndctrlpipe(dev, 0), request, 0x40, address, 0, buffer, length, 300);
65 kfree (buffer);
66 return result;
67}
68
69/* thanks to drivers/usb/serial/keyspan_pda.c code */
70static int emi62_set_reset (struct usb_device *dev, unsigned char reset_bit)
71{
72 int response;
Greg Kroah-Hartman1b29a372008-08-18 13:21:04 -070073 dev_info(&dev->dev, "%s - %d\n", __func__, reset_bit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75 response = emi62_writememory (dev, CPUCS_REG, &reset_bit, 1, 0xa0);
76 if (response < 0) {
77 err("emi62: set_reset (%d) failed", reset_bit);
78 }
79 return response;
80}
81
82#define FW_LOAD_SIZE 1023
83
84static int emi62_load_firmware (struct usb_device *dev)
85{
David Woodhouseb8e24bf2008-05-30 17:35:47 +030086 const struct firmware *loader_fw = NULL;
87 const struct firmware *bitstream_fw = NULL;
88 const struct firmware *firmware_fw = NULL;
89 const struct ihex_binrec *rec;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 int err;
91 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 __u32 addr; /* Address to write */
93 __u8 *buf;
94
95 dev_dbg(&dev->dev, "load_firmware\n");
96 buf = kmalloc(FW_LOAD_SIZE, GFP_KERNEL);
97 if (!buf) {
Harvey Harrison441b62c2008-03-03 16:08:34 -080098 err( "%s - error loading firmware: error = %d", __func__, -ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 err = -ENOMEM;
100 goto wraperr;
101 }
102
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300103 err = request_ihex_firmware(&loader_fw, "emi62/loader.fw", &dev->dev);
104 if (err)
105 goto nofw;
106
107 err = request_ihex_firmware(&bitstream_fw, "emi62/bitstream.fw",
108 &dev->dev);
109 if (err)
110 goto nofw;
111
112 err = request_ihex_firmware(&firmware_fw, FIRMWARE_FW, &dev->dev);
113 if (err) {
114 nofw:
115 err( "%s - request_firmware() failed", __func__);
116 goto wraperr;
117 }
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 /* Assert reset (stop the CPU in the EMI) */
120 err = emi62_set_reset(dev,1);
121 if (err < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800122 err("%s - error loading firmware: error = %d", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 goto wraperr;
124 }
125
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300126 rec = (const struct ihex_binrec *)loader_fw->data;
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /* 1. We need to put the loader for the FPGA into the EZ-USB */
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300129 while (rec) {
130 err = emi62_writememory(dev, be32_to_cpu(rec->addr),
131 rec->data, be16_to_cpu(rec->len),
132 ANCHOR_LOAD_INTERNAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (err < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800134 err("%s - error loading firmware: error = %d", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 goto wraperr;
136 }
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300137 rec = ihex_next_binrec(rec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139
140 /* De-assert reset (let the CPU run) */
141 err = emi62_set_reset(dev,0);
Oliver Neukum5919a43b2007-10-25 15:42:38 +0200142 if (err < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800143 err("%s - error loading firmware: error = %d", __func__, err);
Oliver Neukum5919a43b2007-10-25 15:42:38 +0200144 goto wraperr;
145 }
Monty16c23f72006-05-09 12:37:22 -0700146 msleep(250); /* let device settle */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 /* 2. We upload the FPGA firmware into the EMI
149 * Note: collect up to 1023 (yes!) bytes and send them with
150 * a single request. This is _much_ faster! */
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300151 rec = (const struct ihex_binrec *)bitstream_fw->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 do {
153 i = 0;
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300154 addr = be32_to_cpu(rec->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 /* intel hex records are terminated with type 0 element */
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300157 while (rec && (i + be16_to_cpu(rec->len) < FW_LOAD_SIZE)) {
158 memcpy(buf + i, rec->data, be16_to_cpu(rec->len));
159 i += be16_to_cpu(rec->len);
160 rec = ihex_next_binrec(rec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 }
162 err = emi62_writememory(dev, addr, buf, i, ANCHOR_LOAD_FPGA);
163 if (err < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800164 err("%s - error loading firmware: error = %d", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 goto wraperr;
166 }
Clemens Ladischac06c062009-12-21 15:36:44 -0800167 } while (rec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 /* Assert reset (stop the CPU in the EMI) */
170 err = emi62_set_reset(dev,1);
171 if (err < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800172 err("%s - error loading firmware: error = %d", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 goto wraperr;
174 }
175
176 /* 3. We need to put the loader for the firmware into the EZ-USB (again...) */
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300177 for (rec = (const struct ihex_binrec *)loader_fw->data;
178 rec; rec = ihex_next_binrec(rec)) {
179 err = emi62_writememory(dev, be32_to_cpu(rec->addr),
180 rec->data, be16_to_cpu(rec->len),
181 ANCHOR_LOAD_INTERNAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (err < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800183 err("%s - error loading firmware: error = %d", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 goto wraperr;
185 }
186 }
187
188 /* De-assert reset (let the CPU run) */
189 err = emi62_set_reset(dev,0);
190 if (err < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800191 err("%s - error loading firmware: error = %d", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 goto wraperr;
193 }
Monty16c23f72006-05-09 12:37:22 -0700194 msleep(250); /* let device settle */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 /* 4. We put the part of the firmware that lies in the external RAM into the EZ-USB */
197
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300198 for (rec = (const struct ihex_binrec *)firmware_fw->data;
199 rec; rec = ihex_next_binrec(rec)) {
200 if (!INTERNAL_RAM(be32_to_cpu(rec->addr))) {
201 err = emi62_writememory(dev, be32_to_cpu(rec->addr),
202 rec->data, be16_to_cpu(rec->len),
203 ANCHOR_LOAD_EXTERNAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 if (err < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800205 err("%s - error loading firmware: error = %d", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 goto wraperr;
207 }
208 }
209 }
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* Assert reset (stop the CPU in the EMI) */
212 err = emi62_set_reset(dev,1);
213 if (err < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800214 err("%s - error loading firmware: error = %d", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 goto wraperr;
216 }
217
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300218 for (rec = (const struct ihex_binrec *)firmware_fw->data;
219 rec; rec = ihex_next_binrec(rec)) {
220 if (INTERNAL_RAM(be32_to_cpu(rec->addr))) {
221 err = emi62_writememory(dev, be32_to_cpu(rec->addr),
222 rec->data, be16_to_cpu(rec->len),
223 ANCHOR_LOAD_EXTERNAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 if (err < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800225 err("%s - error loading firmware: error = %d", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 goto wraperr;
227 }
228 }
229 }
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 /* De-assert reset (let the CPU run) */
232 err = emi62_set_reset(dev,0);
233 if (err < 0) {
Harvey Harrison441b62c2008-03-03 16:08:34 -0800234 err("%s - error loading firmware: error = %d", __func__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 goto wraperr;
236 }
Monty16c23f72006-05-09 12:37:22 -0700237 msleep(250); /* let device settle */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300239 release_firmware(loader_fw);
240 release_firmware(bitstream_fw);
241 release_firmware(firmware_fw);
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 kfree(buf);
244
245 /* return 1 to fail the driver inialization
246 * and give real driver change to load */
247 return 1;
248
249wraperr:
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300250 release_firmware(loader_fw);
251 release_firmware(bitstream_fw);
252 release_firmware(firmware_fw);
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 kfree(buf);
255 dev_err(&dev->dev, "Error\n");
256 return err;
257}
258
Németh Márton33b9e162010-01-10 15:34:45 +0100259static const struct usb_device_id id_table[] __devinitconst = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 { USB_DEVICE(EMI62_VENDOR_ID, EMI62_PRODUCT_ID) },
261 { } /* Terminating entry */
262};
263
264MODULE_DEVICE_TABLE (usb, id_table);
265
266static int emi62_probe(struct usb_interface *intf, const struct usb_device_id *id)
267{
268 struct usb_device *dev = interface_to_usbdev(intf);
269 dev_dbg(&intf->dev, "emi62_probe\n");
270
Greg Kroah-Hartman1b29a372008-08-18 13:21:04 -0700271 dev_info(&intf->dev, "%s start\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 emi62_load_firmware(dev);
274
275 /* do not return the driver context, let real audio driver do that */
276 return -EIO;
277}
278
279static void emi62_disconnect(struct usb_interface *intf)
280{
281}
282
283static struct usb_driver emi62_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 .name = "emi62 - firmware loader",
285 .probe = emi62_probe,
286 .disconnect = emi62_disconnect,
287 .id_table = id_table,
288};
289
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -0800290module_usb_driver(emi62_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200292MODULE_AUTHOR("Tapio Laxström");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293MODULE_DESCRIPTION("Emagic EMI 6|2m firmware loader.");
294MODULE_LICENSE("GPL");
295
David Woodhouseb8e24bf2008-05-30 17:35:47 +0300296MODULE_FIRMWARE("emi62/loader.fw");
297MODULE_FIRMWARE("emi62/bitstream.fw");
298MODULE_FIRMWARE(FIRMWARE_FW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299/* vi:ai:syntax=c:sw=8:ts=8:tw=80
300 */