diff options
author | huajun li <huajun.li.lee@gmail.com> | 2011-03-03 21:56:18 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-03-07 16:40:59 -0500 |
commit | 41e568d14ec0aca1b2bb19563517aad3b06d6805 (patch) | |
tree | e1c9e5a384bb0ae1909ab373b13d127ef0f0b0de | |
parent | 153775d94899503f5f66baaa9751a43c74d4f371 (diff) |
Staging: Merge ENE UB6250 SD card codes from keucr to drivers/usb/storage
The usb portion of this driver can now go into drivers/usb/storage.
This leaves the non-usb portion of the code still in staging.
Signed-off-by: Huajun Li <huajun.li.lee@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/keucr/Kconfig | 5 | ||||
-rw-r--r-- | drivers/staging/keucr/Makefile | 1 | ||||
-rw-r--r-- | drivers/staging/keucr/init.c | 122 | ||||
-rw-r--r-- | drivers/staging/keucr/init.h | 773 | ||||
-rw-r--r-- | drivers/staging/keucr/sdscsi.c | 210 | ||||
-rw-r--r-- | drivers/staging/keucr/transport.c | 3 | ||||
-rw-r--r-- | drivers/staging/keucr/transport.h | 3 | ||||
-rw-r--r-- | drivers/staging/keucr/usb.c | 21 | ||||
-rw-r--r-- | drivers/usb/storage/Kconfig | 14 | ||||
-rw-r--r-- | drivers/usb/storage/Makefile | 2 | ||||
-rw-r--r-- | drivers/usb/storage/ene_ub6250.c | 807 | ||||
-rw-r--r-- | drivers/usb/storage/unusual_ene_ub6250.h | 26 | ||||
-rw-r--r-- | drivers/usb/storage/usual-tables.c | 1 |
13 files changed, 876 insertions, 1112 deletions
diff --git a/drivers/staging/keucr/Kconfig b/drivers/staging/keucr/Kconfig index b595bdbd4740..e397fad693a7 100644 --- a/drivers/staging/keucr/Kconfig +++ b/drivers/staging/keucr/Kconfig | |||
@@ -1,8 +1,9 @@ | |||
1 | config USB_ENESTORAGE | 1 | config USB_ENESTORAGE |
2 | tristate "USB ENE card reader support" | 2 | tristate "USB ENE SM/MS card reader support" |
3 | depends on USB && SCSI && m | 3 | depends on USB && SCSI && m |
4 | ---help--- | 4 | ---help--- |
5 | Say Y here if you wish to control a ENE Card reader. | 5 | Say Y here if you wish to control a ENE SM/MS Card reader. |
6 | To use SD card, please build driver/usb/storage/ums-eneub6250.ko | ||
6 | 7 | ||
7 | This option depends on 'SCSI' support being enabled, but you | 8 | This option depends on 'SCSI' support being enabled, but you |
8 | probably also need 'SCSI device support: SCSI disk support' | 9 | probably also need 'SCSI device support: SCSI disk support' |
diff --git a/drivers/staging/keucr/Makefile b/drivers/staging/keucr/Makefile index 5c19b7b0d3b7..ae928f9cd71a 100644 --- a/drivers/staging/keucr/Makefile +++ b/drivers/staging/keucr/Makefile | |||
@@ -7,7 +7,6 @@ keucr-y := \ | |||
7 | scsiglue.o \ | 7 | scsiglue.o \ |
8 | transport.o \ | 8 | transport.o \ |
9 | init.o \ | 9 | init.o \ |
10 | sdscsi.o \ | ||
11 | msscsi.o \ | 10 | msscsi.o \ |
12 | ms.o \ | 11 | ms.o \ |
13 | smscsi.o \ | 12 | smscsi.o \ |
diff --git a/drivers/staging/keucr/init.c b/drivers/staging/keucr/init.c index 515e448852a0..5c01f28f0734 100644 --- a/drivers/staging/keucr/init.c +++ b/drivers/staging/keucr/init.c | |||
@@ -30,14 +30,6 @@ int ENE_InitMedia(struct us_data *us) | |||
30 | } | 30 | } |
31 | printk(KERN_INFO "MiscReg03 = %x\n", MiscReg03); | 31 | printk(KERN_INFO "MiscReg03 = %x\n", MiscReg03); |
32 | 32 | ||
33 | if (MiscReg03 & 0x01) { | ||
34 | if (!us->SD_Status.Ready) { | ||
35 | result = ENE_SDInit(us); | ||
36 | if (result != USB_STOR_XFER_GOOD) | ||
37 | return USB_STOR_TRANSPORT_ERROR; | ||
38 | } | ||
39 | } | ||
40 | |||
41 | if (MiscReg03 & 0x02) { | 33 | if (MiscReg03 & 0x02) { |
42 | if (!us->SM_Status.Ready && !us->MS_Status.Ready) { | 34 | if (!us->SM_Status.Ready && !us->MS_Status.Ready) { |
43 | result = ENE_SMInit(us); | 35 | result = ENE_SMInit(us); |
@@ -73,69 +65,6 @@ int ENE_Read_BYTE(struct us_data *us, WORD index, void *buf) | |||
73 | } | 65 | } |
74 | 66 | ||
75 | /* | 67 | /* |
76 | * ENE_SDInit(): | ||
77 | */ | ||
78 | int ENE_SDInit(struct us_data *us) | ||
79 | { | ||
80 | struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf; | ||
81 | int result; | ||
82 | BYTE buf[0x200]; | ||
83 | |||
84 | printk(KERN_INFO "transport --- ENE_SDInit\n"); | ||
85 | /* SD Init Part-1 */ | ||
86 | result = ENE_LoadBinCode(us, SD_INIT1_PATTERN); | ||
87 | if (result != USB_STOR_XFER_GOOD) { | ||
88 | printk(KERN_ERR "Load SD Init Code Part-1 Fail !!\n"); | ||
89 | return USB_STOR_TRANSPORT_ERROR; | ||
90 | } | ||
91 | |||
92 | memset(bcb, 0, sizeof(struct bulk_cb_wrap)); | ||
93 | bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN); | ||
94 | bcb->Flags = 0x80; | ||
95 | bcb->CDB[0] = 0xF2; | ||
96 | |||
97 | result = ENE_SendScsiCmd(us, FDIR_READ, NULL, 0); | ||
98 | if (result != USB_STOR_XFER_GOOD) { | ||
99 | printk(KERN_ERR "Exection SD Init Code Fail !!\n"); | ||
100 | return USB_STOR_TRANSPORT_ERROR; | ||
101 | } | ||
102 | |||
103 | /* SD Init Part-2 */ | ||
104 | result = ENE_LoadBinCode(us, SD_INIT2_PATTERN); | ||
105 | if (result != USB_STOR_XFER_GOOD) { | ||
106 | printk(KERN_ERR "Load SD Init Code Part-2 Fail !!\n"); | ||
107 | return USB_STOR_TRANSPORT_ERROR; | ||
108 | } | ||
109 | |||
110 | memset(bcb, 0, sizeof(struct bulk_cb_wrap)); | ||
111 | bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN); | ||
112 | bcb->DataTransferLength = 0x200; | ||
113 | bcb->Flags = 0x80; | ||
114 | bcb->CDB[0] = 0xF1; | ||
115 | |||
116 | result = ENE_SendScsiCmd(us, FDIR_READ, &buf, 0); | ||
117 | if (result != USB_STOR_XFER_GOOD) { | ||
118 | printk(KERN_ERR "Exection SD Init Code Fail !!\n"); | ||
119 | return USB_STOR_TRANSPORT_ERROR; | ||
120 | } | ||
121 | |||
122 | us->SD_Status = *(PSD_STATUS)&buf[0]; | ||
123 | if (us->SD_Status.Insert && us->SD_Status.Ready) { | ||
124 | ENE_ReadSDReg(us, (PBYTE)&buf); | ||
125 | printk(KERN_INFO "Insert = %x\n", us->SD_Status.Insert); | ||
126 | printk(KERN_INFO "Ready = %x\n", us->SD_Status.Ready); | ||
127 | printk(KERN_INFO "IsMMC = %x\n", us->SD_Status.IsMMC); | ||
128 | printk(KERN_INFO "HiCapacity = %x\n", us->SD_Status.HiCapacity); | ||
129 | printk(KERN_INFO "HiSpeed = %x\n", us->SD_Status.HiSpeed); | ||
130 | printk(KERN_INFO "WtP = %x\n", us->SD_Status.WtP); | ||
131 | } else { | ||
132 | printk(KERN_ERR "SD Card Not Ready --- %x\n", buf[0]); | ||
133 | return USB_STOR_TRANSPORT_ERROR; | ||
134 | } | ||
135 | return USB_STOR_TRANSPORT_GOOD; | ||
136 | } | ||
137 | |||
138 | /* | ||
139 | * ENE_MSInit(): | 68 | * ENE_MSInit(): |
140 | */ | 69 | */ |
141 | int ENE_MSInit(struct us_data *us) | 70 | int ENE_MSInit(struct us_data *us) |
@@ -242,38 +171,6 @@ int ENE_SMInit(struct us_data *us) | |||
242 | } | 171 | } |
243 | 172 | ||
244 | /* | 173 | /* |
245 | * ENE_ReadSDReg() | ||
246 | */ | ||
247 | int ENE_ReadSDReg(struct us_data *us, u8 *RdBuf) | ||
248 | { | ||
249 | WORD tmpreg; | ||
250 | DWORD reg4b; | ||
251 | |||
252 | /* printk(KERN_INFO "transport --- ENE_ReadSDReg\n"); */ | ||
253 | reg4b = *(PDWORD)&RdBuf[0x18]; | ||
254 | us->SD_READ_BL_LEN = (BYTE)((reg4b >> 8) & 0x0f); | ||
255 | |||
256 | tmpreg = (WORD) reg4b; | ||
257 | reg4b = *(PDWORD)(&RdBuf[0x14]); | ||
258 | if (us->SD_Status.HiCapacity && !us->SD_Status.IsMMC) | ||
259 | us->HC_C_SIZE = (reg4b >> 8) & 0x3fffff; | ||
260 | |||
261 | us->SD_C_SIZE = ((tmpreg & 0x03) << 10) | (WORD)(reg4b >> 22); | ||
262 | us->SD_C_SIZE_MULT = (BYTE)(reg4b >> 7) & 0x07; | ||
263 | if (us->SD_Status.HiCapacity && us->SD_Status.IsMMC) | ||
264 | us->HC_C_SIZE = *(PDWORD)(&RdBuf[0x100]); | ||
265 | |||
266 | if (us->SD_READ_BL_LEN > SD_BLOCK_LEN) { | ||
267 | us->SD_Block_Mult = | ||
268 | 1 << (us->SD_READ_BL_LEN - SD_BLOCK_LEN); | ||
269 | us->SD_READ_BL_LEN = SD_BLOCK_LEN; | ||
270 | } else { | ||
271 | us->SD_Block_Mult = 1; | ||
272 | } | ||
273 | return USB_STOR_TRANSPORT_GOOD; | ||
274 | } | ||
275 | |||
276 | /* | ||
277 | * ENE_LoadBinCode() | 174 | * ENE_LoadBinCode() |
278 | */ | 175 | */ |
279 | int ENE_LoadBinCode(struct us_data *us, BYTE flag) | 176 | int ENE_LoadBinCode(struct us_data *us, BYTE flag) |
@@ -291,19 +188,6 @@ int ENE_LoadBinCode(struct us_data *us, BYTE flag) | |||
291 | if (buf == NULL) | 188 | if (buf == NULL) |
292 | return USB_STOR_TRANSPORT_ERROR; | 189 | return USB_STOR_TRANSPORT_ERROR; |
293 | switch (flag) { | 190 | switch (flag) { |
294 | /* For SD */ | ||
295 | case SD_INIT1_PATTERN: | ||
296 | printk(KERN_INFO "SD_INIT1_PATTERN\n"); | ||
297 | memcpy(buf, SD_Init1, 0x800); | ||
298 | break; | ||
299 | case SD_INIT2_PATTERN: | ||
300 | printk(KERN_INFO "SD_INIT2_PATTERN\n"); | ||
301 | memcpy(buf, SD_Init2, 0x800); | ||
302 | break; | ||
303 | case SD_RW_PATTERN: | ||
304 | printk(KERN_INFO "SD_RW_PATTERN\n"); | ||
305 | memcpy(buf, SD_Rdwr, 0x800); | ||
306 | break; | ||
307 | /* For MS */ | 191 | /* For MS */ |
308 | case MS_INIT_PATTERN: | 192 | case MS_INIT_PATTERN: |
309 | printk(KERN_INFO "MS_INIT_PATTERN\n"); | 193 | printk(KERN_INFO "MS_INIT_PATTERN\n"); |
@@ -412,8 +296,9 @@ int ENE_SendScsiCmd(struct us_data *us, BYTE fDir, void *buf, int use_sg) | |||
412 | */ | 296 | */ |
413 | if (residue && !(us->fflags & US_FL_IGNORE_RESIDUE)) { | 297 | if (residue && !(us->fflags & US_FL_IGNORE_RESIDUE)) { |
414 | residue = min(residue, transfer_length); | 298 | residue = min(residue, transfer_length); |
415 | scsi_set_resid(us->srb, max(scsi_get_resid(us->srb), | 299 | if (us->srb) |
416 | (int) residue)); | 300 | scsi_set_resid(us->srb, max(scsi_get_resid(us->srb), |
301 | (int) residue)); | ||
417 | } | 302 | } |
418 | 303 | ||
419 | if (bcs->Status != US_BULK_STAT_OK) | 304 | if (bcs->Status != US_BULK_STAT_OK) |
@@ -558,4 +443,3 @@ void usb_stor_print_cmd(struct scsi_cmnd *srb) | |||
558 | blen = 0; | 443 | blen = 0; |
559 | } | 444 | } |
560 | 445 | ||
561 | |||
diff --git a/drivers/staging/keucr/init.h b/drivers/staging/keucr/init.h index 5223132a6c24..953a31e9d5f0 100644 --- a/drivers/staging/keucr/init.h +++ b/drivers/staging/keucr/init.h | |||
@@ -3,779 +3,6 @@ | |||
3 | extern DWORD MediaChange; | 3 | extern DWORD MediaChange; |
4 | extern int Check_D_MediaFmt(struct us_data *); | 4 | extern int Check_D_MediaFmt(struct us_data *); |
5 | 5 | ||
6 | BYTE SD_Init1[] = { | ||
7 | 0x90, 0xFF, 0x09, 0xE0, 0x30, 0xE1, 0x06, 0x90, | ||
8 | 0xFF, 0x23, 0x74, 0x80, 0xF0, 0x90, 0xFF, 0x09, | ||
9 | 0xE0, 0x30, 0xE5, 0xFC, 0x90, 0xFF, 0x83, 0xE0, | ||
10 | 0xA2, 0xE0, 0x92, 0x14, 0x20, 0x14, 0x0A, 0xC2, | ||
11 | 0x0F, 0xD2, 0x10, 0xC2, 0x17, 0xC3, 0x02, 0xE3, | ||
12 | 0x13, 0x7F, 0x03, 0x12, 0x2F, 0xCB, 0x7E, 0x00, | ||
13 | 0x7F, 0x10, 0x12, 0xE3, 0xFA, 0x90, 0xFE, 0x07, | ||
14 | 0xE0, 0x54, 0xBA, 0xF0, 0x75, 0x16, 0x00, 0x75, | ||
15 | 0x17, 0x00, 0x90, 0xFE, 0x05, 0x74, 0x80, 0xF0, | ||
16 | 0x90, 0xFE, 0x07, 0x74, 0x80, 0xF0, 0x7F, 0x32, | ||
17 | 0x7E, 0x00, 0x12, 0xE3, 0xFA, 0x90, 0xFE, 0x05, | ||
18 | 0xE0, 0x44, 0x01, 0xF0, 0xE0, 0x44, 0x08, 0xF0, | ||
19 | 0x7F, 0x32, 0x7E, 0x00, 0x12, 0xE3, 0xFA, 0x90, | ||
20 | 0xFE, 0x05, 0xE0, 0x54, 0xF7, 0xF0, 0x7F, 0x32, | ||
21 | 0x7E, 0x00, 0x12, 0xE3, 0xFA, 0x90, 0xFF, 0x81, | ||
22 | 0xE0, 0xC2, 0xE3, 0xF0, 0xE0, 0x54, 0xCF, 0x44, | ||
23 | 0x20, 0xD2, 0xE3, 0xF0, 0x90, 0xFF, 0x84, 0xE0, | ||
24 | 0x54, 0x1F, 0x44, 0x40, 0xF0, 0x90, 0xFE, 0x05, | ||
25 | 0xE0, 0xD2, 0xE0, 0xF0, 0xE0, 0x30, 0xE0, 0xF8, | ||
26 | 0x90, 0xFE, 0x04, 0xE0, 0x44, 0x06, 0xF0, 0x90, | ||
27 | 0xFE, 0x04, 0x30, 0x14, 0x06, 0xE0, 0x70, 0xFA, | ||
28 | 0xD3, 0x80, 0x01, 0xC3, 0x90, 0xFE, 0x05, 0xE0, | ||
29 | 0x44, 0x30, 0xF0, 0x90, 0xFE, 0x06, 0x74, 0x70, | ||
30 | 0xF0, 0x74, 0xFF, 0x90, 0xFE, 0x08, 0xF0, 0x74, | ||
31 | 0xFF, 0x90, 0xFE, 0x09, 0xF0, 0x90, 0xFE, 0x04, | ||
32 | 0xE0, 0x44, 0x06, 0xF0, 0xE4, 0x90, 0xFE, 0x0C, | ||
33 | 0xF0, 0x90, 0xFE, 0x0D, 0xF0, 0x90, 0xFE, 0x0E, | ||
34 | 0xF0, 0xC2, 0x12, 0xE4, 0x90, 0xEB, 0xF9, 0xF0, | ||
35 | 0x90, 0xEB, 0xFA, 0xF0, 0x90, 0xFF, 0x81, 0xE0, | ||
36 | 0x54, 0x8F, 0x44, 0x7F, 0xF0, 0x7F, 0x32, 0x7E, | ||
37 | 0x00, 0x12, 0xE3, 0xFA, 0x90, 0xFE, 0x05, 0xE0, | ||
38 | 0x54, 0xBF, 0xF0, 0x75, 0xF0, 0xFF, 0xD2, 0x17, | ||
39 | 0xC2, 0x13, 0xE5, 0xF0, 0x14, 0xF5, 0xF0, 0x70, | ||
40 | 0x03, 0x02, 0xE2, 0xFC, 0x90, 0xFF, 0x83, 0xE0, | ||
41 | 0xA2, 0xE0, 0x92, 0x14, 0x20, 0x14, 0x03, 0x02, | ||
42 | 0xE2, 0xFC, 0xE4, 0xFE, 0x74, 0xFF, 0xFF, 0x78, | ||
43 | 0x00, 0x79, 0x08, 0x12, 0xE3, 0x22, 0x20, 0x13, | ||
44 | 0x24, 0x30, 0x17, 0x21, 0x90, 0xFF, 0x83, 0xE0, | ||
45 | 0xA2, 0xE0, 0x92, 0x14, 0x20, 0x14, 0x03, 0x02, | ||
46 | 0xE2, 0xFC, 0x78, 0x08, 0x79, 0x28, 0x7D, 0xAA, | ||
47 | 0x7C, 0x01, 0x7B, 0x00, 0x7A, 0x00, 0x12, 0xE3, | ||
48 | 0x22, 0x50, 0x02, 0x21, 0xED, 0x90, 0xFF, 0x83, | ||
49 | 0xE0, 0xA2, 0xE0, 0x92, 0x14, 0x20, 0x14, 0x03, | ||
50 | 0x02, 0xE2, 0xFC, 0x30, 0x13, 0x02, 0x80, 0x17, | ||
51 | 0x78, 0x37, 0x79, 0x50, 0x7A, 0x00, 0x7B, 0x00, | ||
52 | 0x7C, 0x00, 0x7D, 0x00, 0x12, 0xE3, 0x22, 0x50, | ||
53 | 0x02, 0x80, 0x7A, 0x78, 0x69, 0x80, 0x02, 0x78, | ||
54 | 0x01, 0x79, 0x2A, 0x7A, 0x80, 0x30, 0x17, 0x02, | ||
55 | 0x7A, 0x40, 0x7B, 0x70, 0x7C, 0x00, 0x7D, 0x00, | ||
56 | 0x12, 0xE3, 0x22, 0x50, 0x16, 0x90, 0xFE, 0x04, | ||
57 | 0xE0, 0x44, 0x06, 0xF0, 0x90, 0xFE, 0x04, 0x30, | ||
58 | 0x14, 0x06, 0xE0, 0x70, 0xFA, 0xD3, 0x80, 0x01, | ||
59 | 0xC3, 0x80, 0x4A, 0x90, 0xFE, 0x20, 0xE0, 0x54, | ||
60 | 0x00, 0xB4, 0x00, 0x23, 0x90, 0xFE, 0x21, 0xE0, | ||
61 | 0x54, 0x00, 0xB4, 0x00, 0x1A, 0x90, 0xFE, 0x22, | ||
62 | 0xE0, 0x54, 0x70, 0xB4, 0x70, 0x11, 0x90, 0xFE, | ||
63 | 0x23, 0xE0, 0x30, 0xE7, 0x0A, 0x30, 0x17, 0x05, | ||
64 | 0x20, 0xE6, 0x02, 0xC2, 0x17, 0x41, 0x02, 0xC3, | ||
65 | 0xEF, 0x94, 0x01, 0xFF, 0xEE, 0x94, 0x00, 0xFE, | ||
66 | 0xC0, 0x06, 0xC0, 0x07, 0x7F, 0x64, 0x7E, 0x00, | ||
67 | 0x12, 0xE3, 0xFA, 0xD0, 0x07, 0xD0, 0x06, 0xEE, | ||
68 | 0x4F, 0x60, 0x02, 0x21, 0x4D, 0x7F, 0x64, 0x7E, | ||
69 | 0x00, 0x12, 0xE3, 0xFA, 0xB2, 0x17, 0x30, 0x17, | ||
70 | 0x07, 0xB2, 0x13, 0x20, 0x13, 0x02, 0x01, 0xFE, | ||
71 | 0x21, 0x0C, 0x78, 0x02, 0x79, 0x2D, 0x12, 0xE3, | ||
72 | 0x22, 0x50, 0x03, 0x02, 0xE2, 0xFC, 0x7B, 0x0F, | ||
73 | 0x7C, 0xFE, 0x7D, 0x20, 0x7E, 0xEA, 0x7F, 0x1A, | ||
74 | 0x12, 0xE3, 0xD3, 0x78, 0x03, 0x20, 0x13, 0x02, | ||
75 | 0x78, 0x03, 0x79, 0x28, 0x90, 0xEB, 0xFA, 0xE0, | ||
76 | 0xFA, 0x90, 0xEB, 0xF9, 0xE0, 0xFB, 0x7C, 0x00, | ||
77 | 0x7D, 0x00, 0x12, 0xE3, 0x22, 0x50, 0x03, 0x02, | ||
78 | 0xE2, 0xFC, 0x90, 0xFE, 0x22, 0xE0, 0x90, 0xEB, | ||
79 | 0xF9, 0xF0, 0x90, 0xFE, 0x23, 0xE0, 0x90, 0xEB, | ||
80 | 0xFA, 0xF0, 0x90, 0xFF, 0x81, 0xE0, 0xC2, 0xE3, | ||
81 | 0xF0, 0x30, 0x13, 0x11, 0x90, 0xFF, 0x85, 0xE0, | ||
82 | 0x54, 0xCF, 0x44, 0x20, 0xF0, 0x90, 0xFF, 0x81, | ||
83 | 0x74, 0x94, 0xF0, 0x80, 0x0F, 0x90, 0xFF, 0x85, | ||
84 | 0xE0, 0x54, 0xCF, 0x44, 0x30, 0xF0, 0x90, 0xFF, | ||
85 | 0x81, 0x74, 0x94, 0xF0, 0x90, 0xFF, 0x81, 0xE0, | ||
86 | 0xD2, 0xE3, 0xF0, 0x7F, 0x32, 0x7E, 0x00, 0x12, | ||
87 | 0xE3, 0xFA, 0x78, 0x09, 0x79, 0x4D, 0x90, 0xEB, | ||
88 | 0xFA, 0xE0, 0xFA, 0x90, 0xEB, 0xF9, 0xE0, 0xFB, | ||
89 | 0x7C, 0x00, 0x7D, 0x00, 0x12, 0xE3, 0x22, 0x50, | ||
90 | 0x03, 0x02, 0xE2, 0xFC, 0x12, 0xE3, 0x91, 0x78, | ||
91 | 0x87, 0x79, 0x50, 0x90, 0xEB, 0xFA, 0xE0, 0xFA, | ||
92 | 0x90, 0xEB, 0xF9, 0xE0, 0xFB, 0x7C, 0x00, 0x7D, | ||
93 | 0x00, 0x12, 0xE3, 0x22, 0x50, 0x03, 0x02, 0xE2, | ||
94 | 0xFC, 0x30, 0x13, 0x09, 0x90, 0xFE, 0x05, 0xE0, | ||
95 | 0x54, 0xBF, 0xF0, 0x80, 0x35, 0x78, 0x37, 0x79, | ||
96 | 0x50, 0x90, 0xEB, 0xFA, 0xE0, 0xFA, 0x90, 0xEB, | ||
97 | 0xF9, 0xE0, 0xFB, 0x7C, 0x00, 0x7D, 0x00, 0x12, | ||
98 | 0xE3, 0x22, 0x50, 0x03, 0x02, 0xE2, 0xFC, 0x78, | ||
99 | 0x46, 0x79, 0x50, 0x7A, 0x00, 0x7B, 0x00, 0x7C, | ||
100 | 0x00, 0x7D, 0x02, 0x12, 0xE3, 0x22, 0x50, 0x03, | ||
101 | 0x02, 0xE2, 0xFC, 0x90, 0xFE, 0x05, 0xE0, 0x44, | ||
102 | 0x40, 0xF0, 0xD3, 0x22, 0x30, 0x14, 0x14, 0x90, | ||
103 | 0xFE, 0x04, 0xE0, 0x44, 0x06, 0xF0, 0x90, 0xFE, | ||
104 | 0x04, 0x30, 0x14, 0x06, 0xE0, 0x70, 0xFA, 0xD3, | ||
105 | 0x80, 0x01, 0xC3, 0x90, 0xFE, 0xD8, 0x74, 0x01, | ||
106 | 0xF0, 0x90, 0xFE, 0xCC, 0xE0, 0x44, 0x80, 0xF0, | ||
107 | 0xC3, 0x22, 0xE8, 0x90, 0xFE, 0x15, 0xF0, 0xE9, | ||
108 | 0x90, 0xFE, 0x14, 0xF0, 0xED, 0x90, 0xFE, 0x18, | ||
109 | 0xF0, 0xEC, 0x90, 0xFE, 0x19, 0xF0, 0xEB, 0x90, | ||
110 | 0xFE, 0x1A, 0xF0, 0xEA, 0x90, 0xFE, 0x1B, 0xF0, | ||
111 | 0x74, 0xFF, 0x90, 0xFE, 0x10, 0xF0, 0x90, 0xFE, | ||
112 | 0x11, 0xF0, 0x90, 0xFE, 0x12, 0xF0, 0xE8, 0x54, | ||
113 | 0x80, 0xFE, 0x90, 0xFE, 0x04, 0x74, 0x01, 0xF0, | ||
114 | 0x30, 0x14, 0x08, 0x90, 0xFE, 0x10, 0xE0, 0x54, | ||
115 | 0x05, 0x60, 0x02, 0xD3, 0x22, 0x90, 0xFE, 0x11, | ||
116 | 0xE0, 0x30, 0xE0, 0xEC, 0xBE, 0x80, 0x03, 0x30, | ||
117 | 0xE1, 0xE6, 0x90, 0xFE, 0x10, 0xE0, 0x54, 0x05, | ||
118 | 0x70, 0xE9, 0xC3, 0x22, 0x30, 0x13, 0x02, 0xC3, | ||
119 | 0x22, 0x90, 0xFE, 0x22, 0xE0, 0x70, 0x06, 0x90, | ||
120 | 0xFE, 0x23, 0xE0, 0x60, 0x02, 0xD3, 0x22, 0xC3, | ||
121 | 0x22, 0x7B, 0x0F, 0x7C, 0xFE, 0x7D, 0x20, 0x7E, | ||
122 | 0xEA, 0x7F, 0x29, 0x12, 0xE3, 0xD3, 0x30, 0x13, | ||
123 | 0x1B, 0x90, 0xFE, 0x20, 0xE0, 0x54, 0x30, 0x64, | ||
124 | 0x30, 0x70, 0x02, 0xD2, 0x11, 0x30, 0x13, 0x0C, | ||
125 | 0x90, 0xFE, 0x2E, 0xE0, 0x54, 0x3C, 0x64, 0x10, | ||
126 | 0x70, 0x02, 0xD2, 0x12, 0x30, 0x17, 0x03, 0x02, | ||
127 | 0xE3, 0xC4, 0x80, 0x03, 0x20, 0x13, 0x00, 0xC2, | ||
128 | 0x11, 0x90, 0xFE, 0x13, 0xE0, 0x30, 0xE2, 0x02, | ||
129 | 0xD2, 0x11, 0x22, 0xC0, 0x04, 0xC0, 0x05, 0x8E, | ||
130 | 0x83, 0x8F, 0x82, 0xEB, 0x60, 0x17, 0xC0, 0x82, | ||
131 | 0xC0, 0x83, 0x8C, 0x83, 0x8D, 0x82, 0xE0, 0xA3, | ||
132 | 0xAC, 0x83, 0xAD, 0x82, 0xD0, 0x83, 0xD0, 0x82, | ||
133 | 0xF0, 0xA3, 0x1B, 0x80, 0xE6, 0xD0, 0x05, 0xD0, | ||
134 | 0x04, 0x22, 0x75, 0x8A, 0x00, 0x75, 0x8C, 0xCE, | ||
135 | 0xC2, 0x8D, 0x90, 0xEA, 0x65, 0xE4, 0xF0, 0xA3, | ||
136 | 0xF0, 0xD2, 0x8C, 0x90, 0xEA, 0x65, 0xE0, 0xFC, | ||
137 | 0xA3, 0xE0, 0xFD, 0xEC, 0xC3, 0x9E, 0x40, 0xF3, | ||
138 | 0x70, 0x05, 0xED, 0xC3, 0x9F, 0x40, 0xEC, 0xC2, | ||
139 | 0x8C, 0x22, 0xF5, 0xD3, 0xE0, 0x64, 0x01, 0x70, | ||
140 | 0x02, 0xD2, 0x3F, 0x75, 0x17, 0x00, 0x75, 0x18, | ||
141 | 0x00, 0x85, 0x14, 0x19, 0x75, 0x1B, 0x01, 0x12, | ||
142 | 0x2F, 0x8C, 0x40, 0x03, 0x02, 0xE4, 0x45, 0x90, | ||
143 | 0xEA, 0x49, 0xE5, 0x14, 0xF0, 0x05, 0x14, 0x02, | ||
144 | 0xE2, 0xDC, 0xD2, 0x22, 0x90, 0xEA, 0x49, 0xE0, | ||
145 | 0x64, 0xFF, 0x70, 0x02, 0x80, 0x02, 0x80, 0x12, | ||
146 | 0x90, 0xFE, 0x44, 0x74, 0x02, 0xF0, 0x30, 0x25, | ||
147 | 0x04, 0xE0, 0x20, 0xE1, 0xF9, 0x12, 0x2F, 0x9E, | ||
148 | 0xC3, 0x22, 0x30, 0x3F, 0x36, 0x74, 0x88, 0x90, | ||
149 | 0xEA, 0x44, 0xF0, 0x75, 0x17, 0x00, 0x79, 0x00, | ||
150 | 0x7A, 0x00, 0x7B, 0x10, 0x7C, 0x02, 0x7D, 0x02, | ||
151 | 0x12, 0x2F, 0xA7, 0x7F, 0x80, 0x12, 0x2F, 0xC5, | ||
152 | 0x90, 0xFE, 0x45, 0xE0, 0x54, 0xFE, 0xF0, 0x90, | ||
153 | 0xFE, 0x45, 0xE0, 0x44, 0x04, 0xF0, 0x90, 0xFE, | ||
154 | 0x44, 0x74, 0x02, 0xF0, 0x30, 0x25, 0x04, 0xE0, | ||
155 | 0x20, 0xE1, 0xF9, 0xD3, 0x22, 0x75, 0x8A, 0x00, | ||
156 | 0x75, 0x8C, 0xCE, 0xC2, 0x8D, 0x90, 0xEA, 0x65, | ||
157 | 0xE4, 0xF0, 0xA3, 0xF0, 0xD2, 0x8C, 0x90, 0xEA, | ||
158 | 0x65, 0xE0, 0xFC, 0xA3, 0xE0, 0xFD, 0xEC, 0xC3, | ||
159 | 0x9E, 0x40, 0xF3, 0x70, 0x05, 0xED, 0xC3, 0x9F, | ||
160 | 0x40, 0xEC, 0xC2, 0x8C, 0x22, 0x00, 0x00, 0x00, | ||
161 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
162 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
163 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
164 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
165 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
166 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
167 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
168 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
169 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
170 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
171 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
172 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
173 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
174 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
175 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
176 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
177 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
178 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
179 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
180 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
181 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
182 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
183 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
184 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
185 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
186 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
187 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
188 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
189 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
190 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
191 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
192 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
193 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
194 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
195 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
196 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
197 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
198 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
199 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
200 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
201 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
202 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
203 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
204 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
205 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
206 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
207 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
208 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
209 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
210 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
211 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
212 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
213 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
214 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
215 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
216 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
217 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
218 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
219 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
220 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
221 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
222 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
223 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
224 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
225 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
226 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
227 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
228 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
229 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
230 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
231 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
232 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
233 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
234 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
235 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
236 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
237 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
238 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
239 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
240 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
241 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
242 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
243 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
244 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
245 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
246 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
247 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
248 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
249 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
250 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
251 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
252 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
253 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
254 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
255 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
256 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
257 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
258 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
259 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
260 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
261 | 0x53, 0x44, 0x2D, 0x49, 0x6E, 0x69, 0x74, 0x31, | ||
262 | 0x20, 0x20, 0x20, 0x31, 0x30, 0x30, 0x30, 0x31 }; | ||
263 | |||
264 | BYTE SD_Init2[] = { | ||
265 | 0x90, 0xFF, 0x09, 0xE0, 0x30, 0xE1, 0x06, 0x90, | ||
266 | 0xFF, 0x23, 0x74, 0x80, 0xF0, 0x90, 0xFF, 0x09, | ||
267 | 0xE0, 0x30, 0xE5, 0xFC, 0x90, 0xFF, 0x83, 0xE0, | ||
268 | 0xA2, 0xE0, 0x92, 0x14, 0x20, 0x14, 0x0A, 0xC2, | ||
269 | 0x0F, 0xD2, 0x10, 0xC2, 0x17, 0xC3, 0x02, 0xE0, | ||
270 | 0xA0, 0x20, 0x13, 0x05, 0x12, 0xE3, 0x8D, 0x80, | ||
271 | 0x03, 0x12, 0xE1, 0x1F, 0xD2, 0x0F, 0xC2, 0x10, | ||
272 | 0xD3, 0x90, 0xF3, 0xFF, 0x75, 0xF0, 0xFF, 0x74, | ||
273 | 0x00, 0xA3, 0xF0, 0xD5, 0xF0, 0xFB, 0x7B, 0x0F, | ||
274 | 0x7C, 0xEA, 0x7D, 0x29, 0x7E, 0xF4, 0x7F, 0x10, | ||
275 | 0x12, 0xE5, 0x5D, 0x90, 0xF4, 0x00, 0xE4, 0xA2, | ||
276 | 0x14, 0x92, 0xE0, 0xA2, 0x0F, 0x92, 0xE1, 0xA2, | ||
277 | 0x10, 0x92, 0xE2, 0xA2, 0x13, 0x92, 0xE3, 0xA2, | ||
278 | 0x17, 0x92, 0xE4, 0xA2, 0x12, 0x92, 0xE5, 0xA2, | ||
279 | 0x11, 0x92, 0xE6, 0xF0, 0xF0, 0x74, 0xFF, 0xA3, | ||
280 | 0xF0, 0xA3, 0xF0, 0xA3, 0xF0, 0x90, 0xFF, 0x2A, | ||
281 | 0x74, 0x02, 0xF0, 0xA3, 0x74, 0x00, 0xF0, 0xD3, | ||
282 | 0x22, 0x30, 0x14, 0x14, 0x90, 0xFE, 0x04, 0xE0, | ||
283 | 0x44, 0x06, 0xF0, 0x90, 0xFE, 0x04, 0x30, 0x14, | ||
284 | 0x06, 0xE0, 0x70, 0xFA, 0xD3, 0x80, 0x01, 0xC3, | ||
285 | 0x90, 0xFE, 0xD8, 0x74, 0x01, 0xF0, 0x90, 0xFE, | ||
286 | 0xCC, 0xE0, 0x44, 0x80, 0xF0, 0x02, 0xE0, 0x39, | ||
287 | 0xE8, 0x90, 0xFE, 0x15, 0xF0, 0xE9, 0x90, 0xFE, | ||
288 | 0x14, 0xF0, 0xED, 0x90, 0xFE, 0x18, 0xF0, 0xEC, | ||
289 | 0x90, 0xFE, 0x19, 0xF0, 0xEB, 0x90, 0xFE, 0x1A, | ||
290 | 0xF0, 0xEA, 0x90, 0xFE, 0x1B, 0xF0, 0x74, 0xFF, | ||
291 | 0x90, 0xFE, 0x10, 0xF0, 0x90, 0xFE, 0x11, 0xF0, | ||
292 | 0x90, 0xFE, 0x12, 0xF0, 0xE8, 0x54, 0x80, 0xFE, | ||
293 | 0x90, 0xFE, 0x04, 0x74, 0x01, 0xF0, 0x30, 0x14, | ||
294 | 0x08, 0x90, 0xFE, 0x10, 0xE0, 0x54, 0x05, 0x60, | ||
295 | 0x02, 0xD3, 0x22, 0x90, 0xFE, 0x11, 0xE0, 0x30, | ||
296 | 0xE0, 0xEC, 0xBE, 0x80, 0x03, 0x30, 0xE1, 0xE6, | ||
297 | 0x90, 0xFE, 0x10, 0xE0, 0x54, 0x05, 0x70, 0xE9, | ||
298 | 0xC3, 0x22, 0x30, 0x13, 0x02, 0xC3, 0x22, 0x90, | ||
299 | 0xFE, 0x22, 0xE0, 0x70, 0x06, 0x90, 0xFE, 0x23, | ||
300 | 0xE0, 0x60, 0x02, 0xD3, 0x22, 0xC3, 0x22, 0x20, | ||
301 | 0x12, 0x03, 0x02, 0xE3, 0x17, 0x90, 0xFE, 0x1C, | ||
302 | 0x74, 0xFF, 0xF0, 0x90, 0xFE, 0x1D, 0x74, 0x01, | ||
303 | 0xF0, 0x74, 0x00, 0x90, 0xFE, 0x1E, 0xF0, 0x90, | ||
304 | 0xFE, 0x1F, 0xF0, 0x90, 0xFE, 0xCC, 0xE0, 0x54, | ||
305 | 0x7F, 0xF0, 0x90, 0xFE, 0x06, 0xE0, 0x54, 0xF0, | ||
306 | 0xF0, 0x90, 0xFE, 0xC0, 0x74, 0xF4, 0xF0, 0xA3, | ||
307 | 0x74, 0x00, 0xF0, 0x90, 0xFE, 0xC6, 0x74, 0x01, | ||
308 | 0xF0, 0xA3, 0x74, 0xFF, 0xF0, 0x90, 0xFE, 0xC5, | ||
309 | 0xE4, 0xF0, 0x90, 0xFE, 0xC4, 0x74, 0x04, 0xF0, | ||
310 | 0x78, 0x10, 0x79, 0x50, 0x7A, 0x00, 0x7B, 0x00, | ||
311 | 0x7C, 0x02, 0x7D, 0x00, 0x12, 0xE0, 0xB0, 0x50, | ||
312 | 0x03, 0x02, 0xE3, 0x17, 0x78, 0x08, 0x79, 0xE8, | ||
313 | 0x12, 0xE0, 0xB0, 0x50, 0x03, 0x02, 0xE3, 0x17, | ||
314 | 0x90, 0xFE, 0xC8, 0xE0, 0xF0, 0x90, 0xFE, 0xC4, | ||
315 | 0xE0, 0x44, 0x01, 0xF0, 0x30, 0x14, 0x10, 0x90, | ||
316 | 0xFE, 0xC8, 0xE0, 0x64, 0x01, 0x60, 0x11, 0x90, | ||
317 | 0xFE, 0x10, 0xE0, 0x54, 0x0A, 0x60, 0xED, 0x90, | ||
318 | 0xFE, 0xD8, 0x74, 0x01, 0xF0, 0xC3, 0x80, 0x01, | ||
319 | 0xD3, 0x40, 0x03, 0x02, 0xE3, 0x17, 0x20, 0x17, | ||
320 | 0x02, 0x80, 0x39, 0xC3, 0x90, 0xF4, 0xD4, 0xE0, | ||
321 | 0x90, 0xF5, 0x00, 0xF0, 0x90, 0xEB, 0xF8, 0x94, | ||
322 | 0x01, 0xF0, 0x90, 0xF4, 0xD5, 0xE0, 0x90, 0xF5, | ||
323 | 0x01, 0xF0, 0x90, 0xEB, 0xF7, 0x94, 0x00, 0xF0, | ||
324 | 0x90, 0xF4, 0xD6, 0xE0, 0x90, 0xF5, 0x02, 0xF0, | ||
325 | 0x90, 0xEB, 0xF6, 0x94, 0x00, 0xF0, 0x90, 0xF4, | ||
326 | 0xD7, 0xE0, 0x90, 0xF5, 0x03, 0xF0, 0x90, 0xEB, | ||
327 | 0xF5, 0x94, 0x00, 0xF0, 0x90, 0xF4, 0x00, 0x43, | ||
328 | 0x82, 0xC4, 0xE0, 0x54, 0x03, 0xF5, 0x09, 0x90, | ||
329 | 0xFE, 0xCC, 0xE0, 0x44, 0x80, 0xF0, 0x90, 0xFE, | ||
330 | 0x06, 0xE0, 0x54, 0x3F, 0x44, 0x00, 0xF0, 0x90, | ||
331 | 0xFE, 0x04, 0xE0, 0x44, 0x06, 0xF0, 0x90, 0xFE, | ||
332 | 0x04, 0x30, 0x14, 0x06, 0xE0, 0x70, 0xFA, 0xD3, | ||
333 | 0x80, 0x01, 0xC3, 0x74, 0x03, 0x90, 0xFE, 0x1C, | ||
334 | 0xF0, 0x74, 0x00, 0x90, 0xFE, 0x1D, 0xF0, 0x90, | ||
335 | 0xFE, 0x1E, 0xF0, 0x90, 0xFE, 0x1F, 0xF0, 0x78, | ||
336 | 0x10, 0x79, 0x50, 0x7A, 0x00, 0x7B, 0x00, 0x7C, | ||
337 | 0x00, 0x7D, 0x04, 0x12, 0xE0, 0xB0, 0x50, 0x03, | ||
338 | 0x02, 0xE3, 0x17, 0x90, 0xFE, 0x07, 0xE0, 0xC2, | ||
339 | 0xE6, 0xF0, 0x90, 0xFE, 0x07, 0xE0, 0xD2, 0xE0, | ||
340 | 0xF0, 0x90, 0xFE, 0x05, 0xE0, 0xD2, 0xE7, 0xF0, | ||
341 | 0x7B, 0x55, 0x7C, 0xAA, 0x7D, 0xAA, 0x7E, 0x55, | ||
342 | 0x12, 0xE3, 0x35, 0x50, 0x05, 0x75, 0x08, 0x02, | ||
343 | 0x41, 0xB0, 0x90, 0xFE, 0x07, 0xE0, 0x54, 0xBE, | ||
344 | 0xF0, 0x90, 0xFE, 0x05, 0xE0, 0x44, 0x40, 0xF0, | ||
345 | 0x90, 0xFE, 0x04, 0xE0, 0x44, 0x06, 0xF0, 0x90, | ||
346 | 0xFE, 0x04, 0x30, 0x14, 0x06, 0xE0, 0x70, 0xFA, | ||
347 | 0xD3, 0x80, 0x01, 0xC3, 0x7B, 0x5A, 0x7C, 0x5A, | ||
348 | 0x7D, 0xA5, 0x7E, 0x00, 0x12, 0xE3, 0x35, 0x50, | ||
349 | 0x05, 0x75, 0x08, 0x01, 0x41, 0xB0, 0x90, 0xFE, | ||
350 | 0x05, 0xE0, 0x54, 0xBF, 0xF0, 0x02, 0xE3, 0x17, | ||
351 | 0x90, 0xFE, 0x04, 0xE0, 0x44, 0x06, 0xF0, 0x90, | ||
352 | 0xFE, 0x04, 0x30, 0x14, 0x06, 0xE0, 0x70, 0xFA, | ||
353 | 0xD3, 0x80, 0x01, 0xC3, 0xE5, 0x08, 0x78, 0x86, | ||
354 | 0x79, 0x50, 0x7A, 0x03, 0x7B, 0xB7, 0xFC, 0x7D, | ||
355 | 0x00, 0x12, 0xE0, 0xB0, 0x50, 0x03, 0x02, 0xE3, | ||
356 | 0x17, 0x78, 0x86, 0x79, 0x50, 0x7A, 0x03, 0x7B, | ||
357 | 0xB9, 0x7C, 0x01, 0x7D, 0x00, 0x12, 0xE0, 0xB0, | ||
358 | 0x40, 0xBC, 0xE5, 0x09, 0x20, 0xE1, 0x04, 0x74, | ||
359 | 0x94, 0x80, 0x02, 0x74, 0x84, 0x90, 0xFF, 0x81, | ||
360 | 0xF0, 0x90, 0xFE, 0x07, 0xE0, 0xD2, 0xE6, 0xF0, | ||
361 | 0x90, 0xFF, 0x85, 0xE0, 0x54, 0xCF, 0x44, 0x30, | ||
362 | 0xF0, 0x90, 0xFF, 0x81, 0xE0, 0xD2, 0xE3, 0xF0, | ||
363 | 0x7F, 0x32, 0x7E, 0x00, 0x12, 0xE5, 0x84, 0x90, | ||
364 | 0xFE, 0x06, 0xE0, 0x54, 0x3F, 0x44, 0x40, 0xF0, | ||
365 | 0x90, 0xFE, 0x04, 0xE0, 0x44, 0x06, 0xF0, 0x90, | ||
366 | 0xFE, 0x04, 0x30, 0x14, 0x06, 0xE0, 0x70, 0xFA, | ||
367 | 0xD3, 0x80, 0x01, 0xC3, 0x22, 0xC0, 0x05, 0xC0, | ||
368 | 0x06, 0x78, 0x13, 0x79, 0x68, 0x12, 0xE0, 0xB0, | ||
369 | 0x50, 0x03, 0x02, 0xE3, 0x8B, 0xEB, 0x90, 0xFE, | ||
370 | 0x00, 0xF0, 0xEC, 0xF0, 0x90, 0xFE, 0x12, 0xE0, | ||
371 | 0x30, 0xE1, 0xF9, 0x90, 0xFE, 0x04, 0xE0, 0x44, | ||
372 | 0x06, 0xF0, 0x90, 0xFE, 0x04, 0x30, 0x14, 0x06, | ||
373 | 0xE0, 0x70, 0xFA, 0xD3, 0x80, 0x01, 0xC3, 0x78, | ||
374 | 0x0E, 0x79, 0xE8, 0x12, 0xE0, 0xB0, 0x50, 0x03, | ||
375 | 0x02, 0xE3, 0x8B, 0x90, 0xFE, 0x12, 0xE0, 0x20, | ||
376 | 0xE1, 0xF9, 0xD0, 0x06, 0xD0, 0x05, 0x90, 0xFE, | ||
377 | 0x00, 0xE0, 0x6D, 0x70, 0x06, 0xE0, 0x6E, 0x70, | ||
378 | 0x02, 0xD3, 0x22, 0xC3, 0x22, 0x90, 0xFE, 0x06, | ||
379 | 0xE0, 0x54, 0x3F, 0x44, 0x00, 0xF0, 0x90, 0xFE, | ||
380 | 0x04, 0xE0, 0x44, 0x06, 0xF0, 0x90, 0xFE, 0x04, | ||
381 | 0x30, 0x14, 0x06, 0xE0, 0x70, 0xFA, 0xD3, 0x80, | ||
382 | 0x01, 0xC3, 0x74, 0x07, 0x90, 0xFE, 0x1C, 0xF0, | ||
383 | 0x74, 0x00, 0x90, 0xFE, 0x1D, 0xF0, 0x90, 0xFE, | ||
384 | 0x1E, 0xF0, 0x90, 0xFE, 0x1F, 0xF0, 0x78, 0x10, | ||
385 | 0x79, 0x50, 0x7A, 0x00, 0x7B, 0x00, 0x30, 0x17, | ||
386 | 0x06, 0x7C, 0x02, 0x7D, 0x00, 0x80, 0x04, 0x7C, | ||
387 | 0x00, 0x7D, 0x08, 0x12, 0xE0, 0xB0, 0x50, 0x03, | ||
388 | 0x02, 0xE4, 0x39, 0x78, 0x37, 0x79, 0x50, 0x90, | ||
389 | 0xEB, 0xFA, 0xE0, 0xFA, 0x90, 0xEB, 0xF9, 0xE0, | ||
390 | 0xFB, 0x7C, 0x00, 0x7D, 0x00, 0x12, 0xE0, 0xB0, | ||
391 | 0x50, 0x03, 0x02, 0xE4, 0x39, 0x78, 0x73, 0x79, | ||
392 | 0xE8, 0x7A, 0x00, 0x7B, 0x00, 0x7C, 0x00, 0x7D, | ||
393 | 0x00, 0x12, 0xE0, 0xB0, 0x50, 0x03, 0x02, 0xE4, | ||
394 | 0x39, 0x90, 0xFE, 0x12, 0xE0, 0x20, 0xE1, 0xF9, | ||
395 | 0x78, 0x08, 0x90, 0xEA, 0x3F, 0xC0, 0x83, 0xC0, | ||
396 | 0x82, 0x90, 0xFE, 0x00, 0xE0, 0xD0, 0x82, 0xD0, | ||
397 | 0x83, 0xF0, 0xC3, 0xE5, 0x82, 0x24, 0xFF, 0xF5, | ||
398 | 0x82, 0xE5, 0x83, 0x34, 0xFF, 0xF5, 0x83, 0xD8, | ||
399 | 0xE4, 0x90, 0xEA, 0x3F, 0xE0, 0x54, 0x0F, 0x70, | ||
400 | 0x25, 0x90, 0xFE, 0x07, 0xE0, 0xC2, 0xE6, 0xF0, | ||
401 | 0x90, 0xFE, 0x06, 0xE0, 0x54, 0x3F, 0x44, 0x40, | ||
402 | 0xF0, 0x90, 0xFE, 0x04, 0xE0, 0x44, 0x06, 0xF0, | ||
403 | 0x90, 0xFE, 0x04, 0x30, 0x14, 0x06, 0xE0, 0x70, | ||
404 | 0xFA, 0xD3, 0x80, 0x01, 0xC3, 0x22, 0x90, 0xFE, | ||
405 | 0x06, 0xE0, 0x54, 0x3F, 0x44, 0x40, 0xF0, 0x90, | ||
406 | 0xFE, 0x04, 0xE0, 0x44, 0x06, 0xF0, 0x90, 0xFE, | ||
407 | 0x04, 0x30, 0x14, 0x06, 0xE0, 0x70, 0xFA, 0xD3, | ||
408 | 0x80, 0x01, 0xC3, 0x7E, 0x00, 0x12, 0xE4, 0xBF, | ||
409 | 0x40, 0x03, 0x02, 0xE4, 0xBE, 0x7E, 0x80, 0x12, | ||
410 | 0xE4, 0xBF, 0x40, 0x03, 0x02, 0xE4, 0xBE, 0x90, | ||
411 | 0xFF, 0x81, 0xE0, 0xC2, 0xE3, 0xF0, 0x90, 0xFF, | ||
412 | 0x81, 0x74, 0x84, 0xF0, 0x90, 0xFE, 0x07, 0xE0, | ||
413 | 0xD2, 0xE6, 0xF0, 0x90, 0xFF, 0x81, 0xE0, 0xD2, | ||
414 | 0xE3, 0xF0, 0x90, 0xFE, 0x04, 0xE0, 0x44, 0x06, | ||
415 | 0xF0, 0x90, 0xFE, 0x04, 0x30, 0x14, 0x06, 0xE0, | ||
416 | 0x70, 0xFA, 0xD3, 0x80, 0x01, 0xC3, 0x22, 0x90, | ||
417 | 0xFE, 0x1C, 0x74, 0x3F, 0xF0, 0x90, 0xFE, 0x1D, | ||
418 | 0x74, 0x00, 0xF0, 0x74, 0x00, 0x90, 0xFE, 0x1E, | ||
419 | 0xF0, 0x90, 0xFE, 0x1F, 0xF0, 0x90, 0xFE, 0xCC, | ||
420 | 0xE0, 0x54, 0x7F, 0xF0, 0x90, 0xFE, 0x06, 0xE0, | ||
421 | 0x54, 0xF0, 0xF0, 0x90, 0xFE, 0xC0, 0x74, 0xF4, | ||
422 | 0xF0, 0xA3, 0x74, 0x00, 0xF0, 0x90, 0xFE, 0xC6, | ||
423 | 0x74, 0x00, 0xF0, 0xA3, 0x74, 0x3F, 0xF0, 0x90, | ||
424 | 0xFE, 0xC5, 0xE4, 0xF0, 0x90, 0xFE, 0xC4, 0x74, | ||
425 | 0x04, 0xF0, 0x78, 0x06, 0x79, 0xE8, 0xAA, 0x06, | ||
426 | 0x7B, 0xFF, 0x7C, 0xFF, 0x7D, 0x01, 0x12, 0xE0, | ||
427 | 0xB0, 0x50, 0x03, 0x02, 0xE5, 0x5B, 0x90, 0xFE, | ||
428 | 0xC8, 0x74, 0x01, 0xF0, 0x90, 0xFE, 0xC4, 0xE0, | ||
429 | 0x44, 0x01, 0xF0, 0x30, 0x14, 0x10, 0x90, 0xFE, | ||
430 | 0xC8, 0xE0, 0x64, 0x01, 0x60, 0x11, 0x90, 0xFE, | ||
431 | 0x10, 0xE0, 0x54, 0x0A, 0x60, 0xED, 0x90, 0xFE, | ||
432 | 0xD8, 0x74, 0x01, 0xF0, 0xC3, 0x80, 0x01, 0xD3, | ||
433 | 0x40, 0x03, 0x02, 0xE5, 0x5B, 0x90, 0xFE, 0xCC, | ||
434 | 0xE0, 0x44, 0x80, 0xF0, 0x90, 0xF4, 0x0D, 0xE0, | ||
435 | 0x90, 0xF4, 0x10, 0xE0, 0x64, 0x0F, 0x60, 0x03, | ||
436 | 0xD3, 0x80, 0x01, 0xC3, 0x22, 0xC0, 0x04, 0xC0, | ||
437 | 0x05, 0x8E, 0x83, 0x8F, 0x82, 0xEB, 0x60, 0x17, | ||
438 | 0xC0, 0x82, 0xC0, 0x83, 0x8C, 0x83, 0x8D, 0x82, | ||
439 | 0xE0, 0xA3, 0xAC, 0x83, 0xAD, 0x82, 0xD0, 0x83, | ||
440 | 0xD0, 0x82, 0xF0, 0xA3, 0x1B, 0x80, 0xE6, 0xD0, | ||
441 | 0x05, 0xD0, 0x04, 0x22, 0x75, 0x8A, 0x00, 0x75, | ||
442 | 0x8C, 0xCE, 0xC2, 0x8D, 0x90, 0xEA, 0x65, 0xE4, | ||
443 | 0xF0, 0xA3, 0xF0, 0xD2, 0x8C, 0x90, 0xEA, 0x65, | ||
444 | 0xE0, 0xFC, 0xA3, 0xE0, 0xFD, 0xEC, 0xC3, 0x9E, | ||
445 | 0x40, 0xF3, 0x70, 0x05, 0xED, 0xC3, 0x9F, 0x40, | ||
446 | 0xEC, 0xC2, 0x8C, 0x22, 0x00, 0x00, 0x00, 0x00, | ||
447 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
448 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
449 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
450 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
451 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
452 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
453 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
454 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
455 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
456 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
457 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
458 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
459 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
460 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
461 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
462 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
463 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
464 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
465 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
466 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
467 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
468 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
469 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
470 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
471 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
472 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
473 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
474 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
475 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
476 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
477 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
478 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
479 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
480 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
481 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
482 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
483 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
484 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
485 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
486 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
487 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
488 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
489 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
490 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
491 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
492 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
493 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
494 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
495 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
496 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
497 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
498 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
499 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
500 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
501 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
502 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
503 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
504 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
505 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
506 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
507 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
508 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
509 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
510 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
511 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
512 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
513 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
514 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
515 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
516 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
517 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
518 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
519 | 0x53, 0x44, 0x2D, 0x49, 0x6E, 0x69, 0x74, 0x32, | ||
520 | 0x20, 0x20, 0x20, 0x31, 0x30, 0x30, 0x30, 0x31 }; | ||
521 | |||
522 | BYTE SD_Rdwr[] = { | ||
523 | 0x90, 0xF0, 0x11, 0xE0, 0x90, 0xEB, 0x2A, 0xF0, | ||
524 | 0x90, 0xF0, 0x12, 0xE0, 0x90, 0xEB, 0x2B, 0xF0, | ||
525 | 0x90, 0xF0, 0x13, 0xE0, 0x90, 0xEB, 0x2C, 0xF0, | ||
526 | 0x90, 0xF0, 0x14, 0xE0, 0x90, 0xEB, 0x2D, 0xF0, | ||
527 | 0x90, 0xFF, 0x83, 0xE0, 0xA2, 0xE0, 0x92, 0x14, | ||
528 | 0x30, 0x14, 0x3E, 0x30, 0x0F, 0x3B, 0x90, 0xEB, | ||
529 | 0x2A, 0xE0, 0xF5, 0x10, 0xA3, 0xE0, 0xF5, 0x11, | ||
530 | 0xA3, 0xE0, 0xF5, 0x12, 0xA3, 0xE0, 0xF5, 0x13, | ||
531 | 0xC3, 0xE5, 0x3D, 0x13, 0xF5, 0x14, 0xE5, 0x3E, | ||
532 | 0x13, 0xF5, 0x15, 0x85, 0x14, 0x16, 0x85, 0x15, | ||
533 | 0x17, 0x90, 0xF0, 0x0C, 0xE0, 0x54, 0x80, 0x70, | ||
534 | 0x12, 0x90, 0xFF, 0x09, 0xE0, 0x30, 0xE1, 0x06, | ||
535 | 0x90, 0xFF, 0x23, 0x74, 0x80, 0xF0, 0x02, 0xE2, | ||
536 | 0x31, 0xC3, 0x22, 0x90, 0xFF, 0x09, 0xE0, 0x30, | ||
537 | 0xE1, 0x06, 0x90, 0xFF, 0x23, 0x74, 0x80, 0xF0, | ||
538 | 0xE5, 0x15, 0x24, 0xFF, 0x90, 0xFE, 0x1E, 0xF0, | ||
539 | 0xE5, 0x14, 0x34, 0xFF, 0x90, 0xFE, 0x1F, 0xF0, | ||
540 | 0x90, 0xFE, 0x1C, 0x74, 0xFF, 0xF0, 0x90, 0xFE, | ||
541 | 0x1D, 0x74, 0x01, 0xF0, 0x90, 0xFE, 0xCC, 0xE0, | ||
542 | 0x54, 0x7F, 0xF0, 0x90, 0xFE, 0x06, 0xE0, 0x54, | ||
543 | 0xF0, 0xF0, 0x90, 0xFE, 0xC0, 0x74, 0xF4, 0xF0, | ||
544 | 0xA3, 0x74, 0x00, 0xF0, 0x90, 0xFE, 0xC6, 0x74, | ||
545 | 0x01, 0xF0, 0xA3, 0x74, 0xFF, 0xF0, 0x90, 0xFE, | ||
546 | 0xC5, 0xE4, 0xF0, 0x90, 0xFE, 0xC4, 0x74, 0x04, | ||
547 | 0xF0, 0x78, 0x10, 0x79, 0x50, 0x7A, 0x00, 0x7B, | ||
548 | 0x00, 0x7C, 0x02, 0x7D, 0x00, 0x12, 0xE3, 0xEA, | ||
549 | 0x50, 0x03, 0x02, 0xE1, 0xFA, 0x12, 0xE4, 0x44, | ||
550 | 0x50, 0x03, 0x02, 0xE1, 0xFA, 0xAD, 0x13, 0xAC, | ||
551 | 0x12, 0xAB, 0x11, 0xAA, 0x10, 0x80, 0x00, 0xE5, | ||
552 | 0x15, 0x64, 0x01, 0x45, 0x14, 0x70, 0x0E, 0x78, | ||
553 | 0x11, 0x79, 0xE8, 0x12, 0xE3, 0xEA, 0x50, 0x03, | ||
554 | 0x02, 0xE1, 0xFA, 0x80, 0x0C, 0x78, 0x12, 0x79, | ||
555 | 0xE8, 0x12, 0xE3, 0xEA, 0x50, 0x03, 0x02, 0xE1, | ||
556 | 0xFA, 0x12, 0xE4, 0x44, 0x50, 0x03, 0x02, 0xE1, | ||
557 | 0xFA, 0x30, 0x14, 0x07, 0x90, 0xFE, 0x12, 0xE0, | ||
558 | 0x30, 0xE4, 0xF6, 0x20, 0x14, 0x03, 0x02, 0xE1, | ||
559 | 0xFA, 0x90, 0xFF, 0x09, 0xE0, 0x30, 0xE5, 0xFC, | ||
560 | 0x90, 0xFE, 0xC8, 0x74, 0x01, 0xF0, 0x90, 0xFE, | ||
561 | 0xC4, 0xE0, 0x44, 0x01, 0xF0, 0xC3, 0xE5, 0x17, | ||
562 | 0x94, 0x01, 0xF5, 0x17, 0xE5, 0x16, 0x94, 0x00, | ||
563 | 0xF5, 0x16, 0x45, 0x17, 0x60, 0x42, 0x30, 0x14, | ||
564 | 0x10, 0x90, 0xFE, 0xC8, 0xE0, 0x64, 0x01, 0x60, | ||
565 | 0x11, 0x90, 0xFE, 0x10, 0xE0, 0x54, 0x0A, 0x60, | ||
566 | 0xED, 0x90, 0xFE, 0xD8, 0x74, 0x01, 0xF0, 0xC3, | ||
567 | 0x80, 0x01, 0xD3, 0x40, 0x03, 0x02, 0xE1, 0xFA, | ||
568 | 0x90, 0xFF, 0x2A, 0x74, 0x02, 0xF0, 0xA3, 0x74, | ||
569 | 0x00, 0xF0, 0x90, 0xFF, 0x09, 0xE0, 0x30, 0xE5, | ||
570 | 0xFC, 0x90, 0xFE, 0xC8, 0x74, 0x01, 0xF0, 0x90, | ||
571 | 0xFE, 0xC4, 0xE0, 0x44, 0x01, 0xF0, 0x80, 0xAD, | ||
572 | 0x30, 0x14, 0x10, 0x90, 0xFE, 0xC8, 0xE0, 0x64, | ||
573 | 0x01, 0x60, 0x11, 0x90, 0xFE, 0x10, 0xE0, 0x54, | ||
574 | 0x0A, 0x60, 0xED, 0x90, 0xFE, 0xD8, 0x74, 0x01, | ||
575 | 0xF0, 0xC3, 0x80, 0x01, 0xD3, 0x40, 0x03, 0x02, | ||
576 | 0xE1, 0xFA, 0x90, 0xFF, 0x2A, 0x74, 0x02, 0xF0, | ||
577 | 0xA3, 0x74, 0x00, 0xF0, 0xE5, 0x15, 0x64, 0x01, | ||
578 | 0x45, 0x14, 0x60, 0x29, 0x90, 0xFF, 0x09, 0xE0, | ||
579 | 0x30, 0xE5, 0xFC, 0x78, 0x8C, 0x79, 0x50, 0x12, | ||
580 | 0xE3, 0xEA, 0x50, 0x03, 0x02, 0xE1, 0xFA, 0x12, | ||
581 | 0xE4, 0x44, 0x50, 0x11, 0x90, 0xFE, 0x22, 0xE0, | ||
582 | 0x70, 0x20, 0x90, 0xFE, 0x23, 0xE0, 0x64, 0x80, | ||
583 | 0x60, 0x03, 0x02, 0xE1, 0xFA, 0x90, 0xFE, 0xCC, | ||
584 | 0xE0, 0x44, 0x80, 0xF0, 0x75, 0x3C, 0x00, 0x75, | ||
585 | 0x3D, 0x00, 0x75, 0x3E, 0x00, 0x75, 0x3F, 0x00, | ||
586 | 0xD3, 0x22, 0x30, 0x14, 0x14, 0x90, 0xFE, 0x04, | ||
587 | 0xE0, 0x44, 0x06, 0xF0, 0x90, 0xFE, 0x04, 0x30, | ||
588 | 0x14, 0x06, 0xE0, 0x70, 0xFA, 0xD3, 0x80, 0x01, | ||
589 | 0xC3, 0x90, 0xFE, 0xD8, 0x74, 0x01, 0xF0, 0x90, | ||
590 | 0xFE, 0xCC, 0xE0, 0x44, 0x80, 0xF0, 0x75, 0x3F, | ||
591 | 0x00, 0xC3, 0xE5, 0x17, 0x33, 0xF5, 0x3E, 0xE5, | ||
592 | 0x16, 0x33, 0xF5, 0x3D, 0x75, 0x3C, 0x00, 0xC3, | ||
593 | 0x22, 0xE5, 0x3E, 0x54, 0x01, 0x45, 0x3F, 0x60, | ||
594 | 0x03, 0x02, 0xE0, 0x69, 0xE5, 0x15, 0x24, 0xFF, | ||
595 | 0x90, 0xFE, 0x1E, 0xF0, 0xE5, 0x14, 0x34, 0xFF, | ||
596 | 0x90, 0xFE, 0x1F, 0xF0, 0x90, 0xFE, 0x1C, 0x74, | ||
597 | 0xFF, 0xF0, 0x90, 0xFE, 0x1D, 0x74, 0x01, 0xF0, | ||
598 | 0x90, 0xFE, 0x06, 0xE0, 0x54, 0xF0, 0x44, 0x0F, | ||
599 | 0xF0, 0x90, 0xFE, 0xC0, 0x74, 0xF0, 0xF0, 0xA3, | ||
600 | 0x74, 0x00, 0xF0, 0xE5, 0x4D, 0x24, 0xFF, 0xFF, | ||
601 | 0xE5, 0x4C, 0x34, 0xFF, 0x90, 0xFE, 0xC6, 0xF0, | ||
602 | 0xA3, 0xEF, 0xF0, 0xE4, 0x90, 0xFE, 0xC5, 0xF0, | ||
603 | 0x74, 0x06, 0x90, 0xFE, 0xC4, 0xF0, 0x90, 0xFE, | ||
604 | 0xCC, 0xE0, 0x54, 0x7F, 0xF0, 0x78, 0x10, 0x79, | ||
605 | 0x50, 0x7A, 0x00, 0x7B, 0x00, 0x7C, 0x02, 0x7D, | ||
606 | 0x00, 0x12, 0xE3, 0xEA, 0x50, 0x03, 0x02, 0xE3, | ||
607 | 0x9E, 0x12, 0xE4, 0x44, 0x50, 0x03, 0x02, 0xE3, | ||
608 | 0x9E, 0xAD, 0x13, 0xAC, 0x12, 0xAB, 0x11, 0xAA, | ||
609 | 0x10, 0x80, 0x10, 0x74, 0x00, 0xFD, 0xC3, 0xE5, | ||
610 | 0x13, 0x33, 0xFC, 0xE5, 0x12, 0x33, 0xFB, 0xE5, | ||
611 | 0x11, 0x33, 0xFA, 0xE5, 0x15, 0x64, 0x01, 0x45, | ||
612 | 0x14, 0x70, 0x0E, 0x78, 0x18, 0x79, 0x68, 0x12, | ||
613 | 0xE3, 0xEA, 0x50, 0x03, 0x02, 0xE3, 0x9E, 0x80, | ||
614 | 0x0C, 0x78, 0x19, 0x79, 0x68, 0x12, 0xE3, 0xEA, | ||
615 | 0x50, 0x03, 0x02, 0xE3, 0x9E, 0x12, 0xE4, 0x44, | ||
616 | 0x50, 0x03, 0x02, 0xE3, 0x9E, 0x75, 0x1F, 0x01, | ||
617 | 0x20, 0x2D, 0x03, 0x75, 0x1F, 0x08, 0xE5, 0x16, | ||
618 | 0x45, 0x17, 0x70, 0x03, 0x02, 0xE3, 0x6B, 0x85, | ||
619 | 0x1F, 0x1E, 0x30, 0x14, 0x3C, 0x90, 0xFF, 0x09, | ||
620 | 0x30, 0x14, 0x04, 0xE0, 0x30, 0xE1, 0xF9, 0x90, | ||
621 | 0xFE, 0xC8, 0x74, 0x01, 0xF0, 0x90, 0xFE, 0xC4, | ||
622 | 0xE0, 0x44, 0x01, 0xF0, 0x30, 0x14, 0x10, 0x90, | ||
623 | 0xFE, 0xC8, 0xE0, 0x64, 0x01, 0x60, 0x11, 0x90, | ||
624 | 0xFE, 0x10, 0xE0, 0x54, 0x0A, 0x60, 0xED, 0x90, | ||
625 | 0xFE, 0xD8, 0x74, 0x01, 0xF0, 0xC3, 0x80, 0x01, | ||
626 | 0xD3, 0x40, 0x03, 0x02, 0xE3, 0x9E, 0x90, 0xFE, | ||
627 | 0x12, 0x30, 0x14, 0x2A, 0xE0, 0x30, 0xE1, 0xF9, | ||
628 | 0x90, 0xFF, 0x09, 0xE0, 0x30, 0xE1, 0x06, 0x90, | ||
629 | 0xFF, 0x23, 0x74, 0x80, 0xF0, 0x15, 0x1E, 0xE5, | ||
630 | 0x1E, 0x70, 0xA7, 0xC3, 0xE5, 0x17, 0x94, 0x01, | ||
631 | 0xF5, 0x17, 0xE5, 0x16, 0x94, 0x00, 0xF5, 0x16, | ||
632 | 0x02, 0xE2, 0xF6, 0x90, 0xFE, 0x12, 0x30, 0x14, | ||
633 | 0x2D, 0xE0, 0x20, 0xE4, 0xF9, 0xE5, 0x15, 0x64, | ||
634 | 0x01, 0x45, 0x14, 0x60, 0x58, 0x78, 0x8C, 0x79, | ||
635 | 0x50, 0x12, 0xE3, 0xEA, 0x50, 0x03, 0x02, 0xE3, | ||
636 | 0x9E, 0x12, 0xE4, 0x44, 0x50, 0x03, 0x02, 0xE3, | ||
637 | 0x9E, 0x30, 0x14, 0x41, 0x90, 0xFE, 0x12, 0xE0, | ||
638 | 0x20, 0xE4, 0xF6, 0x02, 0xE3, 0xD5, 0x30, 0x14, | ||
639 | 0x14, 0x90, 0xFE, 0x04, 0xE0, 0x44, 0x06, 0xF0, | ||
640 | 0x90, 0xFE, 0x04, 0x30, 0x14, 0x06, 0xE0, 0x70, | ||
641 | 0xFA, 0xD3, 0x80, 0x01, 0xC3, 0x90, 0xFE, 0xD8, | ||
642 | 0x74, 0x01, 0xF0, 0x90, 0xFE, 0xCC, 0xE0, 0x44, | ||
643 | 0x80, 0xF0, 0x75, 0x3F, 0x00, 0xC3, 0xE5, 0x17, | ||
644 | 0x33, 0xF5, 0x3E, 0xE5, 0x16, 0x33, 0xF5, 0x3D, | ||
645 | 0x75, 0x3C, 0x00, 0xC3, 0x22, 0x90, 0xFE, 0xCC, | ||
646 | 0xE0, 0x44, 0x80, 0xF0, 0x75, 0x3C, 0x00, 0x75, | ||
647 | 0x3D, 0x00, 0x75, 0x3E, 0x00, 0x75, 0x3F, 0x00, | ||
648 | 0xD3, 0x22, 0xE8, 0x90, 0xFE, 0x15, 0xF0, 0xE9, | ||
649 | 0x90, 0xFE, 0x14, 0xF0, 0xED, 0x90, 0xFE, 0x18, | ||
650 | 0xF0, 0xEC, 0x90, 0xFE, 0x19, 0xF0, 0xEB, 0x90, | ||
651 | 0xFE, 0x1A, 0xF0, 0xEA, 0x90, 0xFE, 0x1B, 0xF0, | ||
652 | 0x74, 0xFF, 0x90, 0xFE, 0x10, 0xF0, 0x90, 0xFE, | ||
653 | 0x11, 0xF0, 0x90, 0xFE, 0x12, 0xF0, 0xE8, 0x54, | ||
654 | 0x80, 0xFE, 0x90, 0xFE, 0x04, 0x74, 0x01, 0xF0, | ||
655 | 0x30, 0x14, 0x08, 0x90, 0xFE, 0x10, 0xE0, 0x54, | ||
656 | 0x05, 0x60, 0x02, 0xD3, 0x22, 0x90, 0xFE, 0x11, | ||
657 | 0xE0, 0x30, 0xE0, 0xEC, 0xBE, 0x80, 0x03, 0x30, | ||
658 | 0xE1, 0xE6, 0x90, 0xFE, 0x10, 0xE0, 0x54, 0x05, | ||
659 | 0x70, 0xE9, 0xC3, 0x22, 0x30, 0x13, 0x02, 0xC3, | ||
660 | 0x22, 0x90, 0xFE, 0x22, 0xE0, 0x70, 0x06, 0x90, | ||
661 | 0xFE, 0x23, 0xE0, 0x60, 0x02, 0xD3, 0x22, 0xC3, | ||
662 | 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
663 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
664 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
665 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
666 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
667 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
668 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
669 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
670 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
671 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
672 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
673 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
674 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
675 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
676 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
677 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
678 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
679 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
680 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
681 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
682 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
683 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
684 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
685 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
686 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
687 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
688 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
689 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
690 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
691 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
692 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
693 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
694 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
695 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
696 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
697 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
698 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
699 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
700 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
701 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
702 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
703 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
704 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
705 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
706 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
707 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
708 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
709 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
710 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
711 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
712 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
713 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
714 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
715 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
716 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
717 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
718 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
719 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
720 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
721 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
722 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
723 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
724 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
725 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
726 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
727 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
728 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
729 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
730 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
731 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
732 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
733 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
734 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
735 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
736 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
737 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
738 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
739 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
740 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
741 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
742 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
743 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
744 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
745 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
746 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
747 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
748 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
749 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
750 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
751 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
752 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
753 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
754 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
755 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
756 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
757 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
758 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
759 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
760 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
761 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
762 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
763 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
764 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
765 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
766 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
767 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
768 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
769 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
770 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
771 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
772 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
773 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
774 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
775 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
776 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
777 | 0x53, 0x44, 0x2D, 0x52, 0x57, 0x20, 0x20, 0x20, | ||
778 | 0x20, 0x20, 0x20, 0x31, 0x30, 0x30, 0x30, 0x31 }; | ||
779 | 6 | ||
780 | BYTE MS_Init[] = { | 7 | BYTE MS_Init[] = { |
781 | 0x90, 0xF0, 0x15, 0xE0, 0xF5, 0x1C, 0x11, 0x2C, | 8 | 0x90, 0xF0, 0x15, 0xE0, 0xF5, 0x1C, 0x11, 0x2C, |
diff --git a/drivers/staging/keucr/sdscsi.c b/drivers/staging/keucr/sdscsi.c deleted file mode 100644 index d646507a3611..000000000000 --- a/drivers/staging/keucr/sdscsi.c +++ /dev/null | |||
@@ -1,210 +0,0 @@ | |||
1 | #include <linux/sched.h> | ||
2 | #include <linux/errno.h> | ||
3 | #include <linux/slab.h> | ||
4 | |||
5 | #include <scsi/scsi.h> | ||
6 | #include <scsi/scsi_eh.h> | ||
7 | #include <scsi/scsi_device.h> | ||
8 | |||
9 | #include "usb.h" | ||
10 | #include "scsiglue.h" | ||
11 | #include "transport.h" | ||
12 | |||
13 | int SD_SCSI_Test_Unit_Ready (struct us_data *us, struct scsi_cmnd *srb); | ||
14 | int SD_SCSI_Inquiry (struct us_data *us, struct scsi_cmnd *srb); | ||
15 | int SD_SCSI_Mode_Sense (struct us_data *us, struct scsi_cmnd *srb); | ||
16 | int SD_SCSI_Start_Stop (struct us_data *us, struct scsi_cmnd *srb); | ||
17 | int SD_SCSI_Read_Capacity (struct us_data *us, struct scsi_cmnd *srb); | ||
18 | int SD_SCSI_Read (struct us_data *us, struct scsi_cmnd *srb); | ||
19 | int SD_SCSI_Write (struct us_data *us, struct scsi_cmnd *srb); | ||
20 | |||
21 | //----- SD_SCSIIrp() -------------------------------------------------- | ||
22 | int SD_SCSIIrp(struct us_data *us, struct scsi_cmnd *srb) | ||
23 | { | ||
24 | int result; | ||
25 | |||
26 | us->SrbStatus = SS_SUCCESS; | ||
27 | switch (srb->cmnd[0]) | ||
28 | { | ||
29 | case TEST_UNIT_READY : result = SD_SCSI_Test_Unit_Ready (us, srb); break; //0x00 | ||
30 | case INQUIRY : result = SD_SCSI_Inquiry (us, srb); break; //0x12 | ||
31 | case MODE_SENSE : result = SD_SCSI_Mode_Sense (us, srb); break; //0x1A | ||
32 | // case START_STOP : result = SD_SCSI_Start_Stop (us, srb); break; //0x1B | ||
33 | case READ_CAPACITY : result = SD_SCSI_Read_Capacity (us, srb); break; //0x25 | ||
34 | case READ_10 : result = SD_SCSI_Read (us, srb); break; //0x28 | ||
35 | case WRITE_10 : result = SD_SCSI_Write (us, srb); break; //0x2A | ||
36 | |||
37 | default: | ||
38 | us->SrbStatus = SS_ILLEGAL_REQUEST; | ||
39 | result = USB_STOR_TRANSPORT_FAILED; | ||
40 | break; | ||
41 | } | ||
42 | return result; | ||
43 | } | ||
44 | |||
45 | //----- SD_SCSI_Test_Unit_Ready() -------------------------------------------------- | ||
46 | int SD_SCSI_Test_Unit_Ready(struct us_data *us, struct scsi_cmnd *srb) | ||
47 | { | ||
48 | //printk("SD_SCSI_Test_Unit_Ready\n"); | ||
49 | if (us->SD_Status.Insert && us->SD_Status.Ready) | ||
50 | return USB_STOR_TRANSPORT_GOOD; | ||
51 | else | ||
52 | { | ||
53 | ENE_SDInit(us); | ||
54 | return USB_STOR_TRANSPORT_GOOD; | ||
55 | } | ||
56 | |||
57 | return USB_STOR_TRANSPORT_GOOD; | ||
58 | } | ||
59 | |||
60 | //----- SD_SCSI_Inquiry() -------------------------------------------------- | ||
61 | int SD_SCSI_Inquiry(struct us_data *us, struct scsi_cmnd *srb) | ||
62 | { | ||
63 | //printk("SD_SCSI_Inquiry\n"); | ||
64 | BYTE data_ptr[36] = {0x00, 0x80, 0x02, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x55, 0x53, 0x42, 0x32, 0x2E, 0x30, 0x20, 0x20, 0x43, 0x61, 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x30, 0x31, 0x30, 0x30}; | ||
65 | |||
66 | usb_stor_set_xfer_buf(us, data_ptr, 36, srb, TO_XFER_BUF); | ||
67 | return USB_STOR_TRANSPORT_GOOD; | ||
68 | } | ||
69 | |||
70 | |||
71 | //----- SD_SCSI_Mode_Sense() -------------------------------------------------- | ||
72 | int SD_SCSI_Mode_Sense(struct us_data *us, struct scsi_cmnd *srb) | ||
73 | { | ||
74 | BYTE mediaNoWP[12] = {0x0b,0x00,0x00,0x08,0x00,0x00,0x71,0xc0,0x00,0x00,0x02,0x00}; | ||
75 | BYTE mediaWP[12] = {0x0b,0x00,0x80,0x08,0x00,0x00,0x71,0xc0,0x00,0x00,0x02,0x00}; | ||
76 | |||
77 | if (us->SD_Status.WtP) | ||
78 | usb_stor_set_xfer_buf(us, mediaWP, 12, srb, TO_XFER_BUF); | ||
79 | else | ||
80 | usb_stor_set_xfer_buf(us, mediaNoWP, 12, srb, TO_XFER_BUF); | ||
81 | |||
82 | |||
83 | return USB_STOR_TRANSPORT_GOOD; | ||
84 | } | ||
85 | |||
86 | //----- SD_SCSI_Read_Capacity() -------------------------------------------------- | ||
87 | int SD_SCSI_Read_Capacity(struct us_data *us, struct scsi_cmnd *srb) | ||
88 | { | ||
89 | unsigned int offset = 0; | ||
90 | struct scatterlist *sg = NULL; | ||
91 | DWORD bl_num; | ||
92 | WORD bl_len; | ||
93 | BYTE buf[8]; | ||
94 | |||
95 | printk("SD_SCSI_Read_Capacity\n"); | ||
96 | if ( us->SD_Status.HiCapacity ) | ||
97 | { | ||
98 | bl_len = 0x200; | ||
99 | if (us->SD_Status.IsMMC) | ||
100 | bl_num = us->HC_C_SIZE-1; | ||
101 | else | ||
102 | bl_num = (us->HC_C_SIZE + 1) * 1024 - 1; | ||
103 | } | ||
104 | else | ||
105 | { | ||
106 | bl_len = 1<<(us->SD_READ_BL_LEN); | ||
107 | bl_num = us->SD_Block_Mult*(us->SD_C_SIZE+1)*(1<<(us->SD_C_SIZE_MULT+2)) - 1; | ||
108 | } | ||
109 | us->bl_num = bl_num; | ||
110 | printk("bl_len = %x\n", bl_len); | ||
111 | printk("bl_num = %x\n", bl_num); | ||
112 | |||
113 | //srb->request_bufflen = 8; | ||
114 | buf[0] = (bl_num>>24) & 0xff; | ||
115 | buf[1] = (bl_num>>16) & 0xff; | ||
116 | buf[2] = (bl_num>> 8) & 0xff; | ||
117 | buf[3] = (bl_num>> 0) & 0xff; | ||
118 | buf[4] = (bl_len>>24) & 0xff; | ||
119 | buf[5] = (bl_len>>16) & 0xff; | ||
120 | buf[6] = (bl_len>> 8) & 0xff; | ||
121 | buf[7] = (bl_len>> 0) & 0xff; | ||
122 | |||
123 | usb_stor_access_xfer_buf(us, buf, 8, srb, &sg, &offset, TO_XFER_BUF); | ||
124 | //usb_stor_set_xfer_buf(us, buf, srb->request_bufflen, srb, TO_XFER_BUF); | ||
125 | |||
126 | return USB_STOR_TRANSPORT_GOOD; | ||
127 | } | ||
128 | |||
129 | //----- SD_SCSI_Read() -------------------------------------------------- | ||
130 | int SD_SCSI_Read(struct us_data *us, struct scsi_cmnd *srb) | ||
131 | { | ||
132 | struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf; | ||
133 | int result; | ||
134 | PBYTE Cdb = srb->cmnd; | ||
135 | DWORD bn = ((Cdb[2]<<24) & 0xff000000) | ((Cdb[3]<<16) & 0x00ff0000) | | ||
136 | ((Cdb[4]<< 8) & 0x0000ff00) | ((Cdb[5]<< 0) & 0x000000ff); | ||
137 | WORD blen = ((Cdb[7]<< 8) & 0xff00) | ((Cdb[8]<< 0) & 0x00ff); | ||
138 | DWORD bnByte = bn * 0x200; | ||
139 | DWORD blenByte = blen * 0x200; | ||
140 | |||
141 | if (bn > us->bl_num) | ||
142 | return USB_STOR_TRANSPORT_ERROR; | ||
143 | |||
144 | result = ENE_LoadBinCode(us, SD_RW_PATTERN); | ||
145 | if (result != USB_STOR_XFER_GOOD) | ||
146 | { | ||
147 | printk("Load SD RW pattern Fail !!\n"); | ||
148 | return USB_STOR_TRANSPORT_ERROR; | ||
149 | } | ||
150 | |||
151 | if ( us->SD_Status.HiCapacity ) | ||
152 | bnByte = bn; | ||
153 | |||
154 | // set up the command wrapper | ||
155 | memset(bcb, 0, sizeof(struct bulk_cb_wrap)); | ||
156 | bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN); | ||
157 | bcb->DataTransferLength = blenByte; | ||
158 | bcb->Flags = 0x80; | ||
159 | bcb->CDB[0] = 0xF1; | ||
160 | bcb->CDB[5] = (BYTE)(bnByte); | ||
161 | bcb->CDB[4] = (BYTE)(bnByte>>8); | ||
162 | bcb->CDB[3] = (BYTE)(bnByte>>16); | ||
163 | bcb->CDB[2] = (BYTE)(bnByte>>24); | ||
164 | |||
165 | result = ENE_SendScsiCmd(us, FDIR_READ, scsi_sglist(srb), 1); | ||
166 | return result; | ||
167 | } | ||
168 | |||
169 | //----- SD_SCSI_Write() -------------------------------------------------- | ||
170 | int SD_SCSI_Write(struct us_data *us, struct scsi_cmnd *srb) | ||
171 | { | ||
172 | struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf; | ||
173 | int result; | ||
174 | PBYTE Cdb = srb->cmnd; | ||
175 | DWORD bn = ((Cdb[2]<<24) & 0xff000000) | ((Cdb[3]<<16) & 0x00ff0000) | | ||
176 | ((Cdb[4]<< 8) & 0x0000ff00) | ((Cdb[5]<< 0) & 0x000000ff); | ||
177 | WORD blen = ((Cdb[7]<< 8) & 0xff00) | ((Cdb[8]<< 0) & 0x00ff); | ||
178 | DWORD bnByte = bn * 0x200; | ||
179 | DWORD blenByte = blen * 0x200; | ||
180 | |||
181 | if (bn > us->bl_num) | ||
182 | return USB_STOR_TRANSPORT_ERROR; | ||
183 | |||
184 | result = ENE_LoadBinCode(us, SD_RW_PATTERN); | ||
185 | if (result != USB_STOR_XFER_GOOD) | ||
186 | { | ||
187 | printk("Load SD RW pattern Fail !!\n"); | ||
188 | return USB_STOR_TRANSPORT_ERROR; | ||
189 | } | ||
190 | |||
191 | if ( us->SD_Status.HiCapacity ) | ||
192 | bnByte = bn; | ||
193 | |||
194 | // set up the command wrapper | ||
195 | memset(bcb, 0, sizeof(struct bulk_cb_wrap)); | ||
196 | bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN); | ||
197 | bcb->DataTransferLength = blenByte; | ||
198 | bcb->Flags = 0x00; | ||
199 | bcb->CDB[0] = 0xF0; | ||
200 | bcb->CDB[5] = (BYTE)(bnByte); | ||
201 | bcb->CDB[4] = (BYTE)(bnByte>>8); | ||
202 | bcb->CDB[3] = (BYTE)(bnByte>>16); | ||
203 | bcb->CDB[2] = (BYTE)(bnByte>>24); | ||
204 | |||
205 | result = ENE_SendScsiCmd(us, FDIR_WRITE, scsi_sglist(srb), 1); | ||
206 | return result; | ||
207 | } | ||
208 | |||
209 | |||
210 | |||
diff --git a/drivers/staging/keucr/transport.c b/drivers/staging/keucr/transport.c index 111160cce441..a53402f36044 100644 --- a/drivers/staging/keucr/transport.c +++ b/drivers/staging/keucr/transport.c | |||
@@ -413,7 +413,7 @@ void ENE_stor_invoke_transport(struct scsi_cmnd *srb, struct us_data *us) | |||
413 | usb_stor_print_cmd(srb); | 413 | usb_stor_print_cmd(srb); |
414 | /* send the command to the transport layer */ | 414 | /* send the command to the transport layer */ |
415 | scsi_set_resid(srb, 0); | 415 | scsi_set_resid(srb, 0); |
416 | if ( !(us->SD_Status.Ready || us->MS_Status.Ready || us->SM_Status.Ready) ) | 416 | if (!(us->MS_Status.Ready || us->SM_Status.Ready)) |
417 | result = ENE_InitMedia(us); | 417 | result = ENE_InitMedia(us); |
418 | 418 | ||
419 | if (us->Power_IsResum == true) { | 419 | if (us->Power_IsResum == true) { |
@@ -421,7 +421,6 @@ void ENE_stor_invoke_transport(struct scsi_cmnd *srb, struct us_data *us) | |||
421 | us->Power_IsResum = false; | 421 | us->Power_IsResum = false; |
422 | } | 422 | } |
423 | 423 | ||
424 | if (us->SD_Status.Ready) result = SD_SCSIIrp(us, srb); | ||
425 | if (us->MS_Status.Ready) result = MS_SCSIIrp(us, srb); | 424 | if (us->MS_Status.Ready) result = MS_SCSIIrp(us, srb); |
426 | if (us->SM_Status.Ready) result = SM_SCSIIrp(us, srb); | 425 | if (us->SM_Status.Ready) result = SM_SCSIIrp(us, srb); |
427 | 426 | ||
diff --git a/drivers/staging/keucr/transport.h b/drivers/staging/keucr/transport.h index ae9b5ee8a0cc..565d98c98454 100644 --- a/drivers/staging/keucr/transport.h +++ b/drivers/staging/keucr/transport.h | |||
@@ -92,10 +92,8 @@ extern void usb_stor_set_xfer_buf(struct us_data*, unsigned char *buffer, unsign | |||
92 | // ENE scsi function | 92 | // ENE scsi function |
93 | extern void ENE_stor_invoke_transport(struct scsi_cmnd *, struct us_data*); | 93 | extern void ENE_stor_invoke_transport(struct scsi_cmnd *, struct us_data*); |
94 | extern int ENE_InitMedia(struct us_data*); | 94 | extern int ENE_InitMedia(struct us_data*); |
95 | extern int ENE_SDInit(struct us_data*); | ||
96 | extern int ENE_MSInit(struct us_data*); | 95 | extern int ENE_MSInit(struct us_data*); |
97 | extern int ENE_SMInit(struct us_data*); | 96 | extern int ENE_SMInit(struct us_data*); |
98 | extern int ENE_ReadSDReg(struct us_data*, u8*); | ||
99 | extern int ENE_SendScsiCmd(struct us_data*, BYTE, void*, int); | 97 | extern int ENE_SendScsiCmd(struct us_data*, BYTE, void*, int); |
100 | extern int ENE_LoadBinCode(struct us_data*, BYTE); | 98 | extern int ENE_LoadBinCode(struct us_data*, BYTE); |
101 | extern int ENE_Read_BYTE(struct us_data*, WORD index, void *buf); | 99 | extern int ENE_Read_BYTE(struct us_data*, WORD index, void *buf); |
@@ -104,7 +102,6 @@ extern int ENE_Write_Data(struct us_data*, void *buf, unsigned int length); | |||
104 | extern void BuildSenseBuffer(struct scsi_cmnd *, int); | 102 | extern void BuildSenseBuffer(struct scsi_cmnd *, int); |
105 | 103 | ||
106 | // ENE scsi function | 104 | // ENE scsi function |
107 | extern int SD_SCSIIrp(struct us_data *us, struct scsi_cmnd *srb); | ||
108 | extern int MS_SCSIIrp(struct us_data *us, struct scsi_cmnd *srb); | 105 | extern int MS_SCSIIrp(struct us_data *us, struct scsi_cmnd *srb); |
109 | extern int SM_SCSIIrp(struct us_data *us, struct scsi_cmnd *srb); | 106 | extern int SM_SCSIIrp(struct us_data *us, struct scsi_cmnd *srb); |
110 | 107 | ||
diff --git a/drivers/staging/keucr/usb.c b/drivers/staging/keucr/usb.c index c65b988264cc..8c2332ec4f5c 100644 --- a/drivers/staging/keucr/usb.c +++ b/drivers/staging/keucr/usb.c | |||
@@ -74,7 +74,6 @@ int eucr_resume(struct usb_interface *iface) | |||
74 | us->Power_IsResum = true; | 74 | us->Power_IsResum = true; |
75 | // | 75 | // |
76 | //us->SD_Status.Ready = 0; //?? | 76 | //us->SD_Status.Ready = 0; //?? |
77 | us->SD_Status = *(PSD_STATUS)&tmp; | ||
78 | us->MS_Status = *(PMS_STATUS)&tmp; | 77 | us->MS_Status = *(PMS_STATUS)&tmp; |
79 | us->SM_Status = *(PSM_STATUS)&tmp; | 78 | us->SM_Status = *(PSM_STATUS)&tmp; |
80 | 79 | ||
@@ -98,7 +97,6 @@ int eucr_reset_resume(struct usb_interface *iface) | |||
98 | us->Power_IsResum = true; | 97 | us->Power_IsResum = true; |
99 | // | 98 | // |
100 | //us->SD_Status.Ready = 0; //?? | 99 | //us->SD_Status.Ready = 0; //?? |
101 | us->SD_Status = *(PSD_STATUS)&tmp; | ||
102 | us->MS_Status = *(PMS_STATUS)&tmp; | 100 | us->MS_Status = *(PMS_STATUS)&tmp; |
103 | us->SM_Status = *(PSM_STATUS)&tmp; | 101 | us->SM_Status = *(PSM_STATUS)&tmp; |
104 | return 0; | 102 | return 0; |
@@ -582,6 +580,7 @@ static int eucr_probe(struct usb_interface *intf, const struct usb_device_id *id | |||
582 | struct Scsi_Host *host; | 580 | struct Scsi_Host *host; |
583 | struct us_data *us; | 581 | struct us_data *us; |
584 | int result; | 582 | int result; |
583 | BYTE MiscReg03 = 0; | ||
585 | struct task_struct *th; | 584 | struct task_struct *th; |
586 | 585 | ||
587 | printk("usb --- eucr_probe\n"); | 586 | printk("usb --- eucr_probe\n"); |
@@ -647,6 +646,24 @@ static int eucr_probe(struct usb_interface *intf, const struct usb_device_id *id | |||
647 | goto BadDevice; | 646 | goto BadDevice; |
648 | } | 647 | } |
649 | wake_up_process(th); | 648 | wake_up_process(th); |
649 | |||
650 | /* probe card type */ | ||
651 | result = ENE_Read_BYTE(us, REG_CARD_STATUS, &MiscReg03); | ||
652 | if (result != USB_STOR_XFER_GOOD) { | ||
653 | result = USB_STOR_TRANSPORT_ERROR; | ||
654 | quiesce_and_remove_host(us); | ||
655 | goto BadDevice; | ||
656 | } | ||
657 | |||
658 | if (!(MiscReg03 & 0x02)) { | ||
659 | result = -ENODEV; | ||
660 | quiesce_and_remove_host(us); | ||
661 | printk(KERN_NOTICE "keucr: The driver only supports SM/MS card.\ | ||
662 | To use SD card, \ | ||
663 | please build driver/usb/storage/ums-eneub6250.ko\n"); | ||
664 | goto BadDevice; | ||
665 | } | ||
666 | |||
650 | return 0; | 667 | return 0; |
651 | 668 | ||
652 | /* We come here if there are any problems */ | 669 | /* We come here if there are any problems */ |
diff --git a/drivers/usb/storage/Kconfig b/drivers/usb/storage/Kconfig index 49a489e03716..72448bac2ee0 100644 --- a/drivers/usb/storage/Kconfig +++ b/drivers/usb/storage/Kconfig | |||
@@ -198,3 +198,17 @@ config USB_LIBUSUAL | |||
198 | options libusual bias="ub" | 198 | options libusual bias="ub" |
199 | 199 | ||
200 | If unsure, say N. | 200 | If unsure, say N. |
201 | |||
202 | config USB_STORAGE_ENE_UB6250 | ||
203 | tristate "USB ENE card reader support" | ||
204 | depends on USB && SCSI | ||
205 | ---help--- | ||
206 | Say Y here if you wish to control a ENE SD Card reader. | ||
207 | To use SM/MS card, please build driver/staging/keucr/keucr.ko | ||
208 | |||
209 | This option depends on 'SCSI' support being enabled, but you | ||
210 | probably also need 'SCSI device support: SCSI disk support' | ||
211 | (BLK_DEV_SD) for most USB storage devices. | ||
212 | |||
213 | To compile this driver as a module, choose M here: the | ||
214 | module will be called ums-eneub6250. | ||
diff --git a/drivers/usb/storage/Makefile b/drivers/usb/storage/Makefile index fcf14cdc4a04..3055d1a8010a 100644 --- a/drivers/usb/storage/Makefile +++ b/drivers/usb/storage/Makefile | |||
@@ -25,6 +25,7 @@ endif | |||
25 | obj-$(CONFIG_USB_STORAGE_ALAUDA) += ums-alauda.o | 25 | obj-$(CONFIG_USB_STORAGE_ALAUDA) += ums-alauda.o |
26 | obj-$(CONFIG_USB_STORAGE_CYPRESS_ATACB) += ums-cypress.o | 26 | obj-$(CONFIG_USB_STORAGE_CYPRESS_ATACB) += ums-cypress.o |
27 | obj-$(CONFIG_USB_STORAGE_DATAFAB) += ums-datafab.o | 27 | obj-$(CONFIG_USB_STORAGE_DATAFAB) += ums-datafab.o |
28 | obj-$(CONFIG_USB_STORAGE_ENE_UB6250) += ums-eneub6250.o | ||
28 | obj-$(CONFIG_USB_STORAGE_FREECOM) += ums-freecom.o | 29 | obj-$(CONFIG_USB_STORAGE_FREECOM) += ums-freecom.o |
29 | obj-$(CONFIG_USB_STORAGE_ISD200) += ums-isd200.o | 30 | obj-$(CONFIG_USB_STORAGE_ISD200) += ums-isd200.o |
30 | obj-$(CONFIG_USB_STORAGE_JUMPSHOT) += ums-jumpshot.o | 31 | obj-$(CONFIG_USB_STORAGE_JUMPSHOT) += ums-jumpshot.o |
@@ -37,6 +38,7 @@ obj-$(CONFIG_USB_STORAGE_USBAT) += ums-usbat.o | |||
37 | ums-alauda-y := alauda.o | 38 | ums-alauda-y := alauda.o |
38 | ums-cypress-y := cypress_atacb.o | 39 | ums-cypress-y := cypress_atacb.o |
39 | ums-datafab-y := datafab.o | 40 | ums-datafab-y := datafab.o |
41 | ums-eneub6250-y := ene_ub6250.o | ||
40 | ums-freecom-y := freecom.o | 42 | ums-freecom-y := freecom.o |
41 | ums-isd200-y := isd200.o | 43 | ums-isd200-y := isd200.o |
42 | ums-jumpshot-y := jumpshot.o | 44 | ums-jumpshot-y := jumpshot.o |
diff --git a/drivers/usb/storage/ene_ub6250.c b/drivers/usb/storage/ene_ub6250.c new file mode 100644 index 000000000000..058c5d5f1c1e --- /dev/null +++ b/drivers/usb/storage/ene_ub6250.c | |||
@@ -0,0 +1,807 @@ | |||
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 | MODULE_DESCRIPTION("Driver for ENE UB6250 reader"); | ||
33 | MODULE_LICENSE("GPL"); | ||
34 | |||
35 | |||
36 | /* | ||
37 | * The table of devices | ||
38 | */ | ||
39 | #define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \ | ||
40 | vendorName, productName, useProtocol, useTransport, \ | ||
41 | initFunction, flags) \ | ||
42 | { USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \ | ||
43 | .driver_info = (flags)|(USB_US_TYPE_STOR<<24) } | ||
44 | |||
45 | struct usb_device_id ene_ub6250_usb_ids[] = { | ||
46 | # include "unusual_ene_ub6250.h" | ||
47 | { } /* Terminating entry */ | ||
48 | }; | ||
49 | MODULE_DEVICE_TABLE(usb, ene_ub6250_usb_ids); | ||
50 | |||
51 | #undef UNUSUAL_DEV | ||
52 | |||
53 | /* | ||
54 | * The flags table | ||
55 | */ | ||
56 | #define UNUSUAL_DEV(idVendor, idProduct, bcdDeviceMin, bcdDeviceMax, \ | ||
57 | vendor_name, product_name, use_protocol, use_transport, \ | ||
58 | init_function, Flags) \ | ||
59 | { \ | ||
60 | .vendorName = vendor_name, \ | ||
61 | .productName = product_name, \ | ||
62 | .useProtocol = use_protocol, \ | ||
63 | .useTransport = use_transport, \ | ||
64 | .initFunction = init_function, \ | ||
65 | } | ||
66 | |||
67 | static struct us_unusual_dev ene_ub6250_unusual_dev_list[] = { | ||
68 | # include "unusual_ene_ub6250.h" | ||
69 | { } /* Terminating entry */ | ||
70 | }; | ||
71 | |||
72 | #undef UNUSUAL_DEV | ||
73 | |||
74 | |||
75 | |||
76 | /* ENE bin code len */ | ||
77 | #define ENE_BIN_CODE_LEN 0x800 | ||
78 | /* EnE HW Register */ | ||
79 | #define REG_CARD_STATUS 0xFF83 | ||
80 | #define REG_HW_TRAP1 0xFF89 | ||
81 | |||
82 | /* SRB Status */ | ||
83 | #define SS_SUCCESS 0x00 /* No Sense */ | ||
84 | #define SS_NOT_READY 0x02 | ||
85 | #define SS_MEDIUM_ERR 0x03 | ||
86 | #define SS_HW_ERR 0x04 | ||
87 | #define SS_ILLEGAL_REQUEST 0x05 | ||
88 | #define SS_UNIT_ATTENTION 0x06 | ||
89 | |||
90 | /* ENE Load FW Pattern */ | ||
91 | #define SD_INIT1_PATTERN 1 | ||
92 | #define SD_INIT2_PATTERN 2 | ||
93 | #define SD_RW_PATTERN 3 | ||
94 | #define MS_INIT_PATTERN 4 | ||
95 | #define MSP_RW_PATTERN 5 | ||
96 | #define MS_RW_PATTERN 6 | ||
97 | #define SM_INIT_PATTERN 7 | ||
98 | #define SM_RW_PATTERN 8 | ||
99 | |||
100 | #define FDIR_WRITE 0 | ||
101 | #define FDIR_READ 1 | ||
102 | |||
103 | |||
104 | struct SD_STATUS { | ||
105 | u8 Insert:1; | ||
106 | u8 Ready:1; | ||
107 | u8 MediaChange:1; | ||
108 | u8 IsMMC:1; | ||
109 | u8 HiCapacity:1; | ||
110 | u8 HiSpeed:1; | ||
111 | u8 WtP:1; | ||
112 | u8 Reserved:1; | ||
113 | }; | ||
114 | |||
115 | struct MS_STATUS { | ||
116 | u8 Insert:1; | ||
117 | u8 Ready:1; | ||
118 | u8 MediaChange:1; | ||
119 | u8 IsMSPro:1; | ||
120 | u8 IsMSPHG:1; | ||
121 | u8 Reserved1:1; | ||
122 | u8 WtP:1; | ||
123 | u8 Reserved2:1; | ||
124 | }; | ||
125 | |||
126 | struct SM_STATUS { | ||
127 | u8 Insert:1; | ||
128 | u8 Ready:1; | ||
129 | u8 MediaChange:1; | ||
130 | u8 Reserved:3; | ||
131 | u8 WtP:1; | ||
132 | u8 IsMS:1; | ||
133 | }; | ||
134 | |||
135 | |||
136 | /* SD Block Length */ | ||
137 | /* 2^9 = 512 Bytes, The HW maximum read/write data length */ | ||
138 | #define SD_BLOCK_LEN 9 | ||
139 | |||
140 | struct ene_ub6250_info { | ||
141 | /* for 6250 code */ | ||
142 | struct SD_STATUS SD_Status; | ||
143 | struct MS_STATUS MS_Status; | ||
144 | struct SM_STATUS SM_Status; | ||
145 | |||
146 | /* ----- SD Control Data ---------------- */ | ||
147 | /*SD_REGISTER SD_Regs; */ | ||
148 | u16 SD_Block_Mult; | ||
149 | u8 SD_READ_BL_LEN; | ||
150 | u16 SD_C_SIZE; | ||
151 | u8 SD_C_SIZE_MULT; | ||
152 | |||
153 | /* SD/MMC New spec. */ | ||
154 | u8 SD_SPEC_VER; | ||
155 | u8 SD_CSD_VER; | ||
156 | u8 SD20_HIGH_CAPACITY; | ||
157 | u32 HC_C_SIZE; | ||
158 | u8 MMC_SPEC_VER; | ||
159 | u8 MMC_BusWidth; | ||
160 | u8 MMC_HIGH_CAPACITY; | ||
161 | |||
162 | /*----- MS Control Data ---------------- */ | ||
163 | bool MS_SWWP; | ||
164 | u32 MSP_TotalBlock; | ||
165 | /*MS_LibControl MS_Lib;*/ | ||
166 | bool MS_IsRWPage; | ||
167 | u16 MS_Model; | ||
168 | |||
169 | /*----- SM Control Data ---------------- */ | ||
170 | u8 SM_DeviceID; | ||
171 | u8 SM_CardID; | ||
172 | |||
173 | unsigned char *testbuf; | ||
174 | u8 BIN_FLAG; | ||
175 | u32 bl_num; | ||
176 | int SrbStatus; | ||
177 | |||
178 | /*------Power Managerment ---------------*/ | ||
179 | bool Power_IsResum; | ||
180 | }; | ||
181 | |||
182 | static int ene_sd_init(struct us_data *us); | ||
183 | static int ene_load_bincode(struct us_data *us, unsigned char flag); | ||
184 | |||
185 | static void ene_ub6250_info_destructor(void *extra) | ||
186 | { | ||
187 | if (!extra) | ||
188 | return; | ||
189 | } | ||
190 | |||
191 | static int ene_send_scsi_cmd(struct us_data *us, u8 fDir, void *buf, int use_sg) | ||
192 | { | ||
193 | struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf; | ||
194 | struct bulk_cs_wrap *bcs = (struct bulk_cs_wrap *) us->iobuf; | ||
195 | |||
196 | int result; | ||
197 | unsigned int residue; | ||
198 | unsigned int cswlen = 0, partial = 0; | ||
199 | unsigned int transfer_length = bcb->DataTransferLength; | ||
200 | |||
201 | /* US_DEBUGP("transport --- ene_send_scsi_cmd\n"); */ | ||
202 | /* send cmd to out endpoint */ | ||
203 | result = usb_stor_bulk_transfer_buf(us, us->send_bulk_pipe, | ||
204 | bcb, US_BULK_CB_WRAP_LEN, NULL); | ||
205 | if (result != USB_STOR_XFER_GOOD) { | ||
206 | US_DEBUGP("send cmd to out endpoint fail ---\n"); | ||
207 | return USB_STOR_TRANSPORT_ERROR; | ||
208 | } | ||
209 | |||
210 | if (buf) { | ||
211 | unsigned int pipe = fDir; | ||
212 | |||
213 | if (fDir == FDIR_READ) | ||
214 | pipe = us->recv_bulk_pipe; | ||
215 | else | ||
216 | pipe = us->send_bulk_pipe; | ||
217 | |||
218 | /* Bulk */ | ||
219 | if (use_sg) { | ||
220 | result = usb_stor_bulk_srb(us, pipe, us->srb); | ||
221 | } else { | ||
222 | result = usb_stor_bulk_transfer_sg(us, pipe, buf, | ||
223 | transfer_length, 0, &partial); | ||
224 | } | ||
225 | if (result != USB_STOR_XFER_GOOD) { | ||
226 | US_DEBUGP("data transfer fail ---\n"); | ||
227 | return USB_STOR_TRANSPORT_ERROR; | ||
228 | } | ||
229 | } | ||
230 | |||
231 | /* Get CSW for device status */ | ||
232 | result = usb_stor_bulk_transfer_buf(us, us->recv_bulk_pipe, bcs, | ||
233 | US_BULK_CS_WRAP_LEN, &cswlen); | ||
234 | |||
235 | if (result == USB_STOR_XFER_SHORT && cswlen == 0) { | ||
236 | US_DEBUGP("Received 0-length CSW; retrying...\n"); | ||
237 | result = usb_stor_bulk_transfer_buf(us, us->recv_bulk_pipe, | ||
238 | bcs, US_BULK_CS_WRAP_LEN, &cswlen); | ||
239 | } | ||
240 | |||
241 | if (result == USB_STOR_XFER_STALLED) { | ||
242 | /* get the status again */ | ||
243 | US_DEBUGP("Attempting to get CSW (2nd try)...\n"); | ||
244 | result = usb_stor_bulk_transfer_buf(us, us->recv_bulk_pipe, | ||
245 | bcs, US_BULK_CS_WRAP_LEN, NULL); | ||
246 | } | ||
247 | |||
248 | if (result != USB_STOR_XFER_GOOD) | ||
249 | return USB_STOR_TRANSPORT_ERROR; | ||
250 | |||
251 | /* check bulk status */ | ||
252 | residue = le32_to_cpu(bcs->Residue); | ||
253 | |||
254 | /* try to compute the actual residue, based on how much data | ||
255 | * was really transferred and what the device tells us */ | ||
256 | if (residue && !(us->fflags & US_FL_IGNORE_RESIDUE)) { | ||
257 | residue = min(residue, transfer_length); | ||
258 | if (us->srb != NULL) | ||
259 | scsi_set_resid(us->srb, max(scsi_get_resid(us->srb), | ||
260 | (int)residue)); | ||
261 | } | ||
262 | |||
263 | if (bcs->Status != US_BULK_STAT_OK) | ||
264 | return USB_STOR_TRANSPORT_ERROR; | ||
265 | |||
266 | return USB_STOR_TRANSPORT_GOOD; | ||
267 | } | ||
268 | |||
269 | static int sd_scsi_test_unit_ready(struct us_data *us, struct scsi_cmnd *srb) | ||
270 | { | ||
271 | struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra; | ||
272 | |||
273 | if (info->SD_Status.Insert && info->SD_Status.Ready) | ||
274 | return USB_STOR_TRANSPORT_GOOD; | ||
275 | else { | ||
276 | ene_sd_init(us); | ||
277 | return USB_STOR_TRANSPORT_GOOD; | ||
278 | } | ||
279 | |||
280 | return USB_STOR_TRANSPORT_GOOD; | ||
281 | } | ||
282 | |||
283 | static int sd_scsi_inquiry(struct us_data *us, struct scsi_cmnd *srb) | ||
284 | { | ||
285 | unsigned char data_ptr[36] = { | ||
286 | 0x00, 0x80, 0x02, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x55, | ||
287 | 0x53, 0x42, 0x32, 0x2E, 0x30, 0x20, 0x20, 0x43, 0x61, | ||
288 | 0x72, 0x64, 0x52, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20, | ||
289 | 0x20, 0x20, 0x20, 0x20, 0x20, 0x30, 0x31, 0x30, 0x30 }; | ||
290 | |||
291 | usb_stor_set_xfer_buf(data_ptr, 36, srb); | ||
292 | return USB_STOR_TRANSPORT_GOOD; | ||
293 | } | ||
294 | |||
295 | static int sd_scsi_mode_sense(struct us_data *us, struct scsi_cmnd *srb) | ||
296 | { | ||
297 | struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra; | ||
298 | unsigned char mediaNoWP[12] = { | ||
299 | 0x0b, 0x00, 0x00, 0x08, 0x00, 0x00, | ||
300 | 0x71, 0xc0, 0x00, 0x00, 0x02, 0x00 }; | ||
301 | unsigned char mediaWP[12] = { | ||
302 | 0x0b, 0x00, 0x80, 0x08, 0x00, 0x00, | ||
303 | 0x71, 0xc0, 0x00, 0x00, 0x02, 0x00 }; | ||
304 | |||
305 | if (info->SD_Status.WtP) | ||
306 | usb_stor_set_xfer_buf(mediaWP, 12, srb); | ||
307 | else | ||
308 | usb_stor_set_xfer_buf(mediaNoWP, 12, srb); | ||
309 | |||
310 | |||
311 | return USB_STOR_TRANSPORT_GOOD; | ||
312 | } | ||
313 | |||
314 | static int sd_scsi_read_capacity(struct us_data *us, struct scsi_cmnd *srb) | ||
315 | { | ||
316 | u32 bl_num; | ||
317 | u16 bl_len; | ||
318 | unsigned int offset = 0; | ||
319 | unsigned char buf[8]; | ||
320 | struct scatterlist *sg = NULL; | ||
321 | struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra; | ||
322 | |||
323 | US_DEBUGP("sd_scsi_read_capacity\n"); | ||
324 | if (info->SD_Status.HiCapacity) { | ||
325 | bl_len = 0x200; | ||
326 | if (info->SD_Status.IsMMC) | ||
327 | bl_num = info->HC_C_SIZE-1; | ||
328 | else | ||
329 | bl_num = (info->HC_C_SIZE + 1) * 1024 - 1; | ||
330 | } else { | ||
331 | bl_len = 1<<(info->SD_READ_BL_LEN); | ||
332 | bl_num = info->SD_Block_Mult * (info->SD_C_SIZE + 1) | ||
333 | * (1 << (info->SD_C_SIZE_MULT + 2)) - 1; | ||
334 | } | ||
335 | info->bl_num = bl_num; | ||
336 | US_DEBUGP("bl_len = %x\n", bl_len); | ||
337 | US_DEBUGP("bl_num = %x\n", bl_num); | ||
338 | |||
339 | /*srb->request_bufflen = 8; */ | ||
340 | buf[0] = (bl_num >> 24) & 0xff; | ||
341 | buf[1] = (bl_num >> 16) & 0xff; | ||
342 | buf[2] = (bl_num >> 8) & 0xff; | ||
343 | buf[3] = (bl_num >> 0) & 0xff; | ||
344 | buf[4] = (bl_len >> 24) & 0xff; | ||
345 | buf[5] = (bl_len >> 16) & 0xff; | ||
346 | buf[6] = (bl_len >> 8) & 0xff; | ||
347 | buf[7] = (bl_len >> 0) & 0xff; | ||
348 | |||
349 | usb_stor_access_xfer_buf(buf, 8, srb, &sg, &offset, TO_XFER_BUF); | ||
350 | |||
351 | return USB_STOR_TRANSPORT_GOOD; | ||
352 | } | ||
353 | |||
354 | static int sd_scsi_read(struct us_data *us, struct scsi_cmnd *srb) | ||
355 | { | ||
356 | int result; | ||
357 | unsigned char *cdb = srb->cmnd; | ||
358 | struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf; | ||
359 | struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra; | ||
360 | |||
361 | u32 bn = ((cdb[2] << 24) & 0xff000000) | ((cdb[3] << 16) & 0x00ff0000) | | ||
362 | ((cdb[4] << 8) & 0x0000ff00) | ((cdb[5] << 0) & 0x000000ff); | ||
363 | u16 blen = ((cdb[7] << 8) & 0xff00) | ((cdb[8] << 0) & 0x00ff); | ||
364 | u32 bnByte = bn * 0x200; | ||
365 | u32 blenByte = blen * 0x200; | ||
366 | |||
367 | if (bn > info->bl_num) | ||
368 | return USB_STOR_TRANSPORT_ERROR; | ||
369 | |||
370 | result = ene_load_bincode(us, SD_RW_PATTERN); | ||
371 | if (result != USB_STOR_XFER_GOOD) { | ||
372 | US_DEBUGP("Load SD RW pattern Fail !!\n"); | ||
373 | return USB_STOR_TRANSPORT_ERROR; | ||
374 | } | ||
375 | |||
376 | if (info->SD_Status.HiCapacity) | ||
377 | bnByte = bn; | ||
378 | |||
379 | /* set up the command wrapper */ | ||
380 | memset(bcb, 0, sizeof(struct bulk_cb_wrap)); | ||
381 | bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN); | ||
382 | bcb->DataTransferLength = blenByte; | ||
383 | bcb->Flags = 0x80; | ||
384 | bcb->CDB[0] = 0xF1; | ||
385 | bcb->CDB[5] = (unsigned char)(bnByte); | ||
386 | bcb->CDB[4] = (unsigned char)(bnByte>>8); | ||
387 | bcb->CDB[3] = (unsigned char)(bnByte>>16); | ||
388 | bcb->CDB[2] = (unsigned char)(bnByte>>24); | ||
389 | |||
390 | result = ene_send_scsi_cmd(us, FDIR_READ, scsi_sglist(srb), 1); | ||
391 | return result; | ||
392 | } | ||
393 | |||
394 | static int sd_scsi_write(struct us_data *us, struct scsi_cmnd *srb) | ||
395 | { | ||
396 | int result; | ||
397 | unsigned char *cdb = srb->cmnd; | ||
398 | struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf; | ||
399 | struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra; | ||
400 | |||
401 | u32 bn = ((cdb[2] << 24) & 0xff000000) | ((cdb[3] << 16) & 0x00ff0000) | | ||
402 | ((cdb[4] << 8) & 0x0000ff00) | ((cdb[5] << 0) & 0x000000ff); | ||
403 | u16 blen = ((cdb[7] << 8) & 0xff00) | ((cdb[8] << 0) & 0x00ff); | ||
404 | u32 bnByte = bn * 0x200; | ||
405 | u32 blenByte = blen * 0x200; | ||
406 | |||
407 | if (bn > info->bl_num) | ||
408 | return USB_STOR_TRANSPORT_ERROR; | ||
409 | |||
410 | result = ene_load_bincode(us, SD_RW_PATTERN); | ||
411 | if (result != USB_STOR_XFER_GOOD) { | ||
412 | US_DEBUGP("Load SD RW pattern Fail !!\n"); | ||
413 | return USB_STOR_TRANSPORT_ERROR; | ||
414 | } | ||
415 | |||
416 | if (info->SD_Status.HiCapacity) | ||
417 | bnByte = bn; | ||
418 | |||
419 | /* set up the command wrapper */ | ||
420 | memset(bcb, 0, sizeof(struct bulk_cb_wrap)); | ||
421 | bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN); | ||
422 | bcb->DataTransferLength = blenByte; | ||
423 | bcb->Flags = 0x00; | ||
424 | bcb->CDB[0] = 0xF0; | ||
425 | bcb->CDB[5] = (unsigned char)(bnByte); | ||
426 | bcb->CDB[4] = (unsigned char)(bnByte>>8); | ||
427 | bcb->CDB[3] = (unsigned char)(bnByte>>16); | ||
428 | bcb->CDB[2] = (unsigned char)(bnByte>>24); | ||
429 | |||
430 | result = ene_send_scsi_cmd(us, FDIR_WRITE, scsi_sglist(srb), 1); | ||
431 | return result; | ||
432 | } | ||
433 | |||
434 | static int ene_get_card_type(struct us_data *us, u16 index, void *buf) | ||
435 | { | ||
436 | struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf; | ||
437 | int result; | ||
438 | |||
439 | memset(bcb, 0, sizeof(struct bulk_cb_wrap)); | ||
440 | bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN); | ||
441 | bcb->DataTransferLength = 0x01; | ||
442 | bcb->Flags = 0x80; | ||
443 | bcb->CDB[0] = 0xED; | ||
444 | bcb->CDB[2] = (unsigned char)(index>>8); | ||
445 | bcb->CDB[3] = (unsigned char)index; | ||
446 | |||
447 | result = ene_send_scsi_cmd(us, FDIR_READ, buf, 0); | ||
448 | return result; | ||
449 | } | ||
450 | |||
451 | static int ene_get_card_status(struct us_data *us, u8 *buf) | ||
452 | { | ||
453 | u16 tmpreg; | ||
454 | u32 reg4b; | ||
455 | struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra; | ||
456 | |||
457 | /*US_DEBUGP("transport --- ENE_ReadSDReg\n");*/ | ||
458 | reg4b = *(u32 *)&buf[0x18]; | ||
459 | info->SD_READ_BL_LEN = (u8)((reg4b >> 8) & 0x0f); | ||
460 | |||
461 | tmpreg = (u16) reg4b; | ||
462 | reg4b = *(u32 *)(&buf[0x14]); | ||
463 | if (info->SD_Status.HiCapacity && !info->SD_Status.IsMMC) | ||
464 | info->HC_C_SIZE = (reg4b >> 8) & 0x3fffff; | ||
465 | |||
466 | info->SD_C_SIZE = ((tmpreg & 0x03) << 10) | (u16)(reg4b >> 22); | ||
467 | info->SD_C_SIZE_MULT = (u8)(reg4b >> 7) & 0x07; | ||
468 | if (info->SD_Status.HiCapacity && info->SD_Status.IsMMC) | ||
469 | info->HC_C_SIZE = *(u32 *)(&buf[0x100]); | ||
470 | |||
471 | if (info->SD_READ_BL_LEN > SD_BLOCK_LEN) { | ||
472 | info->SD_Block_Mult = 1 << (info->SD_READ_BL_LEN-SD_BLOCK_LEN); | ||
473 | info->SD_READ_BL_LEN = SD_BLOCK_LEN; | ||
474 | } else { | ||
475 | info->SD_Block_Mult = 1; | ||
476 | } | ||
477 | |||
478 | return USB_STOR_TRANSPORT_GOOD; | ||
479 | } | ||
480 | |||
481 | static int ene_load_bincode(struct us_data *us, unsigned char flag) | ||
482 | { | ||
483 | int err; | ||
484 | char *fw_name = NULL; | ||
485 | unsigned char *buf = NULL; | ||
486 | const struct firmware *sd_fw = NULL; | ||
487 | int result = USB_STOR_TRANSPORT_ERROR; | ||
488 | struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf; | ||
489 | struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra; | ||
490 | |||
491 | if (info->BIN_FLAG == flag) | ||
492 | return USB_STOR_TRANSPORT_GOOD; | ||
493 | |||
494 | buf = kmalloc(ENE_BIN_CODE_LEN, GFP_KERNEL); | ||
495 | if (buf == NULL) | ||
496 | return USB_STOR_TRANSPORT_ERROR; | ||
497 | |||
498 | switch (flag) { | ||
499 | /* For SD */ | ||
500 | case SD_INIT1_PATTERN: | ||
501 | US_DEBUGP("SD_INIT1_PATTERN\n"); | ||
502 | fw_name = "ene-ub6250/sd_init1.bin"; | ||
503 | break; | ||
504 | case SD_INIT2_PATTERN: | ||
505 | US_DEBUGP("SD_INIT2_PATTERN\n"); | ||
506 | fw_name = "ene-ub6250/sd_init2.bin"; | ||
507 | break; | ||
508 | case SD_RW_PATTERN: | ||
509 | US_DEBUGP("SD_RDWR_PATTERN\n"); | ||
510 | fw_name = "ene-ub6250/sd_rdwr.bin"; | ||
511 | break; | ||
512 | default: | ||
513 | US_DEBUGP("----------- Unknown PATTERN ----------\n"); | ||
514 | goto nofw; | ||
515 | } | ||
516 | |||
517 | err = request_firmware(&sd_fw, fw_name, &us->pusb_dev->dev); | ||
518 | if (err) { | ||
519 | US_DEBUGP("load firmware %s failed\n", fw_name); | ||
520 | goto nofw; | ||
521 | } | ||
522 | buf = kmalloc(sd_fw->size, GFP_KERNEL); | ||
523 | if (buf == NULL) { | ||
524 | US_DEBUGP("Malloc memory for fireware failed!\n"); | ||
525 | goto nofw; | ||
526 | } | ||
527 | memcpy(buf, sd_fw->data, sd_fw->size); | ||
528 | memset(bcb, 0, sizeof(struct bulk_cb_wrap)); | ||
529 | bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN); | ||
530 | bcb->DataTransferLength = sd_fw->size; | ||
531 | bcb->Flags = 0x00; | ||
532 | bcb->CDB[0] = 0xEF; | ||
533 | |||
534 | result = ene_send_scsi_cmd(us, FDIR_WRITE, buf, 0); | ||
535 | info->BIN_FLAG = flag; | ||
536 | kfree(buf); | ||
537 | |||
538 | nofw: | ||
539 | if (sd_fw != NULL) { | ||
540 | release_firmware(sd_fw); | ||
541 | sd_fw = NULL; | ||
542 | } | ||
543 | |||
544 | return result; | ||
545 | } | ||
546 | |||
547 | static int ene_sd_init(struct us_data *us) | ||
548 | { | ||
549 | int result; | ||
550 | u8 buf[0x200]; | ||
551 | struct bulk_cb_wrap *bcb = (struct bulk_cb_wrap *) us->iobuf; | ||
552 | struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra; | ||
553 | |||
554 | US_DEBUGP("transport --- ENE_SDInit\n"); | ||
555 | /* SD Init Part-1 */ | ||
556 | result = ene_load_bincode(us, SD_INIT1_PATTERN); | ||
557 | if (result != USB_STOR_XFER_GOOD) { | ||
558 | US_DEBUGP("Load SD Init Code Part-1 Fail !!\n"); | ||
559 | return USB_STOR_TRANSPORT_ERROR; | ||
560 | } | ||
561 | |||
562 | memset(bcb, 0, sizeof(struct bulk_cb_wrap)); | ||
563 | bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN); | ||
564 | bcb->Flags = 0x80; | ||
565 | bcb->CDB[0] = 0xF2; | ||
566 | |||
567 | result = ene_send_scsi_cmd(us, FDIR_READ, NULL, 0); | ||
568 | if (result != USB_STOR_XFER_GOOD) { | ||
569 | US_DEBUGP("Exection SD Init Code Fail !!\n"); | ||
570 | return USB_STOR_TRANSPORT_ERROR; | ||
571 | } | ||
572 | |||
573 | /* SD Init Part-2 */ | ||
574 | result = ene_load_bincode(us, SD_INIT2_PATTERN); | ||
575 | if (result != USB_STOR_XFER_GOOD) { | ||
576 | US_DEBUGP("Load SD Init Code Part-2 Fail !!\n"); | ||
577 | return USB_STOR_TRANSPORT_ERROR; | ||
578 | } | ||
579 | |||
580 | memset(bcb, 0, sizeof(struct bulk_cb_wrap)); | ||
581 | bcb->Signature = cpu_to_le32(US_BULK_CB_SIGN); | ||
582 | bcb->DataTransferLength = 0x200; | ||
583 | bcb->Flags = 0x80; | ||
584 | bcb->CDB[0] = 0xF1; | ||
585 | |||
586 | result = ene_send_scsi_cmd(us, FDIR_READ, &buf, 0); | ||
587 | if (result != USB_STOR_XFER_GOOD) { | ||
588 | US_DEBUGP("Exection SD Init Code Fail !!\n"); | ||
589 | return USB_STOR_TRANSPORT_ERROR; | ||
590 | } | ||
591 | |||
592 | info->SD_Status = *(struct SD_STATUS *)&buf[0]; | ||
593 | if (info->SD_Status.Insert && info->SD_Status.Ready) { | ||
594 | ene_get_card_status(us, (unsigned char *)&buf); | ||
595 | US_DEBUGP("Insert = %x\n", info->SD_Status.Insert); | ||
596 | US_DEBUGP("Ready = %x\n", info->SD_Status.Ready); | ||
597 | US_DEBUGP("IsMMC = %x\n", info->SD_Status.IsMMC); | ||
598 | US_DEBUGP("HiCapacity = %x\n", info->SD_Status.HiCapacity); | ||
599 | US_DEBUGP("HiSpeed = %x\n", info->SD_Status.HiSpeed); | ||
600 | US_DEBUGP("WtP = %x\n", info->SD_Status.WtP); | ||
601 | } else { | ||
602 | US_DEBUGP("SD Card Not Ready --- %x\n", buf[0]); | ||
603 | return USB_STOR_TRANSPORT_ERROR; | ||
604 | } | ||
605 | return USB_STOR_TRANSPORT_GOOD; | ||
606 | } | ||
607 | |||
608 | |||
609 | static int ene_init(struct us_data *us) | ||
610 | { | ||
611 | int result; | ||
612 | u8 misc_reg03 = 0; | ||
613 | struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra); | ||
614 | |||
615 | result = ene_get_card_type(us, REG_CARD_STATUS, &misc_reg03); | ||
616 | if (result != USB_STOR_XFER_GOOD) | ||
617 | return USB_STOR_TRANSPORT_ERROR; | ||
618 | |||
619 | if (misc_reg03 & 0x01) { | ||
620 | if (!info->SD_Status.Ready) { | ||
621 | result = ene_sd_init(us); | ||
622 | if (result != USB_STOR_XFER_GOOD) | ||
623 | return USB_STOR_TRANSPORT_ERROR; | ||
624 | } | ||
625 | } | ||
626 | |||
627 | return result; | ||
628 | } | ||
629 | |||
630 | /*----- sd_scsi_irp() ---------*/ | ||
631 | static int sd_scsi_irp(struct us_data *us, struct scsi_cmnd *srb) | ||
632 | { | ||
633 | int result; | ||
634 | struct ene_ub6250_info *info = (struct ene_ub6250_info *)us->extra; | ||
635 | |||
636 | info->SrbStatus = SS_SUCCESS; | ||
637 | switch (srb->cmnd[0]) { | ||
638 | case TEST_UNIT_READY: | ||
639 | result = sd_scsi_test_unit_ready(us, srb); | ||
640 | break; /* 0x00 */ | ||
641 | case INQUIRY: | ||
642 | result = sd_scsi_inquiry(us, srb); | ||
643 | break; /* 0x12 */ | ||
644 | case MODE_SENSE: | ||
645 | result = sd_scsi_mode_sense(us, srb); | ||
646 | break; /* 0x1A */ | ||
647 | /* | ||
648 | case START_STOP: | ||
649 | result = SD_SCSI_Start_Stop(us, srb); | ||
650 | break; //0x1B | ||
651 | */ | ||
652 | case READ_CAPACITY: | ||
653 | result = sd_scsi_read_capacity(us, srb); | ||
654 | break; /* 0x25 */ | ||
655 | case READ_10: | ||
656 | result = sd_scsi_read(us, srb); | ||
657 | break; /* 0x28 */ | ||
658 | case WRITE_10: | ||
659 | result = sd_scsi_write(us, srb); | ||
660 | break; /* 0x2A */ | ||
661 | default: | ||
662 | info->SrbStatus = SS_ILLEGAL_REQUEST; | ||
663 | result = USB_STOR_TRANSPORT_FAILED; | ||
664 | break; | ||
665 | } | ||
666 | return result; | ||
667 | } | ||
668 | |||
669 | static int ene_transport(struct scsi_cmnd *srb, struct us_data *us) | ||
670 | { | ||
671 | int result = 0; | ||
672 | struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra); | ||
673 | |||
674 | /*US_DEBUG(usb_stor_show_command(srb)); */ | ||
675 | scsi_set_resid(srb, 0); | ||
676 | if (unlikely(!info->SD_Status.Ready)) | ||
677 | result = ene_init(us); | ||
678 | else | ||
679 | result = sd_scsi_irp(us, srb); | ||
680 | |||
681 | return 0; | ||
682 | } | ||
683 | |||
684 | |||
685 | static int ene_ub6250_probe(struct usb_interface *intf, | ||
686 | const struct usb_device_id *id) | ||
687 | { | ||
688 | int result; | ||
689 | u8 misc_reg03 = 0; | ||
690 | struct us_data *us; | ||
691 | |||
692 | result = usb_stor_probe1(&us, intf, id, | ||
693 | (id - ene_ub6250_usb_ids) + ene_ub6250_unusual_dev_list); | ||
694 | if (result) | ||
695 | return result; | ||
696 | |||
697 | /* FIXME: where should the code alloc extra buf ? */ | ||
698 | if (!us->extra) { | ||
699 | us->extra = kzalloc(sizeof(struct ene_ub6250_info), GFP_KERNEL); | ||
700 | if (!us->extra) | ||
701 | return -ENOMEM; | ||
702 | us->extra_destructor = ene_ub6250_info_destructor; | ||
703 | } | ||
704 | |||
705 | us->transport_name = "ene_ub6250"; | ||
706 | us->transport = ene_transport; | ||
707 | us->max_lun = 0; | ||
708 | |||
709 | result = usb_stor_probe2(us); | ||
710 | if (result) | ||
711 | return result; | ||
712 | |||
713 | /* probe card type */ | ||
714 | result = ene_get_card_type(us, REG_CARD_STATUS, &misc_reg03); | ||
715 | if (result != USB_STOR_XFER_GOOD) { | ||
716 | usb_stor_disconnect(intf); | ||
717 | return USB_STOR_TRANSPORT_ERROR; | ||
718 | } | ||
719 | |||
720 | if (!(misc_reg03 & 0x01)) { | ||
721 | result = -ENODEV; | ||
722 | printk(KERN_NOTICE "ums_eneub6250: The driver only supports SD\ | ||
723 | card. To use SM/MS card, please build driver/stagging/keucr\n"); | ||
724 | usb_stor_disconnect(intf); | ||
725 | } | ||
726 | |||
727 | return result; | ||
728 | } | ||
729 | |||
730 | |||
731 | #ifdef CONFIG_PM | ||
732 | |||
733 | static int ene_ub6250_resume(struct usb_interface *iface) | ||
734 | { | ||
735 | u8 tmp = 0; | ||
736 | struct us_data *us = usb_get_intfdata(iface); | ||
737 | struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra); | ||
738 | |||
739 | mutex_lock(&us->dev_mutex); | ||
740 | |||
741 | US_DEBUGP("%s\n", __func__); | ||
742 | if (us->suspend_resume_hook) | ||
743 | (us->suspend_resume_hook)(us, US_RESUME); | ||
744 | |||
745 | mutex_unlock(&us->dev_mutex); | ||
746 | |||
747 | info->Power_IsResum = true; | ||
748 | /*info->SD_Status.Ready = 0; */ | ||
749 | info->SD_Status = *(struct SD_STATUS *)&tmp; | ||
750 | info->MS_Status = *(struct MS_STATUS *)&tmp; | ||
751 | info->SM_Status = *(struct SM_STATUS *)&tmp; | ||
752 | |||
753 | return 0; | ||
754 | } | ||
755 | |||
756 | static int ene_ub6250_reset_resume(struct usb_interface *iface) | ||
757 | { | ||
758 | u8 tmp = 0; | ||
759 | struct us_data *us = usb_get_intfdata(iface); | ||
760 | struct ene_ub6250_info *info = (struct ene_ub6250_info *)(us->extra); | ||
761 | US_DEBUGP("%s\n", __func__); | ||
762 | /* Report the reset to the SCSI core */ | ||
763 | usb_stor_reset_resume(iface); | ||
764 | |||
765 | /* FIXME: Notify the subdrivers that they need to reinitialize | ||
766 | * the device */ | ||
767 | info->Power_IsResum = true; | ||
768 | /*info->SD_Status.Ready = 0; */ | ||
769 | info->SD_Status = *(struct SD_STATUS *)&tmp; | ||
770 | info->MS_Status = *(struct MS_STATUS *)&tmp; | ||
771 | info->SM_Status = *(struct SM_STATUS *)&tmp; | ||
772 | |||
773 | return 0; | ||
774 | } | ||
775 | |||
776 | #else | ||
777 | |||
778 | #define ene_ub6250_resume NULL | ||
779 | #define ene_ub6250_reset_resume NULL | ||
780 | |||
781 | #endif | ||
782 | |||
783 | static struct usb_driver ene_ub6250_driver = { | ||
784 | .name = "ums_eneub6250", | ||
785 | .probe = ene_ub6250_probe, | ||
786 | .disconnect = usb_stor_disconnect, | ||
787 | .suspend = usb_stor_suspend, | ||
788 | .resume = ene_ub6250_resume, | ||
789 | .reset_resume = ene_ub6250_reset_resume, | ||
790 | .pre_reset = usb_stor_pre_reset, | ||
791 | .post_reset = usb_stor_post_reset, | ||
792 | .id_table = ene_ub6250_usb_ids, | ||
793 | .soft_unbind = 1, | ||
794 | }; | ||
795 | |||
796 | static int __init ene_ub6250_init(void) | ||
797 | { | ||
798 | return usb_register(&ene_ub6250_driver); | ||
799 | } | ||
800 | |||
801 | static void __exit ene_ub6250_exit(void) | ||
802 | { | ||
803 | usb_deregister(&ene_ub6250_driver); | ||
804 | } | ||
805 | |||
806 | module_init(ene_ub6250_init); | ||
807 | module_exit(ene_ub6250_exit); | ||
diff --git a/drivers/usb/storage/unusual_ene_ub6250.h b/drivers/usb/storage/unusual_ene_ub6250.h new file mode 100644 index 000000000000..5667f5d365c6 --- /dev/null +++ b/drivers/usb/storage/unusual_ene_ub6250.h | |||
@@ -0,0 +1,26 @@ | |||
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 | |||
18 | #if defined(CONFIG_USB_STORAGE_ENE_UB6250) || \ | ||
19 | defined(CONFIG_USB_STORAGE_ENE_UB6250_MODULE) | ||
20 | |||
21 | UNUSUAL_DEV(0x0cf2, 0x6250, 0x0000, 0x9999, | ||
22 | "ENE", | ||
23 | "ENE UB6250 reader", | ||
24 | USB_SC_DEVICE, USB_PR_DEVICE, NULL, 0), | ||
25 | |||
26 | #endif /* defined(CONFIG_USB_STORAGE_ENE_UB6250) || ... */ | ||
diff --git a/drivers/usb/storage/usual-tables.c b/drivers/usb/storage/usual-tables.c index 468bde7d1971..f0f60b6a2cfa 100644 --- a/drivers/usb/storage/usual-tables.c +++ b/drivers/usb/storage/usual-tables.c | |||
@@ -80,6 +80,7 @@ static struct ignore_entry ignore_ids[] = { | |||
80 | # include "unusual_alauda.h" | 80 | # include "unusual_alauda.h" |
81 | # include "unusual_cypress.h" | 81 | # include "unusual_cypress.h" |
82 | # include "unusual_datafab.h" | 82 | # include "unusual_datafab.h" |
83 | # include "unusual_ene_ub6250.h" | ||
83 | # include "unusual_freecom.h" | 84 | # include "unusual_freecom.h" |
84 | # include "unusual_isd200.h" | 85 | # include "unusual_isd200.h" |
85 | # include "unusual_jumpshot.h" | 86 | # include "unusual_jumpshot.h" |