Linux Audio

Check our new training course

Loading...
v3.1
   1/*
   2 *
   3 * This program is free software; you can redistribute it and/or modify it
   4 * under the terms of the GNU General Public License as published by the
   5 * Free Software Foundation; either version 2, or (at your option) any
   6 * later version.
   7 *
   8 * This program is distributed in the hope that it will be useful, but
   9 * WITHOUT ANY WARRANTY; without even the implied warranty of
  10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11 * General Public License for more details.
  12 *
  13 * You should have received a copy of the GNU General Public License along
  14 * with this program; if not, write to the Free Software Foundation, Inc.,
  15 * 675 Mass Ave, Cambridge, MA 02139, USA.
  16 */
  17#include <linux/jiffies.h>
  18#include <linux/errno.h>
  19#include <linux/module.h>
  20#include <linux/slab.h>
  21
  22#include <scsi/scsi.h>
  23#include <scsi/scsi_cmnd.h>
  24
  25#include <linux/firmware.h>
  26
  27#include "usb.h"
  28#include "transport.h"
  29#include "protocol.h"
  30#include "debug.h"
 
 
 
 
 
 
 
 
 
 
  31
  32MODULE_DESCRIPTION("Driver for ENE UB6250 reader");
  33MODULE_LICENSE("GPL");
  34
 
 
 
 
 
 
  35
  36/*
  37 * The table of devices
  38 */
  39#define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \
  40		    vendorName, productName, useProtocol, useTransport, \
  41		    initFunction, flags) \
  42{ USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \
  43	.driver_info = (flags)|(USB_US_TYPE_STOR<<24) }
  44
  45struct usb_device_id ene_ub6250_usb_ids[] = {
  46#	include "unusual_ene_ub6250.h"
  47	{ }		/* Terminating entry */
  48};
  49MODULE_DEVICE_TABLE(usb, ene_ub6250_usb_ids);
  50
  51#undef UNUSUAL_DEV
  52
  53/*
  54 * The flags table
  55 */
  56#define UNUSUAL_DEV(idVendor, idProduct, bcdDeviceMin, bcdDeviceMax, \
  57		    vendor_name, product_name, use_protocol, use_transport, \
  58		    init_function, Flags) \
  59{ \
  60	.vendorName = vendor_name,	\
  61	.productName = product_name,	\
  62	.useProtocol = use_protocol,	\
  63	.useTransport = use_transport,	\
  64	.initFunction = init_function,	\
  65}
  66
  67static struct us_unusual_dev ene_ub6250_unusual_dev_list[] = {
  68#	include "unusual_ene_ub6250.h"
  69	{ }		/* Terminating entry */
  70};
  71
  72#undef UNUSUAL_DEV
  73
  74
  75
  76/* ENE bin code len */
  77#define ENE_BIN_CODE_LEN    0x800
  78/* EnE HW Register */
  79#define REG_CARD_STATUS     0xFF83
  80#define REG_HW_TRAP1        0xFF89
  81
  82/* SRB Status */
  83#define SS_SUCCESS                  0x00      /* No Sense */
  84#define SS_NOT_READY                0x02
  85#define SS_MEDIUM_ERR               0x03
  86#define SS_HW_ERR                   0x04
  87#define SS_ILLEGAL_REQUEST          0x05
  88#define SS_UNIT_ATTENTION           0x06
  89
  90/* ENE Load FW Pattern */
  91#define SD_INIT1_PATTERN   1
  92#define SD_INIT2_PATTERN   2
  93#define SD_RW_PATTERN      3
  94#define MS_INIT_PATTERN    4
  95#define MSP_RW_PATTERN     5
  96#define MS_RW_PATTERN      6
  97#define SM_INIT_PATTERN    7
  98#define SM_RW_PATTERN      8
  99
 100#define FDIR_WRITE         0
 101#define FDIR_READ          1
 102
 103/* For MS Card */
 104
 105/* Status Register 1 */
 106#define MS_REG_ST1_MB           0x80    /* media busy */
 107#define MS_REG_ST1_FB1          0x40    /* flush busy 1 */
 108#define MS_REG_ST1_DTER         0x20    /* error on data(corrected) */
 109#define MS_REG_ST1_UCDT         0x10    /* unable to correct data */
 110#define MS_REG_ST1_EXER         0x08    /* error on extra(corrected) */
 111#define MS_REG_ST1_UCEX         0x04    /* unable to correct extra */
 112#define MS_REG_ST1_FGER         0x02    /* error on overwrite flag(corrected) */
 113#define MS_REG_ST1_UCFG         0x01    /* unable to correct overwrite flag */
 114#define MS_REG_ST1_DEFAULT	(MS_REG_ST1_MB | MS_REG_ST1_FB1 | MS_REG_ST1_DTER | MS_REG_ST1_UCDT | MS_REG_ST1_EXER | MS_REG_ST1_UCEX | MS_REG_ST1_FGER | MS_REG_ST1_UCFG)
 115
 116/* Overwrite Area */
 117#define MS_REG_OVR_BKST		0x80            /* block status */
 118#define MS_REG_OVR_BKST_OK	MS_REG_OVR_BKST     /* OK */
 119#define MS_REG_OVR_BKST_NG	0x00            /* NG */
 120#define MS_REG_OVR_PGST0	0x40            /* page status */
 121#define MS_REG_OVR_PGST1	0x20
 122#define MS_REG_OVR_PGST_MASK	(MS_REG_OVR_PGST0 | MS_REG_OVR_PGST1)
 123#define MS_REG_OVR_PGST_OK	(MS_REG_OVR_PGST0 | MS_REG_OVR_PGST1) /* OK */
 124#define MS_REG_OVR_PGST_NG	MS_REG_OVR_PGST1                      /* NG */
 125#define MS_REG_OVR_PGST_DATA_ERROR	0x00        /* data error */
 126#define MS_REG_OVR_UDST			0x10        /* update status */
 127#define MS_REG_OVR_UDST_UPDATING	0x00        /* updating */
 128#define MS_REG_OVR_UDST_NO_UPDATE	MS_REG_OVR_UDST
 129#define MS_REG_OVR_RESERVED	0x08
 130#define MS_REG_OVR_DEFAULT	(MS_REG_OVR_BKST_OK | MS_REG_OVR_PGST_OK | MS_REG_OVR_UDST_NO_UPDATE | MS_REG_OVR_RESERVED)
 131
 132/* Management Flag */
 133#define MS_REG_MNG_SCMS0	0x20    /* serial copy management system */
 134#define MS_REG_MNG_SCMS1	0x10
 135#define MS_REG_MNG_SCMS_MASK		(MS_REG_MNG_SCMS0 | MS_REG_MNG_SCMS1)
 136#define MS_REG_MNG_SCMS_COPY_OK		(MS_REG_MNG_SCMS0 | MS_REG_MNG_SCMS1)
 137#define MS_REG_MNG_SCMS_ONE_COPY	MS_REG_MNG_SCMS1
 138#define MS_REG_MNG_SCMS_NO_COPY	0x00
 139#define MS_REG_MNG_ATFLG	0x08    /* address transfer table flag */
 140#define MS_REG_MNG_ATFLG_OTHER	MS_REG_MNG_ATFLG    /* other */
 141#define MS_REG_MNG_ATFLG_ATTBL	0x00	/* address transfer table */
 142#define MS_REG_MNG_SYSFLG	0x04	/* system flag */
 143#define MS_REG_MNG_SYSFLG_USER	MS_REG_MNG_SYSFLG   /* user block */
 144#define MS_REG_MNG_SYSFLG_BOOT	0x00	/* system block */
 145#define MS_REG_MNG_RESERVED	0xc3
 146#define MS_REG_MNG_DEFAULT	(MS_REG_MNG_SCMS_COPY_OK | MS_REG_MNG_ATFLG_OTHER | MS_REG_MNG_SYSFLG_USER | MS_REG_MNG_RESERVED)
 147
 148
 149#define MS_MAX_PAGES_PER_BLOCK		32
 150#define MS_MAX_INITIAL_ERROR_BLOCKS 	10
 151#define MS_LIB_BITS_PER_BYTE		8
 152
 153#define MS_SYSINF_FORMAT_FAT		1
 154#define MS_SYSINF_USAGE_GENERAL		0
 155
 156#define MS_SYSINF_MSCLASS_TYPE_1	1
 157#define MS_SYSINF_PAGE_SIZE		MS_BYTES_PER_PAGE /* fixed */
 158
 159#define MS_SYSINF_CARDTYPE_RDONLY	1
 160#define MS_SYSINF_CARDTYPE_RDWR		2
 161#define MS_SYSINF_CARDTYPE_HYBRID	3
 162#define MS_SYSINF_SECURITY		0x01
 163#define MS_SYSINF_SECURITY_NO_SUPPORT	MS_SYSINF_SECURITY
 164#define MS_SYSINF_SECURITY_SUPPORT	0
 165
 166#define MS_SYSINF_RESERVED1		1
 167#define MS_SYSINF_RESERVED2		1
 168
 169#define MS_SYSENT_TYPE_INVALID_BLOCK	0x01
 170#define MS_SYSENT_TYPE_CIS_IDI		0x0a    /* CIS/IDI */
 171
 172#define SIZE_OF_KIRO		1024
 173#define BYTE_MASK		0xff
 174
 175/* ms error code */
 176#define MS_STATUS_WRITE_PROTECT	0x0106
 177#define MS_STATUS_SUCCESS	0x0000
 178#define MS_ERROR_FLASH_READ	0x8003
 179#define MS_ERROR_FLASH_ERASE	0x8005
 180#define MS_LB_ERROR		0xfff0
 181#define MS_LB_BOOT_BLOCK	0xfff1
 182#define MS_LB_INITIAL_ERROR	0xfff2
 183#define MS_STATUS_SUCCESS_WITH_ECC 0xfff3
 184#define MS_LB_ACQUIRED_ERROR	0xfff4
 185#define MS_LB_NOT_USED_ERASED	0xfff5
 186#define MS_NOCARD_ERROR		0xfff8
 187#define MS_NO_MEMORY_ERROR	0xfff9
 188#define MS_STATUS_INT_ERROR	0xfffa
 189#define MS_STATUS_ERROR		0xfffe
 190#define MS_LB_NOT_USED		0xffff
 191
 192#define MS_REG_MNG_SYSFLG	0x04    /* system flag */
 193#define MS_REG_MNG_SYSFLG_USER	MS_REG_MNG_SYSFLG   /* user block */
 194
 195#define MS_BOOT_BLOCK_ID                        0x0001
 196#define MS_BOOT_BLOCK_FORMAT_VERSION            0x0100
 197#define MS_BOOT_BLOCK_DATA_ENTRIES              2
 198
 199#define MS_NUMBER_OF_SYSTEM_ENTRY       	4
 200#define MS_NUMBER_OF_BOOT_BLOCK			2
 201#define MS_BYTES_PER_PAGE			512
 202#define MS_LOGICAL_BLOCKS_PER_SEGMENT		496
 203#define MS_LOGICAL_BLOCKS_IN_1ST_SEGMENT        494
 204
 205#define MS_PHYSICAL_BLOCKS_PER_SEGMENT		0x200 /* 512 */
 206#define MS_PHYSICAL_BLOCKS_PER_SEGMENT_MASK     0x1ff
 207
 208/* overwrite area */
 209#define MS_REG_OVR_BKST		0x80		/* block status */
 210#define MS_REG_OVR_BKST_OK	MS_REG_OVR_BKST	/* OK */
 211#define MS_REG_OVR_BKST_NG	0x00            /* NG */
 212
 213/* Status Register 1 */
 214#define MS_REG_ST1_DTER		0x20	/* error on data(corrected) */
 215#define MS_REG_ST1_EXER		0x08	/* error on extra(corrected) */
 216#define MS_REG_ST1_FGER		0x02	/* error on overwrite flag(corrected) */
 217
 218/* MemoryStick Register */
 219/* Status Register 0 */
 220#define MS_REG_ST0_WP		0x01	/* write protected */
 221#define MS_REG_ST0_WP_ON	MS_REG_ST0_WP
 222
 223#define MS_LIB_CTRL_RDONLY      0
 224#define MS_LIB_CTRL_WRPROTECT   1
 225
 226/*dphy->log table */
 227#define ms_libconv_to_logical(pdx, PhyBlock) (((PhyBlock) >= (pdx)->MS_Lib.NumberOfPhyBlock) ? MS_STATUS_ERROR : (pdx)->MS_Lib.Phy2LogMap[PhyBlock])
 228#define ms_libconv_to_physical(pdx, LogBlock) (((LogBlock) >= (pdx)->MS_Lib.NumberOfLogBlock) ? MS_STATUS_ERROR : (pdx)->MS_Lib.Log2PhyMap[LogBlock])
 229
 230#define ms_lib_ctrl_set(pdx, Flag)	((pdx)->MS_Lib.flags |= (1 << (Flag)))
 231#define ms_lib_ctrl_reset(pdx, Flag)	((pdx)->MS_Lib.flags &= ~(1 << (Flag)))
 232#define ms_lib_ctrl_check(pdx, Flag)	((pdx)->MS_Lib.flags & (1 << (Flag)))
 233
 234#define ms_lib_iswritable(pdx) ((ms_lib_ctrl_check((pdx), MS_LIB_CTRL_RDONLY) == 0) && (ms_lib_ctrl_check(pdx, MS_LIB_CTRL_WRPROTECT) == 0))
 235#define ms_lib_clear_pagemap(pdx) memset((pdx)->MS_Lib.pagemap, 0, sizeof((pdx)->MS_Lib.pagemap))
 236#define memstick_logaddr(logadr1, logadr0) ((((u16)(logadr1)) << 8) | (logadr0))
 237
 238
 239struct SD_STATUS {
 240	u8    Insert:1;
 241	u8    Ready:1;
 242	u8    MediaChange:1;
 243	u8    IsMMC:1;
 244	u8    HiCapacity:1;
 245	u8    HiSpeed:1;
 246	u8    WtP:1;
 247	u8    Reserved:1;
 248};
 249
 250struct MS_STATUS {
 251	u8    Insert:1;
 252	u8    Ready:1;
 253	u8    MediaChange:1;
 254	u8    IsMSPro:1;
 255	u8    IsMSPHG:1;
 256	u8    Reserved1:1;
 257	u8    WtP:1;
 258	u8    Reserved2:1;
 259};
 260
 261struct SM_STATUS {
 262	u8    Insert:1;
 263	u8    Ready:1;
 264	u8    MediaChange:1;
 265	u8    Reserved:3;
 266	u8    WtP:1;
 267	u8    IsMS:1;
 268};
 269
 270struct ms_bootblock_cis {
 271	u8 bCistplDEVICE[6];    /* 0 */
 272	u8 bCistplDEVICE0C[6];  /* 6 */
 273	u8 bCistplJEDECC[4];    /* 12 */
 274	u8 bCistplMANFID[6];    /* 16 */
 275	u8 bCistplVER1[32];     /* 22 */
 276	u8 bCistplFUNCID[4];    /* 54 */
 277	u8 bCistplFUNCE0[4];    /* 58 */
 278	u8 bCistplFUNCE1[5];    /* 62 */
 279	u8 bCistplCONF[7];      /* 67 */
 280	u8 bCistplCFTBLENT0[10];/* 74 */
 281	u8 bCistplCFTBLENT1[8]; /* 84 */
 282	u8 bCistplCFTBLENT2[12];/* 92 */
 283	u8 bCistplCFTBLENT3[8]; /* 104 */
 284	u8 bCistplCFTBLENT4[17];/* 112 */
 285	u8 bCistplCFTBLENT5[8]; /* 129 */
 286	u8 bCistplCFTBLENT6[17];/* 137 */
 287	u8 bCistplCFTBLENT7[8]; /* 154 */
 288	u8 bCistplNOLINK[3];    /* 162 */
 289} ;
 290
 291struct ms_bootblock_idi {
 292#define MS_IDI_GENERAL_CONF 0x848A
 293	u16 wIDIgeneralConfiguration;	/* 0 */
 294	u16 wIDInumberOfCylinder;	/* 1 */
 295	u16 wIDIreserved0;		/* 2 */
 296	u16 wIDInumberOfHead;		/* 3 */
 297	u16 wIDIbytesPerTrack;		/* 4 */
 298	u16 wIDIbytesPerSector;		/* 5 */
 299	u16 wIDIsectorsPerTrack;	/* 6 */
 300	u16 wIDItotalSectors[2];	/* 7-8  high,low */
 301	u16 wIDIreserved1[11];		/* 9-19 */
 302	u16 wIDIbufferType;		/* 20 */
 303	u16 wIDIbufferSize;		/* 21 */
 304	u16 wIDIlongCmdECC;		/* 22 */
 305	u16 wIDIfirmVersion[4];		/* 23-26 */
 306	u16 wIDImodelName[20];		/* 27-46 */
 307	u16 wIDIreserved2;		/* 47 */
 308	u16 wIDIlongWordSupported;	/* 48 */
 309	u16 wIDIdmaSupported;		/* 49 */
 310	u16 wIDIreserved3;		/* 50 */
 311	u16 wIDIpioTiming;		/* 51 */
 312	u16 wIDIdmaTiming;		/* 52 */
 313	u16 wIDItransferParameter;	/* 53 */
 314	u16 wIDIformattedCylinder;	/* 54 */
 315	u16 wIDIformattedHead;		/* 55 */
 316	u16 wIDIformattedSectorsPerTrack;/* 56 */
 317	u16 wIDIformattedTotalSectors[2];/* 57-58 */
 318	u16 wIDImultiSector;		/* 59 */
 319	u16 wIDIlbaSectors[2];		/* 60-61 */
 320	u16 wIDIsingleWordDMA;		/* 62 */
 321	u16 wIDImultiWordDMA;		/* 63 */
 322	u16 wIDIreserved4[192];		/* 64-255 */
 323};
 324
 325struct ms_bootblock_sysent_rec {
 326	u32 dwStart;
 327	u32 dwSize;
 328	u8 bType;
 329	u8 bReserved[3];
 330};
 331
 332struct ms_bootblock_sysent {
 333	struct ms_bootblock_sysent_rec entry[MS_NUMBER_OF_SYSTEM_ENTRY];
 334};
 335
 336struct ms_bootblock_sysinf {
 337	u8 bMsClass;			/* must be 1 */
 338	u8 bCardType;			/* see below */
 339	u16 wBlockSize;			/* n KB */
 340	u16 wBlockNumber;		/* number of physical block */
 341	u16 wTotalBlockNumber;		/* number of logical block */
 342	u16 wPageSize;			/* must be 0x200 */
 343	u8 bExtraSize;			/* 0x10 */
 344	u8 bSecuritySupport;
 345	u8 bAssemblyDate[8];
 346	u8 bFactoryArea[4];
 347	u8 bAssemblyMakerCode;
 348	u8 bAssemblyMachineCode[3];
 349	u16 wMemoryMakerCode;
 350	u16 wMemoryDeviceCode;
 351	u16 wMemorySize;
 352	u8 bReserved1;
 353	u8 bReserved2;
 354	u8 bVCC;
 355	u8 bVPP;
 356	u16 wControllerChipNumber;
 357	u16 wControllerFunction;	/* New MS */
 358	u8 bReserved3[9];		/* New MS */
 359	u8 bParallelSupport;		/* New MS */
 360	u16 wFormatValue;		/* New MS */
 361	u8 bFormatType;
 362	u8 bUsage;
 363	u8 bDeviceType;
 364	u8 bReserved4[22];
 365	u8 bFUValue3;
 366	u8 bFUValue4;
 367	u8 bReserved5[15];
 368};
 369
 370struct ms_bootblock_header {
 371	u16 wBlockID;
 372	u16 wFormatVersion;
 373	u8 bReserved1[184];
 374	u8 bNumberOfDataEntry;
 375	u8 bReserved2[179];
 376};
 377
 378struct ms_bootblock_page0 {
 379	struct ms_bootblock_header header;
 380	struct ms_bootblock_sysent sysent;
 381	struct ms_bootblock_sysinf sysinf;
 382};
 383
 384struct ms_bootblock_cis_idi {
 385	union {
 386		struct ms_bootblock_cis cis;
 387		u8 dmy[256];
 388	} cis;
 389
 390	union {
 391		struct ms_bootblock_idi idi;
 392		u8 dmy[256];
 393	} idi;
 394
 395};
 396
 397/* ENE MS Lib struct */
 398struct ms_lib_type_extdat {
 399	u8 reserved;
 400	u8 intr;
 401	u8 status0;
 402	u8 status1;
 403	u8 ovrflg;
 404	u8 mngflg;
 405	u16 logadr;
 406};
 407
 408struct ms_lib_ctrl {
 409	u32 flags;
 410	u32 BytesPerSector;
 411	u32 NumberOfCylinder;
 412	u32 SectorsPerCylinder;
 413	u16 cardType;			/* R/W, RO, Hybrid */
 414	u16 blockSize;
 415	u16 PagesPerBlock;
 416	u16 NumberOfPhyBlock;
 417	u16 NumberOfLogBlock;
 418	u16 NumberOfSegment;
 419	u16 *Phy2LogMap;		/* phy2log table */
 420	u16 *Log2PhyMap;		/* log2phy table */
 421	u16 wrtblk;
 422	unsigned char *pagemap[(MS_MAX_PAGES_PER_BLOCK + (MS_LIB_BITS_PER_BYTE-1)) / MS_LIB_BITS_PER_BYTE];
 423	unsigned char *blkpag;
 424	struct ms_lib_type_extdat *blkext;
 425	unsigned char copybuf[512];
 426};
 427
 428
 429/* SD Block Length */
 430/* 2^9 = 512 Bytes, The HW maximum read/write data length */
 431#define SD_BLOCK_LEN  9
 432
 433struct ene_ub6250_info {
 
 
 
 
 434	/* for 6250 code */
 435	struct SD_STATUS	SD_Status;
 436	struct MS_STATUS	MS_Status;
 437	struct SM_STATUS	SM_Status;
 438
 439	/* ----- SD Control Data ---------------- */
 440	/*SD_REGISTER SD_Regs; */
 441	u16		SD_Block_Mult;
 442	u8		SD_READ_BL_LEN;
 443	u16		SD_C_SIZE;
 444	u8		SD_C_SIZE_MULT;
 445
 446	/* SD/MMC New spec. */
 447	u8		SD_SPEC_VER;
 448	u8		SD_CSD_VER;
 449	u8		SD20_HIGH_CAPACITY;
 450	u32		HC_C_SIZE;
 451	u8		MMC_SPEC_VER;
 452	u8		MMC_BusWidth;
 453	u8		MMC_HIGH_CAPACITY;
 454
 455	/*----- MS Control Data ---------------- */
 456	bool		MS_SWWP;
 457	u32		MSP_TotalBlock;
 458	struct ms_lib_ctrl MS_Lib;
 459	bool		MS_IsRWPage;
 460	u16		MS_Model;
 461
 462	/*----- SM Control Data ---------------- */
 463	u8		SM_DeviceID;
 464	u8		SM_CardID;
 465
 466	unsigned char	*testbuf;
 467	u8		BIN_FLAG;
 468	u32		bl_num;
 469	int		SrbStatus;
 470
 471	/*------Power Managerment ---------------*/
 472	bool		Power_IsResum;
 473};
 474
 475static int ene_sd_init(struct us_data *us);
 476static int ene_ms_init(struct us_data *us);
 477static int ene_load_bincode(struct us_data *us, unsigned char flag);
 478
 479static void ene_ub6250_info_destructor(void *extra)
 480{
 
 
 481	if (!extra)
 482		return;
 
 483}
 484
 485static int ene_send_scsi_cmd(struct us_data *us, u8 fDir, void *buf, int use_sg)
 486{
 487	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
 488	struct bulk_cs_wrap *bcs = (struct bulk_cs_wrap *) us->iobuf;
 489
 490	int result;
 491	unsigned int residue;
 492	unsigned int cswlen = 0, partial = 0;
 493	unsigned int transfer_length = bcb->DataTransferLength;
 494
 495	/* US_DEBUGP("transport --- ene_send_scsi_cmd\n"); */
 496	/* send cmd to out endpoint */
 497	result = usb_stor_bulk_transfer_buf(us, us->send_bulk_pipe,
 498					    bcb, US_BULK_CB_WRAP_LEN, NULL);
 499	if (result != USB_STOR_XFER_GOOD) {
 500		US_DEBUGP("send cmd to out endpoint fail ---\n");
 501		return USB_STOR_TRANSPORT_ERROR;
 502	}
 503
 504	if (buf) {
 505		unsigned int pipe = fDir;
 506
 507		if (fDir  == FDIR_READ)
 508			pipe = us->recv_bulk_pipe;
 509		else
 510			pipe = us->send_bulk_pipe;
 511
 512		/* Bulk */
 513		if (use_sg) {
 514			result = usb_stor_bulk_srb(us, pipe, us->srb);
 515		} else {
 516			result = usb_stor_bulk_transfer_sg(us, pipe, buf,
 517						transfer_length, 0, &partial);
 518		}
 519		if (result != USB_STOR_XFER_GOOD) {
 520			US_DEBUGP("data transfer fail ---\n");
 521			return USB_STOR_TRANSPORT_ERROR;
 522		}
 523	}
 524
 525	/* Get CSW for device status */
 526	result = usb_stor_bulk_transfer_buf(us, us->recv_bulk_pipe, bcs,
 527					    US_BULK_CS_WRAP_LEN, &cswlen);
 528
 529	if (result == USB_STOR_XFER_SHORT && cswlen == 0) {
 530		US_DEBUGP("Received 0-length CSW; retrying...\n");
 531		result = usb_stor_bulk_transfer_buf(us, us->recv_bulk_pipe,
 532					    bcs, US_BULK_CS_WRAP_LEN, &cswlen);
 533	}
 534
 535	if (result == USB_STOR_XFER_STALLED) {
 536		/* get the status again */
 537		US_DEBUGP("Attempting to get CSW (2nd try)...\n");
 538		result = usb_stor_bulk_transfer_buf(us, us->recv_bulk_pipe,
 539						bcs, US_BULK_CS_WRAP_LEN, NULL);
 540	}
 541
 542	if (result != USB_STOR_XFER_GOOD)
 543		return USB_STOR_TRANSPORT_ERROR;
 544
 545	/* check bulk status */
 546	residue = le32_to_cpu(bcs->Residue);
 547
 548	/* try to compute the actual residue, based on how much data
 549	 * was really transferred and what the device tells us */
 
 
 550	if (residue && !(us->fflags & US_FL_IGNORE_RESIDUE)) {
 551		residue = min(residue, transfer_length);
 552		if (us->srb != NULL)
 553			scsi_set_resid(us->srb, max(scsi_get_resid(us->srb),
 554								(int)residue));
 555	}
 556
 557	if (bcs->Status != US_BULK_STAT_OK)
 558		return USB_STOR_TRANSPORT_ERROR;
 559
 560	return USB_STOR_TRANSPORT_GOOD;
 561}
 562
 563static int sd_scsi_test_unit_ready(struct us_data *us, struct scsi_cmnd *srb)
 564{
 565	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 
 566
 567	if (info->SD_Status.Insert && info->SD_Status.Ready)
 568		return USB_STOR_TRANSPORT_GOOD;
 569	else {
 570		ene_sd_init(us);
 571		return USB_STOR_TRANSPORT_GOOD;
 572	}
 573
 
 574	return USB_STOR_TRANSPORT_GOOD;
 575}
 576
 577static int sd_scsi_inquiry(struct us_data *us, struct scsi_cmnd *srb)
 578{
 579	unsigned char data_ptr[36] = {
 580		0x00, 0x80, 0x02, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x55,
 581		0x53, 0x42, 0x32, 0x2E, 0x30, 0x20, 0x20, 0x43, 0x61,
 582		0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20,
 583		0x20, 0x20, 0x20, 0x20, 0x20, 0x30, 0x31, 0x30, 0x30 };
 584
 585	usb_stor_set_xfer_buf(data_ptr, 36, srb);
 586	return USB_STOR_TRANSPORT_GOOD;
 587}
 588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 589static int sd_scsi_mode_sense(struct us_data *us, struct scsi_cmnd *srb)
 590{
 591	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 592	unsigned char mediaNoWP[12] = {
 593		0x0b, 0x00, 0x00, 0x08, 0x00, 0x00,
 594		0x71, 0xc0, 0x00, 0x00, 0x02, 0x00 };
 595	unsigned char mediaWP[12]   = {
 596		0x0b, 0x00, 0x80, 0x08, 0x00, 0x00,
 597		0x71, 0xc0, 0x00, 0x00, 0x02, 0x00 };
 598
 599	if (info->SD_Status.WtP)
 600		usb_stor_set_xfer_buf(mediaWP, 12, srb);
 601	else
 602		usb_stor_set_xfer_buf(mediaNoWP, 12, srb);
 603
 604
 605	return USB_STOR_TRANSPORT_GOOD;
 606}
 607
 608static int sd_scsi_read_capacity(struct us_data *us, struct scsi_cmnd *srb)
 609{
 610	u32   bl_num;
 611	u16    bl_len;
 612	unsigned int offset = 0;
 613	unsigned char    buf[8];
 614	struct scatterlist *sg = NULL;
 615	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 616
 617	US_DEBUGP("sd_scsi_read_capacity\n");
 618	if (info->SD_Status.HiCapacity) {
 619		bl_len = 0x200;
 620		if (info->SD_Status.IsMMC)
 621			bl_num = info->HC_C_SIZE-1;
 622		else
 623			bl_num = (info->HC_C_SIZE + 1) * 1024 - 1;
 624	} else {
 625		bl_len = 1<<(info->SD_READ_BL_LEN);
 626		bl_num = info->SD_Block_Mult * (info->SD_C_SIZE + 1)
 627				* (1 << (info->SD_C_SIZE_MULT + 2)) - 1;
 628	}
 629	info->bl_num = bl_num;
 630	US_DEBUGP("bl_len = %x\n", bl_len);
 631	US_DEBUGP("bl_num = %x\n", bl_num);
 632
 633	/*srb->request_bufflen = 8; */
 634	buf[0] = (bl_num >> 24) & 0xff;
 635	buf[1] = (bl_num >> 16) & 0xff;
 636	buf[2] = (bl_num >> 8) & 0xff;
 637	buf[3] = (bl_num >> 0) & 0xff;
 638	buf[4] = (bl_len >> 24) & 0xff;
 639	buf[5] = (bl_len >> 16) & 0xff;
 640	buf[6] = (bl_len >> 8) & 0xff;
 641	buf[7] = (bl_len >> 0) & 0xff;
 642
 643	usb_stor_access_xfer_buf(buf, 8, srb, &sg, &offset, TO_XFER_BUF);
 644
 645	return USB_STOR_TRANSPORT_GOOD;
 646}
 647
 648static int sd_scsi_read(struct us_data *us, struct scsi_cmnd *srb)
 649{
 650	int result;
 651	unsigned char *cdb = srb->cmnd;
 652	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
 653	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 654
 655	u32 bn = ((cdb[2] << 24) & 0xff000000) | ((cdb[3] << 16) & 0x00ff0000) |
 656		 ((cdb[4] << 8) & 0x0000ff00) | ((cdb[5] << 0) & 0x000000ff);
 657	u16 blen = ((cdb[7] << 8) & 0xff00) | ((cdb[8] << 0) & 0x00ff);
 658	u32 bnByte = bn * 0x200;
 659	u32 blenByte = blen * 0x200;
 660
 661	if (bn > info->bl_num)
 662		return USB_STOR_TRANSPORT_ERROR;
 663
 664	result = ene_load_bincode(us, SD_RW_PATTERN);
 665	if (result != USB_STOR_XFER_GOOD) {
 666		US_DEBUGP("Load SD RW pattern Fail !!\n");
 667		return USB_STOR_TRANSPORT_ERROR;
 668	}
 669
 670	if (info->SD_Status.HiCapacity)
 671		bnByte = bn;
 672
 673	/* set up the command wrapper */
 674	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
 675	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
 676	bcb->DataTransferLength = blenByte;
 677	bcb->Flags  = 0x80;
 678	bcb->CDB[0] = 0xF1;
 679	bcb->CDB[5] = (unsigned char)(bnByte);
 680	bcb->CDB[4] = (unsigned char)(bnByte>>8);
 681	bcb->CDB[3] = (unsigned char)(bnByte>>16);
 682	bcb->CDB[2] = (unsigned char)(bnByte>>24);
 683
 684	result = ene_send_scsi_cmd(us, FDIR_READ, scsi_sglist(srb), 1);
 685	return result;
 686}
 687
 688static int sd_scsi_write(struct us_data *us, struct scsi_cmnd *srb)
 689{
 690	int result;
 691	unsigned char *cdb = srb->cmnd;
 692	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
 693	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 694
 695	u32 bn = ((cdb[2] << 24) & 0xff000000) | ((cdb[3] << 16) & 0x00ff0000) |
 696		 ((cdb[4] << 8) & 0x0000ff00) | ((cdb[5] << 0) & 0x000000ff);
 697	u16 blen = ((cdb[7] << 8) & 0xff00) | ((cdb[8] << 0) & 0x00ff);
 698	u32 bnByte = bn * 0x200;
 699	u32 blenByte = blen * 0x200;
 700
 701	if (bn > info->bl_num)
 702		return USB_STOR_TRANSPORT_ERROR;
 703
 704	result = ene_load_bincode(us, SD_RW_PATTERN);
 705	if (result != USB_STOR_XFER_GOOD) {
 706		US_DEBUGP("Load SD RW pattern Fail !!\n");
 707		return USB_STOR_TRANSPORT_ERROR;
 708	}
 709
 710	if (info->SD_Status.HiCapacity)
 711		bnByte = bn;
 712
 713	/* set up the command wrapper */
 714	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
 715	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
 716	bcb->DataTransferLength = blenByte;
 717	bcb->Flags  = 0x00;
 718	bcb->CDB[0] = 0xF0;
 719	bcb->CDB[5] = (unsigned char)(bnByte);
 720	bcb->CDB[4] = (unsigned char)(bnByte>>8);
 721	bcb->CDB[3] = (unsigned char)(bnByte>>16);
 722	bcb->CDB[2] = (unsigned char)(bnByte>>24);
 723
 724	result = ene_send_scsi_cmd(us, FDIR_WRITE, scsi_sglist(srb), 1);
 725	return result;
 726}
 727
 728/*
 729 * ENE MS Card
 730 */
 731
 732static int ms_lib_set_logicalpair(struct us_data *us, u16 logblk, u16 phyblk)
 733{
 734	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 735
 736	if ((logblk >= info->MS_Lib.NumberOfLogBlock) || (phyblk >= info->MS_Lib.NumberOfPhyBlock))
 737		return (u32)-1;
 738
 739	info->MS_Lib.Phy2LogMap[phyblk] = logblk;
 740	info->MS_Lib.Log2PhyMap[logblk] = phyblk;
 741
 742	return 0;
 743}
 744
 745static int ms_lib_set_logicalblockmark(struct us_data *us, u16 phyblk, u16 mark)
 746{
 747	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 748
 749	if (phyblk >= info->MS_Lib.NumberOfPhyBlock)
 750		return (u32)-1;
 751
 752	info->MS_Lib.Phy2LogMap[phyblk] = mark;
 753
 754	return 0;
 755}
 756
 757static int ms_lib_set_initialerrorblock(struct us_data *us, u16 phyblk)
 758{
 759	return ms_lib_set_logicalblockmark(us, phyblk, MS_LB_INITIAL_ERROR);
 760}
 761
 762static int ms_lib_set_bootblockmark(struct us_data *us, u16 phyblk)
 763{
 764	return ms_lib_set_logicalblockmark(us, phyblk, MS_LB_BOOT_BLOCK);
 765}
 766
 767static int ms_lib_free_logicalmap(struct us_data *us)
 768{
 769	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 770
 771	kfree(info->MS_Lib.Phy2LogMap);
 772	info->MS_Lib.Phy2LogMap = NULL;
 773
 774	kfree(info->MS_Lib.Log2PhyMap);
 775	info->MS_Lib.Log2PhyMap = NULL;
 776
 777	return 0;
 778}
 779
 780int ms_lib_alloc_logicalmap(struct us_data *us)
 781{
 782	u32  i;
 783	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 784
 785	info->MS_Lib.Phy2LogMap = kmalloc(info->MS_Lib.NumberOfPhyBlock * sizeof(u16), GFP_KERNEL);
 786	info->MS_Lib.Log2PhyMap = kmalloc(info->MS_Lib.NumberOfLogBlock * sizeof(u16), GFP_KERNEL);
 
 
 
 
 787
 788	if ((info->MS_Lib.Phy2LogMap == NULL) || (info->MS_Lib.Log2PhyMap == NULL)) {
 789		ms_lib_free_logicalmap(us);
 790		return (u32)-1;
 791	}
 792
 793	for (i = 0; i < info->MS_Lib.NumberOfPhyBlock; i++)
 794		info->MS_Lib.Phy2LogMap[i] = MS_LB_NOT_USED;
 795
 796	for (i = 0; i < info->MS_Lib.NumberOfLogBlock; i++)
 797		info->MS_Lib.Log2PhyMap[i] = MS_LB_NOT_USED;
 798
 799	return 0;
 800}
 801
 802static void ms_lib_clear_writebuf(struct us_data *us)
 803{
 804	int i;
 805	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 806
 807	info->MS_Lib.wrtblk = (u16)-1;
 808	ms_lib_clear_pagemap(info);
 809
 810	if (info->MS_Lib.blkpag)
 811		memset(info->MS_Lib.blkpag, 0xff, info->MS_Lib.PagesPerBlock * info->MS_Lib.BytesPerSector);
 812
 813	if (info->MS_Lib.blkext) {
 814		for (i = 0; i < info->MS_Lib.PagesPerBlock; i++) {
 815			info->MS_Lib.blkext[i].status1 = MS_REG_ST1_DEFAULT;
 816			info->MS_Lib.blkext[i].ovrflg = MS_REG_OVR_DEFAULT;
 817			info->MS_Lib.blkext[i].mngflg = MS_REG_MNG_DEFAULT;
 818			info->MS_Lib.blkext[i].logadr = MS_LB_NOT_USED;
 819		}
 820	}
 821}
 822
 823static int ms_count_freeblock(struct us_data *us, u16 PhyBlock)
 824{
 825	u32 Ende, Count;
 826	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 827
 828	Ende = PhyBlock + MS_PHYSICAL_BLOCKS_PER_SEGMENT;
 829	for (Count = 0; PhyBlock < Ende; PhyBlock++) {
 830		switch (info->MS_Lib.Phy2LogMap[PhyBlock]) {
 831		case MS_LB_NOT_USED:
 832		case MS_LB_NOT_USED_ERASED:
 833			Count++;
 
 834		default:
 835			break;
 836		}
 837	}
 838
 839	return Count;
 840}
 841
 842static int ms_read_readpage(struct us_data *us, u32 PhyBlockAddr,
 843		u8 PageNum, u32 *PageBuf, struct ms_lib_type_extdat *ExtraDat)
 844{
 845	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
 
 
 846	int result;
 847	u8 ExtBuf[4];
 848	u32 bn = PhyBlockAddr * 0x20 + PageNum;
 849
 850	/* printk(KERN_INFO "MS --- MS_ReaderReadPage,
 851	PhyBlockAddr = %x, PageNum = %x\n", PhyBlockAddr, PageNum); */
 852
 853	result = ene_load_bincode(us, MS_RW_PATTERN);
 854	if (result != USB_STOR_XFER_GOOD)
 855		return USB_STOR_TRANSPORT_ERROR;
 856
 857	/* Read Page Data */
 858	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
 859	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
 860	bcb->DataTransferLength = 0x200;
 861	bcb->Flags      = 0x80;
 862	bcb->CDB[0]     = 0xF1;
 863
 864	bcb->CDB[1]     = 0x02; /* in init.c ENE_MSInit() is 0x01 */
 865
 866	bcb->CDB[5]     = (unsigned char)(bn);
 867	bcb->CDB[4]     = (unsigned char)(bn>>8);
 868	bcb->CDB[3]     = (unsigned char)(bn>>16);
 869	bcb->CDB[2]     = (unsigned char)(bn>>24);
 870
 871	result = ene_send_scsi_cmd(us, FDIR_READ, PageBuf, 0);
 872	if (result != USB_STOR_XFER_GOOD)
 873		return USB_STOR_TRANSPORT_ERROR;
 874
 875
 876	/* Read Extra Data */
 877	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
 878	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
 879	bcb->DataTransferLength = 0x4;
 880	bcb->Flags      = 0x80;
 881	bcb->CDB[0]     = 0xF1;
 882	bcb->CDB[1]     = 0x03;
 883
 884	bcb->CDB[5]     = (unsigned char)(PageNum);
 885	bcb->CDB[4]     = (unsigned char)(PhyBlockAddr);
 886	bcb->CDB[3]     = (unsigned char)(PhyBlockAddr>>8);
 887	bcb->CDB[2]     = (unsigned char)(PhyBlockAddr>>16);
 888	bcb->CDB[6]     = 0x01;
 889
 890	result = ene_send_scsi_cmd(us, FDIR_READ, &ExtBuf, 0);
 891	if (result != USB_STOR_XFER_GOOD)
 892		return USB_STOR_TRANSPORT_ERROR;
 893
 894	ExtraDat->reserved = 0;
 895	ExtraDat->intr     = 0x80;  /* Not yet,fireware support */
 896	ExtraDat->status0  = 0x10;  /* Not yet,fireware support */
 897
 898	ExtraDat->status1  = 0x00;  /* Not yet,fireware support */
 899	ExtraDat->ovrflg   = ExtBuf[0];
 900	ExtraDat->mngflg   = ExtBuf[1];
 901	ExtraDat->logadr   = memstick_logaddr(ExtBuf[2], ExtBuf[3]);
 902
 903	return USB_STOR_TRANSPORT_GOOD;
 904}
 905
 906static int ms_lib_process_bootblock(struct us_data *us, u16 PhyBlock, u8 *PageData)
 907{
 908	struct ms_bootblock_sysent *SysEntry;
 909	struct ms_bootblock_sysinf *SysInfo;
 910	u32 i, result;
 911	u8 PageNumber;
 912	u8 *PageBuffer;
 913	struct ms_lib_type_extdat ExtraData;
 914	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 915
 916	PageBuffer = kmalloc(MS_BYTES_PER_PAGE, GFP_KERNEL);
 917	if (PageBuffer == NULL)
 918		return (u32)-1;
 919
 920	result = (u32)-1;
 921
 922	SysInfo = &(((struct ms_bootblock_page0 *)PageData)->sysinf);
 923
 924	if ((SysInfo->bMsClass != MS_SYSINF_MSCLASS_TYPE_1) ||
 925		(be16_to_cpu(SysInfo->wPageSize) != MS_SYSINF_PAGE_SIZE) ||
 926		((SysInfo->bSecuritySupport & MS_SYSINF_SECURITY) == MS_SYSINF_SECURITY_SUPPORT) ||
 927		(SysInfo->bReserved1 != MS_SYSINF_RESERVED1) ||
 928		(SysInfo->bReserved2 != MS_SYSINF_RESERVED2) ||
 929		(SysInfo->bFormatType != MS_SYSINF_FORMAT_FAT) ||
 930		(SysInfo->bUsage != MS_SYSINF_USAGE_GENERAL))
 931		goto exit;
 932		/* */
 933	switch (info->MS_Lib.cardType = SysInfo->bCardType) {
 934	case MS_SYSINF_CARDTYPE_RDONLY:
 935		ms_lib_ctrl_set(info, MS_LIB_CTRL_RDONLY);
 936		break;
 937	case MS_SYSINF_CARDTYPE_RDWR:
 938		ms_lib_ctrl_reset(info, MS_LIB_CTRL_RDONLY);
 939		break;
 940	case MS_SYSINF_CARDTYPE_HYBRID:
 941	default:
 942		goto exit;
 943	}
 944
 945	info->MS_Lib.blockSize = be16_to_cpu(SysInfo->wBlockSize);
 946	info->MS_Lib.NumberOfPhyBlock = be16_to_cpu(SysInfo->wBlockNumber);
 947	info->MS_Lib.NumberOfLogBlock = be16_to_cpu(SysInfo->wTotalBlockNumber)-2;
 948	info->MS_Lib.PagesPerBlock = info->MS_Lib.blockSize * SIZE_OF_KIRO / MS_BYTES_PER_PAGE;
 949	info->MS_Lib.NumberOfSegment = info->MS_Lib.NumberOfPhyBlock / MS_PHYSICAL_BLOCKS_PER_SEGMENT;
 950	info->MS_Model = be16_to_cpu(SysInfo->wMemorySize);
 951
 952	/*Allocate to all number of logicalblock and physicalblock */
 953	if (ms_lib_alloc_logicalmap(us))
 954		goto exit;
 955
 956	/* Mark the book block */
 957	ms_lib_set_bootblockmark(us, PhyBlock);
 958
 959	SysEntry = &(((struct ms_bootblock_page0 *)PageData)->sysent);
 960
 961	for (i = 0; i < MS_NUMBER_OF_SYSTEM_ENTRY; i++) {
 962		u32  EntryOffset, EntrySize;
 963
 964		EntryOffset = be32_to_cpu(SysEntry->entry[i].dwStart);
 965
 966		if (EntryOffset == 0xffffff)
 967			continue;
 968		EntrySize = be32_to_cpu(SysEntry->entry[i].dwSize);
 969
 970		if (EntrySize == 0)
 971			continue;
 972
 973		if (EntryOffset + MS_BYTES_PER_PAGE + EntrySize > info->MS_Lib.blockSize * (u32)SIZE_OF_KIRO)
 974			continue;
 975
 976		if (i == 0) {
 977			u8 PrevPageNumber = 0;
 978			u16 phyblk;
 979
 980			if (SysEntry->entry[i].bType != MS_SYSENT_TYPE_INVALID_BLOCK)
 981				goto exit;
 982
 983			while (EntrySize > 0) {
 984
 985				PageNumber = (u8)(EntryOffset / MS_BYTES_PER_PAGE + 1);
 986				if (PageNumber != PrevPageNumber) {
 987					switch (ms_read_readpage(us, PhyBlock, PageNumber, (u32 *)PageBuffer, &ExtraData)) {
 988					case MS_STATUS_SUCCESS:
 989						break;
 990					case MS_STATUS_WRITE_PROTECT:
 991					case MS_ERROR_FLASH_READ:
 992					case MS_STATUS_ERROR:
 993					default:
 994						goto exit;
 995					}
 996
 997					PrevPageNumber = PageNumber;
 998				}
 999
1000				phyblk = be16_to_cpu(*(u16 *)(PageBuffer + (EntryOffset % MS_BYTES_PER_PAGE)));
1001				if (phyblk < 0x0fff)
1002					ms_lib_set_initialerrorblock(us, phyblk);
1003
1004				EntryOffset += 2;
1005				EntrySize -= 2;
1006			}
1007		} else if (i == 1) {  /* CIS/IDI */
1008			struct ms_bootblock_idi *idi;
1009
1010			if (SysEntry->entry[i].bType != MS_SYSENT_TYPE_CIS_IDI)
1011				goto exit;
1012
1013			switch (ms_read_readpage(us, PhyBlock, (u8)(EntryOffset / MS_BYTES_PER_PAGE + 1), (u32 *)PageBuffer, &ExtraData)) {
1014			case MS_STATUS_SUCCESS:
1015				break;
1016			case MS_STATUS_WRITE_PROTECT:
1017			case MS_ERROR_FLASH_READ:
1018			case MS_STATUS_ERROR:
1019			default:
1020				goto exit;
1021			}
1022
1023			idi = &((struct ms_bootblock_cis_idi *)(PageBuffer + (EntryOffset % MS_BYTES_PER_PAGE)))->idi.idi;
1024			if (le16_to_cpu(idi->wIDIgeneralConfiguration) != MS_IDI_GENERAL_CONF)
1025				goto exit;
1026
1027			info->MS_Lib.BytesPerSector = le16_to_cpu(idi->wIDIbytesPerSector);
1028			if (info->MS_Lib.BytesPerSector != MS_BYTES_PER_PAGE)
1029				goto exit;
1030		}
1031	} /* End for .. */
1032
1033	result = 0;
1034
1035exit:
1036	if (result)
1037		ms_lib_free_logicalmap(us);
1038
1039	kfree(PageBuffer);
1040
1041	result = 0;
1042	return result;
1043}
1044
1045static void ms_lib_free_writebuf(struct us_data *us)
1046{
1047	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1048	info->MS_Lib.wrtblk = (u16)-1; /* set to -1 */
1049
1050	/* memset((fdoExt)->MS_Lib.pagemap, 0, sizeof((fdoExt)->MS_Lib.pagemap)) */
1051
1052	ms_lib_clear_pagemap(info); /* (pdx)->MS_Lib.pagemap memset 0 in ms.h */
1053
1054	if (info->MS_Lib.blkpag) {
1055		kfree((u8 *)(info->MS_Lib.blkpag));  /* Arnold test ... */
1056		info->MS_Lib.blkpag = NULL;
1057	}
1058
1059	if (info->MS_Lib.blkext) {
1060		kfree((u8 *)(info->MS_Lib.blkext));  /* Arnold test ... */
1061		info->MS_Lib.blkext = NULL;
1062	}
1063}
1064
1065
1066static void ms_lib_free_allocatedarea(struct us_data *us)
1067{
1068	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1069
1070	ms_lib_free_writebuf(us); /* Free MS_Lib.pagemap */
1071	ms_lib_free_logicalmap(us); /* kfree MS_Lib.Phy2LogMap and MS_Lib.Log2PhyMap */
1072
1073	/* set struct us point flag to 0 */
1074	info->MS_Lib.flags = 0;
1075	info->MS_Lib.BytesPerSector = 0;
1076	info->MS_Lib.SectorsPerCylinder = 0;
1077
1078	info->MS_Lib.cardType = 0;
1079	info->MS_Lib.blockSize = 0;
1080	info->MS_Lib.PagesPerBlock = 0;
1081
1082	info->MS_Lib.NumberOfPhyBlock = 0;
1083	info->MS_Lib.NumberOfLogBlock = 0;
1084}
1085
1086
1087static int ms_lib_alloc_writebuf(struct us_data *us)
1088{
1089	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1090
1091	info->MS_Lib.wrtblk = (u16)-1;
1092
1093	info->MS_Lib.blkpag = kmalloc(info->MS_Lib.PagesPerBlock * info->MS_Lib.BytesPerSector, GFP_KERNEL);
1094	info->MS_Lib.blkext = kmalloc(info->MS_Lib.PagesPerBlock * sizeof(struct ms_lib_type_extdat), GFP_KERNEL);
 
 
 
 
1095
1096	if ((info->MS_Lib.blkpag == NULL) || (info->MS_Lib.blkext == NULL)) {
1097		ms_lib_free_writebuf(us);
1098		return (u32)-1;
1099	}
1100
1101	ms_lib_clear_writebuf(us);
1102
1103return 0;
1104}
1105
1106static int ms_lib_force_setlogical_pair(struct us_data *us, u16 logblk, u16 phyblk)
1107{
1108	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1109
1110	if (logblk == MS_LB_NOT_USED)
1111		return 0;
1112
1113	if ((logblk >= info->MS_Lib.NumberOfLogBlock) ||
1114		(phyblk >= info->MS_Lib.NumberOfPhyBlock))
1115		return (u32)-1;
1116
1117	info->MS_Lib.Phy2LogMap[phyblk] = logblk;
1118	info->MS_Lib.Log2PhyMap[logblk] = phyblk;
1119
1120	return 0;
1121}
1122
1123static int ms_read_copyblock(struct us_data *us, u16 oldphy, u16 newphy,
1124			u16 PhyBlockAddr, u8 PageNum, unsigned char *buf, u16 len)
1125{
1126	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1127	int result;
1128
1129	/* printk(KERN_INFO "MS_ReaderCopyBlock --- PhyBlockAddr = %x,
1130		PageNum = %x\n", PhyBlockAddr, PageNum); */
1131	result = ene_load_bincode(us, MS_RW_PATTERN);
1132	if (result != USB_STOR_XFER_GOOD)
1133		return USB_STOR_TRANSPORT_ERROR;
1134
1135	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1136	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1137	bcb->DataTransferLength = 0x200*len;
1138	bcb->Flags = 0x00;
1139	bcb->CDB[0] = 0xF0;
1140	bcb->CDB[1] = 0x08;
1141	bcb->CDB[4] = (unsigned char)(oldphy);
1142	bcb->CDB[3] = (unsigned char)(oldphy>>8);
1143	bcb->CDB[2] = 0; /* (BYTE)(oldphy>>16) */
1144	bcb->CDB[7] = (unsigned char)(newphy);
1145	bcb->CDB[6] = (unsigned char)(newphy>>8);
1146	bcb->CDB[5] = 0; /* (BYTE)(newphy>>16) */
1147	bcb->CDB[9] = (unsigned char)(PhyBlockAddr);
1148	bcb->CDB[8] = (unsigned char)(PhyBlockAddr>>8);
1149	bcb->CDB[10] = PageNum;
1150
1151	result = ene_send_scsi_cmd(us, FDIR_WRITE, buf, 0);
1152	if (result != USB_STOR_XFER_GOOD)
1153		return USB_STOR_TRANSPORT_ERROR;
1154
1155	return USB_STOR_TRANSPORT_GOOD;
1156}
1157
1158static int ms_read_eraseblock(struct us_data *us, u32 PhyBlockAddr)
1159{
1160	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1161	int result;
1162	u32 bn = PhyBlockAddr;
1163
1164	/* printk(KERN_INFO "MS --- ms_read_eraseblock,
1165			PhyBlockAddr = %x\n", PhyBlockAddr); */
1166	result = ene_load_bincode(us, MS_RW_PATTERN);
1167	if (result != USB_STOR_XFER_GOOD)
1168		return USB_STOR_TRANSPORT_ERROR;
1169
1170	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1171	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1172	bcb->DataTransferLength = 0x200;
1173	bcb->Flags = 0x80;
1174	bcb->CDB[0] = 0xF2;
1175	bcb->CDB[1] = 0x06;
1176	bcb->CDB[4] = (unsigned char)(bn);
1177	bcb->CDB[3] = (unsigned char)(bn>>8);
1178	bcb->CDB[2] = (unsigned char)(bn>>16);
1179
1180	result = ene_send_scsi_cmd(us, FDIR_READ, NULL, 0);
1181	if (result != USB_STOR_XFER_GOOD)
1182		return USB_STOR_TRANSPORT_ERROR;
1183
1184	return USB_STOR_TRANSPORT_GOOD;
1185}
1186
1187static int ms_lib_check_disableblock(struct us_data *us, u16 PhyBlock)
1188{
1189	unsigned char *PageBuf = NULL;
1190	u16 result = MS_STATUS_SUCCESS;
1191	u16 blk, index = 0;
1192	struct ms_lib_type_extdat extdat;
1193	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1194
1195	PageBuf = kmalloc(MS_BYTES_PER_PAGE, GFP_KERNEL);
1196	if (PageBuf == NULL) {
1197		result = MS_NO_MEMORY_ERROR;
1198		goto exit;
1199	}
1200
1201	ms_read_readpage(us, PhyBlock, 1, (u32 *)PageBuf, &extdat);
1202	do {
1203		blk = be16_to_cpu(PageBuf[index]);
1204		if (blk == MS_LB_NOT_USED)
1205			break;
1206		if (blk == info->MS_Lib.Log2PhyMap[0]) {
1207			result = MS_ERROR_FLASH_READ;
1208			break;
1209		}
1210		index++;
1211	} while (1);
1212
1213exit:
1214	kfree(PageBuf);
1215	return result;
1216}
1217
1218static int ms_lib_setacquired_errorblock(struct us_data *us, u16 phyblk)
1219{
1220	u16 log;
1221	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1222
1223	if (phyblk >= info->MS_Lib.NumberOfPhyBlock)
1224		return (u32)-1;
1225
1226	log = info->MS_Lib.Phy2LogMap[phyblk];
1227
1228	if (log < info->MS_Lib.NumberOfLogBlock)
1229		info->MS_Lib.Log2PhyMap[log] = MS_LB_NOT_USED;
1230
1231	if (info->MS_Lib.Phy2LogMap[phyblk] != MS_LB_INITIAL_ERROR)
1232		info->MS_Lib.Phy2LogMap[phyblk] = MS_LB_ACQUIRED_ERROR;
1233
1234	return 0;
1235}
1236
1237static int ms_lib_overwrite_extra(struct us_data *us, u32 PhyBlockAddr,
1238				u8 PageNum, u8 OverwriteFlag)
1239{
1240	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1241	int result;
1242
1243	/* printk("MS --- MS_LibOverwriteExtra,
1244		PhyBlockAddr = %x, PageNum = %x\n", PhyBlockAddr, PageNum); */
1245	result = ene_load_bincode(us, MS_RW_PATTERN);
1246	if (result != USB_STOR_XFER_GOOD)
1247		return USB_STOR_TRANSPORT_ERROR;
1248
1249	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1250	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1251	bcb->DataTransferLength = 0x4;
1252	bcb->Flags = 0x80;
1253	bcb->CDB[0] = 0xF2;
1254	bcb->CDB[1] = 0x05;
1255	bcb->CDB[5] = (unsigned char)(PageNum);
1256	bcb->CDB[4] = (unsigned char)(PhyBlockAddr);
1257	bcb->CDB[3] = (unsigned char)(PhyBlockAddr>>8);
1258	bcb->CDB[2] = (unsigned char)(PhyBlockAddr>>16);
1259	bcb->CDB[6] = OverwriteFlag;
1260	bcb->CDB[7] = 0xFF;
1261	bcb->CDB[8] = 0xFF;
1262	bcb->CDB[9] = 0xFF;
1263
1264	result = ene_send_scsi_cmd(us, FDIR_READ, NULL, 0);
1265	if (result != USB_STOR_XFER_GOOD)
1266		return USB_STOR_TRANSPORT_ERROR;
1267
1268	return USB_STOR_TRANSPORT_GOOD;
1269}
1270
1271static int ms_lib_error_phyblock(struct us_data *us, u16 phyblk)
1272{
1273	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1274
1275	if (phyblk >= info->MS_Lib.NumberOfPhyBlock)
1276		return MS_STATUS_ERROR;
1277
1278	ms_lib_setacquired_errorblock(us, phyblk);
1279
1280	if (ms_lib_iswritable(info))
1281		return ms_lib_overwrite_extra(us, phyblk, 0, (u8)(~MS_REG_OVR_BKST & BYTE_MASK));
1282
1283	return MS_STATUS_SUCCESS;
1284}
1285
1286static int ms_lib_erase_phyblock(struct us_data *us, u16 phyblk)
1287{
1288	u16 log;
1289	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1290
1291	if (phyblk >= info->MS_Lib.NumberOfPhyBlock)
1292		return MS_STATUS_ERROR;
1293
1294	log = info->MS_Lib.Phy2LogMap[phyblk];
1295
1296	if (log < info->MS_Lib.NumberOfLogBlock)
1297		info->MS_Lib.Log2PhyMap[log] = MS_LB_NOT_USED;
1298
1299	info->MS_Lib.Phy2LogMap[phyblk] = MS_LB_NOT_USED;
1300
1301	if (ms_lib_iswritable(info)) {
1302		switch (ms_read_eraseblock(us, phyblk)) {
1303		case MS_STATUS_SUCCESS:
1304			info->MS_Lib.Phy2LogMap[phyblk] = MS_LB_NOT_USED_ERASED;
1305			return MS_STATUS_SUCCESS;
1306		case MS_ERROR_FLASH_ERASE:
1307		case MS_STATUS_INT_ERROR:
1308			ms_lib_error_phyblock(us, phyblk);
1309			return MS_ERROR_FLASH_ERASE;
1310		case MS_STATUS_ERROR:
1311		default:
1312			ms_lib_ctrl_set(info, MS_LIB_CTRL_RDONLY); /* MS_LibCtrlSet will used by ENE_MSInit ,need check, and why us to info*/
1313			ms_lib_setacquired_errorblock(us, phyblk);
1314			return MS_STATUS_ERROR;
1315		}
1316	}
1317
1318	ms_lib_setacquired_errorblock(us, phyblk);
1319
1320	return MS_STATUS_SUCCESS;
1321}
1322
1323static int ms_lib_read_extra(struct us_data *us, u32 PhyBlock,
1324				u8 PageNum, struct ms_lib_type_extdat *ExtraDat)
1325{
1326	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
 
 
1327	int result;
1328	u8 ExtBuf[4];
1329
1330	/* printk("MS_LibReadExtra --- PhyBlock = %x, PageNum = %x\n", PhyBlock, PageNum); */
1331	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1332	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1333	bcb->DataTransferLength = 0x4;
1334	bcb->Flags      = 0x80;
1335	bcb->CDB[0]     = 0xF1;
1336	bcb->CDB[1]     = 0x03;
1337	bcb->CDB[5]     = (unsigned char)(PageNum);
1338	bcb->CDB[4]     = (unsigned char)(PhyBlock);
1339	bcb->CDB[3]     = (unsigned char)(PhyBlock>>8);
1340	bcb->CDB[2]     = (unsigned char)(PhyBlock>>16);
1341	bcb->CDB[6]     = 0x01;
1342
1343	result = ene_send_scsi_cmd(us, FDIR_READ, &ExtBuf, 0);
1344	if (result != USB_STOR_XFER_GOOD)
1345		return USB_STOR_TRANSPORT_ERROR;
1346
1347	ExtraDat->reserved = 0;
1348	ExtraDat->intr     = 0x80;  /* Not yet, waiting for fireware support */
1349	ExtraDat->status0  = 0x10;  /* Not yet, waiting for fireware support */
1350	ExtraDat->status1  = 0x00;  /* Not yet, waiting for fireware support */
1351	ExtraDat->ovrflg   = ExtBuf[0];
1352	ExtraDat->mngflg   = ExtBuf[1];
1353	ExtraDat->logadr   = memstick_logaddr(ExtBuf[2], ExtBuf[3]);
1354
1355	return USB_STOR_TRANSPORT_GOOD;
1356}
1357
1358static int ms_libsearch_block_from_physical(struct us_data *us, u16 phyblk)
1359{
1360	u16 Newblk;
1361	u16 blk;
1362	struct ms_lib_type_extdat extdat; /* need check */
1363	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1364
1365
1366	if (phyblk >= info->MS_Lib.NumberOfPhyBlock)
1367		return MS_LB_ERROR;
1368
1369	for (blk = phyblk + 1; blk != phyblk; blk++) {
1370		if ((blk & MS_PHYSICAL_BLOCKS_PER_SEGMENT_MASK) == 0)
1371			blk -= MS_PHYSICAL_BLOCKS_PER_SEGMENT;
1372
1373		Newblk = info->MS_Lib.Phy2LogMap[blk];
1374		if (info->MS_Lib.Phy2LogMap[blk] == MS_LB_NOT_USED_ERASED) {
1375			return blk;
1376		} else if (info->MS_Lib.Phy2LogMap[blk] == MS_LB_NOT_USED) {
1377			switch (ms_lib_read_extra(us, blk, 0, &extdat)) {
1378			case MS_STATUS_SUCCESS:
1379			case MS_STATUS_SUCCESS_WITH_ECC:
1380				break;
1381			case MS_NOCARD_ERROR:
1382				return MS_NOCARD_ERROR;
1383			case MS_STATUS_INT_ERROR:
1384				return MS_LB_ERROR;
1385			case MS_ERROR_FLASH_READ:
1386			default:
1387				ms_lib_setacquired_errorblock(us, blk);
1388				continue;
1389			} /* End switch */
1390
1391			if ((extdat.ovrflg & MS_REG_OVR_BKST) != MS_REG_OVR_BKST_OK) {
1392				ms_lib_setacquired_errorblock(us, blk);
1393				continue;
1394			}
1395
1396			switch (ms_lib_erase_phyblock(us, blk)) {
1397			case MS_STATUS_SUCCESS:
1398				return blk;
1399			case MS_STATUS_ERROR:
1400				return MS_LB_ERROR;
1401			case MS_ERROR_FLASH_ERASE:
1402			default:
1403				ms_lib_error_phyblock(us, blk);
1404				break;
1405			}
1406		}
1407	} /* End for */
1408
1409	return MS_LB_ERROR;
1410}
1411static int ms_libsearch_block_from_logical(struct us_data *us, u16 logblk)
1412{
1413	u16 phyblk;
1414	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1415
1416	phyblk = ms_libconv_to_physical(info, logblk);
1417	if (phyblk >= MS_LB_ERROR) {
1418		if (logblk >= info->MS_Lib.NumberOfLogBlock)
1419			return MS_LB_ERROR;
1420
1421		phyblk = (logblk + MS_NUMBER_OF_BOOT_BLOCK) / MS_LOGICAL_BLOCKS_PER_SEGMENT;
1422		phyblk *= MS_PHYSICAL_BLOCKS_PER_SEGMENT;
1423		phyblk += MS_PHYSICAL_BLOCKS_PER_SEGMENT - 1;
1424	}
1425
1426	return ms_libsearch_block_from_physical(us, phyblk);
1427}
1428
1429static int ms_scsi_test_unit_ready(struct us_data *us, struct scsi_cmnd *srb)
1430{
1431	struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra);
1432
1433	/* pr_info("MS_SCSI_Test_Unit_Ready\n"); */
1434	if (info->MS_Status.Insert && info->MS_Status.Ready) {
1435		return USB_STOR_TRANSPORT_GOOD;
1436	} else {
1437		ene_ms_init(us);
1438		return USB_STOR_TRANSPORT_GOOD;
1439	}
1440
1441	return USB_STOR_TRANSPORT_GOOD;
1442}
1443
1444static int ms_scsi_inquiry(struct us_data *us, struct scsi_cmnd *srb)
1445{
1446	/* pr_info("MS_SCSI_Inquiry\n"); */
1447	unsigned char data_ptr[36] = {
1448		0x00, 0x80, 0x02, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x55,
1449		0x53, 0x42, 0x32, 0x2E, 0x30, 0x20, 0x20, 0x43, 0x61,
1450		0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20,
1451		0x20, 0x20, 0x20, 0x20, 0x20, 0x30, 0x31, 0x30, 0x30};
1452
1453	usb_stor_set_xfer_buf(data_ptr, 36, srb);
1454	return USB_STOR_TRANSPORT_GOOD;
1455}
1456
1457static int ms_scsi_mode_sense(struct us_data *us, struct scsi_cmnd *srb)
1458{
1459	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1460	unsigned char mediaNoWP[12] = {
1461		0x0b, 0x00, 0x00, 0x08, 0x00, 0x00,
1462		0x71, 0xc0, 0x00, 0x00, 0x02, 0x00 };
1463	unsigned char mediaWP[12]   = {
1464		0x0b, 0x00, 0x80, 0x08, 0x00, 0x00,
1465		0x71, 0xc0, 0x00, 0x00, 0x02, 0x00 };
1466
1467	if (info->MS_Status.WtP)
1468		usb_stor_set_xfer_buf(mediaWP, 12, srb);
1469	else
1470		usb_stor_set_xfer_buf(mediaNoWP, 12, srb);
1471
1472	return USB_STOR_TRANSPORT_GOOD;
1473}
1474
1475static int ms_scsi_read_capacity(struct us_data *us, struct scsi_cmnd *srb)
1476{
1477	u32   bl_num;
1478	u16    bl_len;
1479	unsigned int offset = 0;
1480	unsigned char    buf[8];
1481	struct scatterlist *sg = NULL;
1482	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1483
1484	US_DEBUGP("ms_scsi_read_capacity\n");
1485	bl_len = 0x200;
1486	if (info->MS_Status.IsMSPro)
1487		bl_num = info->MSP_TotalBlock - 1;
1488	else
1489		bl_num = info->MS_Lib.NumberOfLogBlock * info->MS_Lib.blockSize * 2 - 1;
1490
1491	info->bl_num = bl_num;
1492	US_DEBUGP("bl_len = %x\n", bl_len);
1493	US_DEBUGP("bl_num = %x\n", bl_num);
1494
1495	/*srb->request_bufflen = 8; */
1496	buf[0] = (bl_num >> 24) & 0xff;
1497	buf[1] = (bl_num >> 16) & 0xff;
1498	buf[2] = (bl_num >> 8) & 0xff;
1499	buf[3] = (bl_num >> 0) & 0xff;
1500	buf[4] = (bl_len >> 24) & 0xff;
1501	buf[5] = (bl_len >> 16) & 0xff;
1502	buf[6] = (bl_len >> 8) & 0xff;
1503	buf[7] = (bl_len >> 0) & 0xff;
1504
1505	usb_stor_access_xfer_buf(buf, 8, srb, &sg, &offset, TO_XFER_BUF);
1506
1507	return USB_STOR_TRANSPORT_GOOD;
1508}
1509
1510static void ms_lib_phy_to_log_range(u16 PhyBlock, u16 *LogStart, u16 *LogEnde)
1511{
1512	PhyBlock /= MS_PHYSICAL_BLOCKS_PER_SEGMENT;
1513
1514	if (PhyBlock) {
1515		*LogStart = MS_LOGICAL_BLOCKS_IN_1ST_SEGMENT + (PhyBlock - 1) * MS_LOGICAL_BLOCKS_PER_SEGMENT;/*496*/
1516		*LogEnde = *LogStart + MS_LOGICAL_BLOCKS_PER_SEGMENT;/*496*/
1517	} else {
1518		*LogStart = 0;
1519		*LogEnde = MS_LOGICAL_BLOCKS_IN_1ST_SEGMENT;/*494*/
1520	}
1521}
1522
1523static int ms_lib_read_extrablock(struct us_data *us, u32 PhyBlock,
1524	u8 PageNum, u8 blen, void *buf)
1525{
1526	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1527	int     result;
1528
1529	/* printk("MS_LibReadExtraBlock --- PhyBlock = %x,
1530		PageNum = %x, blen = %x\n", PhyBlock, PageNum, blen); */
1531
1532	/* Read Extra Data */
1533	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1534	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1535	bcb->DataTransferLength = 0x4 * blen;
1536	bcb->Flags      = 0x80;
1537	bcb->CDB[0]     = 0xF1;
1538	bcb->CDB[1]     = 0x03;
1539	bcb->CDB[5]     = (unsigned char)(PageNum);
1540	bcb->CDB[4]     = (unsigned char)(PhyBlock);
1541	bcb->CDB[3]     = (unsigned char)(PhyBlock>>8);
1542	bcb->CDB[2]     = (unsigned char)(PhyBlock>>16);
1543	bcb->CDB[6]     = blen;
1544
1545	result = ene_send_scsi_cmd(us, FDIR_READ, buf, 0);
1546	if (result != USB_STOR_XFER_GOOD)
1547		return USB_STOR_TRANSPORT_ERROR;
1548
1549	return USB_STOR_TRANSPORT_GOOD;
1550}
1551
1552static int ms_lib_scan_logicalblocknumber(struct us_data *us, u16 btBlk1st)
1553{
1554	u16 PhyBlock, newblk, i;
1555	u16 LogStart, LogEnde;
1556	struct ms_lib_type_extdat extdat;
1557	u8 buf[0x200];
1558	u32 count = 0, index = 0;
1559	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 
1560
1561	for (PhyBlock = 0; PhyBlock < info->MS_Lib.NumberOfPhyBlock;) {
1562		ms_lib_phy_to_log_range(PhyBlock, &LogStart, &LogEnde);
1563
1564		for (i = 0; i < MS_PHYSICAL_BLOCKS_PER_SEGMENT; i++, PhyBlock++) {
1565			switch (ms_libconv_to_logical(info, PhyBlock)) {
1566			case MS_STATUS_ERROR:
1567				continue;
1568			default:
1569				break;
1570			}
1571
1572			if (count == PhyBlock) {
1573				ms_lib_read_extrablock(us, PhyBlock, 0, 0x80, &buf);
 
1574				count += 0x80;
1575			}
1576			index = (PhyBlock % 0x80) * 4;
1577
1578			extdat.ovrflg = buf[index];
1579			extdat.mngflg = buf[index+1];
1580			extdat.logadr = memstick_logaddr(buf[index+2], buf[index+3]);
 
1581
1582			if ((extdat.ovrflg & MS_REG_OVR_BKST) != MS_REG_OVR_BKST_OK) {
1583				ms_lib_setacquired_errorblock(us, PhyBlock);
1584				continue;
1585			}
1586
1587			if ((extdat.mngflg & MS_REG_MNG_ATFLG) == MS_REG_MNG_ATFLG_ATTBL) {
1588				ms_lib_erase_phyblock(us, PhyBlock);
1589				continue;
1590			}
1591
1592			if (extdat.logadr != MS_LB_NOT_USED) {
1593				if ((extdat.logadr < LogStart) || (LogEnde <= extdat.logadr)) {
1594					ms_lib_erase_phyblock(us, PhyBlock);
1595					continue;
1596				}
1597
1598				newblk = ms_libconv_to_physical(info, extdat.logadr);
1599
1600				if (newblk != MS_LB_NOT_USED) {
1601					if (extdat.logadr == 0) {
1602						ms_lib_set_logicalpair(us, extdat.logadr, PhyBlock);
1603						if (ms_lib_check_disableblock(us, btBlk1st)) {
1604							ms_lib_set_logicalpair(us, extdat.logadr, newblk);
1605							continue;
1606						}
1607					}
1608
1609					ms_lib_read_extra(us, newblk, 0, &extdat);
1610					if ((extdat.ovrflg & MS_REG_OVR_UDST) == MS_REG_OVR_UDST_UPDATING) {
1611						ms_lib_erase_phyblock(us, PhyBlock);
1612						continue;
1613					} else {
1614						ms_lib_erase_phyblock(us, newblk);
1615					}
1616				}
1617
1618				ms_lib_set_logicalpair(us, extdat.logadr, PhyBlock);
1619			}
1620		}
1621	} /* End for ... */
1622
1623	return MS_STATUS_SUCCESS;
1624}
1625
1626
1627static int ms_scsi_read(struct us_data *us, struct scsi_cmnd *srb)
1628{
1629	int result;
1630	unsigned char *cdb = srb->cmnd;
1631	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1632	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1633
1634	u32 bn = ((cdb[2] << 24) & 0xff000000) | ((cdb[3] << 16) & 0x00ff0000) |
1635		((cdb[4] << 8) & 0x0000ff00) | ((cdb[5] << 0) & 0x000000ff);
1636	u16 blen = ((cdb[7] << 8) & 0xff00) | ((cdb[8] << 0) & 0x00ff);
1637	u32 blenByte = blen * 0x200;
1638
1639	if (bn > info->bl_num)
1640		return USB_STOR_TRANSPORT_ERROR;
1641
1642	if (info->MS_Status.IsMSPro) {
1643		result = ene_load_bincode(us, MSP_RW_PATTERN);
1644		if (result != USB_STOR_XFER_GOOD) {
1645			US_DEBUGP("Load MPS RW pattern Fail !!\n");
1646			return USB_STOR_TRANSPORT_ERROR;
1647		}
1648
1649		/* set up the command wrapper */
1650		memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1651		bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1652		bcb->DataTransferLength = blenByte;
1653		bcb->Flags  = 0x80;
1654		bcb->CDB[0] = 0xF1;
1655		bcb->CDB[1] = 0x02;
1656		bcb->CDB[5] = (unsigned char)(bn);
1657		bcb->CDB[4] = (unsigned char)(bn>>8);
1658		bcb->CDB[3] = (unsigned char)(bn>>16);
1659		bcb->CDB[2] = (unsigned char)(bn>>24);
1660
1661		result = ene_send_scsi_cmd(us, FDIR_READ, scsi_sglist(srb), 1);
1662	} else {
1663		void *buf;
1664		int offset = 0;
1665		u16 phyblk, logblk;
1666		u8 PageNum;
1667		u16 len;
1668		u32 blkno;
1669
1670		buf = kmalloc(blenByte, GFP_KERNEL);
1671		if (buf == NULL)
1672			return USB_STOR_TRANSPORT_ERROR;
1673
1674		result = ene_load_bincode(us, MS_RW_PATTERN);
1675		if (result != USB_STOR_XFER_GOOD) {
1676			pr_info("Load MS RW pattern Fail !!\n");
1677			result = USB_STOR_TRANSPORT_ERROR;
1678			goto exit;
1679		}
1680
1681		logblk  = (u16)(bn / info->MS_Lib.PagesPerBlock);
1682		PageNum = (u8)(bn % info->MS_Lib.PagesPerBlock);
1683
1684		while (1) {
1685			if (blen > (info->MS_Lib.PagesPerBlock-PageNum))
1686				len = info->MS_Lib.PagesPerBlock-PageNum;
1687			else
1688				len = blen;
1689
1690			phyblk = ms_libconv_to_physical(info, logblk);
1691			blkno  = phyblk * 0x20 + PageNum;
1692
1693			/* set up the command wrapper */
1694			memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1695			bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1696			bcb->DataTransferLength = 0x200 * len;
1697			bcb->Flags  = 0x80;
1698			bcb->CDB[0] = 0xF1;
1699			bcb->CDB[1] = 0x02;
1700			bcb->CDB[5] = (unsigned char)(blkno);
1701			bcb->CDB[4] = (unsigned char)(blkno>>8);
1702			bcb->CDB[3] = (unsigned char)(blkno>>16);
1703			bcb->CDB[2] = (unsigned char)(blkno>>24);
1704
1705			result = ene_send_scsi_cmd(us, FDIR_READ, buf+offset, 0);
1706			if (result != USB_STOR_XFER_GOOD) {
1707				pr_info("MS_SCSI_Read --- result = %x\n", result);
1708				result = USB_STOR_TRANSPORT_ERROR;
1709				goto exit;
1710			}
1711
1712			blen -= len;
1713			if (blen <= 0)
1714				break;
1715			logblk++;
1716			PageNum = 0;
1717			offset += MS_BYTES_PER_PAGE*len;
1718		}
1719		usb_stor_set_xfer_buf(buf, blenByte, srb);
1720exit:
1721		kfree(buf);
1722	}
1723	return result;
1724}
1725
1726static int ms_scsi_write(struct us_data *us, struct scsi_cmnd *srb)
1727{
1728	int result;
1729	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1730	unsigned char *cdb = srb->cmnd;
1731	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1732
1733	u32 bn = ((cdb[2] << 24) & 0xff000000) |
1734			((cdb[3] << 16) & 0x00ff0000) |
1735			((cdb[4] << 8) & 0x0000ff00) |
1736			((cdb[5] << 0) & 0x000000ff);
1737	u16 blen = ((cdb[7] << 8) & 0xff00) | ((cdb[8] << 0) & 0x00ff);
1738	u32 blenByte = blen * 0x200;
1739
1740	if (bn > info->bl_num)
1741		return USB_STOR_TRANSPORT_ERROR;
1742
1743	if (info->MS_Status.IsMSPro) {
1744		result = ene_load_bincode(us, MSP_RW_PATTERN);
1745		if (result != USB_STOR_XFER_GOOD) {
1746			pr_info("Load MSP RW pattern Fail !!\n");
1747			return USB_STOR_TRANSPORT_ERROR;
1748		}
1749
1750		/* set up the command wrapper */
1751		memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1752		bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1753		bcb->DataTransferLength = blenByte;
1754		bcb->Flags  = 0x00;
1755		bcb->CDB[0] = 0xF0;
1756		bcb->CDB[1] = 0x04;
1757		bcb->CDB[5] = (unsigned char)(bn);
1758		bcb->CDB[4] = (unsigned char)(bn>>8);
1759		bcb->CDB[3] = (unsigned char)(bn>>16);
1760		bcb->CDB[2] = (unsigned char)(bn>>24);
1761
1762		result = ene_send_scsi_cmd(us, FDIR_WRITE, scsi_sglist(srb), 1);
1763	} else {
1764		void *buf;
1765		int offset;
1766		u16 PhyBlockAddr;
1767		u8 PageNum;
1768		u32 result;
1769		u16 len, oldphy, newphy;
1770
1771		buf = kmalloc(blenByte, GFP_KERNEL);
1772		if (buf == NULL)
1773			return USB_STOR_TRANSPORT_ERROR;
1774		usb_stor_set_xfer_buf(buf, blenByte, srb);
1775
1776		result = ene_load_bincode(us, MS_RW_PATTERN);
1777		if (result != USB_STOR_XFER_GOOD) {
1778			pr_info("Load MS RW pattern Fail !!\n");
1779			result = USB_STOR_TRANSPORT_ERROR;
1780			goto exit;
1781		}
1782
1783		PhyBlockAddr = (u16)(bn / info->MS_Lib.PagesPerBlock);
1784		PageNum      = (u8)(bn % info->MS_Lib.PagesPerBlock);
1785
1786		while (1) {
1787			if (blen > (info->MS_Lib.PagesPerBlock-PageNum))
1788				len = info->MS_Lib.PagesPerBlock-PageNum;
1789			else
1790				len = blen;
1791
1792			oldphy = ms_libconv_to_physical(info, PhyBlockAddr); /* need check us <-> info */
1793			newphy = ms_libsearch_block_from_logical(us, PhyBlockAddr);
1794
1795			result = ms_read_copyblock(us, oldphy, newphy, PhyBlockAddr, PageNum, buf+offset, len);
1796
1797			if (result != USB_STOR_XFER_GOOD) {
1798				pr_info("MS_SCSI_Write --- result = %x\n", result);
1799				result =  USB_STOR_TRANSPORT_ERROR;
1800				goto exit;
1801			}
1802
1803			info->MS_Lib.Phy2LogMap[oldphy] = MS_LB_NOT_USED_ERASED;
1804			ms_lib_force_setlogical_pair(us, PhyBlockAddr, newphy);
1805
1806			blen -= len;
1807			if (blen <= 0)
1808				break;
1809			PhyBlockAddr++;
1810			PageNum = 0;
1811			offset += MS_BYTES_PER_PAGE*len;
1812		}
1813exit:
1814		kfree(buf);
1815	}
1816	return result;
1817}
1818
1819/*
1820 * ENE MS Card
1821 */
1822
1823static int ene_get_card_type(struct us_data *us, u16 index, void *buf)
1824{
1825	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1826	int result;
1827
1828	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1829	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1830	bcb->DataTransferLength	= 0x01;
1831	bcb->Flags			= 0x80;
1832	bcb->CDB[0]			= 0xED;
1833	bcb->CDB[2]			= (unsigned char)(index>>8);
1834	bcb->CDB[3]			= (unsigned char)index;
1835
1836	result = ene_send_scsi_cmd(us, FDIR_READ, buf, 0);
1837	return result;
1838}
1839
1840static int ene_get_card_status(struct us_data *us, u8 *buf)
1841{
1842	u16 tmpreg;
1843	u32 reg4b;
1844	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1845
1846	/*US_DEBUGP("transport --- ENE_ReadSDReg\n");*/
1847	reg4b = *(u32 *)&buf[0x18];
1848	info->SD_READ_BL_LEN = (u8)((reg4b >> 8) & 0x0f);
1849
1850	tmpreg = (u16) reg4b;
1851	reg4b = *(u32 *)(&buf[0x14]);
1852	if (info->SD_Status.HiCapacity && !info->SD_Status.IsMMC)
1853		info->HC_C_SIZE = (reg4b >> 8) & 0x3fffff;
1854
1855	info->SD_C_SIZE = ((tmpreg & 0x03) << 10) | (u16)(reg4b >> 22);
1856	info->SD_C_SIZE_MULT = (u8)(reg4b >> 7)  & 0x07;
1857	if (info->SD_Status.HiCapacity && info->SD_Status.IsMMC)
1858		info->HC_C_SIZE = *(u32 *)(&buf[0x100]);
1859
1860	if (info->SD_READ_BL_LEN > SD_BLOCK_LEN) {
1861		info->SD_Block_Mult = 1 << (info->SD_READ_BL_LEN-SD_BLOCK_LEN);
1862		info->SD_READ_BL_LEN = SD_BLOCK_LEN;
1863	} else {
1864		info->SD_Block_Mult = 1;
1865	}
1866
1867	return USB_STOR_TRANSPORT_GOOD;
1868}
1869
1870static int ene_load_bincode(struct us_data *us, unsigned char flag)
1871{
1872	int err;
1873	char *fw_name = NULL;
1874	unsigned char *buf = NULL;
1875	const struct firmware *sd_fw = NULL;
1876	int result = USB_STOR_TRANSPORT_ERROR;
1877	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1878	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1879
1880	if (info->BIN_FLAG == flag)
1881		return USB_STOR_TRANSPORT_GOOD;
1882
1883	switch (flag) {
1884	/* For SD */
1885	case SD_INIT1_PATTERN:
1886		US_DEBUGP("SD_INIT1_PATTERN\n");
1887		fw_name = "ene-ub6250/sd_init1.bin";
1888		break;
1889	case SD_INIT2_PATTERN:
1890		US_DEBUGP("SD_INIT2_PATTERN\n");
1891		fw_name = "ene-ub6250/sd_init2.bin";
1892		break;
1893	case SD_RW_PATTERN:
1894		US_DEBUGP("SD_RDWR_PATTERN\n");
1895		fw_name = "ene-ub6250/sd_rdwr.bin";
1896		break;
1897	/* For MS */
1898	case MS_INIT_PATTERN:
1899		US_DEBUGP("MS_INIT_PATTERN\n");
1900		fw_name = "ene-ub6250/ms_init.bin";
1901		break;
1902	case MSP_RW_PATTERN:
1903		US_DEBUGP("MSP_RW_PATTERN\n");
1904		fw_name = "ene-ub6250/msp_rdwr.bin";
1905		break;
1906	case MS_RW_PATTERN:
1907		US_DEBUGP("MS_RW_PATTERN\n");
1908		fw_name = "ene-ub6250/ms_rdwr.bin";
1909		break;
1910	default:
1911		US_DEBUGP("----------- Unknown PATTERN ----------\n");
1912		goto nofw;
1913	}
1914
1915	err = request_firmware(&sd_fw, fw_name, &us->pusb_dev->dev);
1916	if (err) {
1917		US_DEBUGP("load firmware %s failed\n", fw_name);
1918		goto nofw;
1919	}
1920	buf = kmalloc(sd_fw->size, GFP_KERNEL);
1921	if (buf == NULL) {
1922		US_DEBUGP("Malloc memory for fireware failed!\n");
1923		goto nofw;
1924	}
1925	memcpy(buf, sd_fw->data, sd_fw->size);
1926	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1927	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1928	bcb->DataTransferLength = sd_fw->size;
1929	bcb->Flags = 0x00;
1930	bcb->CDB[0] = 0xEF;
1931
1932	result = ene_send_scsi_cmd(us, FDIR_WRITE, buf, 0);
 
 
1933	info->BIN_FLAG = flag;
1934	kfree(buf);
1935
1936nofw:
1937	if (sd_fw != NULL) {
1938		release_firmware(sd_fw);
1939		sd_fw = NULL;
1940	}
1941
1942	return result;
1943}
1944
1945static int ms_card_init(struct us_data *us)
1946{
1947	u32 result;
1948	u16 TmpBlock;
1949	unsigned char *PageBuffer0 = NULL, *PageBuffer1 = NULL;
1950	struct ms_lib_type_extdat extdat;
1951	u16 btBlk1st, btBlk2nd;
1952	u32 btBlk1stErred;
1953	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1954
1955	printk(KERN_INFO "MS_CardInit start\n");
1956
1957	ms_lib_free_allocatedarea(us); /* Clean buffer and set struct us_data flag to 0 */
1958
1959	/* get two PageBuffer */
1960	PageBuffer0 = kmalloc(MS_BYTES_PER_PAGE, GFP_KERNEL);
1961	PageBuffer1 = kmalloc(MS_BYTES_PER_PAGE, GFP_KERNEL);
1962	if ((PageBuffer0 == NULL) || (PageBuffer1 == NULL)) {
1963		result = MS_NO_MEMORY_ERROR;
1964		goto exit;
1965	}
1966
1967	btBlk1st = btBlk2nd = MS_LB_NOT_USED;
1968	btBlk1stErred = 0;
1969
1970	for (TmpBlock = 0; TmpBlock < MS_MAX_INITIAL_ERROR_BLOCKS+2; TmpBlock++) {
1971
1972		switch (ms_read_readpage(us, TmpBlock, 0, (u32 *)PageBuffer0, &extdat)) {
1973		case MS_STATUS_SUCCESS:
1974			break;
1975		case MS_STATUS_INT_ERROR:
1976			break;
1977		case MS_STATUS_ERROR:
1978		default:
1979			continue;
1980		}
1981
1982		if ((extdat.ovrflg & MS_REG_OVR_BKST) == MS_REG_OVR_BKST_NG)
1983			continue;
1984
1985		if (((extdat.mngflg & MS_REG_MNG_SYSFLG) == MS_REG_MNG_SYSFLG_USER) ||
1986			(be16_to_cpu(((struct ms_bootblock_page0 *)PageBuffer0)->header.wBlockID) != MS_BOOT_BLOCK_ID) ||
1987			(be16_to_cpu(((struct ms_bootblock_page0 *)PageBuffer0)->header.wFormatVersion) != MS_BOOT_BLOCK_FORMAT_VERSION) ||
1988			(((struct ms_bootblock_page0 *)PageBuffer0)->header.bNumberOfDataEntry != MS_BOOT_BLOCK_DATA_ENTRIES))
1989				continue;
1990
1991		if (btBlk1st != MS_LB_NOT_USED) {
1992			btBlk2nd = TmpBlock;
1993			break;
1994		}
1995
1996		btBlk1st = TmpBlock;
1997		memcpy(PageBuffer1, PageBuffer0, MS_BYTES_PER_PAGE);
1998		if (extdat.status1 & (MS_REG_ST1_DTER | MS_REG_ST1_EXER | MS_REG_ST1_FGER))
1999			btBlk1stErred = 1;
2000	}
2001
2002	if (btBlk1st == MS_LB_NOT_USED) {
2003		result = MS_STATUS_ERROR;
2004		goto exit;
2005	}
2006
2007	/* write protect */
2008	if ((extdat.status0 & MS_REG_ST0_WP) == MS_REG_ST0_WP_ON)
2009		ms_lib_ctrl_set(info, MS_LIB_CTRL_WRPROTECT);
2010
2011	result = MS_STATUS_ERROR;
2012	/* 1st Boot Block */
2013	if (btBlk1stErred == 0)
2014		result = ms_lib_process_bootblock(us, btBlk1st, PageBuffer1);
2015		/* 1st */
2016	/* 2nd Boot Block */
2017	if (result && (btBlk2nd != MS_LB_NOT_USED))
2018		result = ms_lib_process_bootblock(us, btBlk2nd, PageBuffer0);
2019
2020	if (result) {
2021		result = MS_STATUS_ERROR;
2022		goto exit;
2023	}
2024
2025	for (TmpBlock = 0; TmpBlock < btBlk1st; TmpBlock++)
2026		info->MS_Lib.Phy2LogMap[TmpBlock] = MS_LB_INITIAL_ERROR;
2027
2028	info->MS_Lib.Phy2LogMap[btBlk1st] = MS_LB_BOOT_BLOCK;
2029
2030	if (btBlk2nd != MS_LB_NOT_USED) {
2031		for (TmpBlock = btBlk1st + 1; TmpBlock < btBlk2nd; TmpBlock++)
2032			info->MS_Lib.Phy2LogMap[TmpBlock] = MS_LB_INITIAL_ERROR;
2033
2034		info->MS_Lib.Phy2LogMap[btBlk2nd] = MS_LB_BOOT_BLOCK;
2035	}
2036
2037	result = ms_lib_scan_logicalblocknumber(us, btBlk1st);
2038	if (result)
2039		goto exit;
2040
2041	for (TmpBlock = MS_PHYSICAL_BLOCKS_PER_SEGMENT;
2042		TmpBlock < info->MS_Lib.NumberOfPhyBlock;
2043		TmpBlock += MS_PHYSICAL_BLOCKS_PER_SEGMENT) {
2044		if (ms_count_freeblock(us, TmpBlock) == 0) {
2045			ms_lib_ctrl_set(info, MS_LIB_CTRL_WRPROTECT);
2046			break;
2047		}
2048	}
2049
2050	/* write */
2051	if (ms_lib_alloc_writebuf(us)) {
2052		result = MS_NO_MEMORY_ERROR;
2053		goto exit;
2054	}
2055
2056	result = MS_STATUS_SUCCESS;
2057
2058exit:
2059	kfree(PageBuffer1);
2060	kfree(PageBuffer0);
2061
2062	printk(KERN_INFO "MS_CardInit end\n");
2063	return result;
2064}
2065
2066static int ene_ms_init(struct us_data *us)
2067{
2068	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
2069	int result;
2070	u8 buf[0x200];
2071	u16 MSP_BlockSize, MSP_UserAreaBlocks;
2072	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 
2073
2074	printk(KERN_INFO "transport --- ENE_MSInit\n");
2075
2076	/* the same part to test ENE */
2077
2078	result = ene_load_bincode(us, MS_INIT_PATTERN);
2079	if (result != USB_STOR_XFER_GOOD) {
2080		printk(KERN_ERR "Load MS Init Code Fail !!\n");
2081		return USB_STOR_TRANSPORT_ERROR;
2082	}
2083
2084	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
2085	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
2086	bcb->DataTransferLength = 0x200;
2087	bcb->Flags      = 0x80;
2088	bcb->CDB[0]     = 0xF1;
2089	bcb->CDB[1]     = 0x01;
2090
2091	result = ene_send_scsi_cmd(us, FDIR_READ, &buf, 0);
2092	if (result != USB_STOR_XFER_GOOD) {
2093		printk(KERN_ERR "Execution MS Init Code Fail !!\n");
2094		return USB_STOR_TRANSPORT_ERROR;
2095	}
2096	/* the same part to test ENE */
2097	info->MS_Status = *(struct MS_STATUS *)&buf[0];
2098
2099	if (info->MS_Status.Insert && info->MS_Status.Ready) {
2100		printk(KERN_INFO "Insert     = %x\n", info->MS_Status.Insert);
2101		printk(KERN_INFO "Ready      = %x\n", info->MS_Status.Ready);
2102		printk(KERN_INFO "IsMSPro    = %x\n", info->MS_Status.IsMSPro);
2103		printk(KERN_INFO "IsMSPHG    = %x\n", info->MS_Status.IsMSPHG);
2104		printk(KERN_INFO "WtP= %x\n", info->MS_Status.WtP);
2105		if (info->MS_Status.IsMSPro) {
2106			MSP_BlockSize      = (buf[6] << 8) | buf[7];
2107			MSP_UserAreaBlocks = (buf[10] << 8) | buf[11];
2108			info->MSP_TotalBlock = MSP_BlockSize * MSP_UserAreaBlocks;
2109		} else {
2110			ms_card_init(us); /* Card is MS (to ms.c)*/
2111		}
2112		US_DEBUGP("MS Init Code OK !!\n");
2113	} else {
2114		US_DEBUGP("MS Card Not Ready --- %x\n", buf[0]);
2115		return USB_STOR_TRANSPORT_ERROR;
2116	}
2117
2118	return USB_STOR_TRANSPORT_GOOD;
2119}
2120
2121static int ene_sd_init(struct us_data *us)
2122{
2123	int result;
2124	u8  buf[0x200];
2125	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
2126	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 
2127
2128	US_DEBUGP("transport --- ENE_SDInit\n");
2129	/* SD Init Part-1 */
2130	result = ene_load_bincode(us, SD_INIT1_PATTERN);
2131	if (result != USB_STOR_XFER_GOOD) {
2132		US_DEBUGP("Load SD Init Code Part-1 Fail !!\n");
2133		return USB_STOR_TRANSPORT_ERROR;
2134	}
2135
2136	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
2137	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
2138	bcb->Flags = 0x80;
2139	bcb->CDB[0] = 0xF2;
2140
2141	result = ene_send_scsi_cmd(us, FDIR_READ, NULL, 0);
2142	if (result != USB_STOR_XFER_GOOD) {
2143		US_DEBUGP("Execution SD Init Code Fail !!\n");
2144		return USB_STOR_TRANSPORT_ERROR;
2145	}
2146
2147	/* SD Init Part-2 */
2148	result = ene_load_bincode(us, SD_INIT2_PATTERN);
2149	if (result != USB_STOR_XFER_GOOD) {
2150		US_DEBUGP("Load SD Init Code Part-2 Fail !!\n");
2151		return USB_STOR_TRANSPORT_ERROR;
2152	}
2153
2154	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
2155	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
2156	bcb->DataTransferLength = 0x200;
2157	bcb->Flags              = 0x80;
2158	bcb->CDB[0]             = 0xF1;
2159
2160	result = ene_send_scsi_cmd(us, FDIR_READ, &buf, 0);
2161	if (result != USB_STOR_XFER_GOOD) {
2162		US_DEBUGP("Execution SD Init Code Fail !!\n");
2163		return USB_STOR_TRANSPORT_ERROR;
2164	}
2165
2166	info->SD_Status =  *(struct SD_STATUS *)&buf[0];
2167	if (info->SD_Status.Insert && info->SD_Status.Ready) {
2168		ene_get_card_status(us, (unsigned char *)&buf);
2169		US_DEBUGP("Insert     = %x\n", info->SD_Status.Insert);
2170		US_DEBUGP("Ready      = %x\n", info->SD_Status.Ready);
2171		US_DEBUGP("IsMMC      = %x\n", info->SD_Status.IsMMC);
2172		US_DEBUGP("HiCapacity = %x\n", info->SD_Status.HiCapacity);
2173		US_DEBUGP("HiSpeed    = %x\n", info->SD_Status.HiSpeed);
2174		US_DEBUGP("WtP        = %x\n", info->SD_Status.WtP);
 
 
2175	} else {
2176		US_DEBUGP("SD Card Not Ready --- %x\n", buf[0]);
2177		return USB_STOR_TRANSPORT_ERROR;
2178	}
2179	return USB_STOR_TRANSPORT_GOOD;
2180}
2181
2182
2183static int ene_init(struct us_data *us)
2184{
2185	int result;
2186	u8  misc_reg03 = 0;
2187	struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra);
 
