Linux Audio

Check our new training course

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