Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 220151
b: refs/heads/master
c: ada541f
h: refs/heads/master
i:
  220149: 087f1bb
  220147: 5666ec9
  220143: 6bad25b
v: v3
  • Loading branch information
Marek Belisko authored and Greg Kroah-Hartman committed Oct 7, 2010
1 parent ca5bbde commit 5fda33c
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 73 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 95624b2d75617bd16ffe4d698b645f468fbd0f20
refs/heads/master: ada541f0cb03eb3c39016597470bd0aaaa1c6486
63 changes: 0 additions & 63 deletions trunk/drivers/staging/ft1000/ft1000-usb/ft1000_download.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,69 +132,6 @@ typedef struct _DSP_IMAGE_INFO_V6 {
unsigned short pad1;
} DSP_IMAGE_INFO_V6, *PDSP_IMAGE_INFO_V6;


//---------------------------------------------------------------------------
// Function: getfw
//
// Parameters: char *fn - input DSP image file name
// int *pimgsz - output DSP image file size
// Returns: DSP image buffer
//
// Description: Read the DSP image file into a char buffer
//
// Notes:
//
//---------------------------------------------------------------------------
char *getfw (char *fn, size_t *pimgsz)
{
struct file *fd;
mm_segment_t fs = get_fs();
loff_t pos;
char *pfwimg;
int fwimgsz;

set_fs(get_ds());

fd = filp_open(fn, 0, 0);
if ( IS_ERR(fd) )
{
DEBUG("FT1000:%s:can not open dsp image\n", __FUNCTION__);
set_fs(fs);
return NULL;
}

fwimgsz = i_size_read(fd->f_dentry->d_inode);
*pimgsz = fwimgsz;

if (fwimgsz <= 0)
{
DEBUG("FT1000:%s:invalid file size\n", __FUNCTION__);
filp_close(fd, current->files);
set_fs(fs);
return NULL;
}
pfwimg = (char*)vmalloc ( fwimgsz );
if (pfwimg == NULL) {
DEBUG("FT1000:%s:can not allocate memory for dsp image\n", __FUNCTION__);
filp_close(fd, current->files);
set_fs(fs);
return NULL;
}
pos = 0;
if (vfs_read(fd, (void __user __force*)pfwimg, fwimgsz, &pos) != fwimgsz) {
vfree(pfwimg);
DEBUG("FT1000:%s:failed to read firmware image\n",__FUNCTION__);
filp_close(fd, current->files);
set_fs(fs);
return NULL;
}

filp_close(fd, current->files);
set_fs(fs);

return pfwimg;
}

//---------------------------------------------------------------------------
// Function: check_usb_db
//
Expand Down
35 changes: 26 additions & 9 deletions trunk/drivers/staging/ft1000/ft1000-usb/ft1000_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include <linux/usb.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/firmware.h>
#include "ft1000_usb.h"

//#include <linux/sched.h>
Expand Down Expand Up @@ -88,10 +89,12 @@ static int ft1000_probe(struct usb_interface *interface, const struct usb_device
struct usb_endpoint_descriptor *endpoint;
struct usb_device *dev;
unsigned numaltsetting;
int i;
int i, ret = 0, size;

struct ft1000_device *ft1000dev;
FT1000_INFO *pft1000info;
const struct firmware *dsp_fw;


if(!(ft1000dev = kmalloc(sizeof(struct ft1000_device), GFP_KERNEL)))
{
Expand Down Expand Up @@ -149,14 +152,24 @@ static int ft1000_probe(struct usb_interface *interface, const struct usb_device

DEBUG("bulk_in=%d, bulk_out=%d\n", ft1000dev->bulk_in_endpointAddr, ft1000dev->bulk_out_endpointAddr);

//read DSP image
pFileStart = (void*)getfw("/etc/flarion/ft3000.img", &FileLength);
ret = request_firmware(&dsp_fw, "ft3000.img", &dev->dev);
if (ret < 0) {
printk(KERN_ERR "Error request_firmware().\n");
goto err_fw;
}

if (pFileStart == NULL )
{
DEBUG ("ft1000_probe: Read DSP image failed\n");
return 0;
}
size = max_t(uint, dsp_fw->size, 4096);
pFileStart = kmalloc(size, GFP_KERNEL);

if (!pFileStart) {
release_firmware(dsp_fw);
ret = -ENOMEM;
goto err_fw;
}

memcpy(pFileStart, dsp_fw->data, dsp_fw->size);
FileLength = dsp_fw->size;
release_firmware(dsp_fw);

//for ( i=0; i< MAX_NUM_CARDS+2; i++)
// pdevobj[i] = NULL;
Expand Down Expand Up @@ -206,6 +219,10 @@ static int ft1000_probe(struct usb_interface *interface, const struct usb_device
ft1000InitProc(ft1000dev->net);// +mbelian

return 0;

err_fw:
kfree(ft1000dev);
return ret;
}

//---------------------------------------------------------------------------
Expand Down Expand Up @@ -262,7 +279,7 @@ static void ft1000_disconnect(struct usb_interface *interface)

kfree(pft1000info->pFt1000Dev); //+mbelian
}

kfree(pFileStart);
//terminate other kernel threads
//in multiple instances case, first find the device
//in the link list
Expand Down

0 comments on commit 5fda33c

Please sign in to comment.