2188
2189	result = ene_get_card_type(us, REG_CARD_STATUS, &misc_reg03);
2190	if (result != USB_STOR_XFER_GOOD)
2191		return USB_STOR_TRANSPORT_ERROR;
2192
 
2193	if (misc_reg03 & 0x01) {
2194		if (!info->SD_Status.Ready) {
2195			result = ene_sd_init(us);
2196			if (result != USB_STOR_XFER_GOOD)
2197				return USB_STOR_TRANSPORT_ERROR;
2198		}
2199	}
2200	if (misc_reg03 & 0x02) {
2201		if (!info->MS_Status.Ready) {
2202			result = ene_ms_init(us);
2203			if (result != USB_STOR_XFER_GOOD)
2204				return USB_STOR_TRANSPORT_ERROR;
2205		}
2206	}
2207	return result;
2208}
2209
2210/*----- sd_scsi_irp() ---------*/
2211static int sd_scsi_irp(struct us_data *us, struct scsi_cmnd *srb)
2212{
2213	int    result;
2214	struct ene_ub6250_info *info = (struct ene_ub6250_info *)us->extra;
2215
2216	info->SrbStatus = SS_SUCCESS;
2217	switch (srb->cmnd[0]) {
2218	case TEST_UNIT_READY:
2219		result = sd_scsi_test_unit_ready(us, srb);
2220		break; /* 0x00 */
 
 
 
2221	case INQUIRY:
2222		result = sd_scsi_inquiry(us, srb);
2223		break; /* 0x12 */
2224	case MODE_SENSE:
2225		result = sd_scsi_mode_sense(us, srb);
2226		break; /* 0x1A */
2227	/*
2228	case START_STOP:
2229		result = SD_SCSI_Start_Stop(us, srb);
2230		break; //0x1B
2231	*/
2232	case READ_CAPACITY:
2233		result = sd_scsi_read_capacity(us, srb);
2234		break; /* 0x25 */
2235	case READ_10:
2236		result = sd_scsi_read(us, srb);
2237		break; /* 0x28 */
2238	case WRITE_10:
2239		result = sd_scsi_write(us, srb);
2240		break; /* 0x2A */
2241	default:
2242		info->SrbStatus = SS_ILLEGAL_REQUEST;
2243		result = USB_STOR_TRANSPORT_FAILED;
2244		break;
2245	}
 
 
2246	return result;
2247}
2248
2249/*
2250 * ms_scsi_irp()
2251 */
2252int ms_scsi_irp(struct us_data *us, struct scsi_cmnd *srb)
2253{
2254	int result;
2255	struct ene_ub6250_info *info = (struct ene_ub6250_info *)us->extra;
2256	info->SrbStatus = SS_SUCCESS;
2257	switch (srb->cmnd[0]) {
2258	case TEST_UNIT_READY:
2259		result = ms_scsi_test_unit_ready(us, srb);
2260		break; /* 0x00 */
 
 
 
2261	case INQUIRY:
2262		result = ms_scsi_inquiry(us, srb);
2263		break; /* 0x12 */
2264	case MODE_SENSE:
2265		result = ms_scsi_mode_sense(us, srb);
2266		break; /* 0x1A */
2267	case READ_CAPACITY:
2268		result = ms_scsi_read_capacity(us, srb);
2269		break; /* 0x25 */
2270	case READ_10:
2271		result = ms_scsi_read(us, srb);
2272		break; /* 0x28 */
2273	case WRITE_10:
2274		result = ms_scsi_write(us, srb);
2275		break;  /* 0x2A */
2276	default:
2277		info->SrbStatus = SS_ILLEGAL_REQUEST;
2278		result = USB_STOR_TRANSPORT_FAILED;
2279		break;
2280	}
 
 
2281	return result;
2282}
2283
2284static int ene_transport(struct scsi_cmnd *srb, struct us_data *us)
2285{
2286	int result = 0;
2287	struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra);
2288
2289	/*US_DEBUG(usb_stor_show_command(srb)); */
2290	scsi_set_resid(srb, 0);
2291	if (unlikely(!(info->SD_Status.Ready || info->MS_Status.Ready))) {
2292		result = ene_init(us);
2293	} else {
 
2294		if (info->SD_Status.Ready)
2295			result = sd_scsi_irp(us, srb);
2296
2297		if (info->MS_Status.Ready)
2298			result = ms_scsi_irp(us, srb);
2299	}
2300	return 0;
2301}
2302
 
