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