2303
2304static int ene_ub6250_probe(struct usb_interface *intf,
2305			 const struct usb_device_id *id)
2306{
2307	int result;
2308	u8  misc_reg03 = 0;
2309	struct us_data *us;
 
2310
2311	result = usb_stor_probe1(&us, intf, id,
2312		   (id - ene_ub6250_usb_ids) + ene_ub6250_unusual_dev_list);
 
2313	if (result)
2314		return result;
2315
2316	/* FIXME: where should the code alloc extra buf ? */
2317	if (!us->extra) {
2318		us->extra = kzalloc(sizeof(struct ene_ub6250_info), GFP_KERNEL);
2319		if (!us->extra)
2320			return -ENOMEM;
2321		us->extra_destructor = ene_ub6250_info_destructor;
 
 
 
 
 
2322	}
2323
2324	us->transport_name = "ene_ub6250";
2325	us->transport = ene_transport;
2326	us->max_lun = 0;
2327
2328	result = usb_stor_probe2(us);
2329	if (result)
2330		return result;
2331
2332	/* probe card type */
2333	result = ene_get_card_type(us, REG_CARD_STATUS, &misc_reg03);
2334	if (result != USB_STOR_XFER_GOOD) {
2335		usb_stor_disconnect(intf);
2336		return USB_STOR_TRANSPORT_ERROR;
2337	}
2338
 
2339	if (!(misc_reg03 & 0x01)) {
2340		pr_info("ums_eneub6250: The driver only supports SD/MS card. "
2341			"To use SM card, please build driver/staging/keucr\n");
2342	}
2343
2344	return result;
2345}
2346
2347
2348#ifdef CONFIG_PM
2349
2350static int ene_ub6250_resume(struct usb_interface *iface)
2351{
2352	u8 tmp = 0;
2353	struct us_data *us = usb_get_intfdata(iface);
2354	struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra);
2355
2356	mutex_lock(&us->dev_mutex);
2357
2358	US_DEBUGP("%s\n", __func__);
2359	if (us->suspend_resume_hook)
2360		(us->suspend_resume_hook)(us, US_RESUME);
2361
2362	mutex_unlock(&us->dev_mutex);
2363
2364	info->Power_IsResum = true;
2365	/*info->SD_Status.Ready = 0; */
2366	info->SD_Status = *(struct SD_STATUS *)&tmp;
2367	info->MS_Status = *(struct MS_STATUS *)&tmp;
2368	info->SM_Status = *(struct SM_STATUS *)&tmp;
2369
2370	return 0;
2371}
2372
2373static int ene_ub6250_reset_resume(struct usb_interface *iface)
2374{
2375	u8 tmp = 0;
2376	struct us_data *us = usb_get_intfdata(iface);
2377	struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra);
2378	US_DEBUGP("%s\n", __func__);
2379	/* Report the reset to the SCSI core */
2380	usb_stor_reset_resume(iface);
2381
2382	/* FIXME: Notify the subdrivers that they need to reinitialize
2383	 * the device */
 
 
2384	info->Power_IsResum = true;
2385	/*info->SD_Status.Ready = 0; */
2386	info->SD_Status = *(struct SD_STATUS *)&tmp;
2387	info->MS_Status = *(struct MS_STATUS *)&tmp;
2388	info->SM_Status = *(struct SM_STATUS *)&tmp;
2389
2390	return 0;
2391}
2392
2393#else
2394
2395#define ene_ub6250_resume		NULL
2396#define ene_ub6250_reset_resume		NULL
2397
2398#endif
2399
2400static struct usb_driver ene_ub6250_driver = {
2401	.name =		"ums_eneub6250",
2402	.probe =	ene_ub6250_probe,
2403	.disconnect =	usb_stor_disconnect,
2404	.suspend =	usb_stor_suspend,
2405	.resume =	ene_ub6250_resume,
2406	.reset_resume =	ene_ub6250_reset_resume,
2407	.pre_reset =	usb_stor_pre_reset,
2408	.post_reset =	usb_stor_post_reset,
2409	.id_table =	ene_ub6250_usb_ids,
2410	.soft_unbind =	1,
 
2411};
2412
2413static int __init ene_ub6250_init(void)
2414{
2415	return usb_register(&ene_ub6250_driver);
2416}
2417
2418static void __exit ene_ub6250_exit(void)
2419{
2420	usb_deregister(&ene_ub6250_driver);
2421}
2422
2423module_init(ene_ub6250_init);
2424module_exit(ene_ub6250_exit);
v5.14.15
   1// SPDX-License-Identifier: GPL-2.0+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
   2#include <linux/jiffies.h>
   3#include <linux/errno.h>
   4#include <linux/module.h>
   5#include <linux/slab.h>
   6
   7#include <scsi/scsi.h>
   8#include <scsi/scsi_cmnd.h>
   9
  10#include <linux/firmware.h>
  11
  12#include "usb.h"
  13#include "transport.h"
  14#include "protocol.h"
  15#include "debug.h"
  16#include "scsiglue.h"
  17
  18#define SD_INIT1_FIRMWARE "ene-ub6250/sd_init1.bin"
  19#define SD_INIT2_FIRMWARE "ene-ub6250/sd_init2.bin"
  20#define SD_RW_FIRMWARE "ene-ub6250/sd_rdwr.bin"
  21#define MS_INIT_FIRMWARE "ene-ub6250/ms_init.bin"
  22#define MSP_RW_FIRMWARE "ene-ub6250/msp_rdwr.bin"
  23#define MS_RW_FIRMWARE "ene-ub6250/ms_rdwr.bin"
  24
  25#define DRV_NAME "ums_eneub6250"
  26
  27MODULE_DESCRIPTION("Driver for ENE UB6250 reader");
  28MODULE_LICENSE("GPL");
  29MODULE_IMPORT_NS(USB_STORAGE);
  30MODULE_FIRMWARE(SD_INIT1_FIRMWARE);
  31MODULE_FIRMWARE(SD_INIT2_FIRMWARE);
  32MODULE_FIRMWARE(SD_RW_FIRMWARE);
  33MODULE_FIRMWARE(MS_INIT_FIRMWARE);
  34MODULE_FIRMWARE(MSP_RW_FIRMWARE);
  35MODULE_FIRMWARE(MS_RW_FIRMWARE);
  36
  37/*
  38 * The table of devices
  39 */
  40#define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \
  41		    vendorName, productName, useProtocol, useTransport, \
  42		    initFunction, flags) \
  43{ USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \
  44	.driver_info = (flags)}
  45
  46static struct usb_device_id ene_ub6250_usb_ids[] = {
  47#	include "unusual_ene_ub6250.h"
  48	{ }		/* Terminating entry */
  49};
  50MODULE_DEVICE_TABLE(usb, ene_ub6250_usb_ids);
  51
  52#undef UNUSUAL_DEV
  53
  54/*
  55 * The flags table
  56 */
  57#define UNUSUAL_DEV(idVendor, idProduct, bcdDeviceMin, bcdDeviceMax, \
  58		    vendor_name, product_name, use_protocol, use_transport, \
  59		    init_function, Flags) \
  60{ \
  61	.vendorName = vendor_name,	\
  62	.productName = product_name,	\
  63	.useProtocol = use_protocol,	\
  64	.useTransport = use_transport,	\
  65	.initFunction = init_function,	\
  66}
  67
  68static struct us_unusual_dev ene_ub6250_unusual_dev_list[] = {
  69#	include "unusual_ene_ub6250.h"
  70	{ }		/* Terminating entry */
  71};
  72
  73#undef UNUSUAL_DEV
  74
  75
  76
  77/* ENE bin code len */
  78#define ENE_BIN_CODE_LEN    0x800
  79/* EnE HW Register */
  80#define REG_CARD_STATUS     0xFF83
  81#define REG_HW_TRAP1        0xFF89
  82
  83/* SRB Status */
  84#define SS_SUCCESS		0x000000	/* No Sense */
  85#define SS_NOT_READY		0x023A00	/* Medium not present */
  86#define SS_MEDIUM_ERR		0x031100	/* Unrecovered read error */
  87#define SS_HW_ERR		0x040800	/* Communication failure */
  88#define SS_ILLEGAL_REQUEST	0x052000	/* Invalid command */
  89#define SS_UNIT_ATTENTION	0x062900	/* Reset occurred */
  90
  91/* ENE Load FW Pattern */
  92#define SD_INIT1_PATTERN   1
  93#define SD_INIT2_PATTERN   2
  94#define SD_RW_PATTERN      3
  95#define MS_INIT_PATTERN    4
  96#define MSP_RW_PATTERN     5
  97#define MS_RW_PATTERN      6
  98#define SM_INIT_PATTERN    7
  99#define SM_RW_PATTERN      8
 100
 101#define FDIR_WRITE         0
 102#define FDIR_READ          1
 103
 104/* For MS Card */
 105
 106/* Status Register 1 */
 107#define MS_REG_ST1_MB           0x80    /* media busy */
 108#define MS_REG_ST1_FB1          0x40    /* flush busy 1 */
 109#define MS_REG_ST1_DTER         0x20    /* error on data(corrected) */
 110#define MS_REG_ST1_UCDT         0x10    /* unable to correct data */
 111#define MS_REG_ST1_EXER         0x08    /* error on extra(corrected) */
 112#define MS_REG_ST1_UCEX         0x04    /* unable to correct extra */
 113#define MS_REG_ST1_FGER         0x02    /* error on overwrite flag(corrected) */
 114#define MS_REG_ST1_UCFG         0x01    /* unable to correct overwrite flag */
 115#define MS_REG_ST1_DEFAULT	(MS_REG_ST1_MB | MS_REG_ST1_FB1 | MS_REG_ST1_DTER | MS_REG_ST1_UCDT | MS_REG_ST1_EXER | MS_REG_ST1_UCEX | MS_REG_ST1_FGER | MS_REG_ST1_UCFG)
 116
 117/* Overwrite Area */
 118#define MS_REG_OVR_BKST		0x80            /* block status */
 119#define MS_REG_OVR_BKST_OK	MS_REG_OVR_BKST     /* OK */
 120#define MS_REG_OVR_BKST_NG	0x00            /* NG */
 121#define MS_REG_OVR_PGST0	0x40            /* page status */
 122#define MS_REG_OVR_PGST1	0x20
 123#define MS_REG_OVR_PGST_MASK	(MS_REG_OVR_PGST0 | MS_REG_OVR_PGST1)
 124#define MS_REG_OVR_PGST_OK	(MS_REG_OVR_PGST0 | MS_REG_OVR_PGST1) /* OK */
 125#define MS_REG_OVR_PGST_NG	MS_REG_OVR_PGST1                      /* NG */
 126#define MS_REG_OVR_PGST_DATA_ERROR	0x00        /* data error */
 127#define MS_REG_OVR_UDST			0x10        /* update status */
 128#define MS_REG_OVR_UDST_UPDATING	0x00        /* updating */
 129#define MS_REG_OVR_UDST_NO_UPDATE	MS_REG_OVR_UDST
 130#define MS_REG_OVR_RESERVED	0x08
 131#define MS_REG_OVR_DEFAULT	(MS_REG_OVR_BKST_OK | MS_REG_OVR_PGST_OK | MS_REG_OVR_UDST_NO_UPDATE | MS_REG_OVR_RESERVED)
 132
 133/* Management Flag */
 134#define MS_REG_MNG_SCMS0	0x20    /* serial copy management system */
 135#define MS_REG_MNG_SCMS1	0x10
 136#define MS_REG_MNG_SCMS_MASK		(MS_REG_MNG_SCMS0 | MS_REG_MNG_SCMS1)
 137#define MS_REG_MNG_SCMS_COPY_OK		(MS_REG_MNG_SCMS0 | MS_REG_MNG_SCMS1)
 138#define MS_REG_MNG_SCMS_ONE_COPY	MS_REG_MNG_SCMS1
 139#define MS_REG_MNG_SCMS_NO_COPY	0x00
 140#define MS_REG_MNG_ATFLG	0x08    /* address transfer table flag */
 141#define MS_REG_MNG_ATFLG_OTHER	MS_REG_MNG_ATFLG    /* other */
 142#define MS_REG_MNG_ATFLG_ATTBL	0x00	/* address transfer table */
 143#define MS_REG_MNG_SYSFLG	0x04	/* system flag */
 144#define MS_REG_MNG_SYSFLG_USER	MS_REG_MNG_SYSFLG   /* user block */
 145#define MS_REG_MNG_SYSFLG_BOOT	0x00	/* system block */
 146#define MS_REG_MNG_RESERVED	0xc3
 147#define MS_REG_MNG_DEFAULT	(MS_REG_MNG_SCMS_COPY_OK | MS_REG_MNG_ATFLG_OTHER | MS_REG_MNG_SYSFLG_USER | MS_REG_MNG_RESERVED)
 148
 149
 150#define MS_MAX_PAGES_PER_BLOCK		32
 151#define MS_MAX_INITIAL_ERROR_BLOCKS 	10
 152#define MS_LIB_BITS_PER_BYTE		8
 153
 154#define MS_SYSINF_FORMAT_FAT		1
 155#define MS_SYSINF_USAGE_GENERAL		0
 156
 157#define MS_SYSINF_MSCLASS_TYPE_1	1
 158#define MS_SYSINF_PAGE_SIZE		MS_BYTES_PER_PAGE /* fixed */
 159
 160#define MS_SYSINF_CARDTYPE_RDONLY	1
 161#define MS_SYSINF_CARDTYPE_RDWR		2
 162#define MS_SYSINF_CARDTYPE_HYBRID	3
 163#define MS_SYSINF_SECURITY		0x01
 164#define MS_SYSINF_SECURITY_NO_SUPPORT	MS_SYSINF_SECURITY
 165#define MS_SYSINF_SECURITY_SUPPORT	0
 166
 167#define MS_SYSINF_RESERVED1		1
 168#define MS_SYSINF_RESERVED2		1
 169
 170#define MS_SYSENT_TYPE_INVALID_BLOCK	0x01
 171#define MS_SYSENT_TYPE_CIS_IDI		0x0a    /* CIS/IDI */
 172
 173#define SIZE_OF_KIRO		1024
 174#define BYTE_MASK		0xff
 175
 176/* ms error code */
 177#define MS_STATUS_WRITE_PROTECT	0x0106
 178#define MS_STATUS_SUCCESS	0x0000
 179#define MS_ERROR_FLASH_READ	0x8003
 180#define MS_ERROR_FLASH_ERASE	0x8005
 181#define MS_LB_ERROR		0xfff0
 182#define MS_LB_BOOT_BLOCK	0xfff1
 183#define MS_LB_INITIAL_ERROR	0xfff2
 184#define MS_STATUS_SUCCESS_WITH_ECC 0xfff3
 185#define MS_LB_ACQUIRED_ERROR	0xfff4
 186#define MS_LB_NOT_USED_ERASED	0xfff5
 187#define MS_NOCARD_ERROR		0xfff8
 188#define MS_NO_MEMORY_ERROR	0xfff9
 189#define MS_STATUS_INT_ERROR	0xfffa
 190#define MS_STATUS_ERROR		0xfffe
 191#define MS_LB_NOT_USED		0xffff
 192
 193#define MS_REG_MNG_SYSFLG	0x04    /* system flag */
 194#define MS_REG_MNG_SYSFLG_USER	MS_REG_MNG_SYSFLG   /* user block */
 195
 196#define MS_BOOT_BLOCK_ID                        0x0001
 197#define MS_BOOT_BLOCK_FORMAT_VERSION            0x0100
 198#define MS_BOOT_BLOCK_DATA_ENTRIES              2
 199
 200#define MS_NUMBER_OF_SYSTEM_ENTRY       	4
 201#define MS_NUMBER_OF_BOOT_BLOCK			2
 202#define MS_BYTES_PER_PAGE			512
 203#define MS_LOGICAL_BLOCKS_PER_SEGMENT		496
 204#define MS_LOGICAL_BLOCKS_IN_1ST_SEGMENT        494
 205
 206#define MS_PHYSICAL_BLOCKS_PER_SEGMENT		0x200 /* 512 */
 207#define MS_PHYSICAL_BLOCKS_PER_SEGMENT_MASK     0x1ff
 208
 209/* overwrite area */
 210#define MS_REG_OVR_BKST		0x80		/* block status */
 211#define MS_REG_OVR_BKST_OK	MS_REG_OVR_BKST	/* OK */
 212#define MS_REG_OVR_BKST_NG	0x00            /* NG */
 213
 214/* Status Register 1 */
 215#define MS_REG_ST1_DTER		0x20	/* error on data(corrected) */
 216#define MS_REG_ST1_EXER		0x08	/* error on extra(corrected) */
 217#define MS_REG_ST1_FGER		0x02	/* error on overwrite flag(corrected) */
 218
 219/* MemoryStick Register */
 220/* Status Register 0 */
 221#define MS_REG_ST0_WP		0x01	/* write protected */
 222#define MS_REG_ST0_WP_ON	MS_REG_ST0_WP
 223
 224#define MS_LIB_CTRL_RDONLY      0
 225#define MS_LIB_CTRL_WRPROTECT   1
 226
 227/*dphy->log table */
 228#define ms_libconv_to_logical(pdx, PhyBlock) (((PhyBlock) >= (pdx)->MS_Lib.NumberOfPhyBlock) ? MS_STATUS_ERROR : (pdx)->MS_Lib.Phy2LogMap[PhyBlock])
 229#define ms_libconv_to_physical(pdx, LogBlock) (((LogBlock) >= (pdx)->MS_Lib.NumberOfLogBlock) ? MS_STATUS_ERROR : (pdx)->MS_Lib.Log2PhyMap[LogBlock])
 230
 231#define ms_lib_ctrl_set(pdx, Flag)	((pdx)->MS_Lib.flags |= (1 << (Flag)))
 232#define ms_lib_ctrl_reset(pdx, Flag)	((pdx)->MS_Lib.flags &= ~(1 << (Flag)))
 233#define ms_lib_ctrl_check(pdx, Flag)	((pdx)->MS_Lib.flags & (1 << (Flag)))
 234
 235#define ms_lib_iswritable(pdx) ((ms_lib_ctrl_check((pdx), MS_LIB_CTRL_RDONLY) == 0) && (ms_lib_ctrl_check(pdx, MS_LIB_CTRL_WRPROTECT) == 0))
 236#define ms_lib_clear_pagemap(pdx) memset((pdx)->MS_Lib.pagemap, 0, sizeof((pdx)->MS_Lib.pagemap))
 237#define memstick_logaddr(logadr1, logadr0) ((((u16)(logadr1)) << 8) | (logadr0))
 238
 239
 240struct SD_STATUS {
 241	u8    Insert:1;
 242	u8    Ready:1;
 243	u8    MediaChange:1;
 244	u8    IsMMC:1;
 245	u8    HiCapacity:1;
 246	u8    HiSpeed:1;
 247	u8    WtP:1;
 248	u8    Reserved:1;
 249};
 250
 251struct MS_STATUS {
 252	u8    Insert:1;
 253	u8    Ready:1;
 254	u8    MediaChange:1;
 255	u8    IsMSPro:1;
 256	u8    IsMSPHG:1;
 257	u8    Reserved1:1;
 258	u8    WtP:1;
 259	u8    Reserved2:1;
 260};
 261
 262struct SM_STATUS {
 263	u8    Insert:1;
 264	u8    Ready:1;
 265	u8    MediaChange:1;
 266	u8    Reserved:3;
 267	u8    WtP:1;
 268	u8    IsMS:1;
 269};
 270
 271struct ms_bootblock_cis {
 272	u8 bCistplDEVICE[6];    /* 0 */
 273	u8 bCistplDEVICE0C[6];  /* 6 */
 274	u8 bCistplJEDECC[4];    /* 12 */
 275	u8 bCistplMANFID[6];    /* 16 */
 276	u8 bCistplVER1[32];     /* 22 */
 277	u8 bCistplFUNCID[4];    /* 54 */
 278	u8 bCistplFUNCE0[4];    /* 58 */
 279	u8 bCistplFUNCE1[5];    /* 62 */
 280	u8 bCistplCONF[7];      /* 67 */
 281	u8 bCistplCFTBLENT0[10];/* 74 */
 282	u8 bCistplCFTBLENT1[8]; /* 84 */
 283	u8 bCistplCFTBLENT2[12];/* 92 */
 284	u8 bCistplCFTBLENT3[8]; /* 104 */
 285	u8 bCistplCFTBLENT4[17];/* 112 */
 286	u8 bCistplCFTBLENT5[8]; /* 129 */
 287	u8 bCistplCFTBLENT6[17];/* 137 */
 288	u8 bCistplCFTBLENT7[8]; /* 154 */
 289	u8 bCistplNOLINK[3];    /* 162 */
 290} ;
 291
 292struct ms_bootblock_idi {
 293#define MS_IDI_GENERAL_CONF 0x848A
 294	u16 wIDIgeneralConfiguration;	/* 0 */
 295	u16 wIDInumberOfCylinder;	/* 1 */
 296	u16 wIDIreserved0;		/* 2 */
 297	u16 wIDInumberOfHead;		/* 3 */
 298	u16 wIDIbytesPerTrack;		/* 4 */
 299	u16 wIDIbytesPerSector;		/* 5 */
 300	u16 wIDIsectorsPerTrack;	/* 6 */
 301	u16 wIDItotalSectors[2];	/* 7-8  high,low */
 302	u16 wIDIreserved1[11];		/* 9-19 */
 303	u16 wIDIbufferType;		/* 20 */
 304	u16 wIDIbufferSize;		/* 21 */
 305	u16 wIDIlongCmdECC;		/* 22 */
 306	u16 wIDIfirmVersion[4];		/* 23-26 */
 307	u16 wIDImodelName[20];		/* 27-46 */
 308	u16 wIDIreserved2;		/* 47 */
 309	u16 wIDIlongWordSupported;	/* 48 */
 310	u16 wIDIdmaSupported;		/* 49 */
 311	u16 wIDIreserved3;		/* 50 */
 312	u16 wIDIpioTiming;		/* 51 */
 313	u16 wIDIdmaTiming;		/* 52 */
 314	u16 wIDItransferParameter;	/* 53 */
 315	u16 wIDIformattedCylinder;	/* 54 */
 316	u16 wIDIformattedHead;		/* 55 */
 317	u16 wIDIformattedSectorsPerTrack;/* 56 */
 318	u16 wIDIformattedTotalSectors[2];/* 57-58 */
 319	u16 wIDImultiSector;		/* 59 */
 320	u16 wIDIlbaSectors[2];		/* 60-61 */
 321	u16 wIDIsingleWordDMA;		/* 62 */
 322	u16 wIDImultiWordDMA;		/* 63 */
 323	u16 wIDIreserved4[192];		/* 64-255 */
 324};
 325
 326struct ms_bootblock_sysent_rec {
 327	u32 dwStart;
 328	u32 dwSize;
 329	u8 bType;
 330	u8 bReserved[3];
 331};
 332
 333struct ms_bootblock_sysent {
 334	struct ms_bootblock_sysent_rec entry[MS_NUMBER_OF_SYSTEM_ENTRY];
 335};
 336
 337struct ms_bootblock_sysinf {
 338	u8 bMsClass;			/* must be 1 */
 339	u8 bCardType;			/* see below */
 340	u16 wBlockSize;			/* n KB */
 341	u16 wBlockNumber;		/* number of physical block */
 342	u16 wTotalBlockNumber;		/* number of logical block */
 343	u16 wPageSize;			/* must be 0x200 */
 344	u8 bExtraSize;			/* 0x10 */
 345	u8 bSecuritySupport;
 346	u8 bAssemblyDate[8];
 347	u8 bFactoryArea[4];
 348	u8 bAssemblyMakerCode;
 349	u8 bAssemblyMachineCode[3];
 350	u16 wMemoryMakerCode;
 351	u16 wMemoryDeviceCode;
 352	u16 wMemorySize;
 353	u8 bReserved1;
 354	u8 bReserved2;
 355	u8 bVCC;
 356	u8 bVPP;
 357	u16 wControllerChipNumber;
 358	u16 wControllerFunction;	/* New MS */
 359	u8 bReserved3[9];		/* New MS */
 360	u8 bParallelSupport;		/* New MS */
 361	u16 wFormatValue;		/* New MS */
 362	u8 bFormatType;
 363	u8 bUsage;
 364	u8 bDeviceType;
 365	u8 bReserved4[22];
 366	u8 bFUValue3;
 367	u8 bFUValue4;
 368	u8 bReserved5[15];
 369};
 370
 371struct ms_bootblock_header {
 372	u16 wBlockID;
 373	u16 wFormatVersion;
 374	u8 bReserved1[184];
 375	u8 bNumberOfDataEntry;
 376	u8 bReserved2[179];
 377};
 378
 379struct ms_bootblock_page0 {
 380	struct ms_bootblock_header header;
 381	struct ms_bootblock_sysent sysent;
 382	struct ms_bootblock_sysinf sysinf;
 383};
 384
 385struct ms_bootblock_cis_idi {
 386	union {
 387		struct ms_bootblock_cis cis;
 388		u8 dmy[256];
 389	} cis;
 390
 391	union {
 392		struct ms_bootblock_idi idi;
 393		u8 dmy[256];
 394	} idi;
 395
 396};
 397
 398/* ENE MS Lib struct */
 399struct ms_lib_type_extdat {
 400	u8 reserved;
 401	u8 intr;
 402	u8 status0;
 403	u8 status1;
 404	u8 ovrflg;
 405	u8 mngflg;
 406	u16 logadr;
 407};
 408
 409struct ms_lib_ctrl {
 410	u32 flags;
 411	u32 BytesPerSector;
 412	u32 NumberOfCylinder;
 413	u32 SectorsPerCylinder;
 414	u16 cardType;			/* R/W, RO, Hybrid */
 415	u16 blockSize;
 416	u16 PagesPerBlock;
 417	u16 NumberOfPhyBlock;
 418	u16 NumberOfLogBlock;
 419	u16 NumberOfSegment;
 420	u16 *Phy2LogMap;		/* phy2log table */
 421	u16 *Log2PhyMap;		/* log2phy table */
 422	u16 wrtblk;
 423	unsigned char *pagemap[(MS_MAX_PAGES_PER_BLOCK + (MS_LIB_BITS_PER_BYTE-1)) / MS_LIB_BITS_PER_BYTE];
 424	unsigned char *blkpag;
 425	struct ms_lib_type_extdat *blkext;
 426	unsigned char copybuf[512];
 427};
 428
 429
 430/* SD Block Length */
 431/* 2^9 = 512 Bytes, The HW maximum read/write data length */
 432#define SD_BLOCK_LEN  9
 433
 434struct ene_ub6250_info {
 435
 436	/* I/O bounce buffer */
 437	u8		*bbuf;
 438
 439	/* for 6250 code */
 440	struct SD_STATUS	SD_Status;
 441	struct MS_STATUS	MS_Status;
 442	struct SM_STATUS	SM_Status;
 443
 444	/* ----- SD Control Data ---------------- */
 445	/*SD_REGISTER SD_Regs; */
 446	u16		SD_Block_Mult;
 447	u8		SD_READ_BL_LEN;
 448	u16		SD_C_SIZE;
 449	u8		SD_C_SIZE_MULT;
 450
 451	/* SD/MMC New spec. */
 452	u8		SD_SPEC_VER;
 453	u8		SD_CSD_VER;
 454	u8		SD20_HIGH_CAPACITY;
 455	u32		HC_C_SIZE;
 456	u8		MMC_SPEC_VER;
 457	u8		MMC_BusWidth;
 458	u8		MMC_HIGH_CAPACITY;
 459
 460	/*----- MS Control Data ---------------- */
 461	bool		MS_SWWP;
 462	u32		MSP_TotalBlock;
 463	struct ms_lib_ctrl MS_Lib;
 464	bool		MS_IsRWPage;
 465	u16		MS_Model;
 466
 467	/*----- SM Control Data ---------------- */
 468	u8		SM_DeviceID;
 469	u8		SM_CardID;
 470
 471	unsigned char	*testbuf;
 472	u8		BIN_FLAG;
 473	u32		bl_num;
 474	int		SrbStatus;
 475
 476	/*------Power Managerment ---------------*/
 477	bool		Power_IsResum;
 478};
 479
 480static int ene_sd_init(struct us_data *us);
 481static int ene_ms_init(struct us_data *us);
 482static int ene_load_bincode(struct us_data *us, unsigned char flag);
 483
 484static void ene_ub6250_info_destructor(void *extra)
 485{
 486	struct ene_ub6250_info *info = (struct ene_ub6250_info *) extra;
 487
 488	if (!extra)
 489		return;
 490	kfree(info->bbuf);
 491}
 492
 493static int ene_send_scsi_cmd(struct us_data *us, u8 fDir, void *buf, int use_sg)
 494{
 495	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
 496	struct bulk_cs_wrap *bcs = (struct bulk_cs_wrap *) us->iobuf;
 497
 498	int result;
 499	unsigned int residue;
 500	unsigned int cswlen = 0, partial = 0;
 501	unsigned int transfer_length = bcb->DataTransferLength;
 502
 503	/* usb_stor_dbg(us, "transport --- ene_send_scsi_cmd\n"); */
 504	/* send cmd to out endpoint */
 505	result = usb_stor_bulk_transfer_buf(us, us->send_bulk_pipe,
 506					    bcb, US_BULK_CB_WRAP_LEN, NULL);
 507	if (result != USB_STOR_XFER_GOOD) {
 508		usb_stor_dbg(us, "send cmd to out endpoint fail ---\n");
 509		return USB_STOR_TRANSPORT_ERROR;
 510	}
 511
 512	if (buf) {
 513		unsigned int pipe = fDir;
 514
 515		if (fDir  == FDIR_READ)
 516			pipe = us->recv_bulk_pipe;
 517		else
 518			pipe = us->send_bulk_pipe;
 519
 520		/* Bulk */
 521		if (use_sg) {
 522			result = usb_stor_bulk_srb(us, pipe, us->srb);
 523		} else {
 524			result = usb_stor_bulk_transfer_sg(us, pipe, buf,
 525						transfer_length, 0, &partial);
 526		}
 527		if (result != USB_STOR_XFER_GOOD) {
 528			usb_stor_dbg(us, "data transfer fail ---\n");
 529			return USB_STOR_TRANSPORT_ERROR;
 530		}
 531	}
 532
 533	/* Get CSW for device status */
 534	result = usb_stor_bulk_transfer_buf(us, us->recv_bulk_pipe, bcs,
 535					    US_BULK_CS_WRAP_LEN, &cswlen);
 536
 537	if (result == USB_STOR_XFER_SHORT && cswlen == 0) {
 538		usb_stor_dbg(us, "Received 0-length CSW; retrying...\n");
 539		result = usb_stor_bulk_transfer_buf(us, us->recv_bulk_pipe,
 540					    bcs, US_BULK_CS_WRAP_LEN, &cswlen);
 541	}
 542
 543	if (result == USB_STOR_XFER_STALLED) {
 544		/* get the status again */
 545		usb_stor_dbg(us, "Attempting to get CSW (2nd try)...\n");
 546		result = usb_stor_bulk_transfer_buf(us, us->recv_bulk_pipe,
 547						bcs, US_BULK_CS_WRAP_LEN, NULL);
 548	}
 549
 550	if (result != USB_STOR_XFER_GOOD)
 551		return USB_STOR_TRANSPORT_ERROR;
 552
 553	/* check bulk status */
 554	residue = le32_to_cpu(bcs->Residue);
 555
 556	/*
 557	 * try to compute the actual residue, based on how much data
 558	 * was really transferred and what the device tells us
 559	 */
 560	if (residue && !(us->fflags & US_FL_IGNORE_RESIDUE)) {
 561		residue = min(residue, transfer_length);
 562		if (us->srb != NULL)
 563			scsi_set_resid(us->srb, max(scsi_get_resid(us->srb),
 564								residue));
 565	}
 566
 567	if (bcs->Status != US_BULK_STAT_OK)
 568		return USB_STOR_TRANSPORT_ERROR;
 569
 570	return USB_STOR_TRANSPORT_GOOD;
 571}
 572
 573static int do_scsi_request_sense(struct us_data *us, struct scsi_cmnd *srb)
 574{
 575	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 576	unsigned char buf[18];
 577
 578	memset(buf, 0, 18);
 579	buf[0] = 0x70;				/* Current error */
 580	buf[2] = info->SrbStatus >> 16;		/* Sense key */
 581	buf[7] = 10;				/* Additional length */
 582	buf[12] = info->SrbStatus >> 8;		/* ASC */
 583	buf[13] = info->SrbStatus;		/* ASCQ */
 584
 585	usb_stor_set_xfer_buf(buf, sizeof(buf), srb);
 586	return USB_STOR_TRANSPORT_GOOD;
 587}
 588
 589static int do_scsi_inquiry(struct us_data *us, struct scsi_cmnd *srb)
 590{
 591	unsigned char data_ptr[36] = {
 592		0x00, 0x00, 0x02, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x55,
 593		0x53, 0x42, 0x32, 0x2E, 0x30, 0x20, 0x20, 0x43, 0x61,
 594		0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20,
 595		0x20, 0x20, 0x20, 0x20, 0x20, 0x30, 0x31, 0x30, 0x30 };
 596
 597	usb_stor_set_xfer_buf(data_ptr, 36, srb);
 598	return USB_STOR_TRANSPORT_GOOD;
 599}
 600
 601static int sd_scsi_test_unit_ready(struct us_data *us, struct scsi_cmnd *srb)
 602{
 603	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 604
 605	if (info->SD_Status.Insert && info->SD_Status.Ready)
 606		return USB_STOR_TRANSPORT_GOOD;
 607	else {
 608		ene_sd_init(us);
 609		return USB_STOR_TRANSPORT_GOOD;
 610	}
 611
 612	return USB_STOR_TRANSPORT_GOOD;
 613}
 614
 615static int sd_scsi_mode_sense(struct us_data *us, struct scsi_cmnd *srb)
 616{
 617	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 618	unsigned char mediaNoWP[12] = {
 619		0x0b, 0x00, 0x00, 0x08, 0x00, 0x00,
 620		0x71, 0xc0, 0x00, 0x00, 0x02, 0x00 };
 621	unsigned char mediaWP[12]   = {
 622		0x0b, 0x00, 0x80, 0x08, 0x00, 0x00,
 623		0x71, 0xc0, 0x00, 0x00, 0x02, 0x00 };
 624
 625	if (info->SD_Status.WtP)
 626		usb_stor_set_xfer_buf(mediaWP, 12, srb);
 627	else
 628		usb_stor_set_xfer_buf(mediaNoWP, 12, srb);
 629
 630
 631	return USB_STOR_TRANSPORT_GOOD;
 632}
 633
 634static int sd_scsi_read_capacity(struct us_data *us, struct scsi_cmnd *srb)
 635{
 636	u32	bl_num;
 637	u32	bl_len;
 638	unsigned int offset = 0;
 639	unsigned char    buf[8];
 640	struct scatterlist *sg = NULL;
 641	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 642
 643	usb_stor_dbg(us, "sd_scsi_read_capacity\n");
 644	if (info->SD_Status.HiCapacity) {
 645		bl_len = 0x200;
 646		if (info->SD_Status.IsMMC)
 647			bl_num = info->HC_C_SIZE-1;
 648		else
 649			bl_num = (info->HC_C_SIZE + 1) * 1024 - 1;
 650	} else {
 651		bl_len = 1 << (info->SD_READ_BL_LEN);
 652		bl_num = info->SD_Block_Mult * (info->SD_C_SIZE + 1)
 653				* (1 << (info->SD_C_SIZE_MULT + 2)) - 1;
 654	}
 655	info->bl_num = bl_num;
 656	usb_stor_dbg(us, "bl_len = %x\n", bl_len);
 657	usb_stor_dbg(us, "bl_num = %x\n", bl_num);
 658
 659	/*srb->request_bufflen = 8; */
 660	buf[0] = (bl_num >> 24) & 0xff;
 661	buf[1] = (bl_num >> 16) & 0xff;
 662	buf[2] = (bl_num >> 8) & 0xff;
 663	buf[3] = (bl_num >> 0) & 0xff;
 664	buf[4] = (bl_len >> 24) & 0xff;
 665	buf[5] = (bl_len >> 16) & 0xff;
 666	buf[6] = (bl_len >> 8) & 0xff;
 667	buf[7] = (bl_len >> 0) & 0xff;
 668
 669	usb_stor_access_xfer_buf(buf, 8, srb, &sg, &offset, TO_XFER_BUF);
 670
 671	return USB_STOR_TRANSPORT_GOOD;
 672}
 673
 674static int sd_scsi_read(struct us_data *us, struct scsi_cmnd *srb)
 675{
 676	int result;
 677	unsigned char *cdb = srb->cmnd;
 678	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
 679	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 680
 681	u32 bn = ((cdb[2] << 24) & 0xff000000) | ((cdb[3] << 16) & 0x00ff0000) |
 682		 ((cdb[4] << 8) & 0x0000ff00) | ((cdb[5] << 0) & 0x000000ff);
 683	u16 blen = ((cdb[7] << 8) & 0xff00) | ((cdb[8] << 0) & 0x00ff);
 684	u32 bnByte = bn * 0x200;
 685	u32 blenByte = blen * 0x200;
 686
 687	if (bn > info->bl_num)
 688		return USB_STOR_TRANSPORT_ERROR;
 689
 690	result = ene_load_bincode(us, SD_RW_PATTERN);
 691	if (result != USB_STOR_XFER_GOOD) {
 692		usb_stor_dbg(us, "Load SD RW pattern Fail !!\n");
 693		return USB_STOR_TRANSPORT_ERROR;
 694	}
 695
 696	if (info->SD_Status.HiCapacity)
 697		bnByte = bn;
 698
 699	/* set up the command wrapper */
 700	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
 701	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
 702	bcb->DataTransferLength = blenByte;
 703	bcb->Flags  = US_BULK_FLAG_IN;
 704	bcb->CDB[0] = 0xF1;
 705	bcb->CDB[5] = (unsigned char)(bnByte);
 706	bcb->CDB[4] = (unsigned char)(bnByte>>8);
 707	bcb->CDB[3] = (unsigned char)(bnByte>>16);
 708	bcb->CDB[2] = (unsigned char)(bnByte>>24);
 709
 710	result = ene_send_scsi_cmd(us, FDIR_READ, scsi_sglist(srb), 1);
 711	return result;
 712}
 713
 714static int sd_scsi_write(struct us_data *us, struct scsi_cmnd *srb)
 715{
 716	int result;
 717	unsigned char *cdb = srb->cmnd;
 718	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
 719	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 720
 721	u32 bn = ((cdb[2] << 24) & 0xff000000) | ((cdb[3] << 16) & 0x00ff0000) |
 722		 ((cdb[4] << 8) & 0x0000ff00) | ((cdb[5] << 0) & 0x000000ff);
 723	u16 blen = ((cdb[7] << 8) & 0xff00) | ((cdb[8] << 0) & 0x00ff);
 724	u32 bnByte = bn * 0x200;
 725	u32 blenByte = blen * 0x200;
 726
 727	if (bn > info->bl_num)
 728		return USB_STOR_TRANSPORT_ERROR;
 729
 730	result = ene_load_bincode(us, SD_RW_PATTERN);
 731	if (result != USB_STOR_XFER_GOOD) {
 732		usb_stor_dbg(us, "Load SD RW pattern Fail !!\n");
 733		return USB_STOR_TRANSPORT_ERROR;
 734	}
 735
 736	if (info->SD_Status.HiCapacity)
 737		bnByte = bn;
 738
 739	/* set up the command wrapper */
 740	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
 741	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
 742	bcb->DataTransferLength = blenByte;
 743	bcb->Flags  = 0x00;
 744	bcb->CDB[0] = 0xF0;
 745	bcb->CDB[5] = (unsigned char)(bnByte);
 746	bcb->CDB[4] = (unsigned char)(bnByte>>8);
 747	bcb->CDB[3] = (unsigned char)(bnByte>>16);
 748	bcb->CDB[2] = (unsigned char)(bnByte>>24);
 749
 750	result = ene_send_scsi_cmd(us, FDIR_WRITE, scsi_sglist(srb), 1);
 751	return result;
 752}
 753
 754/*
 755 * ENE MS Card
 756 */
 757
 758static int ms_lib_set_logicalpair(struct us_data *us, u16 logblk, u16 phyblk)
 759{
 760	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 761
 762	if ((logblk >= info->MS_Lib.NumberOfLogBlock) || (phyblk >= info->MS_Lib.NumberOfPhyBlock))
 763		return (u32)-1;
 764
 765	info->MS_Lib.Phy2LogMap[phyblk] = logblk;
 766	info->MS_Lib.Log2PhyMap[logblk] = phyblk;
 767
 768	return 0;
 769}
 770
 771static int ms_lib_set_logicalblockmark(struct us_data *us, u16 phyblk, u16 mark)
 772{
 773	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 774
 775	if (phyblk >= info->MS_Lib.NumberOfPhyBlock)
 776		return (u32)-1;
 777
 778	info->MS_Lib.Phy2LogMap[phyblk] = mark;
 779
 780	return 0;
 781}
 782
 783static int ms_lib_set_initialerrorblock(struct us_data *us, u16 phyblk)
 784{
 785	return ms_lib_set_logicalblockmark(us, phyblk, MS_LB_INITIAL_ERROR);
 786}
 787
 788static int ms_lib_set_bootblockmark(struct us_data *us, u16 phyblk)
 789{
 790	return ms_lib_set_logicalblockmark(us, phyblk, MS_LB_BOOT_BLOCK);
 791}
 792
 793static int ms_lib_free_logicalmap(struct us_data *us)
 794{
 795	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 796
 797	kfree(info->MS_Lib.Phy2LogMap);
 798	info->MS_Lib.Phy2LogMap = NULL;
 799
 800	kfree(info->MS_Lib.Log2PhyMap);
 801	info->MS_Lib.Log2PhyMap = NULL;
 802
 803	return 0;
 804}
 805
 806static int ms_lib_alloc_logicalmap(struct us_data *us)
 807{
 808	u32  i;
 809	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 810
 811	info->MS_Lib.Phy2LogMap = kmalloc_array(info->MS_Lib.NumberOfPhyBlock,
 812						sizeof(u16),
 813						GFP_KERNEL);
 814	info->MS_Lib.Log2PhyMap = kmalloc_array(info->MS_Lib.NumberOfLogBlock,
 815						sizeof(u16),
 816						GFP_KERNEL);
 817
 818	if ((info->MS_Lib.Phy2LogMap == NULL) || (info->MS_Lib.Log2PhyMap == NULL)) {
 819		ms_lib_free_logicalmap(us);
 820		return (u32)-1;
 821	}
 822
 823	for (i = 0; i < info->MS_Lib.NumberOfPhyBlock; i++)
 824		info->MS_Lib.Phy2LogMap[i] = MS_LB_NOT_USED;
 825
 826	for (i = 0; i < info->MS_Lib.NumberOfLogBlock; i++)
 827		info->MS_Lib.Log2PhyMap[i] = MS_LB_NOT_USED;
 828
 829	return 0;
 830}
 831
 832static void ms_lib_clear_writebuf(struct us_data *us)
 833{
 834	int i;
 835	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 836
 837	info->MS_Lib.wrtblk = (u16)-1;
 838	ms_lib_clear_pagemap(info);
 839
 840	if (info->MS_Lib.blkpag)
 841		memset(info->MS_Lib.blkpag, 0xff, info->MS_Lib.PagesPerBlock * info->MS_Lib.BytesPerSector);
 842
 843	if (info->MS_Lib.blkext) {
 844		for (i = 0; i < info->MS_Lib.PagesPerBlock; i++) {
 845			info->MS_Lib.blkext[i].status1 = MS_REG_ST1_DEFAULT;
 846			info->MS_Lib.blkext[i].ovrflg = MS_REG_OVR_DEFAULT;
 847			info->MS_Lib.blkext[i].mngflg = MS_REG_MNG_DEFAULT;
 848			info->MS_Lib.blkext[i].logadr = MS_LB_NOT_USED;
 849		}
 850	}
 851}
 852
 853static int ms_count_freeblock(struct us_data *us, u16 PhyBlock)
 854{
 855	u32 Ende, Count;
 856	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 857
 858	Ende = PhyBlock + MS_PHYSICAL_BLOCKS_PER_SEGMENT;
 859	for (Count = 0; PhyBlock < Ende; PhyBlock++) {
 860		switch (info->MS_Lib.Phy2LogMap[PhyBlock]) {
 861		case MS_LB_NOT_USED:
 862		case MS_LB_NOT_USED_ERASED:
 863			Count++;
 864			break;
 865		default:
 866			break;
 867		}
 868	}
 869
 870	return Count;
 871}
 872
 873static int ms_read_readpage(struct us_data *us, u32 PhyBlockAddr,
 874		u8 PageNum, u32 *PageBuf, struct ms_lib_type_extdat *ExtraDat)
 875{
 876	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
 877	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 878	u8 *bbuf = info->bbuf;
 879	int result;
 
 880	u32 bn = PhyBlockAddr * 0x20 + PageNum;
 881
 
 
 
 882	result = ene_load_bincode(us, MS_RW_PATTERN);
 883	if (result != USB_STOR_XFER_GOOD)
 884		return USB_STOR_TRANSPORT_ERROR;
 885
 886	/* Read Page Data */
 887	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
 888	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
 889	bcb->DataTransferLength = 0x200;
 890	bcb->Flags      = US_BULK_FLAG_IN;
 891	bcb->CDB[0]     = 0xF1;
 892
 893	bcb->CDB[1]     = 0x02; /* in init.c ENE_MSInit() is 0x01 */
 894
 895	bcb->CDB[5]     = (unsigned char)(bn);
 896	bcb->CDB[4]     = (unsigned char)(bn>>8);
 897	bcb->CDB[3]     = (unsigned char)(bn>>16);
 898	bcb->CDB[2]     = (unsigned char)(bn>>24);
 899
 900	result = ene_send_scsi_cmd(us, FDIR_READ, PageBuf, 0);
 901	if (result != USB_STOR_XFER_GOOD)
 902		return USB_STOR_TRANSPORT_ERROR;
 903
 904
 905	/* Read Extra Data */
 906	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
 907	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
 908	bcb->DataTransferLength = 0x4;
 909	bcb->Flags      = US_BULK_FLAG_IN;
 910	bcb->CDB[0]     = 0xF1;
 911	bcb->CDB[1]     = 0x03;
 912
 913	bcb->CDB[5]     = (unsigned char)(PageNum);
 914	bcb->CDB[4]     = (unsigned char)(PhyBlockAddr);
 915	bcb->CDB[3]     = (unsigned char)(PhyBlockAddr>>8);
 916	bcb->CDB[2]     = (unsigned char)(PhyBlockAddr>>16);
 917	bcb->CDB[6]     = 0x01;
 918
 919	result = ene_send_scsi_cmd(us, FDIR_READ, bbuf, 0);
 920	if (result != USB_STOR_XFER_GOOD)
 921		return USB_STOR_TRANSPORT_ERROR;
 922
 923	ExtraDat->reserved = 0;
 924	ExtraDat->intr     = 0x80;  /* Not yet,fireware support */
 925	ExtraDat->status0  = 0x10;  /* Not yet,fireware support */
 926
 927	ExtraDat->status1  = 0x00;  /* Not yet,fireware support */
 928	ExtraDat->ovrflg   = bbuf[0];
 929	ExtraDat->mngflg   = bbuf[1];
 930	ExtraDat->logadr   = memstick_logaddr(bbuf[2], bbuf[3]);
 931
 932	return USB_STOR_TRANSPORT_GOOD;
 933}
 934
 935static int ms_lib_process_bootblock(struct us_data *us, u16 PhyBlock, u8 *PageData)
 936{
 937	struct ms_bootblock_sysent *SysEntry;
 938	struct ms_bootblock_sysinf *SysInfo;
 939	u32 i, result;
 940	u8 PageNumber;
 941	u8 *PageBuffer;
 942	struct ms_lib_type_extdat ExtraData;
 943	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
 944
 945	PageBuffer = kmalloc(MS_BYTES_PER_PAGE, GFP_KERNEL);
 946	if (PageBuffer == NULL)
 947		return (u32)-1;
 948
 949	result = (u32)-1;
 950
 951	SysInfo = &(((struct ms_bootblock_page0 *)PageData)->sysinf);
 952
 953	if ((SysInfo->bMsClass != MS_SYSINF_MSCLASS_TYPE_1) ||
 954		(be16_to_cpu(SysInfo->wPageSize) != MS_SYSINF_PAGE_SIZE) ||
 955		((SysInfo->bSecuritySupport & MS_SYSINF_SECURITY) == MS_SYSINF_SECURITY_SUPPORT) ||
 956		(SysInfo->bReserved1 != MS_SYSINF_RESERVED1) ||
 957		(SysInfo->bReserved2 != MS_SYSINF_RESERVED2) ||
 958		(SysInfo->bFormatType != MS_SYSINF_FORMAT_FAT) ||
 959		(SysInfo->bUsage != MS_SYSINF_USAGE_GENERAL))
 960		goto exit;
 961		/* */
 962	switch (info->MS_Lib.cardType = SysInfo->bCardType) {
 963	case MS_SYSINF_CARDTYPE_RDONLY:
 964		ms_lib_ctrl_set(info, MS_LIB_CTRL_RDONLY);
 965		break;
 966	case MS_SYSINF_CARDTYPE_RDWR:
 967		ms_lib_ctrl_reset(info, MS_LIB_CTRL_RDONLY);
 968		break;
 969	case MS_SYSINF_CARDTYPE_HYBRID:
 970	default:
 971		goto exit;
 972	}
 973
 974	info->MS_Lib.blockSize = be16_to_cpu(SysInfo->wBlockSize);
 975	info->MS_Lib.NumberOfPhyBlock = be16_to_cpu(SysInfo->wBlockNumber);
 976	info->MS_Lib.NumberOfLogBlock = be16_to_cpu(SysInfo->wTotalBlockNumber)-2;
 977	info->MS_Lib.PagesPerBlock = info->MS_Lib.blockSize * SIZE_OF_KIRO / MS_BYTES_PER_PAGE;
 978	info->MS_Lib.NumberOfSegment = info->MS_Lib.NumberOfPhyBlock / MS_PHYSICAL_BLOCKS_PER_SEGMENT;
 979	info->MS_Model = be16_to_cpu(SysInfo->wMemorySize);
 980
 981	/*Allocate to all number of logicalblock and physicalblock */
 982	if (ms_lib_alloc_logicalmap(us))
 983		goto exit;
 984
 985	/* Mark the book block */
 986	ms_lib_set_bootblockmark(us, PhyBlock);
 987
 988	SysEntry = &(((struct ms_bootblock_page0 *)PageData)->sysent);
 989
 990	for (i = 0; i < MS_NUMBER_OF_SYSTEM_ENTRY; i++) {
 991		u32  EntryOffset, EntrySize;
 992
 993		EntryOffset = be32_to_cpu(SysEntry->entry[i].dwStart);
 994
 995		if (EntryOffset == 0xffffff)
 996			continue;
 997		EntrySize = be32_to_cpu(SysEntry->entry[i].dwSize);
 998
 999		if (EntrySize == 0)
1000			continue;
1001
1002		if (EntryOffset + MS_BYTES_PER_PAGE + EntrySize > info->MS_Lib.blockSize * (u32)SIZE_OF_KIRO)
1003			continue;
1004
1005		if (i == 0) {
1006			u8 PrevPageNumber = 0;
1007			u16 phyblk;
1008
1009			if (SysEntry->entry[i].bType != MS_SYSENT_TYPE_INVALID_BLOCK)
1010				goto exit;
1011
1012			while (EntrySize > 0) {
1013
1014				PageNumber = (u8)(EntryOffset / MS_BYTES_PER_PAGE + 1);
1015				if (PageNumber != PrevPageNumber) {
1016					switch (ms_read_readpage(us, PhyBlock, PageNumber, (u32 *)PageBuffer, &ExtraData)) {
1017					case MS_STATUS_SUCCESS:
1018						break;
1019					case MS_STATUS_WRITE_PROTECT:
1020					case MS_ERROR_FLASH_READ:
1021					case MS_STATUS_ERROR:
1022					default:
1023						goto exit;
1024					}
1025
1026					PrevPageNumber = PageNumber;
1027				}
1028
1029				phyblk = be16_to_cpu(*(u16 *)(PageBuffer + (EntryOffset % MS_BYTES_PER_PAGE)));
1030				if (phyblk < 0x0fff)
1031					ms_lib_set_initialerrorblock(us, phyblk);
1032
1033				EntryOffset += 2;
1034				EntrySize -= 2;
1035			}
1036		} else if (i == 1) {  /* CIS/IDI */
1037			struct ms_bootblock_idi *idi;
1038
1039			if (SysEntry->entry[i].bType != MS_SYSENT_TYPE_CIS_IDI)
1040				goto exit;
1041
1042			switch (ms_read_readpage(us, PhyBlock, (u8)(EntryOffset / MS_BYTES_PER_PAGE + 1), (u32 *)PageBuffer, &ExtraData)) {
1043			case MS_STATUS_SUCCESS:
1044				break;
1045			case MS_STATUS_WRITE_PROTECT:
1046			case MS_ERROR_FLASH_READ:
1047			case MS_STATUS_ERROR:
1048			default:
1049				goto exit;
1050			}
1051
1052			idi = &((struct ms_bootblock_cis_idi *)(PageBuffer + (EntryOffset % MS_BYTES_PER_PAGE)))->idi.idi;
1053			if (le16_to_cpu(idi->wIDIgeneralConfiguration) != MS_IDI_GENERAL_CONF)
1054				goto exit;
1055
1056			info->MS_Lib.BytesPerSector = le16_to_cpu(idi->wIDIbytesPerSector);
1057			if (info->MS_Lib.BytesPerSector != MS_BYTES_PER_PAGE)
1058				goto exit;
1059		}
1060	} /* End for .. */
1061
1062	result = 0;
1063
1064exit:
1065	if (result)
1066		ms_lib_free_logicalmap(us);
1067
1068	kfree(PageBuffer);
1069
1070	result = 0;
1071	return result;
1072}
1073
1074static void ms_lib_free_writebuf(struct us_data *us)
1075{
1076	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1077	info->MS_Lib.wrtblk = (u16)-1; /* set to -1 */
1078
1079	/* memset((fdoExt)->MS_Lib.pagemap, 0, sizeof((fdoExt)->MS_Lib.pagemap)) */
1080
1081	ms_lib_clear_pagemap(info); /* (pdx)->MS_Lib.pagemap memset 0 in ms.h */
1082
1083	if (info->MS_Lib.blkpag) {
1084		kfree(info->MS_Lib.blkpag);  /* Arnold test ... */
1085		info->MS_Lib.blkpag = NULL;
1086	}
1087
1088	if (info->MS_Lib.blkext) {
1089		kfree(info->MS_Lib.blkext);  /* Arnold test ... */
1090		info->MS_Lib.blkext = NULL;
1091	}
1092}
1093
1094
1095static void ms_lib_free_allocatedarea(struct us_data *us)
1096{
1097	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1098
1099	ms_lib_free_writebuf(us); /* Free MS_Lib.pagemap */
1100	ms_lib_free_logicalmap(us); /* kfree MS_Lib.Phy2LogMap and MS_Lib.Log2PhyMap */
1101
1102	/* set struct us point flag to 0 */
1103	info->MS_Lib.flags = 0;
1104	info->MS_Lib.BytesPerSector = 0;
1105	info->MS_Lib.SectorsPerCylinder = 0;
1106
1107	info->MS_Lib.cardType = 0;
1108	info->MS_Lib.blockSize = 0;
1109	info->MS_Lib.PagesPerBlock = 0;
1110
1111	info->MS_Lib.NumberOfPhyBlock = 0;
1112	info->MS_Lib.NumberOfLogBlock = 0;
1113}
1114
1115
1116static int ms_lib_alloc_writebuf(struct us_data *us)
1117{
1118	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1119
1120	info->MS_Lib.wrtblk = (u16)-1;
1121
1122	info->MS_Lib.blkpag = kmalloc_array(info->MS_Lib.PagesPerBlock,
1123					    info->MS_Lib.BytesPerSector,
1124					    GFP_KERNEL);
1125	info->MS_Lib.blkext = kmalloc_array(info->MS_Lib.PagesPerBlock,
1126					    sizeof(struct ms_lib_type_extdat),
1127					    GFP_KERNEL);
1128
1129	if ((info->MS_Lib.blkpag == NULL) || (info->MS_Lib.blkext == NULL)) {
1130		ms_lib_free_writebuf(us);
1131		return (u32)-1;
1132	}
1133
1134	ms_lib_clear_writebuf(us);
1135
1136	return 0;
1137}
1138
1139static int ms_lib_force_setlogical_pair(struct us_data *us, u16 logblk, u16 phyblk)
1140{
1141	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1142
1143	if (logblk == MS_LB_NOT_USED)
1144		return 0;
1145
1146	if ((logblk >= info->MS_Lib.NumberOfLogBlock) ||
1147		(phyblk >= info->MS_Lib.NumberOfPhyBlock))
1148		return (u32)-1;
1149
1150	info->MS_Lib.Phy2LogMap[phyblk] = logblk;
1151	info->MS_Lib.Log2PhyMap[logblk] = phyblk;
1152
1153	return 0;
1154}
1155
1156static int ms_read_copyblock(struct us_data *us, u16 oldphy, u16 newphy,
1157			u16 PhyBlockAddr, u8 PageNum, unsigned char *buf, u16 len)
1158{
1159	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1160	int result;
1161
 
 
1162	result = ene_load_bincode(us, MS_RW_PATTERN);
1163	if (result != USB_STOR_XFER_GOOD)
1164		return USB_STOR_TRANSPORT_ERROR;
1165
1166	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1167	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1168	bcb->DataTransferLength = 0x200*len;
1169	bcb->Flags = 0x00;
1170	bcb->CDB[0] = 0xF0;
1171	bcb->CDB[1] = 0x08;
1172	bcb->CDB[4] = (unsigned char)(oldphy);
1173	bcb->CDB[3] = (unsigned char)(oldphy>>8);
1174	bcb->CDB[2] = 0; /* (BYTE)(oldphy>>16) */
1175	bcb->CDB[7] = (unsigned char)(newphy);
1176	bcb->CDB[6] = (unsigned char)(newphy>>8);
1177	bcb->CDB[5] = 0; /* (BYTE)(newphy>>16) */
1178	bcb->CDB[9] = (unsigned char)(PhyBlockAddr);
1179	bcb->CDB[8] = (unsigned char)(PhyBlockAddr>>8);
1180	bcb->CDB[10] = PageNum;
1181
1182	result = ene_send_scsi_cmd(us, FDIR_WRITE, buf, 0);
1183	if (result != USB_STOR_XFER_GOOD)
1184		return USB_STOR_TRANSPORT_ERROR;
1185
1186	return USB_STOR_TRANSPORT_GOOD;
1187}
1188
1189static int ms_read_eraseblock(struct us_data *us, u32 PhyBlockAddr)
1190{
1191	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1192	int result;
1193	u32 bn = PhyBlockAddr;
1194
 
 
1195	result = ene_load_bincode(us, MS_RW_PATTERN);
1196	if (result != USB_STOR_XFER_GOOD)
1197		return USB_STOR_TRANSPORT_ERROR;
1198
1199	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1200	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1201	bcb->DataTransferLength = 0x200;
1202	bcb->Flags = US_BULK_FLAG_IN;
1203	bcb->CDB[0] = 0xF2;
1204	bcb->CDB[1] = 0x06;
1205	bcb->CDB[4] = (unsigned char)(bn);
1206	bcb->CDB[3] = (unsigned char)(bn>>8);
1207	bcb->CDB[2] = (unsigned char)(bn>>16);
1208
1209	result = ene_send_scsi_cmd(us, FDIR_READ, NULL, 0);
1210	if (result != USB_STOR_XFER_GOOD)
1211		return USB_STOR_TRANSPORT_ERROR;
1212
1213	return USB_STOR_TRANSPORT_GOOD;
1214}
1215
1216static int ms_lib_check_disableblock(struct us_data *us, u16 PhyBlock)
1217{
1218	unsigned char *PageBuf = NULL;
1219	u16 result = MS_STATUS_SUCCESS;
1220	u16 blk, index = 0;
1221	struct ms_lib_type_extdat extdat;
1222	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1223
1224	PageBuf = kmalloc(MS_BYTES_PER_PAGE, GFP_KERNEL);
1225	if (PageBuf == NULL) {
1226		result = MS_NO_MEMORY_ERROR;
1227		goto exit;
1228	}
1229
1230	ms_read_readpage(us, PhyBlock, 1, (u32 *)PageBuf, &extdat);
1231	do {
1232		blk = be16_to_cpu(PageBuf[index]);
1233		if (blk == MS_LB_NOT_USED)
1234			break;
1235		if (blk == info->MS_Lib.Log2PhyMap[0]) {
1236			result = MS_ERROR_FLASH_READ;
1237			break;
1238		}
1239		index++;
1240	} while (1);
1241
1242exit:
1243	kfree(PageBuf);
1244	return result;
1245}
1246
1247static int ms_lib_setacquired_errorblock(struct us_data *us, u16 phyblk)
1248{
1249	u16 log;
1250	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1251
1252	if (phyblk >= info->MS_Lib.NumberOfPhyBlock)
1253		return (u32)-1;
1254
1255	log = info->MS_Lib.Phy2LogMap[phyblk];
1256
1257	if (log < info->MS_Lib.NumberOfLogBlock)
1258		info->MS_Lib.Log2PhyMap[log] = MS_LB_NOT_USED;
1259
1260	if (info->MS_Lib.Phy2LogMap[phyblk] != MS_LB_INITIAL_ERROR)
1261		info->MS_Lib.Phy2LogMap[phyblk] = MS_LB_ACQUIRED_ERROR;
1262
1263	return 0;
1264}
1265
1266static int ms_lib_overwrite_extra(struct us_data *us, u32 PhyBlockAddr,
1267				u8 PageNum, u8 OverwriteFlag)
1268{
1269	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1270	int result;
1271
 
 
1272	result = ene_load_bincode(us, MS_RW_PATTERN);
1273	if (result != USB_STOR_XFER_GOOD)
1274		return USB_STOR_TRANSPORT_ERROR;
1275
1276	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1277	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1278	bcb->DataTransferLength = 0x4;
1279	bcb->Flags = US_BULK_FLAG_IN;
1280	bcb->CDB[0] = 0xF2;
1281	bcb->CDB[1] = 0x05;
1282	bcb->CDB[5] = (unsigned char)(PageNum);
1283	bcb->CDB[4] = (unsigned char)(PhyBlockAddr);
1284	bcb->CDB[3] = (unsigned char)(PhyBlockAddr>>8);
1285	bcb->CDB[2] = (unsigned char)(PhyBlockAddr>>16);
1286	bcb->CDB[6] = OverwriteFlag;
1287	bcb->CDB[7] = 0xFF;
1288	bcb->CDB[8] = 0xFF;
1289	bcb->CDB[9] = 0xFF;
1290
1291	result = ene_send_scsi_cmd(us, FDIR_READ, NULL, 0);
1292	if (result != USB_STOR_XFER_GOOD)
1293		return USB_STOR_TRANSPORT_ERROR;
1294
1295	return USB_STOR_TRANSPORT_GOOD;
1296}
1297
1298static int ms_lib_error_phyblock(struct us_data *us, u16 phyblk)
1299{
1300	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1301
1302	if (phyblk >= info->MS_Lib.NumberOfPhyBlock)
1303		return MS_STATUS_ERROR;
1304
1305	ms_lib_setacquired_errorblock(us, phyblk);
1306
1307	if (ms_lib_iswritable(info))
1308		return ms_lib_overwrite_extra(us, phyblk, 0, (u8)(~MS_REG_OVR_BKST & BYTE_MASK));
1309
1310	return MS_STATUS_SUCCESS;
1311}
1312
1313static int ms_lib_erase_phyblock(struct us_data *us, u16 phyblk)
1314{
1315	u16 log;
1316	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1317
1318	if (phyblk >= info->MS_Lib.NumberOfPhyBlock)
1319		return MS_STATUS_ERROR;
1320
1321	log = info->MS_Lib.Phy2LogMap[phyblk];
1322
1323	if (log < info->MS_Lib.NumberOfLogBlock)
1324		info->MS_Lib.Log2PhyMap[log] = MS_LB_NOT_USED;
1325
1326	info->MS_Lib.Phy2LogMap[phyblk] = MS_LB_NOT_USED;
1327
1328	if (ms_lib_iswritable(info)) {
1329		switch (ms_read_eraseblock(us, phyblk)) {
1330		case MS_STATUS_SUCCESS:
1331			info->MS_Lib.Phy2LogMap[phyblk] = MS_LB_NOT_USED_ERASED;
1332			return MS_STATUS_SUCCESS;
1333		case MS_ERROR_FLASH_ERASE:
1334		case MS_STATUS_INT_ERROR:
1335			ms_lib_error_phyblock(us, phyblk);
1336			return MS_ERROR_FLASH_ERASE;
1337		case MS_STATUS_ERROR:
1338		default:
1339			ms_lib_ctrl_set(info, MS_LIB_CTRL_RDONLY); /* MS_LibCtrlSet will used by ENE_MSInit ,need check, and why us to info*/
1340			ms_lib_setacquired_errorblock(us, phyblk);
1341			return MS_STATUS_ERROR;
1342		}
1343	}
1344
1345	ms_lib_setacquired_errorblock(us, phyblk);
1346
1347	return MS_STATUS_SUCCESS;
1348}
1349
1350static int ms_lib_read_extra(struct us_data *us, u32 PhyBlock,
1351				u8 PageNum, struct ms_lib_type_extdat *ExtraDat)
1352{
1353	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1354	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1355	u8 *bbuf = info->bbuf;
1356	int result;
 
1357
 
1358	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1359	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1360	bcb->DataTransferLength = 0x4;
1361	bcb->Flags      = US_BULK_FLAG_IN;
1362	bcb->CDB[0]     = 0xF1;
1363	bcb->CDB[1]     = 0x03;
1364	bcb->CDB[5]     = (unsigned char)(PageNum);
1365	bcb->CDB[4]     = (unsigned char)(PhyBlock);
1366	bcb->CDB[3]     = (unsigned char)(PhyBlock>>8);
1367	bcb->CDB[2]     = (unsigned char)(PhyBlock>>16);
1368	bcb->CDB[6]     = 0x01;
1369
1370	result = ene_send_scsi_cmd(us, FDIR_READ, bbuf, 0);
1371	if (result != USB_STOR_XFER_GOOD)
1372		return USB_STOR_TRANSPORT_ERROR;
1373
1374	ExtraDat->reserved = 0;
1375	ExtraDat->intr     = 0x80;  /* Not yet, waiting for fireware support */
1376	ExtraDat->status0  = 0x10;  /* Not yet, waiting for fireware support */
1377	ExtraDat->status1  = 0x00;  /* Not yet, waiting for fireware support */
1378	ExtraDat->ovrflg   = bbuf[0];
1379	ExtraDat->mngflg   = bbuf[1];
1380	ExtraDat->logadr   = memstick_logaddr(bbuf[2], bbuf[3]);
1381
1382	return USB_STOR_TRANSPORT_GOOD;
1383}
1384
1385static int ms_libsearch_block_from_physical(struct us_data *us, u16 phyblk)
1386{
 
1387	u16 blk;
1388	struct ms_lib_type_extdat extdat; /* need check */
1389	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1390
1391
1392	if (phyblk >= info->MS_Lib.NumberOfPhyBlock)
1393		return MS_LB_ERROR;
1394
1395	for (blk = phyblk + 1; blk != phyblk; blk++) {
1396		if ((blk & MS_PHYSICAL_BLOCKS_PER_SEGMENT_MASK) == 0)
1397			blk -= MS_PHYSICAL_BLOCKS_PER_SEGMENT;
1398
 
1399		if (info->MS_Lib.Phy2LogMap[blk] == MS_LB_NOT_USED_ERASED) {
1400			return blk;
1401		} else if (info->MS_Lib.Phy2LogMap[blk] == MS_LB_NOT_USED) {
1402			switch (ms_lib_read_extra(us, blk, 0, &extdat)) {
1403			case MS_STATUS_SUCCESS:
1404			case MS_STATUS_SUCCESS_WITH_ECC:
1405				break;
1406			case MS_NOCARD_ERROR:
1407				return MS_NOCARD_ERROR;
1408			case MS_STATUS_INT_ERROR:
1409				return MS_LB_ERROR;
1410			case MS_ERROR_FLASH_READ:
1411			default:
1412				ms_lib_setacquired_errorblock(us, blk);
1413				continue;
1414			} /* End switch */
1415
1416			if ((extdat.ovrflg & MS_REG_OVR_BKST) != MS_REG_OVR_BKST_OK) {
1417				ms_lib_setacquired_errorblock(us, blk);
1418				continue;
1419			}
1420
1421			switch (ms_lib_erase_phyblock(us, blk)) {
1422			case MS_STATUS_SUCCESS:
1423				return blk;
1424			case MS_STATUS_ERROR:
1425				return MS_LB_ERROR;
1426			case MS_ERROR_FLASH_ERASE:
1427			default:
1428				ms_lib_error_phyblock(us, blk);
1429				break;
1430			}
1431		}
1432	} /* End for */
1433
1434	return MS_LB_ERROR;
1435}
1436static int ms_libsearch_block_from_logical(struct us_data *us, u16 logblk)
1437{
1438	u16 phyblk;
1439	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1440
1441	phyblk = ms_libconv_to_physical(info, logblk);
1442	if (phyblk >= MS_LB_ERROR) {
1443		if (logblk >= info->MS_Lib.NumberOfLogBlock)
1444			return MS_LB_ERROR;
1445
1446		phyblk = (logblk + MS_NUMBER_OF_BOOT_BLOCK) / MS_LOGICAL_BLOCKS_PER_SEGMENT;
1447		phyblk *= MS_PHYSICAL_BLOCKS_PER_SEGMENT;
1448		phyblk += MS_PHYSICAL_BLOCKS_PER_SEGMENT - 1;
1449	}
1450
1451	return ms_libsearch_block_from_physical(us, phyblk);
1452}
1453
1454static int ms_scsi_test_unit_ready(struct us_data *us, struct scsi_cmnd *srb)
1455{
1456	struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra);
1457
1458	/* pr_info("MS_SCSI_Test_Unit_Ready\n"); */
1459	if (info->MS_Status.Insert && info->MS_Status.Ready) {
1460		return USB_STOR_TRANSPORT_GOOD;
1461	} else {
1462		ene_ms_init(us);
1463		return USB_STOR_TRANSPORT_GOOD;
1464	}
1465
1466	return USB_STOR_TRANSPORT_GOOD;
1467}
1468
 
 
 
 
 
 
 
 
 
 
 
 
 
1469static int ms_scsi_mode_sense(struct us_data *us, struct scsi_cmnd *srb)
1470{
1471	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1472	unsigned char mediaNoWP[12] = {
1473		0x0b, 0x00, 0x00, 0x08, 0x00, 0x00,
1474		0x71, 0xc0, 0x00, 0x00, 0x02, 0x00 };
1475	unsigned char mediaWP[12]   = {
1476		0x0b, 0x00, 0x80, 0x08, 0x00, 0x00,
1477		0x71, 0xc0, 0x00, 0x00, 0x02, 0x00 };
1478
1479	if (info->MS_Status.WtP)
1480		usb_stor_set_xfer_buf(mediaWP, 12, srb);
1481	else
1482		usb_stor_set_xfer_buf(mediaNoWP, 12, srb);
1483
1484	return USB_STOR_TRANSPORT_GOOD;
1485}
1486
1487static int ms_scsi_read_capacity(struct us_data *us, struct scsi_cmnd *srb)
1488{
1489	u32   bl_num;
1490	u16    bl_len;
1491	unsigned int offset = 0;
1492	unsigned char    buf[8];
1493	struct scatterlist *sg = NULL;
1494	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1495
1496	usb_stor_dbg(us, "ms_scsi_read_capacity\n");
1497	bl_len = 0x200;
1498	if (info->MS_Status.IsMSPro)
1499		bl_num = info->MSP_TotalBlock - 1;
1500	else
1501		bl_num = info->MS_Lib.NumberOfLogBlock * info->MS_Lib.blockSize * 2 - 1;
1502
1503	info->bl_num = bl_num;
1504	usb_stor_dbg(us, "bl_len = %x\n", bl_len);
1505	usb_stor_dbg(us, "bl_num = %x\n", bl_num);
1506
1507	/*srb->request_bufflen = 8; */
1508	buf[0] = (bl_num >> 24) & 0xff;
1509	buf[1] = (bl_num >> 16) & 0xff;
1510	buf[2] = (bl_num >> 8) & 0xff;
1511	buf[3] = (bl_num >> 0) & 0xff;
1512	buf[4] = (bl_len >> 24) & 0xff;
1513	buf[5] = (bl_len >> 16) & 0xff;
1514	buf[6] = (bl_len >> 8) & 0xff;
1515	buf[7] = (bl_len >> 0) & 0xff;
1516
1517	usb_stor_access_xfer_buf(buf, 8, srb, &sg, &offset, TO_XFER_BUF);
1518
1519	return USB_STOR_TRANSPORT_GOOD;
1520}
1521
1522static void ms_lib_phy_to_log_range(u16 PhyBlock, u16 *LogStart, u16 *LogEnde)
1523{
1524	PhyBlock /= MS_PHYSICAL_BLOCKS_PER_SEGMENT;
1525
1526	if (PhyBlock) {
1527		*LogStart = MS_LOGICAL_BLOCKS_IN_1ST_SEGMENT + (PhyBlock - 1) * MS_LOGICAL_BLOCKS_PER_SEGMENT;/*496*/
1528		*LogEnde = *LogStart + MS_LOGICAL_BLOCKS_PER_SEGMENT;/*496*/
1529	} else {
1530		*LogStart = 0;
1531		*LogEnde = MS_LOGICAL_BLOCKS_IN_1ST_SEGMENT;/*494*/
1532	}
1533}
1534
1535static int ms_lib_read_extrablock(struct us_data *us, u32 PhyBlock,
1536	u8 PageNum, u8 blen, void *buf)
1537{
1538	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1539	int     result;
1540
 
 
 
1541	/* Read Extra Data */
1542	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1543	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1544	bcb->DataTransferLength = 0x4 * blen;
1545	bcb->Flags      = US_BULK_FLAG_IN;
1546	bcb->CDB[0]     = 0xF1;
1547	bcb->CDB[1]     = 0x03;
1548	bcb->CDB[5]     = (unsigned char)(PageNum);
1549	bcb->CDB[4]     = (unsigned char)(PhyBlock);
1550	bcb->CDB[3]     = (unsigned char)(PhyBlock>>8);
1551	bcb->CDB[2]     = (unsigned char)(PhyBlock>>16);
1552	bcb->CDB[6]     = blen;
1553
1554	result = ene_send_scsi_cmd(us, FDIR_READ, buf, 0);
1555	if (result != USB_STOR_XFER_GOOD)
1556		return USB_STOR_TRANSPORT_ERROR;
1557
1558	return USB_STOR_TRANSPORT_GOOD;
1559}
1560
1561static int ms_lib_scan_logicalblocknumber(struct us_data *us, u16 btBlk1st)
1562{
1563	u16 PhyBlock, newblk, i;
1564	u16 LogStart, LogEnde;
1565	struct ms_lib_type_extdat extdat;
 
1566	u32 count = 0, index = 0;
1567	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1568	u8 *bbuf = info->bbuf;
1569
1570	for (PhyBlock = 0; PhyBlock < info->MS_Lib.NumberOfPhyBlock;) {
1571		ms_lib_phy_to_log_range(PhyBlock, &LogStart, &LogEnde);
1572
1573		for (i = 0; i < MS_PHYSICAL_BLOCKS_PER_SEGMENT; i++, PhyBlock++) {
1574			switch (ms_libconv_to_logical(info, PhyBlock)) {
1575			case MS_STATUS_ERROR:
1576				continue;
1577			default:
1578				break;
1579			}
1580
1581			if (count == PhyBlock) {
1582				ms_lib_read_extrablock(us, PhyBlock, 0, 0x80,
1583						bbuf);
1584				count += 0x80;
1585			}
1586			index = (PhyBlock % 0x80) * 4;
1587
1588			extdat.ovrflg = bbuf[index];
1589			extdat.mngflg = bbuf[index+1];
1590			extdat.logadr = memstick_logaddr(bbuf[index+2],
1591					bbuf[index+3]);
1592
1593			if ((extdat.ovrflg & MS_REG_OVR_BKST) != MS_REG_OVR_BKST_OK) {
1594				ms_lib_setacquired_errorblock(us, PhyBlock);
1595				continue;
1596			}
1597
1598			if ((extdat.mngflg & MS_REG_MNG_ATFLG) == MS_REG_MNG_ATFLG_ATTBL) {
1599				ms_lib_erase_phyblock(us, PhyBlock);
1600				continue;
1601			}
1602
1603			if (extdat.logadr != MS_LB_NOT_USED) {
1604				if ((extdat.logadr < LogStart) || (LogEnde <= extdat.logadr)) {
1605					ms_lib_erase_phyblock(us, PhyBlock);
1606					continue;
1607				}
1608
1609				newblk = ms_libconv_to_physical(info, extdat.logadr);
1610
1611				if (newblk != MS_LB_NOT_USED) {
1612					if (extdat.logadr == 0) {
1613						ms_lib_set_logicalpair(us, extdat.logadr, PhyBlock);
1614						if (ms_lib_check_disableblock(us, btBlk1st)) {
1615							ms_lib_set_logicalpair(us, extdat.logadr, newblk);
1616							continue;
1617						}
1618					}
1619
1620					ms_lib_read_extra(us, newblk, 0, &extdat);
1621					if ((extdat.ovrflg & MS_REG_OVR_UDST) == MS_REG_OVR_UDST_UPDATING) {
1622						ms_lib_erase_phyblock(us, PhyBlock);
1623						continue;
1624					} else {
1625						ms_lib_erase_phyblock(us, newblk);
1626					}
1627				}
1628
1629				ms_lib_set_logicalpair(us, extdat.logadr, PhyBlock);
1630			}
1631		}
1632	} /* End for ... */
1633
1634	return MS_STATUS_SUCCESS;
1635}
1636
1637
1638static int ms_scsi_read(struct us_data *us, struct scsi_cmnd *srb)
1639{
1640	int result;
1641	unsigned char *cdb = srb->cmnd;
1642	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1643	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1644
1645	u32 bn = ((cdb[2] << 24) & 0xff000000) | ((cdb[3] << 16) & 0x00ff0000) |
1646		((cdb[4] << 8) & 0x0000ff00) | ((cdb[5] << 0) & 0x000000ff);
1647	u16 blen = ((cdb[7] << 8) & 0xff00) | ((cdb[8] << 0) & 0x00ff);
1648	u32 blenByte = blen * 0x200;
1649
1650	if (bn > info->bl_num)
1651		return USB_STOR_TRANSPORT_ERROR;
1652
1653	if (info->MS_Status.IsMSPro) {
1654		result = ene_load_bincode(us, MSP_RW_PATTERN);
1655		if (result != USB_STOR_XFER_GOOD) {
1656			usb_stor_dbg(us, "Load MPS RW pattern Fail !!\n");
1657			return USB_STOR_TRANSPORT_ERROR;
1658		}
1659
1660		/* set up the command wrapper */
1661		memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1662		bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1663		bcb->DataTransferLength = blenByte;
1664		bcb->Flags  = US_BULK_FLAG_IN;
1665		bcb->CDB[0] = 0xF1;
1666		bcb->CDB[1] = 0x02;
1667		bcb->CDB[5] = (unsigned char)(bn);
1668		bcb->CDB[4] = (unsigned char)(bn>>8);
1669		bcb->CDB[3] = (unsigned char)(bn>>16);
1670		bcb->CDB[2] = (unsigned char)(bn>>24);
1671
1672		result = ene_send_scsi_cmd(us, FDIR_READ, scsi_sglist(srb), 1);
1673	} else {
1674		void *buf;
1675		int offset = 0;
1676		u16 phyblk, logblk;
1677		u8 PageNum;
1678		u16 len;
1679		u32 blkno;
1680
1681		buf = kmalloc(blenByte, GFP_KERNEL);
1682		if (buf == NULL)
1683			return USB_STOR_TRANSPORT_ERROR;
1684
1685		result = ene_load_bincode(us, MS_RW_PATTERN);
1686		if (result != USB_STOR_XFER_GOOD) {
1687			pr_info("Load MS RW pattern Fail !!\n");
1688			result = USB_STOR_TRANSPORT_ERROR;
1689			goto exit;
1690		}
1691
1692		logblk  = (u16)(bn / info->MS_Lib.PagesPerBlock);
1693		PageNum = (u8)(bn % info->MS_Lib.PagesPerBlock);
1694
1695		while (1) {
1696			if (blen > (info->MS_Lib.PagesPerBlock-PageNum))
1697				len = info->MS_Lib.PagesPerBlock-PageNum;
1698			else
1699				len = blen;
1700
1701			phyblk = ms_libconv_to_physical(info, logblk);
1702			blkno  = phyblk * 0x20 + PageNum;
1703
1704			/* set up the command wrapper */
1705			memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1706			bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1707			bcb->DataTransferLength = 0x200 * len;
1708			bcb->Flags  = US_BULK_FLAG_IN;
1709			bcb->CDB[0] = 0xF1;
1710			bcb->CDB[1] = 0x02;
1711			bcb->CDB[5] = (unsigned char)(blkno);
1712			bcb->CDB[4] = (unsigned char)(blkno>>8);
1713			bcb->CDB[3] = (unsigned char)(blkno>>16);
1714			bcb->CDB[2] = (unsigned char)(blkno>>24);
1715
1716			result = ene_send_scsi_cmd(us, FDIR_READ, buf+offset, 0);
1717			if (result != USB_STOR_XFER_GOOD) {
1718				pr_info("MS_SCSI_Read --- result = %x\n", result);
1719				result = USB_STOR_TRANSPORT_ERROR;
1720				goto exit;
1721			}
1722
1723			blen -= len;
1724			if (blen <= 0)
1725				break;
1726			logblk++;
1727			PageNum = 0;
1728			offset += MS_BYTES_PER_PAGE*len;
1729		}
1730		usb_stor_set_xfer_buf(buf, blenByte, srb);
1731exit:
1732		kfree(buf);
1733	}
1734	return result;
1735}
1736
1737static int ms_scsi_write(struct us_data *us, struct scsi_cmnd *srb)
1738{
1739	int result;
1740	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1741	unsigned char *cdb = srb->cmnd;
1742	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1743
1744	u32 bn = ((cdb[2] << 24) & 0xff000000) |
1745			((cdb[3] << 16) & 0x00ff0000) |
1746			((cdb[4] << 8) & 0x0000ff00) |
1747			((cdb[5] << 0) & 0x000000ff);
1748	u16 blen = ((cdb[7] << 8) & 0xff00) | ((cdb[8] << 0) & 0x00ff);
1749	u32 blenByte = blen * 0x200;
1750
1751	if (bn > info->bl_num)
1752		return USB_STOR_TRANSPORT_ERROR;
1753
1754	if (info->MS_Status.IsMSPro) {
1755		result = ene_load_bincode(us, MSP_RW_PATTERN);
1756		if (result != USB_STOR_XFER_GOOD) {
1757			pr_info("Load MSP RW pattern Fail !!\n");
1758			return USB_STOR_TRANSPORT_ERROR;
1759		}
1760
1761		/* set up the command wrapper */
1762		memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1763		bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1764		bcb->DataTransferLength = blenByte;
1765		bcb->Flags  = 0x00;
1766		bcb->CDB[0] = 0xF0;
1767		bcb->CDB[1] = 0x04;
1768		bcb->CDB[5] = (unsigned char)(bn);
1769		bcb->CDB[4] = (unsigned char)(bn>>8);
1770		bcb->CDB[3] = (unsigned char)(bn>>16);
1771		bcb->CDB[2] = (unsigned char)(bn>>24);
1772
1773		result = ene_send_scsi_cmd(us, FDIR_WRITE, scsi_sglist(srb), 1);
1774	} else {
1775		void *buf;
1776		int offset = 0;
1777		u16 PhyBlockAddr;
1778		u8 PageNum;
 
1779		u16 len, oldphy, newphy;
1780
1781		buf = kmalloc(blenByte, GFP_KERNEL);
1782		if (buf == NULL)
1783			return USB_STOR_TRANSPORT_ERROR;
1784		usb_stor_set_xfer_buf(buf, blenByte, srb);
1785
1786		result = ene_load_bincode(us, MS_RW_PATTERN);
1787		if (result != USB_STOR_XFER_GOOD) {
1788			pr_info("Load MS RW pattern Fail !!\n");
1789			result = USB_STOR_TRANSPORT_ERROR;
1790			goto exit;
1791		}
1792
1793		PhyBlockAddr = (u16)(bn / info->MS_Lib.PagesPerBlock);
1794		PageNum      = (u8)(bn % info->MS_Lib.PagesPerBlock);
1795
1796		while (1) {
1797			if (blen > (info->MS_Lib.PagesPerBlock-PageNum))
1798				len = info->MS_Lib.PagesPerBlock-PageNum;
1799			else
1800				len = blen;
1801
1802			oldphy = ms_libconv_to_physical(info, PhyBlockAddr); /* need check us <-> info */
1803			newphy = ms_libsearch_block_from_logical(us, PhyBlockAddr);
1804
1805			result = ms_read_copyblock(us, oldphy, newphy, PhyBlockAddr, PageNum, buf+offset, len);
1806
1807			if (result != USB_STOR_XFER_GOOD) {
1808				pr_info("MS_SCSI_Write --- result = %x\n", result);
1809				result =  USB_STOR_TRANSPORT_ERROR;
1810				goto exit;
1811			}
1812
1813			info->MS_Lib.Phy2LogMap[oldphy] = MS_LB_NOT_USED_ERASED;
1814			ms_lib_force_setlogical_pair(us, PhyBlockAddr, newphy);
1815
1816			blen -= len;
1817			if (blen <= 0)
1818				break;
1819			PhyBlockAddr++;
1820			PageNum = 0;
1821			offset += MS_BYTES_PER_PAGE*len;
1822		}
1823exit:
1824		kfree(buf);
1825	}
1826	return result;
1827}
1828
1829/*
1830 * ENE MS Card
1831 */
1832
1833static int ene_get_card_type(struct us_data *us, u16 index, void *buf)
1834{
1835	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1836	int result;
1837
1838	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1839	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1840	bcb->DataTransferLength	= 0x01;
1841	bcb->Flags			= US_BULK_FLAG_IN;
1842	bcb->CDB[0]			= 0xED;
1843	bcb->CDB[2]			= (unsigned char)(index>>8);
1844	bcb->CDB[3]			= (unsigned char)index;
1845
1846	result = ene_send_scsi_cmd(us, FDIR_READ, buf, 0);
1847	return result;
1848}
1849
1850static int ene_get_card_status(struct us_data *us, u8 *buf)
1851{
1852	u16 tmpreg;
1853	u32 reg4b;
1854	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1855
1856	/*usb_stor_dbg(us, "transport --- ENE_ReadSDReg\n");*/
1857	reg4b = *(u32 *)&buf[0x18];
1858	info->SD_READ_BL_LEN = (u8)((reg4b >> 8) & 0x0f);
1859
1860	tmpreg = (u16) reg4b;
1861	reg4b = *(u32 *)(&buf[0x14]);
1862	if (info->SD_Status.HiCapacity && !info->SD_Status.IsMMC)
1863		info->HC_C_SIZE = (reg4b >> 8) & 0x3fffff;
1864
1865	info->SD_C_SIZE = ((tmpreg & 0x03) << 10) | (u16)(reg4b >> 22);
1866	info->SD_C_SIZE_MULT = (u8)(reg4b >> 7)  & 0x07;
1867	if (info->SD_Status.HiCapacity && info->SD_Status.IsMMC)
1868		info->HC_C_SIZE = *(u32 *)(&buf[0x100]);
1869
1870	if (info->SD_READ_BL_LEN > SD_BLOCK_LEN) {
1871		info->SD_Block_Mult = 1 << (info->SD_READ_BL_LEN-SD_BLOCK_LEN);
1872		info->SD_READ_BL_LEN = SD_BLOCK_LEN;
1873	} else {
1874		info->SD_Block_Mult = 1;
1875	}
1876
1877	return USB_STOR_TRANSPORT_GOOD;
1878}
1879
1880static int ene_load_bincode(struct us_data *us, unsigned char flag)
1881{
1882	int err;
1883	char *fw_name = NULL;
1884	unsigned char *buf = NULL;
1885	const struct firmware *sd_fw = NULL;
1886	int result = USB_STOR_TRANSPORT_ERROR;
1887	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
1888	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1889
1890	if (info->BIN_FLAG == flag)
1891		return USB_STOR_TRANSPORT_GOOD;
1892
1893	switch (flag) {
1894	/* For SD */
1895	case SD_INIT1_PATTERN:
1896		usb_stor_dbg(us, "SD_INIT1_PATTERN\n");
1897		fw_name = SD_INIT1_FIRMWARE;
1898		break;
1899	case SD_INIT2_PATTERN:
1900		usb_stor_dbg(us, "SD_INIT2_PATTERN\n");
1901		fw_name = SD_INIT2_FIRMWARE;
1902		break;
1903	case SD_RW_PATTERN:
1904		usb_stor_dbg(us, "SD_RW_PATTERN\n");
1905		fw_name = SD_RW_FIRMWARE;
1906		break;
1907	/* For MS */
1908	case MS_INIT_PATTERN:
1909		usb_stor_dbg(us, "MS_INIT_PATTERN\n");
1910		fw_name = MS_INIT_FIRMWARE;
1911		break;
1912	case MSP_RW_PATTERN:
1913		usb_stor_dbg(us, "MSP_RW_PATTERN\n");
1914		fw_name = MSP_RW_FIRMWARE;
1915		break;
1916	case MS_RW_PATTERN:
1917		usb_stor_dbg(us, "MS_RW_PATTERN\n");
1918		fw_name = MS_RW_FIRMWARE;
1919		break;
1920	default:
1921		usb_stor_dbg(us, "----------- Unknown PATTERN ----------\n");
1922		goto nofw;
1923	}
1924
1925	err = request_firmware(&sd_fw, fw_name, &us->pusb_dev->dev);
1926	if (err) {
1927		usb_stor_dbg(us, "load firmware %s failed\n", fw_name);
1928		goto nofw;
1929	}
1930	buf = kmemdup(sd_fw->data, sd_fw->size, GFP_KERNEL);
1931	if (buf == NULL)
 
1932		goto nofw;
1933
 
1934	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
1935	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
1936	bcb->DataTransferLength = sd_fw->size;
1937	bcb->Flags = 0x00;
1938	bcb->CDB[0] = 0xEF;
1939
1940	result = ene_send_scsi_cmd(us, FDIR_WRITE, buf, 0);
1941	if (us->srb != NULL)
1942		scsi_set_resid(us->srb, 0);
1943	info->BIN_FLAG = flag;
1944	kfree(buf);
1945
1946nofw:
1947	release_firmware(sd_fw);
 
 
 
 
1948	return result;
1949}
1950
1951static int ms_card_init(struct us_data *us)
1952{
1953	u32 result;
1954	u16 TmpBlock;
1955	unsigned char *PageBuffer0 = NULL, *PageBuffer1 = NULL;
1956	struct ms_lib_type_extdat extdat;
1957	u16 btBlk1st, btBlk2nd;
1958	u32 btBlk1stErred;
1959	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
1960
1961	printk(KERN_INFO "MS_CardInit start\n");
1962
1963	ms_lib_free_allocatedarea(us); /* Clean buffer and set struct us_data flag to 0 */
1964
1965	/* get two PageBuffer */
1966	PageBuffer0 = kmalloc(MS_BYTES_PER_PAGE, GFP_KERNEL);
1967	PageBuffer1 = kmalloc(MS_BYTES_PER_PAGE, GFP_KERNEL);
1968	if ((PageBuffer0 == NULL) || (PageBuffer1 == NULL)) {
1969		result = MS_NO_MEMORY_ERROR;
1970		goto exit;
1971	}
1972
1973	btBlk1st = btBlk2nd = MS_LB_NOT_USED;
1974	btBlk1stErred = 0;
1975
1976	for (TmpBlock = 0; TmpBlock < MS_MAX_INITIAL_ERROR_BLOCKS+2; TmpBlock++) {
1977
1978		switch (ms_read_readpage(us, TmpBlock, 0, (u32 *)PageBuffer0, &extdat)) {
1979		case MS_STATUS_SUCCESS:
1980			break;
1981		case MS_STATUS_INT_ERROR:
1982			break;
1983		case MS_STATUS_ERROR:
1984		default:
1985			continue;
1986		}
1987
1988		if ((extdat.ovrflg & MS_REG_OVR_BKST) == MS_REG_OVR_BKST_NG)
1989			continue;
1990
1991		if (((extdat.mngflg & MS_REG_MNG_SYSFLG) == MS_REG_MNG_SYSFLG_USER) ||
1992			(be16_to_cpu(((struct ms_bootblock_page0 *)PageBuffer0)->header.wBlockID) != MS_BOOT_BLOCK_ID) ||
1993			(be16_to_cpu(((struct ms_bootblock_page0 *)PageBuffer0)->header.wFormatVersion) != MS_BOOT_BLOCK_FORMAT_VERSION) ||
1994			(((struct ms_bootblock_page0 *)PageBuffer0)->header.bNumberOfDataEntry != MS_BOOT_BLOCK_DATA_ENTRIES))
1995				continue;
1996
1997		if (btBlk1st != MS_LB_NOT_USED) {
1998			btBlk2nd = TmpBlock;
1999			break;
2000		}
2001
2002		btBlk1st = TmpBlock;
2003		memcpy(PageBuffer1, PageBuffer0, MS_BYTES_PER_PAGE);
2004		if (extdat.status1 & (MS_REG_ST1_DTER | MS_REG_ST1_EXER | MS_REG_ST1_FGER))
2005			btBlk1stErred = 1;
2006	}
2007
2008	if (btBlk1st == MS_LB_NOT_USED) {
2009		result = MS_STATUS_ERROR;
2010		goto exit;
2011	}
2012
2013	/* write protect */
2014	if ((extdat.status0 & MS_REG_ST0_WP) == MS_REG_ST0_WP_ON)
2015		ms_lib_ctrl_set(info, MS_LIB_CTRL_WRPROTECT);
2016
2017	result = MS_STATUS_ERROR;
2018	/* 1st Boot Block */
2019	if (btBlk1stErred == 0)
2020		result = ms_lib_process_bootblock(us, btBlk1st, PageBuffer1);
2021		/* 1st */
2022	/* 2nd Boot Block */
2023	if (result && (btBlk2nd != MS_LB_NOT_USED))
2024		result = ms_lib_process_bootblock(us, btBlk2nd, PageBuffer0);
2025
2026	if (result) {
2027		result = MS_STATUS_ERROR;
2028		goto exit;
2029	}
2030
2031	for (TmpBlock = 0; TmpBlock < btBlk1st; TmpBlock++)
2032		info->MS_Lib.Phy2LogMap[TmpBlock] = MS_LB_INITIAL_ERROR;
2033
2034	info->MS_Lib.Phy2LogMap[btBlk1st] = MS_LB_BOOT_BLOCK;
2035
2036	if (btBlk2nd != MS_LB_NOT_USED) {
2037		for (TmpBlock = btBlk1st + 1; TmpBlock < btBlk2nd; TmpBlock++)
2038			info->MS_Lib.Phy2LogMap[TmpBlock] = MS_LB_INITIAL_ERROR;
2039
2040		info->MS_Lib.Phy2LogMap[btBlk2nd] = MS_LB_BOOT_BLOCK;
2041	}
2042
2043	result = ms_lib_scan_logicalblocknumber(us, btBlk1st);
2044	if (result)
2045		goto exit;
2046
2047	for (TmpBlock = MS_PHYSICAL_BLOCKS_PER_SEGMENT;
2048		TmpBlock < info->MS_Lib.NumberOfPhyBlock;
2049		TmpBlock += MS_PHYSICAL_BLOCKS_PER_SEGMENT) {
2050		if (ms_count_freeblock(us, TmpBlock) == 0) {
2051			ms_lib_ctrl_set(info, MS_LIB_CTRL_WRPROTECT);
2052			break;
2053		}
2054	}
2055
2056	/* write */
2057	if (ms_lib_alloc_writebuf(us)) {
2058		result = MS_NO_MEMORY_ERROR;
2059		goto exit;
2060	}
2061
2062	result = MS_STATUS_SUCCESS;
2063
2064exit:
2065	kfree(PageBuffer1);
2066	kfree(PageBuffer0);
2067
2068	printk(KERN_INFO "MS_CardInit end\n");
2069	return result;
2070}
2071
2072static int ene_ms_init(struct us_data *us)
2073{
2074	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
2075	int result;
 
2076	u16 MSP_BlockSize, MSP_UserAreaBlocks;
2077	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
2078	u8 *bbuf = info->bbuf;
2079
2080	printk(KERN_INFO "transport --- ENE_MSInit\n");
2081
2082	/* the same part to test ENE */
2083
2084	result = ene_load_bincode(us, MS_INIT_PATTERN);
2085	if (result != USB_STOR_XFER_GOOD) {
2086		printk(KERN_ERR "Load MS Init Code Fail !!\n");
2087		return USB_STOR_TRANSPORT_ERROR;
2088	}
2089
2090	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
2091	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
2092	bcb->DataTransferLength = 0x200;
2093	bcb->Flags      = US_BULK_FLAG_IN;
2094	bcb->CDB[0]     = 0xF1;
2095	bcb->CDB[1]     = 0x01;
2096
2097	result = ene_send_scsi_cmd(us, FDIR_READ, bbuf, 0);
2098	if (result != USB_STOR_XFER_GOOD) {
2099		printk(KERN_ERR "Execution MS Init Code Fail !!\n");
2100		return USB_STOR_TRANSPORT_ERROR;
2101	}
2102	/* the same part to test ENE */
2103	info->MS_Status = *(struct MS_STATUS *) bbuf;
2104
2105	if (info->MS_Status.Insert && info->MS_Status.Ready) {
2106		printk(KERN_INFO "Insert     = %x\n", info->MS_Status.Insert);
2107		printk(KERN_INFO "Ready      = %x\n", info->MS_Status.Ready);
2108		printk(KERN_INFO "IsMSPro    = %x\n", info->MS_Status.IsMSPro);
2109		printk(KERN_INFO "IsMSPHG    = %x\n", info->MS_Status.IsMSPHG);
2110		printk(KERN_INFO "WtP= %x\n", info->MS_Status.WtP);
2111		if (info->MS_Status.IsMSPro) {
2112			MSP_BlockSize      = (bbuf[6] << 8) | bbuf[7];
2113			MSP_UserAreaBlocks = (bbuf[10] << 8) | bbuf[11];
2114			info->MSP_TotalBlock = MSP_BlockSize * MSP_UserAreaBlocks;
2115		} else {
2116			ms_card_init(us); /* Card is MS (to ms.c)*/
2117		}
2118		usb_stor_dbg(us, "MS Init Code OK !!\n");
2119	} else {
2120		usb_stor_dbg(us, "MS Card Not Ready --- %x\n", bbuf[0]);
2121		return USB_STOR_TRANSPORT_ERROR;
2122	}
2123
2124	return USB_STOR_TRANSPORT_GOOD;
2125}
2126
2127static int ene_sd_init(struct us_data *us)
2128{
2129	int result;
 
2130	struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf;
2131	struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra;
2132	u8 *bbuf = info->bbuf;
2133
2134	usb_stor_dbg(us, "transport --- ENE_SDInit\n");
2135	/* SD Init Part-1 */
2136	result = ene_load_bincode(us, SD_INIT1_PATTERN);
2137	if (result != USB_STOR_XFER_GOOD) {
2138		usb_stor_dbg(us, "Load SD Init Code Part-1 Fail !!\n");
2139		return USB_STOR_TRANSPORT_ERROR;
2140	}
2141
2142	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
2143	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
2144	bcb->Flags = US_BULK_FLAG_IN;
2145	bcb->CDB[0] = 0xF2;
2146
2147	result = ene_send_scsi_cmd(us, FDIR_READ, NULL, 0);
2148	if (result != USB_STOR_XFER_GOOD) {
2149		usb_stor_dbg(us, "Execution SD Init Code Fail !!\n");
2150		return USB_STOR_TRANSPORT_ERROR;
2151	}
2152
2153	/* SD Init Part-2 */
2154	result = ene_load_bincode(us, SD_INIT2_PATTERN);
2155	if (result != USB_STOR_XFER_GOOD) {
2156		usb_stor_dbg(us, "Load SD Init Code Part-2 Fail !!\n");
2157		return USB_STOR_TRANSPORT_ERROR;
2158	}
2159
2160	memset(bcb, 0, sizeof(struct bulk_cb_wrap));
2161	bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN);
2162	bcb->DataTransferLength = 0x200;
2163	bcb->Flags              = US_BULK_FLAG_IN;
2164	bcb->CDB[0]             = 0xF1;
2165
2166	result = ene_send_scsi_cmd(us, FDIR_READ, bbuf, 0);
2167	if (result != USB_STOR_XFER_GOOD) {
2168		usb_stor_dbg(us, "Execution SD Init Code Fail !!\n");
2169		return USB_STOR_TRANSPORT_ERROR;
2170	}
2171
2172	info->SD_Status =  *(struct SD_STATUS *) bbuf;
2173	if (info->SD_Status.Insert && info->SD_Status.Ready) {
2174		struct SD_STATUS *s = &info->SD_Status;
2175
2176		ene_get_card_status(us, bbuf);
2177		usb_stor_dbg(us, "Insert     = %x\n", s->Insert);
2178		usb_stor_dbg(us, "Ready      = %x\n", s->Ready);
2179		usb_stor_dbg(us, "IsMMC      = %x\n", s->IsMMC);
2180		usb_stor_dbg(us, "HiCapacity = %x\n", s->HiCapacity);
2181		usb_stor_dbg(us, "HiSpeed    = %x\n", s->HiSpeed);
2182		usb_stor_dbg(us, "WtP        = %x\n", s->WtP);
2183	} else {
2184		usb_stor_dbg(us, "SD Card Not Ready --- %x\n", bbuf[0]);
2185		return USB_STOR_TRANSPORT_ERROR;
2186	}
2187	return USB_STOR_TRANSPORT_GOOD;
2188}
2189
2190
2191static int ene_init(struct us_data *us)
2192{
2193	int result;
2194	u8  misc_reg03;
2195	struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra);
2196	u8 *bbuf = info->bbuf;
2197
2198	result = ene_get_card_type(us, REG_CARD_STATUS, bbuf);
2199	if (result != USB_STOR_XFER_GOOD)
2200		return USB_STOR_TRANSPORT_ERROR;
2201
2202	misc_reg03 = bbuf[0];
2203	if (misc_reg03 & 0x01) {
2204		if (!info->SD_Status.Ready) {
2205			result = ene_sd_init(us);
2206			if (result != USB_STOR_XFER_GOOD)
2207				return USB_STOR_TRANSPORT_ERROR;
2208		}
2209	}
2210	if (misc_reg03 & 0x02) {
2211		if (!info->MS_Status.Ready) {
2212			result = ene_ms_init(us);
2213			if (result != USB_STOR_XFER_GOOD)
2214				return USB_STOR_TRANSPORT_ERROR;
2215		}
2216	}
2217	return result;
2218}
2219
2220/*----- sd_scsi_irp() ---------*/
2221static int sd_scsi_irp(struct us_data *us, struct scsi_cmnd *srb)
2222{
2223	int    result;
2224	struct ene_ub6250_info *info = (struct ene_ub6250_info *)us->extra;
2225
 
2226	switch (srb->cmnd[0]) {
2227	case TEST_UNIT_READY:
2228		result = sd_scsi_test_unit_ready(us, srb);
2229		break; /* 0x00 */
2230	case REQUEST_SENSE:
2231		result = do_scsi_request_sense(us, srb);
2232		break; /* 0x03 */
2233	case INQUIRY:
2234		result = do_scsi_inquiry(us, srb);
2235		break; /* 0x12 */
2236	case MODE_SENSE:
2237		result = sd_scsi_mode_sense(us, srb);
2238		break; /* 0x1A */
2239	/*
2240	case START_STOP:
2241		result = SD_SCSI_Start_Stop(us, srb);
2242		break; //0x1B
2243	*/
2244	case READ_CAPACITY:
2245		result = sd_scsi_read_capacity(us, srb);
2246		break; /* 0x25 */
2247	case READ_10:
2248		result = sd_scsi_read(us, srb);
2249		break; /* 0x28 */
2250	case WRITE_10:
2251		result = sd_scsi_write(us, srb);
2252		break; /* 0x2A */
2253	default:
2254		info->SrbStatus = SS_ILLEGAL_REQUEST;
2255		result = USB_STOR_TRANSPORT_FAILED;
2256		break;
2257	}
2258	if (result == USB_STOR_TRANSPORT_GOOD)
2259		info->SrbStatus = SS_SUCCESS;
2260	return result;
2261}
2262
2263/*
2264 * ms_scsi_irp()
2265 */
2266static int ms_scsi_irp(struct us_data *us, struct scsi_cmnd *srb)
2267{
2268	int result;
2269	struct ene_ub6250_info *info = (struct ene_ub6250_info *)us->extra;
2270
2271	switch (srb->cmnd[0]) {
2272	case TEST_UNIT_READY:
2273		result = ms_scsi_test_unit_ready(us, srb);
2274		break; /* 0x00 */
2275	case REQUEST_SENSE:
2276		result = do_scsi_request_sense(us, srb);
2277		break; /* 0x03 */
2278	case INQUIRY:
2279		result = do_scsi_inquiry(us, srb);
2280		break; /* 0x12 */
2281	case MODE_SENSE:
2282		result = ms_scsi_mode_sense(us, srb);
2283		break; /* 0x1A */
2284	case READ_CAPACITY:
2285		result = ms_scsi_read_capacity(us, srb);
2286		break; /* 0x25 */
2287	case READ_10:
2288		result = ms_scsi_read(us, srb);
2289		break; /* 0x28 */
2290	case WRITE_10:
2291		result = ms_scsi_write(us, srb);
2292		break;  /* 0x2A */
2293	default:
2294		info->SrbStatus = SS_ILLEGAL_REQUEST;
2295		result = USB_STOR_TRANSPORT_FAILED;
2296		break;
2297	}
2298	if (result == USB_STOR_TRANSPORT_GOOD)
2299		info->SrbStatus = SS_SUCCESS;
2300	return result;
2301}
2302
2303static int ene_transport(struct scsi_cmnd *srb, struct us_data *us)
2304{
2305	int result = USB_STOR_XFER_GOOD;
2306	struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra);
2307
2308	/*US_DEBUG(usb_stor_show_command(us, srb)); */
2309	scsi_set_resid(srb, 0);
2310	if (unlikely(!(info->SD_Status.Ready || info->MS_Status.Ready)))
2311		result = ene_init(us);
2312	if (result == USB_STOR_XFER_GOOD) {
2313		result = USB_STOR_TRANSPORT_ERROR;
2314		if (info->SD_Status.Ready)
2315			result = sd_scsi_irp(us, srb);
2316
2317		if (info->MS_Status.Ready)
2318			result = ms_scsi_irp(us, srb);
2319	}
2320	return result;
2321}
2322
2323static struct scsi_host_template ene_ub6250_host_template;
2324
2325static int ene_ub6250_probe(struct usb_interface *intf,
2326			 const struct usb_device_id *id)
2327{
2328	int result;
2329	u8  misc_reg03;
2330	struct us_data *us;
2331	struct ene_ub6250_info *info;
2332
2333	result = usb_stor_probe1(&us, intf, id,
2334		   (id - ene_ub6250_usb_ids) + ene_ub6250_unusual_dev_list,
2335		   &ene_ub6250_host_template);
2336	if (result)
2337		return result;
2338
2339	/* FIXME: where should the code alloc extra buf ? */
2340	us->extra = kzalloc(sizeof(struct ene_ub6250_info), GFP_KERNEL);
2341	if (!us->extra)
2342		return -ENOMEM;
2343	us->extra_destructor = ene_ub6250_info_destructor;
2344
2345	info = (struct ene_ub6250_info *)(us->extra);
2346	info->bbuf = kmalloc(512, GFP_KERNEL);
2347	if (!info->bbuf) {
2348		kfree(us->extra);
2349		return -ENOMEM;
2350	}
2351
2352	us->transport_name = "ene_ub6250";
2353	us->transport = ene_transport;
2354	us->max_lun = 0;
2355
2356	result = usb_stor_probe2(us);
2357	if (result)
2358		return result;
2359
2360	/* probe card type */
2361	result = ene_get_card_type(us, REG_CARD_STATUS, info->bbuf);
2362	if (result != USB_STOR_XFER_GOOD) {
2363		usb_stor_disconnect(intf);
2364		return USB_STOR_TRANSPORT_ERROR;
2365	}
2366
2367	misc_reg03 = info->bbuf[0];
2368	if (!(misc_reg03 & 0x01)) {
2369		pr_info("ums_eneub6250: This driver only supports SD/MS cards. "
2370			"It does not support SM cards.\n");
2371	}
2372
2373	return result;
2374}
2375
2376
2377#ifdef CONFIG_PM
2378
2379static int ene_ub6250_resume(struct usb_interface *iface)
2380{
2381	u8 tmp = 0;
2382	struct us_data *us = usb_get_intfdata(iface);
2383	struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra);
2384
2385	mutex_lock(&us->dev_mutex);
2386
 
2387	if (us->suspend_resume_hook)
2388		(us->suspend_resume_hook)(us, US_RESUME);
2389
2390	mutex_unlock(&us->dev_mutex);
2391
2392	info->Power_IsResum = true;
2393	/*info->SD_Status.Ready = 0; */
2394	info->SD_Status = *(struct SD_STATUS *)&tmp;
2395	info->MS_Status = *(struct MS_STATUS *)&tmp;
2396	info->SM_Status = *(struct SM_STATUS *)&tmp;
2397
2398	return 0;
2399}
2400
2401static int ene_ub6250_reset_resume(struct usb_interface *iface)
2402{
2403	u8 tmp = 0;
2404	struct us_data *us = usb_get_intfdata(iface);
2405	struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra);
2406
2407	/* Report the reset to the SCSI core */
2408	usb_stor_reset_resume(iface);
2409
2410	/*
2411	 * FIXME: Notify the subdrivers that they need to reinitialize
2412	 * the device
2413	 */
2414	info->Power_IsResum = true;
2415	/*info->SD_Status.Ready = 0; */
2416	info->SD_Status = *(struct SD_STATUS *)&tmp;
2417	info->MS_Status = *(struct MS_STATUS *)&tmp;
2418	info->SM_Status = *(struct SM_STATUS *)&tmp;
2419
2420	return 0;
2421}
2422
2423#else
2424
2425#define ene_ub6250_resume		NULL
2426#define ene_ub6250_reset_resume		NULL
2427
2428#endif
2429
2430static struct usb_driver ene_ub6250_driver = {
2431	.name =		DRV_NAME,
2432	.probe =	ene_ub6250_probe,
2433	.disconnect =	usb_stor_disconnect,
2434	.suspend =	usb_stor_suspend,
2435	.resume =	ene_ub6250_resume,
2436	.reset_resume =	ene_ub6250_reset_resume,
2437	.pre_reset =	usb_stor_pre_reset,
2438	.post_reset =	usb_stor_post_reset,
2439	.id_table =	ene_ub6250_usb_ids,
2440	.soft_unbind =	1,
2441	.no_dynamic_id = 1,
2442};
2443
2444module_usb_stor_driver(ene_ub6250_driver, ene_ub6250_host_template, DRV_NAME);