blob: d3f1a087ecedf8545d4e765716a79c94406f6458 [file] [log] [blame]
Alex Dubovbaf85322008-02-09 10:20:54 -08001/*
2 * Sony MemoryStick Pro storage support
3 *
4 * Copyright (C) 2007 Alex Dubov <oakad@yahoo.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Special thanks to Carlos Corbacho for providing various MemoryStick cards
11 * that made this driver possible.
12 *
13 */
14
15#include <linux/blkdev.h>
16#include <linux/idr.h>
17#include <linux/hdreg.h>
18#include <linux/kthread.h>
Alex Dubov59367252008-03-10 11:43:42 -070019#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Arnd Bergmann6e9624b2010-08-07 18:25:34 +020021#include <linux/smp_lock.h>
Alex Dubovbaf85322008-02-09 10:20:54 -080022#include <linux/memstick.h>
23
24#define DRIVER_NAME "mspro_block"
Alex Dubovbaf85322008-02-09 10:20:54 -080025
26static int major;
27module_param(major, int, 0644);
28
29#define MSPRO_BLOCK_MAX_SEGS 32
30#define MSPRO_BLOCK_MAX_PAGES ((2 << 16) - 1)
31
32#define MSPRO_BLOCK_SIGNATURE 0xa5c3
33#define MSPRO_BLOCK_MAX_ATTRIBUTES 41
34
Alex Dubov8e82f8c2008-09-13 02:33:26 -070035#define MSPRO_BLOCK_PART_SHIFT 3
36
Alex Dubovbaf85322008-02-09 10:20:54 -080037enum {
38 MSPRO_BLOCK_ID_SYSINFO = 0x10,
39 MSPRO_BLOCK_ID_MODELNAME = 0x15,
40 MSPRO_BLOCK_ID_MBR = 0x20,
41 MSPRO_BLOCK_ID_PBR16 = 0x21,
42 MSPRO_BLOCK_ID_PBR32 = 0x22,
43 MSPRO_BLOCK_ID_SPECFILEVALUES1 = 0x25,
44 MSPRO_BLOCK_ID_SPECFILEVALUES2 = 0x26,
45 MSPRO_BLOCK_ID_DEVINFO = 0x30
46};
47
48struct mspro_sys_attr {
49 size_t size;
50 void *data;
51 unsigned char id;
52 char name[32];
53 struct device_attribute dev_attr;
54};
55
56struct mspro_attr_entry {
Harvey Harrison69347a22009-01-09 16:40:56 -080057 __be32 address;
58 __be32 size;
Alex Dubovbaf85322008-02-09 10:20:54 -080059 unsigned char id;
60 unsigned char reserved[3];
61} __attribute__((packed));
62
63struct mspro_attribute {
Harvey Harrison69347a22009-01-09 16:40:56 -080064 __be16 signature;
Alex Dubovbaf85322008-02-09 10:20:54 -080065 unsigned short version;
66 unsigned char count;
67 unsigned char reserved[11];
68 struct mspro_attr_entry entries[];
69} __attribute__((packed));
70
71struct mspro_sys_info {
72 unsigned char class;
73 unsigned char reserved0;
Harvey Harrison69347a22009-01-09 16:40:56 -080074 __be16 block_size;
75 __be16 block_count;
76 __be16 user_block_count;
77 __be16 page_size;
Alex Dubovbaf85322008-02-09 10:20:54 -080078 unsigned char reserved1[2];
79 unsigned char assembly_date[8];
Harvey Harrison69347a22009-01-09 16:40:56 -080080 __be32 serial_number;
Alex Dubovbaf85322008-02-09 10:20:54 -080081 unsigned char assembly_maker_code;
82 unsigned char assembly_model_code[3];
Harvey Harrison69347a22009-01-09 16:40:56 -080083 __be16 memory_maker_code;
84 __be16 memory_model_code;
Alex Dubovbaf85322008-02-09 10:20:54 -080085 unsigned char reserved2[4];
86 unsigned char vcc;
87 unsigned char vpp;
Harvey Harrison69347a22009-01-09 16:40:56 -080088 __be16 controller_number;
89 __be16 controller_function;
90 __be16 start_sector;
91 __be16 unit_size;
Alex Dubovbaf85322008-02-09 10:20:54 -080092 unsigned char ms_sub_class;
93 unsigned char reserved3[4];
94 unsigned char interface_type;
Harvey Harrison69347a22009-01-09 16:40:56 -080095 __be16 controller_code;
Alex Dubovbaf85322008-02-09 10:20:54 -080096 unsigned char format_type;
97 unsigned char reserved4;
98 unsigned char device_type;
99 unsigned char reserved5[7];
100 unsigned char mspro_id[16];
101 unsigned char reserved6[16];
102} __attribute__((packed));
103
104struct mspro_mbr {
105 unsigned char boot_partition;
106 unsigned char start_head;
107 unsigned char start_sector;
108 unsigned char start_cylinder;
109 unsigned char partition_type;
110 unsigned char end_head;
111 unsigned char end_sector;
112 unsigned char end_cylinder;
113 unsigned int start_sectors;
114 unsigned int sectors_per_partition;
115} __attribute__((packed));
116
Alex Dubovefb27422008-03-10 11:43:41 -0700117struct mspro_specfile {
118 char name[8];
119 char ext[3];
120 unsigned char attr;
121 unsigned char reserved[10];
122 unsigned short time;
123 unsigned short date;
124 unsigned short cluster;
125 unsigned int size;
126} __attribute__((packed));
127
Alex Dubovbaf85322008-02-09 10:20:54 -0800128struct mspro_devinfo {
Harvey Harrison69347a22009-01-09 16:40:56 -0800129 __be16 cylinders;
130 __be16 heads;
131 __be16 bytes_per_track;
132 __be16 bytes_per_sector;
133 __be16 sectors_per_track;
Alex Dubovbaf85322008-02-09 10:20:54 -0800134 unsigned char reserved[6];
135} __attribute__((packed));
136
137struct mspro_block_data {
138 struct memstick_dev *card;
139 unsigned int usage_count;
Alex Dubovead70772008-03-19 17:01:06 -0700140 unsigned int caps;
Alex Dubovbaf85322008-02-09 10:20:54 -0800141 struct gendisk *disk;
142 struct request_queue *queue;
Alex Dubovf1d82692008-07-25 19:45:02 -0700143 struct request *block_req;
Alex Dubovbaf85322008-02-09 10:20:54 -0800144 spinlock_t q_lock;
Alex Dubovbaf85322008-02-09 10:20:54 -0800145
146 unsigned short page_size;
147 unsigned short cylinders;
148 unsigned short heads;
149 unsigned short sectors_per_track;
150
151 unsigned char system;
152 unsigned char read_only:1,
Alex Dubovf1d82692008-07-25 19:45:02 -0700153 eject:1,
Alex Dubovbaf85322008-02-09 10:20:54 -0800154 has_request:1,
Alex Dubovf1d82692008-07-25 19:45:02 -0700155 data_dir:1,
156 active:1;
Alex Dubovbaf85322008-02-09 10:20:54 -0800157 unsigned char transfer_cmd;
158
159 int (*mrq_handler)(struct memstick_dev *card,
160 struct memstick_request **mrq);
161
162 struct attribute_group attr_group;
163
164 struct scatterlist req_sg[MSPRO_BLOCK_MAX_SEGS];
165 unsigned int seg_count;
166 unsigned int current_seg;
Alex Dubovf1d82692008-07-25 19:45:02 -0700167 unsigned int current_page;
Alex Dubovbaf85322008-02-09 10:20:54 -0800168};
169
170static DEFINE_IDR(mspro_block_disk_idr);
171static DEFINE_MUTEX(mspro_block_disk_lock);
172
Alex Dubovf1d82692008-07-25 19:45:02 -0700173static int mspro_block_complete_req(struct memstick_dev *card, int error);
174
Alex Dubovbaf85322008-02-09 10:20:54 -0800175/*** Block device ***/
176
Al Viro5d9a54b2008-03-02 10:31:38 -0500177static int mspro_block_bd_open(struct block_device *bdev, fmode_t mode)
Alex Dubovbaf85322008-02-09 10:20:54 -0800178{
Al Viro5d9a54b2008-03-02 10:31:38 -0500179 struct gendisk *disk = bdev->bd_disk;
Alex Dubovbaf85322008-02-09 10:20:54 -0800180 struct mspro_block_data *msb = disk->private_data;
181 int rc = -ENXIO;
182
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200183 lock_kernel();
Alex Dubovbaf85322008-02-09 10:20:54 -0800184 mutex_lock(&mspro_block_disk_lock);
185
186 if (msb && msb->card) {
187 msb->usage_count++;
Al Viro5d9a54b2008-03-02 10:31:38 -0500188 if ((mode & FMODE_WRITE) && msb->read_only)
Alex Dubovbaf85322008-02-09 10:20:54 -0800189 rc = -EROFS;
190 else
191 rc = 0;
192 }
193
194 mutex_unlock(&mspro_block_disk_lock);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200195 unlock_kernel();
Alex Dubovbaf85322008-02-09 10:20:54 -0800196
197 return rc;
198}
199
200
201static int mspro_block_disk_release(struct gendisk *disk)
202{
203 struct mspro_block_data *msb = disk->private_data;
Tejun Heof331c022008-09-03 09:01:48 +0200204 int disk_id = MINOR(disk_devt(disk)) >> MSPRO_BLOCK_PART_SHIFT;
Alex Dubovbaf85322008-02-09 10:20:54 -0800205
206 mutex_lock(&mspro_block_disk_lock);
207
Alex Dubovf1d82692008-07-25 19:45:02 -0700208 if (msb) {
209 if (msb->usage_count)
210 msb->usage_count--;
211
Alex Dubovbaf85322008-02-09 10:20:54 -0800212 if (!msb->usage_count) {
213 kfree(msb);
214 disk->private_data = NULL;
215 idr_remove(&mspro_block_disk_idr, disk_id);
216 put_disk(disk);
217 }
218 }
219
220 mutex_unlock(&mspro_block_disk_lock);
221
222 return 0;
223}
224
Al Viro5d9a54b2008-03-02 10:31:38 -0500225static int mspro_block_bd_release(struct gendisk *disk, fmode_t mode)
Alex Dubovbaf85322008-02-09 10:20:54 -0800226{
Arnd Bergmann6e9624b2010-08-07 18:25:34 +0200227 int ret;
228 lock_kernel();
229 ret = mspro_block_disk_release(disk);
230 unlock_kernel();
231 return ret;
Alex Dubovbaf85322008-02-09 10:20:54 -0800232}
233
234static int mspro_block_bd_getgeo(struct block_device *bdev,
235 struct hd_geometry *geo)
236{
237 struct mspro_block_data *msb = bdev->bd_disk->private_data;
238
239 geo->heads = msb->heads;
240 geo->sectors = msb->sectors_per_track;
241 geo->cylinders = msb->cylinders;
242
243 return 0;
244}
245
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700246static const struct block_device_operations ms_block_bdops = {
Al Viro5d9a54b2008-03-02 10:31:38 -0500247 .open = mspro_block_bd_open,
248 .release = mspro_block_bd_release,
Alex Dubovbaf85322008-02-09 10:20:54 -0800249 .getgeo = mspro_block_bd_getgeo,
250 .owner = THIS_MODULE
251};
252
253/*** Information ***/
254
255static struct mspro_sys_attr *mspro_from_sysfs_attr(struct attribute *attr)
256{
257 struct device_attribute *dev_attr
258 = container_of(attr, struct device_attribute, attr);
259 return container_of(dev_attr, struct mspro_sys_attr, dev_attr);
260}
261
262static const char *mspro_block_attr_name(unsigned char tag)
263{
264 switch (tag) {
265 case MSPRO_BLOCK_ID_SYSINFO:
266 return "attr_sysinfo";
267 case MSPRO_BLOCK_ID_MODELNAME:
268 return "attr_modelname";
269 case MSPRO_BLOCK_ID_MBR:
270 return "attr_mbr";
271 case MSPRO_BLOCK_ID_PBR16:
272 return "attr_pbr16";
273 case MSPRO_BLOCK_ID_PBR32:
274 return "attr_pbr32";
275 case MSPRO_BLOCK_ID_SPECFILEVALUES1:
276 return "attr_specfilevalues1";
277 case MSPRO_BLOCK_ID_SPECFILEVALUES2:
278 return "attr_specfilevalues2";
279 case MSPRO_BLOCK_ID_DEVINFO:
280 return "attr_devinfo";
281 default:
282 return NULL;
283 };
284}
285
286typedef ssize_t (*sysfs_show_t)(struct device *dev,
287 struct device_attribute *attr,
288 char *buffer);
289
290static ssize_t mspro_block_attr_show_default(struct device *dev,
291 struct device_attribute *attr,
292 char *buffer)
293{
294 struct mspro_sys_attr *s_attr = container_of(attr,
295 struct mspro_sys_attr,
296 dev_attr);
297
298 ssize_t cnt, rc = 0;
299
300 for (cnt = 0; cnt < s_attr->size; cnt++) {
301 if (cnt && !(cnt % 16)) {
302 if (PAGE_SIZE - rc)
303 buffer[rc++] = '\n';
304 }
305
306 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "%02x ",
307 ((unsigned char *)s_attr->data)[cnt]);
308 }
309 return rc;
310}
311
312static ssize_t mspro_block_attr_show_sysinfo(struct device *dev,
313 struct device_attribute *attr,
314 char *buffer)
315{
316 struct mspro_sys_attr *x_attr = container_of(attr,
317 struct mspro_sys_attr,
318 dev_attr);
319 struct mspro_sys_info *x_sys = x_attr->data;
320 ssize_t rc = 0;
Alex Dubov251cc9b2008-03-10 11:43:42 -0700321 int date_tz = 0, date_tz_f = 0;
322
323 if (x_sys->assembly_date[0] > 0x80U) {
324 date_tz = (~x_sys->assembly_date[0]) + 1;
325 date_tz_f = date_tz & 3;
326 date_tz >>= 2;
327 date_tz = -date_tz;
328 date_tz_f *= 15;
329 } else if (x_sys->assembly_date[0] < 0x80U) {
330 date_tz = x_sys->assembly_date[0];
331 date_tz_f = date_tz & 3;
332 date_tz >>= 2;
333 date_tz_f *= 15;
334 }
Alex Dubovbaf85322008-02-09 10:20:54 -0800335
336 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "class: %x\n",
337 x_sys->class);
338 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "block size: %x\n",
339 be16_to_cpu(x_sys->block_size));
340 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "block count: %x\n",
341 be16_to_cpu(x_sys->block_count));
342 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "user block count: %x\n",
343 be16_to_cpu(x_sys->user_block_count));
344 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "page size: %x\n",
345 be16_to_cpu(x_sys->page_size));
346 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "assembly date: "
Alex Dubov251cc9b2008-03-10 11:43:42 -0700347 "GMT%+d:%d %04u-%02u-%02u %02u:%02u:%02u\n",
348 date_tz, date_tz_f,
Harvey Harrison69347a22009-01-09 16:40:56 -0800349 be16_to_cpup((__be16 *)&x_sys->assembly_date[1]),
Alex Dubovbaf85322008-02-09 10:20:54 -0800350 x_sys->assembly_date[3], x_sys->assembly_date[4],
351 x_sys->assembly_date[5], x_sys->assembly_date[6],
352 x_sys->assembly_date[7]);
353 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "serial number: %x\n",
354 be32_to_cpu(x_sys->serial_number));
355 rc += scnprintf(buffer + rc, PAGE_SIZE - rc,
356 "assembly maker code: %x\n",
357 x_sys->assembly_maker_code);
358 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "assembly model code: "
359 "%02x%02x%02x\n", x_sys->assembly_model_code[0],
360 x_sys->assembly_model_code[1],
361 x_sys->assembly_model_code[2]);
362 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "memory maker code: %x\n",
363 be16_to_cpu(x_sys->memory_maker_code));
364 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "memory model code: %x\n",
365 be16_to_cpu(x_sys->memory_model_code));
366 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "vcc: %x\n",
367 x_sys->vcc);
368 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "vpp: %x\n",
369 x_sys->vpp);
370 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "controller number: %x\n",
371 be16_to_cpu(x_sys->controller_number));
372 rc += scnprintf(buffer + rc, PAGE_SIZE - rc,
373 "controller function: %x\n",
374 be16_to_cpu(x_sys->controller_function));
375 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "start sector: %x\n",
376 be16_to_cpu(x_sys->start_sector));
377 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "unit size: %x\n",
378 be16_to_cpu(x_sys->unit_size));
379 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "sub class: %x\n",
380 x_sys->ms_sub_class);
381 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "interface type: %x\n",
382 x_sys->interface_type);
383 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "controller code: %x\n",
384 be16_to_cpu(x_sys->controller_code));
385 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "format type: %x\n",
386 x_sys->format_type);
387 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "device type: %x\n",
388 x_sys->device_type);
389 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "mspro id: %s\n",
390 x_sys->mspro_id);
391 return rc;
392}
393
394static ssize_t mspro_block_attr_show_modelname(struct device *dev,
395 struct device_attribute *attr,
396 char *buffer)
397{
398 struct mspro_sys_attr *s_attr = container_of(attr,
399 struct mspro_sys_attr,
400 dev_attr);
401
402 return scnprintf(buffer, PAGE_SIZE, "%s", (char *)s_attr->data);
403}
404
405static ssize_t mspro_block_attr_show_mbr(struct device *dev,
406 struct device_attribute *attr,
407 char *buffer)
408{
409 struct mspro_sys_attr *x_attr = container_of(attr,
410 struct mspro_sys_attr,
411 dev_attr);
412 struct mspro_mbr *x_mbr = x_attr->data;
413 ssize_t rc = 0;
414
415 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "boot partition: %x\n",
416 x_mbr->boot_partition);
417 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "start head: %x\n",
418 x_mbr->start_head);
419 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "start sector: %x\n",
420 x_mbr->start_sector);
421 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "start cylinder: %x\n",
422 x_mbr->start_cylinder);
423 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "partition type: %x\n",
424 x_mbr->partition_type);
425 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "end head: %x\n",
426 x_mbr->end_head);
427 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "end sector: %x\n",
428 x_mbr->end_sector);
429 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "end cylinder: %x\n",
430 x_mbr->end_cylinder);
431 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "start sectors: %x\n",
432 x_mbr->start_sectors);
433 rc += scnprintf(buffer + rc, PAGE_SIZE - rc,
434 "sectors per partition: %x\n",
435 x_mbr->sectors_per_partition);
436 return rc;
437}
438
Alex Dubovefb27422008-03-10 11:43:41 -0700439static ssize_t mspro_block_attr_show_specfile(struct device *dev,
440 struct device_attribute *attr,
441 char *buffer)
442{
443 struct mspro_sys_attr *x_attr = container_of(attr,
444 struct mspro_sys_attr,
445 dev_attr);
446 struct mspro_specfile *x_spfile = x_attr->data;
447 char name[9], ext[4];
448 ssize_t rc = 0;
449
450 memcpy(name, x_spfile->name, 8);
451 name[8] = 0;
452 memcpy(ext, x_spfile->ext, 3);
453 ext[3] = 0;
454
455 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "name: %s\n", name);
456 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "ext: %s\n", ext);
457 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "attribute: %x\n",
458 x_spfile->attr);
459 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "time: %d:%d:%d\n",
460 x_spfile->time >> 11,
461 (x_spfile->time >> 5) & 0x3f,
462 (x_spfile->time & 0x1f) * 2);
463 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "date: %d-%d-%d\n",
464 (x_spfile->date >> 9) + 1980,
465 (x_spfile->date >> 5) & 0xf,
466 x_spfile->date & 0x1f);
467 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "start cluster: %x\n",
468 x_spfile->cluster);
469 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "size: %x\n",
470 x_spfile->size);
471 return rc;
472}
473
Alex Dubovbaf85322008-02-09 10:20:54 -0800474static ssize_t mspro_block_attr_show_devinfo(struct device *dev,
475 struct device_attribute *attr,
476 char *buffer)
477{
478 struct mspro_sys_attr *x_attr = container_of(attr,
479 struct mspro_sys_attr,
480 dev_attr);
481 struct mspro_devinfo *x_devinfo = x_attr->data;
482 ssize_t rc = 0;
483
484 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "cylinders: %x\n",
485 be16_to_cpu(x_devinfo->cylinders));
486 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "heads: %x\n",
487 be16_to_cpu(x_devinfo->heads));
488 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "bytes per track: %x\n",
489 be16_to_cpu(x_devinfo->bytes_per_track));
490 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "bytes per sector: %x\n",
491 be16_to_cpu(x_devinfo->bytes_per_sector));
492 rc += scnprintf(buffer + rc, PAGE_SIZE - rc, "sectors per track: %x\n",
493 be16_to_cpu(x_devinfo->sectors_per_track));
494 return rc;
495}
496
497static sysfs_show_t mspro_block_attr_show(unsigned char tag)
498{
499 switch (tag) {
500 case MSPRO_BLOCK_ID_SYSINFO:
501 return mspro_block_attr_show_sysinfo;
502 case MSPRO_BLOCK_ID_MODELNAME:
503 return mspro_block_attr_show_modelname;
504 case MSPRO_BLOCK_ID_MBR:
505 return mspro_block_attr_show_mbr;
Alex Dubovefb27422008-03-10 11:43:41 -0700506 case MSPRO_BLOCK_ID_SPECFILEVALUES1:
507 case MSPRO_BLOCK_ID_SPECFILEVALUES2:
508 return mspro_block_attr_show_specfile;
Alex Dubovbaf85322008-02-09 10:20:54 -0800509 case MSPRO_BLOCK_ID_DEVINFO:
510 return mspro_block_attr_show_devinfo;
511 default:
512 return mspro_block_attr_show_default;
513 }
514}
515
516/*** Protocol handlers ***/
517
518/*
519 * Functions prefixed with "h_" are protocol callbacks. They can be called from
520 * interrupt context. Return value of 0 means that request processing is still
521 * ongoing, while special error value of -EAGAIN means that current request is
522 * finished (and request processor should come back some time later).
523 */
524
525static int h_mspro_block_req_init(struct memstick_dev *card,
526 struct memstick_request **mrq)
527{
528 struct mspro_block_data *msb = memstick_get_drvdata(card);
529
530 *mrq = &card->current_mrq;
531 card->next_request = msb->mrq_handler;
532 return 0;
533}
534
535static int h_mspro_block_default(struct memstick_dev *card,
536 struct memstick_request **mrq)
537{
Alex Dubovf1d82692008-07-25 19:45:02 -0700538 return mspro_block_complete_req(card, (*mrq)->error);
539}
540
541static int h_mspro_block_default_bad(struct memstick_dev *card,
542 struct memstick_request **mrq)
543{
544 return -ENXIO;
Alex Dubovbaf85322008-02-09 10:20:54 -0800545}
546
547static int h_mspro_block_get_ro(struct memstick_dev *card,
548 struct memstick_request **mrq)
549{
550 struct mspro_block_data *msb = memstick_get_drvdata(card);
551
Alex Dubovf1d82692008-07-25 19:45:02 -0700552 if (!(*mrq)->error) {
553 if ((*mrq)->data[offsetof(struct ms_status_register, status0)]
554 & MEMSTICK_STATUS0_WP)
555 msb->read_only = 1;
556 else
557 msb->read_only = 0;
Alex Dubovbaf85322008-02-09 10:20:54 -0800558 }
559
Alex Dubovf1d82692008-07-25 19:45:02 -0700560 return mspro_block_complete_req(card, (*mrq)->error);
Alex Dubovbaf85322008-02-09 10:20:54 -0800561}
562
563static int h_mspro_block_wait_for_ced(struct memstick_dev *card,
564 struct memstick_request **mrq)
565{
Alex Dubovbaf85322008-02-09 10:20:54 -0800566 dev_dbg(&card->dev, "wait for ced: value %x\n", (*mrq)->data[0]);
567
Alex Dubovf1d82692008-07-25 19:45:02 -0700568 if (!(*mrq)->error) {
569 if ((*mrq)->data[0] & (MEMSTICK_INT_CMDNAK | MEMSTICK_INT_ERR))
570 (*mrq)->error = -EFAULT;
571 else if (!((*mrq)->data[0] & MEMSTICK_INT_CED))
572 return 0;
Alex Dubovbaf85322008-02-09 10:20:54 -0800573 }
574
Alex Dubovf1d82692008-07-25 19:45:02 -0700575 return mspro_block_complete_req(card, (*mrq)->error);
Alex Dubovbaf85322008-02-09 10:20:54 -0800576}
577
578static int h_mspro_block_transfer_data(struct memstick_dev *card,
579 struct memstick_request **mrq)
580{
Alex Dubovbaf85322008-02-09 10:20:54 -0800581 struct mspro_block_data *msb = memstick_get_drvdata(card);
582 unsigned char t_val = 0;
583 struct scatterlist t_sg = { 0 };
584 size_t t_offset;
585
Alex Dubovf1d82692008-07-25 19:45:02 -0700586 if ((*mrq)->error)
587 return mspro_block_complete_req(card, (*mrq)->error);
Alex Dubovbaf85322008-02-09 10:20:54 -0800588
589 switch ((*mrq)->tpc) {
590 case MS_TPC_WRITE_REG:
591 memstick_init_req(*mrq, MS_TPC_SET_CMD, &msb->transfer_cmd, 1);
Alex Dubovead70772008-03-19 17:01:06 -0700592 (*mrq)->need_card_int = 1;
Alex Dubovbaf85322008-02-09 10:20:54 -0800593 return 0;
594 case MS_TPC_SET_CMD:
595 t_val = (*mrq)->int_reg;
596 memstick_init_req(*mrq, MS_TPC_GET_INT, NULL, 1);
Alex Dubovead70772008-03-19 17:01:06 -0700597 if (msb->caps & MEMSTICK_CAP_AUTO_GET_INT)
Alex Dubovbaf85322008-02-09 10:20:54 -0800598 goto has_int_reg;
599 return 0;
600 case MS_TPC_GET_INT:
601 t_val = (*mrq)->data[0];
602has_int_reg:
603 if (t_val & (MEMSTICK_INT_CMDNAK | MEMSTICK_INT_ERR)) {
604 t_val = MSPRO_CMD_STOP;
605 memstick_init_req(*mrq, MS_TPC_SET_CMD, &t_val, 1);
606 card->next_request = h_mspro_block_default;
607 return 0;
608 }
609
610 if (msb->current_page
611 == (msb->req_sg[msb->current_seg].length
612 / msb->page_size)) {
613 msb->current_page = 0;
614 msb->current_seg++;
615
616 if (msb->current_seg == msb->seg_count) {
617 if (t_val & MEMSTICK_INT_CED) {
Alex Dubovf1d82692008-07-25 19:45:02 -0700618 return mspro_block_complete_req(card,
619 0);
Alex Dubovbaf85322008-02-09 10:20:54 -0800620 } else {
621 card->next_request
622 = h_mspro_block_wait_for_ced;
623 memstick_init_req(*mrq, MS_TPC_GET_INT,
624 NULL, 1);
625 return 0;
626 }
627 }
628 }
629
630 if (!(t_val & MEMSTICK_INT_BREQ)) {
631 memstick_init_req(*mrq, MS_TPC_GET_INT, NULL, 1);
632 return 0;
633 }
634
635 t_offset = msb->req_sg[msb->current_seg].offset;
636 t_offset += msb->current_page * msb->page_size;
637
638 sg_set_page(&t_sg,
639 nth_page(sg_page(&(msb->req_sg[msb->current_seg])),
640 t_offset >> PAGE_SHIFT),
641 msb->page_size, offset_in_page(t_offset));
642
643 memstick_init_req_sg(*mrq, msb->data_dir == READ
644 ? MS_TPC_READ_LONG_DATA
645 : MS_TPC_WRITE_LONG_DATA,
646 &t_sg);
Alex Dubovead70772008-03-19 17:01:06 -0700647 (*mrq)->need_card_int = 1;
Alex Dubovbaf85322008-02-09 10:20:54 -0800648 return 0;
649 case MS_TPC_READ_LONG_DATA:
650 case MS_TPC_WRITE_LONG_DATA:
651 msb->current_page++;
Alex Dubovead70772008-03-19 17:01:06 -0700652 if (msb->caps & MEMSTICK_CAP_AUTO_GET_INT) {
Alex Dubovbaf85322008-02-09 10:20:54 -0800653 t_val = (*mrq)->int_reg;
654 goto has_int_reg;
655 } else {
656 memstick_init_req(*mrq, MS_TPC_GET_INT, NULL, 1);
657 return 0;
658 }
659
660 default:
661 BUG();
662 }
663}
664
665/*** Data transfer ***/
666
Alex Dubovf1d82692008-07-25 19:45:02 -0700667static int mspro_block_issue_req(struct memstick_dev *card, int chunk)
Alex Dubovbaf85322008-02-09 10:20:54 -0800668{
669 struct mspro_block_data *msb = memstick_get_drvdata(card);
Alex Dubovbaf85322008-02-09 10:20:54 -0800670 sector_t t_sec;
Alex Dubovf1d82692008-07-25 19:45:02 -0700671 unsigned int count;
672 struct mspro_param_register param;
Alex Dubovbaf85322008-02-09 10:20:54 -0800673
Alex Dubovf1d82692008-07-25 19:45:02 -0700674try_again:
675 while (chunk) {
676 msb->current_page = 0;
Alex Dubovbaf85322008-02-09 10:20:54 -0800677 msb->current_seg = 0;
Alex Dubovf1d82692008-07-25 19:45:02 -0700678 msb->seg_count = blk_rq_map_sg(msb->block_req->q,
679 msb->block_req,
680 msb->req_sg);
Alex Dubovbaf85322008-02-09 10:20:54 -0800681
Alex Dubovf1d82692008-07-25 19:45:02 -0700682 if (!msb->seg_count) {
Tejun Heo296b2f62009-05-08 11:54:15 +0900683 chunk = __blk_end_request_cur(msb->block_req, -ENOMEM);
Alex Dubovf1d82692008-07-25 19:45:02 -0700684 continue;
685 }
Alex Dubovbaf85322008-02-09 10:20:54 -0800686
Tejun Heo83096eb2009-05-07 22:24:39 +0900687 t_sec = blk_rq_pos(msb->block_req) << 9;
Alex Dubovf1d82692008-07-25 19:45:02 -0700688 sector_div(t_sec, msb->page_size);
Alex Dubovbaf85322008-02-09 10:20:54 -0800689
Tejun Heo1011c1b2009-05-07 22:24:45 +0900690 count = blk_rq_bytes(msb->block_req);
Alex Dubovf1d82692008-07-25 19:45:02 -0700691 count /= msb->page_size;
Alex Dubovbaf85322008-02-09 10:20:54 -0800692
Alex Dubovf1d82692008-07-25 19:45:02 -0700693 param.system = msb->system;
694 param.data_count = cpu_to_be16(count);
695 param.data_address = cpu_to_be32((uint32_t)t_sec);
696 param.tpc_param = 0;
Alex Dubovbaf85322008-02-09 10:20:54 -0800697
Alex Dubovf1d82692008-07-25 19:45:02 -0700698 msb->data_dir = rq_data_dir(msb->block_req);
699 msb->transfer_cmd = msb->data_dir == READ
700 ? MSPRO_CMD_READ_DATA
701 : MSPRO_CMD_WRITE_DATA;
Alex Dubovbaf85322008-02-09 10:20:54 -0800702
Alex Dubovf1d82692008-07-25 19:45:02 -0700703 dev_dbg(&card->dev, "data transfer: cmd %x, "
704 "lba %x, count %x\n", msb->transfer_cmd,
705 be32_to_cpu(param.data_address), count);
Alex Dubovbaf85322008-02-09 10:20:54 -0800706
Alex Dubovf1d82692008-07-25 19:45:02 -0700707 card->next_request = h_mspro_block_req_init;
708 msb->mrq_handler = h_mspro_block_transfer_data;
709 memstick_init_req(&card->current_mrq, MS_TPC_WRITE_REG,
710 &param, sizeof(param));
711 memstick_new_req(card->host);
712 return 0;
713 }
Alex Dubovbaf85322008-02-09 10:20:54 -0800714
Tejun Heo9934c8c2009-05-08 11:54:16 +0900715 dev_dbg(&card->dev, "blk_fetch\n");
716 msb->block_req = blk_fetch_request(msb->queue);
Alex Dubovf1d82692008-07-25 19:45:02 -0700717 if (!msb->block_req) {
718 dev_dbg(&card->dev, "issue end\n");
719 return -EAGAIN;
720 }
Alex Dubovbaf85322008-02-09 10:20:54 -0800721
Alex Dubovf1d82692008-07-25 19:45:02 -0700722 dev_dbg(&card->dev, "trying again\n");
723 chunk = 1;
724 goto try_again;
Alex Dubovbaf85322008-02-09 10:20:54 -0800725}
726
Alex Dubovf1d82692008-07-25 19:45:02 -0700727static int mspro_block_complete_req(struct memstick_dev *card, int error)
Alex Dubovbaf85322008-02-09 10:20:54 -0800728{
Alex Dubovf1d82692008-07-25 19:45:02 -0700729 struct mspro_block_data *msb = memstick_get_drvdata(card);
730 int chunk, cnt;
731 unsigned int t_len = 0;
Alex Dubovbaf85322008-02-09 10:20:54 -0800732 unsigned long flags;
733
734 spin_lock_irqsave(&msb->q_lock, flags);
Alex Dubovf1d82692008-07-25 19:45:02 -0700735 dev_dbg(&card->dev, "complete %d, %d\n", msb->has_request ? 1 : 0,
736 error);
737
738 if (msb->has_request) {
739 /* Nothing to do - not really an error */
740 if (error == -EAGAIN)
741 error = 0;
742
743 if (error || (card->current_mrq.tpc == MSPRO_CMD_STOP)) {
744 if (msb->data_dir == READ) {
745 for (cnt = 0; cnt < msb->current_seg; cnt++)
746 t_len += msb->req_sg[cnt].length
747 / msb->page_size;
748
749 if (msb->current_page)
750 t_len += msb->current_page - 1;
751
752 t_len *= msb->page_size;
753 }
754 } else
Tejun Heo1011c1b2009-05-07 22:24:45 +0900755 t_len = blk_rq_bytes(msb->block_req);
Alex Dubovf1d82692008-07-25 19:45:02 -0700756
757 dev_dbg(&card->dev, "transferred %x (%d)\n", t_len, error);
758
759 if (error && !t_len)
760 t_len = blk_rq_cur_bytes(msb->block_req);
761
762 chunk = __blk_end_request(msb->block_req, error, t_len);
763
764 error = mspro_block_issue_req(card, chunk);
765
766 if (!error)
767 goto out;
768 else
769 msb->has_request = 0;
770 } else {
771 if (!error)
772 error = -EAGAIN;
773 }
774
775 card->next_request = h_mspro_block_default_bad;
776 complete_all(&card->mrq_complete);
777out:
Alex Dubovbaf85322008-02-09 10:20:54 -0800778 spin_unlock_irqrestore(&msb->q_lock, flags);
Alex Dubovf1d82692008-07-25 19:45:02 -0700779 return error;
Alex Dubovbaf85322008-02-09 10:20:54 -0800780}
781
Alex Dubov17017d82008-07-25 19:45:01 -0700782static void mspro_block_stop(struct memstick_dev *card)
783{
784 struct mspro_block_data *msb = memstick_get_drvdata(card);
785 int rc = 0;
786 unsigned long flags;
787
788 while (1) {
789 spin_lock_irqsave(&msb->q_lock, flags);
790 if (!msb->has_request) {
791 blk_stop_queue(msb->queue);
792 rc = 1;
793 }
794 spin_unlock_irqrestore(&msb->q_lock, flags);
795
796 if (rc)
797 break;
798
799 wait_for_completion(&card->mrq_complete);
800 }
801}
802
803static void mspro_block_start(struct memstick_dev *card)
804{
805 struct mspro_block_data *msb = memstick_get_drvdata(card);
806 unsigned long flags;
807
808 spin_lock_irqsave(&msb->q_lock, flags);
809 blk_start_queue(msb->queue);
810 spin_unlock_irqrestore(&msb->q_lock, flags);
811}
812
Alex Dubovf1d82692008-07-25 19:45:02 -0700813static int mspro_block_prepare_req(struct request_queue *q, struct request *req)
Alex Dubovbaf85322008-02-09 10:20:54 -0800814{
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200815 if (req->cmd_type != REQ_TYPE_FS &&
816 req->cmd_type != REQ_TYPE_BLOCK_PC) {
Alex Dubovf1d82692008-07-25 19:45:02 -0700817 blk_dump_rq_flags(req, "MSPro unsupported request");
818 return BLKPREP_KILL;
Alex Dubovbaf85322008-02-09 10:20:54 -0800819 }
Alex Dubovf1d82692008-07-25 19:45:02 -0700820
821 req->cmd_flags |= REQ_DONTPREP;
822
823 return BLKPREP_OK;
Alex Dubovbaf85322008-02-09 10:20:54 -0800824}
825
Alex Dubovf1d82692008-07-25 19:45:02 -0700826static void mspro_block_submit_req(struct request_queue *q)
Alex Dubovbaf85322008-02-09 10:20:54 -0800827{
828 struct memstick_dev *card = q->queuedata;
829 struct mspro_block_data *msb = memstick_get_drvdata(card);
830 struct request *req = NULL;
831
Alex Dubovf1d82692008-07-25 19:45:02 -0700832 if (msb->has_request)
833 return;
834
835 if (msb->eject) {
Tejun Heo9934c8c2009-05-08 11:54:16 +0900836 while ((req = blk_fetch_request(q)) != NULL)
Tejun Heo40cbbb72009-04-23 11:05:19 +0900837 __blk_end_request_all(req, -ENODEV);
Alex Dubovf1d82692008-07-25 19:45:02 -0700838
839 return;
Alex Dubovbaf85322008-02-09 10:20:54 -0800840 }
Alex Dubovf1d82692008-07-25 19:45:02 -0700841
842 msb->has_request = 1;
843 if (mspro_block_issue_req(card, 0))
844 msb->has_request = 0;
Alex Dubovbaf85322008-02-09 10:20:54 -0800845}
846
847/*** Initialization ***/
848
849static int mspro_block_wait_for_ced(struct memstick_dev *card)
850{
851 struct mspro_block_data *msb = memstick_get_drvdata(card);
852
853 card->next_request = h_mspro_block_req_init;
854 msb->mrq_handler = h_mspro_block_wait_for_ced;
855 memstick_init_req(&card->current_mrq, MS_TPC_GET_INT, NULL, 1);
856 memstick_new_req(card->host);
857 wait_for_completion(&card->mrq_complete);
858 return card->current_mrq.error;
859}
860
Alex Dubov962ee1b2008-03-19 17:01:07 -0700861static int mspro_block_set_interface(struct memstick_dev *card,
862 unsigned char sys_reg)
Alex Dubovbaf85322008-02-09 10:20:54 -0800863{
864 struct memstick_host *host = card->host;
865 struct mspro_block_data *msb = memstick_get_drvdata(card);
866 struct mspro_param_register param = {
Alex Dubov962ee1b2008-03-19 17:01:07 -0700867 .system = sys_reg,
Alex Dubovbaf85322008-02-09 10:20:54 -0800868 .data_count = 0,
869 .data_address = 0,
Alex Dubove1f19992008-03-10 11:43:37 -0700870 .tpc_param = 0
Alex Dubovbaf85322008-02-09 10:20:54 -0800871 };
872
873 card->next_request = h_mspro_block_req_init;
874 msb->mrq_handler = h_mspro_block_default;
875 memstick_init_req(&card->current_mrq, MS_TPC_WRITE_REG, &param,
876 sizeof(param));
877 memstick_new_req(host);
878 wait_for_completion(&card->mrq_complete);
Alex Dubov962ee1b2008-03-19 17:01:07 -0700879 return card->current_mrq.error;
880}
881
882static int mspro_block_switch_interface(struct memstick_dev *card)
883{
884 struct memstick_host *host = card->host;
885 struct mspro_block_data *msb = memstick_get_drvdata(card);
886 int rc = 0;
887
Alex Dubov8e82f8c2008-09-13 02:33:26 -0700888try_again:
Alex Dubov962ee1b2008-03-19 17:01:07 -0700889 if (msb->caps & MEMSTICK_CAP_PAR4)
890 rc = mspro_block_set_interface(card, MEMSTICK_SYS_PAR4);
891 else
892 return 0;
893
894 if (rc) {
895 printk(KERN_WARNING
896 "%s: could not switch to 4-bit mode, error %d\n",
Kay Sievers0252c3b2009-01-06 10:44:38 -0800897 dev_name(&card->dev), rc);
Alex Dubov962ee1b2008-03-19 17:01:07 -0700898 return 0;
899 }
Alex Dubovbaf85322008-02-09 10:20:54 -0800900
Alex Dubove1f19992008-03-10 11:43:37 -0700901 msb->system = MEMSTICK_SYS_PAR4;
902 host->set_param(host, MEMSTICK_INTERFACE, MEMSTICK_PAR4);
Alex Dubov962ee1b2008-03-19 17:01:07 -0700903 printk(KERN_INFO "%s: switching to 4-bit parallel mode\n",
Kay Sievers0252c3b2009-01-06 10:44:38 -0800904 dev_name(&card->dev));
Alex Dubov962ee1b2008-03-19 17:01:07 -0700905
906 if (msb->caps & MEMSTICK_CAP_PAR8) {
907 rc = mspro_block_set_interface(card, MEMSTICK_SYS_PAR8);
908
909 if (!rc) {
910 msb->system = MEMSTICK_SYS_PAR8;
911 host->set_param(host, MEMSTICK_INTERFACE,
912 MEMSTICK_PAR8);
913 printk(KERN_INFO
914 "%s: switching to 8-bit parallel mode\n",
Kay Sievers0252c3b2009-01-06 10:44:38 -0800915 dev_name(&card->dev));
Alex Dubov962ee1b2008-03-19 17:01:07 -0700916 } else
917 printk(KERN_WARNING
918 "%s: could not switch to 8-bit mode, error %d\n",
Kay Sievers0252c3b2009-01-06 10:44:38 -0800919 dev_name(&card->dev), rc);
Alex Dubov962ee1b2008-03-19 17:01:07 -0700920 }
Alex Dubovbaf85322008-02-09 10:20:54 -0800921
922 card->next_request = h_mspro_block_req_init;
923 msb->mrq_handler = h_mspro_block_default;
924 memstick_init_req(&card->current_mrq, MS_TPC_GET_INT, NULL, 1);
925 memstick_new_req(card->host);
926 wait_for_completion(&card->mrq_complete);
Alex Dubov962ee1b2008-03-19 17:01:07 -0700927 rc = card->current_mrq.error;
Alex Dubovbaf85322008-02-09 10:20:54 -0800928
Alex Dubov962ee1b2008-03-19 17:01:07 -0700929 if (rc) {
930 printk(KERN_WARNING
931 "%s: interface error, trying to fall back to serial\n",
Kay Sievers0252c3b2009-01-06 10:44:38 -0800932 dev_name(&card->dev));
Alex Dubov59367252008-03-10 11:43:42 -0700933 msb->system = MEMSTICK_SYS_SERIAL;
934 host->set_param(host, MEMSTICK_POWER, MEMSTICK_POWER_OFF);
Alex Dubov962ee1b2008-03-19 17:01:07 -0700935 msleep(10);
Alex Dubov59367252008-03-10 11:43:42 -0700936 host->set_param(host, MEMSTICK_POWER, MEMSTICK_POWER_ON);
Alex Dubovbaf85322008-02-09 10:20:54 -0800937 host->set_param(host, MEMSTICK_INTERFACE, MEMSTICK_SERIAL);
Alex Dubov59367252008-03-10 11:43:42 -0700938
Alex Dubov962ee1b2008-03-19 17:01:07 -0700939 rc = memstick_set_rw_addr(card);
940 if (!rc)
941 rc = mspro_block_set_interface(card, msb->system);
Alex Dubov8e82f8c2008-09-13 02:33:26 -0700942
943 if (!rc) {
944 msleep(150);
945 rc = mspro_block_wait_for_ced(card);
946 if (rc)
947 return rc;
948
949 if (msb->caps & MEMSTICK_CAP_PAR8) {
950 msb->caps &= ~MEMSTICK_CAP_PAR8;
951 goto try_again;
952 }
953 }
Alex Dubovbaf85322008-02-09 10:20:54 -0800954 }
Alex Dubov962ee1b2008-03-19 17:01:07 -0700955 return rc;
Alex Dubovbaf85322008-02-09 10:20:54 -0800956}
957
958/* Memory allocated for attributes by this function should be freed by
959 * mspro_block_data_clear, no matter if the initialization process succeded
960 * or failed.
961 */
962static int mspro_block_read_attributes(struct memstick_dev *card)
963{
964 struct mspro_block_data *msb = memstick_get_drvdata(card);
965 struct mspro_param_register param = {
966 .system = msb->system,
967 .data_count = cpu_to_be16(1),
968 .data_address = 0,
Alex Dubove1f19992008-03-10 11:43:37 -0700969 .tpc_param = 0
Alex Dubovbaf85322008-02-09 10:20:54 -0800970 };
971 struct mspro_attribute *attr = NULL;
972 struct mspro_sys_attr *s_attr = NULL;
973 unsigned char *buffer = NULL;
974 int cnt, rc, attr_count;
975 unsigned int addr;
976 unsigned short page_count;
977
978 attr = kmalloc(msb->page_size, GFP_KERNEL);
979 if (!attr)
980 return -ENOMEM;
981
982 sg_init_one(&msb->req_sg[0], attr, msb->page_size);
983 msb->seg_count = 1;
984 msb->current_seg = 0;
985 msb->current_page = 0;
986 msb->data_dir = READ;
987 msb->transfer_cmd = MSPRO_CMD_READ_ATRB;
988
989 card->next_request = h_mspro_block_req_init;
990 msb->mrq_handler = h_mspro_block_transfer_data;
991 memstick_init_req(&card->current_mrq, MS_TPC_WRITE_REG, &param,
992 sizeof(param));
993 memstick_new_req(card->host);
994 wait_for_completion(&card->mrq_complete);
995 if (card->current_mrq.error) {
996 rc = card->current_mrq.error;
997 goto out_free_attr;
998 }
999
1000 if (be16_to_cpu(attr->signature) != MSPRO_BLOCK_SIGNATURE) {
1001 printk(KERN_ERR "%s: unrecognized device signature %x\n",
Kay Sievers0252c3b2009-01-06 10:44:38 -08001002 dev_name(&card->dev), be16_to_cpu(attr->signature));
Alex Dubovbaf85322008-02-09 10:20:54 -08001003 rc = -ENODEV;
1004 goto out_free_attr;
1005 }
1006
1007 if (attr->count > MSPRO_BLOCK_MAX_ATTRIBUTES) {
1008 printk(KERN_WARNING "%s: way too many attribute entries\n",
Kay Sievers0252c3b2009-01-06 10:44:38 -08001009 dev_name(&card->dev));
Alex Dubovbaf85322008-02-09 10:20:54 -08001010 attr_count = MSPRO_BLOCK_MAX_ATTRIBUTES;
1011 } else
1012 attr_count = attr->count;
1013
1014 msb->attr_group.attrs = kzalloc((attr_count + 1)
1015 * sizeof(struct attribute),
1016 GFP_KERNEL);
1017 if (!msb->attr_group.attrs) {
1018 rc = -ENOMEM;
1019 goto out_free_attr;
1020 }
1021 msb->attr_group.name = "media_attributes";
1022
1023 buffer = kmalloc(msb->page_size, GFP_KERNEL);
1024 if (!buffer) {
1025 rc = -ENOMEM;
1026 goto out_free_attr;
1027 }
1028 memcpy(buffer, (char *)attr, msb->page_size);
1029 page_count = 1;
1030
1031 for (cnt = 0; cnt < attr_count; ++cnt) {
1032 s_attr = kzalloc(sizeof(struct mspro_sys_attr), GFP_KERNEL);
1033 if (!s_attr) {
1034 rc = -ENOMEM;
1035 goto out_free_buffer;
1036 }
1037
1038 msb->attr_group.attrs[cnt] = &s_attr->dev_attr.attr;
1039 addr = be32_to_cpu(attr->entries[cnt].address);
1040 rc = be32_to_cpu(attr->entries[cnt].size);
1041 dev_dbg(&card->dev, "adding attribute %d: id %x, address %x, "
1042 "size %x\n", cnt, attr->entries[cnt].id, addr, rc);
1043 s_attr->id = attr->entries[cnt].id;
1044 if (mspro_block_attr_name(s_attr->id))
1045 snprintf(s_attr->name, sizeof(s_attr->name), "%s",
1046 mspro_block_attr_name(attr->entries[cnt].id));
1047 else
1048 snprintf(s_attr->name, sizeof(s_attr->name),
1049 "attr_x%02x", attr->entries[cnt].id);
1050
Maxim Levitsky21fd0492010-08-11 14:17:52 -07001051 sysfs_attr_init(&s_attr->dev_attr.attr);
Alex Dubovbaf85322008-02-09 10:20:54 -08001052 s_attr->dev_attr.attr.name = s_attr->name;
1053 s_attr->dev_attr.attr.mode = S_IRUGO;
Alex Dubovbaf85322008-02-09 10:20:54 -08001054 s_attr->dev_attr.show = mspro_block_attr_show(s_attr->id);
1055
1056 if (!rc)
1057 continue;
1058
1059 s_attr->size = rc;
1060 s_attr->data = kmalloc(rc, GFP_KERNEL);
1061 if (!s_attr->data) {
1062 rc = -ENOMEM;
1063 goto out_free_buffer;
1064 }
1065
1066 if (((addr / msb->page_size)
1067 == be32_to_cpu(param.data_address))
1068 && (((addr + rc - 1) / msb->page_size)
1069 == be32_to_cpu(param.data_address))) {
1070 memcpy(s_attr->data, buffer + addr % msb->page_size,
1071 rc);
1072 continue;
1073 }
1074
1075 if (page_count <= (rc / msb->page_size)) {
1076 kfree(buffer);
1077 page_count = (rc / msb->page_size) + 1;
1078 buffer = kmalloc(page_count * msb->page_size,
1079 GFP_KERNEL);
1080 if (!buffer) {
1081 rc = -ENOMEM;
1082 goto out_free_attr;
1083 }
1084 }
1085
1086 param.system = msb->system;
1087 param.data_count = cpu_to_be16((rc / msb->page_size) + 1);
1088 param.data_address = cpu_to_be32(addr / msb->page_size);
Alex Dubove1f19992008-03-10 11:43:37 -07001089 param.tpc_param = 0;
Alex Dubovbaf85322008-02-09 10:20:54 -08001090
1091 sg_init_one(&msb->req_sg[0], buffer,
1092 be16_to_cpu(param.data_count) * msb->page_size);
1093 msb->seg_count = 1;
1094 msb->current_seg = 0;
1095 msb->current_page = 0;
1096 msb->data_dir = READ;
1097 msb->transfer_cmd = MSPRO_CMD_READ_ATRB;
1098
1099 dev_dbg(&card->dev, "reading attribute pages %x, %x\n",
1100 be32_to_cpu(param.data_address),
1101 be16_to_cpu(param.data_count));
1102
1103 card->next_request = h_mspro_block_req_init;
1104 msb->mrq_handler = h_mspro_block_transfer_data;
1105 memstick_init_req(&card->current_mrq, MS_TPC_WRITE_REG,
1106 (char *)&param, sizeof(param));
1107 memstick_new_req(card->host);
1108 wait_for_completion(&card->mrq_complete);
1109 if (card->current_mrq.error) {
1110 rc = card->current_mrq.error;
1111 goto out_free_buffer;
1112 }
1113
1114 memcpy(s_attr->data, buffer + addr % msb->page_size, rc);
1115 }
1116
1117 rc = 0;
1118out_free_buffer:
1119 kfree(buffer);
1120out_free_attr:
1121 kfree(attr);
1122 return rc;
1123}
1124
1125static int mspro_block_init_card(struct memstick_dev *card)
1126{
1127 struct mspro_block_data *msb = memstick_get_drvdata(card);
1128 struct memstick_host *host = card->host;
1129 int rc = 0;
1130
Alex Dubove1f19992008-03-10 11:43:37 -07001131 msb->system = MEMSTICK_SYS_SERIAL;
Alex Dubovbaf85322008-02-09 10:20:54 -08001132 card->reg_addr.r_offset = offsetof(struct mspro_register, status);
1133 card->reg_addr.r_length = sizeof(struct ms_status_register);
1134 card->reg_addr.w_offset = offsetof(struct mspro_register, param);
1135 card->reg_addr.w_length = sizeof(struct mspro_param_register);
1136
1137 if (memstick_set_rw_addr(card))
1138 return -EIO;
1139
Alex Dubovead70772008-03-19 17:01:06 -07001140 msb->caps = host->caps;
Alex Dubov8e82f8c2008-09-13 02:33:26 -07001141
1142 msleep(150);
1143 rc = mspro_block_wait_for_ced(card);
1144 if (rc)
1145 return rc;
1146
Alex Dubov962ee1b2008-03-19 17:01:07 -07001147 rc = mspro_block_switch_interface(card);
1148 if (rc)
1149 return rc;
Alex Dubovbaf85322008-02-09 10:20:54 -08001150
Alex Dubovbaf85322008-02-09 10:20:54 -08001151 dev_dbg(&card->dev, "card activated\n");
Alex Dubovead70772008-03-19 17:01:06 -07001152 if (msb->system != MEMSTICK_SYS_SERIAL)
1153 msb->caps |= MEMSTICK_CAP_AUTO_GET_INT;
Alex Dubovbaf85322008-02-09 10:20:54 -08001154
1155 card->next_request = h_mspro_block_req_init;
1156 msb->mrq_handler = h_mspro_block_get_ro;
1157 memstick_init_req(&card->current_mrq, MS_TPC_READ_REG, NULL,
1158 sizeof(struct ms_status_register));
1159 memstick_new_req(card->host);
1160 wait_for_completion(&card->mrq_complete);
1161 if (card->current_mrq.error)
1162 return card->current_mrq.error;
1163
1164 dev_dbg(&card->dev, "card r/w status %d\n", msb->read_only ? 0 : 1);
1165
1166 msb->page_size = 512;
1167 rc = mspro_block_read_attributes(card);
1168 if (rc)
1169 return rc;
1170
1171 dev_dbg(&card->dev, "attributes loaded\n");
1172 return 0;
1173
1174}
1175
1176static int mspro_block_init_disk(struct memstick_dev *card)
1177{
1178 struct mspro_block_data *msb = memstick_get_drvdata(card);
1179 struct memstick_host *host = card->host;
1180 struct mspro_devinfo *dev_info = NULL;
1181 struct mspro_sys_info *sys_info = NULL;
1182 struct mspro_sys_attr *s_attr = NULL;
1183 int rc, disk_id;
1184 u64 limit = BLK_BOUNCE_HIGH;
1185 unsigned long capacity;
1186
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +01001187 if (host->dev.dma_mask && *(host->dev.dma_mask))
1188 limit = *(host->dev.dma_mask);
Alex Dubovbaf85322008-02-09 10:20:54 -08001189
1190 for (rc = 0; msb->attr_group.attrs[rc]; ++rc) {
1191 s_attr = mspro_from_sysfs_attr(msb->attr_group.attrs[rc]);
1192
1193 if (s_attr->id == MSPRO_BLOCK_ID_DEVINFO)
1194 dev_info = s_attr->data;
1195 else if (s_attr->id == MSPRO_BLOCK_ID_SYSINFO)
1196 sys_info = s_attr->data;
1197 }
1198
1199 if (!dev_info || !sys_info)
1200 return -ENODEV;
1201
1202 msb->cylinders = be16_to_cpu(dev_info->cylinders);
1203 msb->heads = be16_to_cpu(dev_info->heads);
1204 msb->sectors_per_track = be16_to_cpu(dev_info->sectors_per_track);
1205
1206 msb->page_size = be16_to_cpu(sys_info->unit_size);
1207
1208 if (!idr_pre_get(&mspro_block_disk_idr, GFP_KERNEL))
1209 return -ENOMEM;
1210
1211 mutex_lock(&mspro_block_disk_lock);
1212 rc = idr_get_new(&mspro_block_disk_idr, card, &disk_id);
1213 mutex_unlock(&mspro_block_disk_lock);
1214
1215 if (rc)
1216 return rc;
1217
Alex Dubov8e82f8c2008-09-13 02:33:26 -07001218 if ((disk_id << MSPRO_BLOCK_PART_SHIFT) > 255) {
Alex Dubovbaf85322008-02-09 10:20:54 -08001219 rc = -ENOSPC;
1220 goto out_release_id;
1221 }
1222
Alex Dubov8e82f8c2008-09-13 02:33:26 -07001223 msb->disk = alloc_disk(1 << MSPRO_BLOCK_PART_SHIFT);
Alex Dubovbaf85322008-02-09 10:20:54 -08001224 if (!msb->disk) {
1225 rc = -ENOMEM;
1226 goto out_release_id;
1227 }
1228
Alex Dubovf1d82692008-07-25 19:45:02 -07001229 msb->queue = blk_init_queue(mspro_block_submit_req, &msb->q_lock);
Alex Dubovbaf85322008-02-09 10:20:54 -08001230 if (!msb->queue) {
1231 rc = -ENOMEM;
1232 goto out_put_disk;
1233 }
1234
1235 msb->queue->queuedata = card;
Alex Dubovf1d82692008-07-25 19:45:02 -07001236 blk_queue_prep_rq(msb->queue, mspro_block_prepare_req);
Alex Dubovbaf85322008-02-09 10:20:54 -08001237
1238 blk_queue_bounce_limit(msb->queue, limit);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05001239 blk_queue_max_hw_sectors(msb->queue, MSPRO_BLOCK_MAX_PAGES);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001240 blk_queue_max_segments(msb->queue, MSPRO_BLOCK_MAX_SEGS);
Alex Dubovbaf85322008-02-09 10:20:54 -08001241 blk_queue_max_segment_size(msb->queue,
1242 MSPRO_BLOCK_MAX_PAGES * msb->page_size);
1243
1244 msb->disk->major = major;
Alex Dubov8e82f8c2008-09-13 02:33:26 -07001245 msb->disk->first_minor = disk_id << MSPRO_BLOCK_PART_SHIFT;
Alex Dubovbaf85322008-02-09 10:20:54 -08001246 msb->disk->fops = &ms_block_bdops;
1247 msb->usage_count = 1;
1248 msb->disk->private_data = msb;
1249 msb->disk->queue = msb->queue;
1250 msb->disk->driverfs_dev = &card->dev;
1251
1252 sprintf(msb->disk->disk_name, "mspblk%d", disk_id);
1253
Martin K. Petersene1defc42009-05-22 17:17:49 -04001254 blk_queue_logical_block_size(msb->queue, msb->page_size);
Alex Dubovbaf85322008-02-09 10:20:54 -08001255
1256 capacity = be16_to_cpu(sys_info->user_block_count);
1257 capacity *= be16_to_cpu(sys_info->block_size);
1258 capacity *= msb->page_size >> 9;
1259 set_capacity(msb->disk, capacity);
1260 dev_dbg(&card->dev, "capacity set %ld\n", capacity);
Alex Dubovbaf85322008-02-09 10:20:54 -08001261
Alex Dubovbaf85322008-02-09 10:20:54 -08001262 add_disk(msb->disk);
Alex Dubovbaf85322008-02-09 10:20:54 -08001263 msb->active = 1;
1264 return 0;
1265
1266out_put_disk:
1267 put_disk(msb->disk);
1268out_release_id:
1269 mutex_lock(&mspro_block_disk_lock);
1270 idr_remove(&mspro_block_disk_idr, disk_id);
1271 mutex_unlock(&mspro_block_disk_lock);
1272 return rc;
1273}
1274
1275static void mspro_block_data_clear(struct mspro_block_data *msb)
1276{
1277 int cnt;
1278 struct mspro_sys_attr *s_attr;
1279
1280 if (msb->attr_group.attrs) {
1281 for (cnt = 0; msb->attr_group.attrs[cnt]; ++cnt) {
1282 s_attr = mspro_from_sysfs_attr(msb->attr_group
1283 .attrs[cnt]);
1284 kfree(s_attr->data);
1285 kfree(s_attr);
1286 }
1287 kfree(msb->attr_group.attrs);
1288 }
1289
1290 msb->card = NULL;
1291}
1292
1293static int mspro_block_check_card(struct memstick_dev *card)
1294{
1295 struct mspro_block_data *msb = memstick_get_drvdata(card);
1296
1297 return (msb->active == 1);
1298}
1299
1300static int mspro_block_probe(struct memstick_dev *card)
1301{
1302 struct mspro_block_data *msb;
1303 int rc = 0;
1304
1305 msb = kzalloc(sizeof(struct mspro_block_data), GFP_KERNEL);
1306 if (!msb)
1307 return -ENOMEM;
1308 memstick_set_drvdata(card, msb);
1309 msb->card = card;
Alex Dubovf1d82692008-07-25 19:45:02 -07001310 spin_lock_init(&msb->q_lock);
Alex Dubovbaf85322008-02-09 10:20:54 -08001311
1312 rc = mspro_block_init_card(card);
1313
1314 if (rc)
1315 goto out_free;
1316
1317 rc = sysfs_create_group(&card->dev.kobj, &msb->attr_group);
1318 if (rc)
1319 goto out_free;
1320
1321 rc = mspro_block_init_disk(card);
1322 if (!rc) {
1323 card->check = mspro_block_check_card;
Alex Dubov17017d82008-07-25 19:45:01 -07001324 card->stop = mspro_block_stop;
1325 card->start = mspro_block_start;
Alex Dubovbaf85322008-02-09 10:20:54 -08001326 return 0;
1327 }
1328
1329 sysfs_remove_group(&card->dev.kobj, &msb->attr_group);
1330out_free:
1331 memstick_set_drvdata(card, NULL);
1332 mspro_block_data_clear(msb);
1333 kfree(msb);
1334 return rc;
1335}
1336
1337static void mspro_block_remove(struct memstick_dev *card)
1338{
1339 struct mspro_block_data *msb = memstick_get_drvdata(card);
Alex Dubovbaf85322008-02-09 10:20:54 -08001340 unsigned long flags;
1341
Alex Dubovbaf85322008-02-09 10:20:54 -08001342 spin_lock_irqsave(&msb->q_lock, flags);
Alex Dubovf1d82692008-07-25 19:45:02 -07001343 msb->eject = 1;
1344 blk_start_queue(msb->queue);
Alex Dubovbaf85322008-02-09 10:20:54 -08001345 spin_unlock_irqrestore(&msb->q_lock, flags);
1346
Maxim Levitskyd862b132010-08-11 14:17:52 -07001347 del_gendisk(msb->disk);
1348 dev_dbg(&card->dev, "mspro block remove\n");
1349
Alex Dubovbaf85322008-02-09 10:20:54 -08001350 blk_cleanup_queue(msb->queue);
Alex Dubovf1d82692008-07-25 19:45:02 -07001351 msb->queue = NULL;
Alex Dubovbaf85322008-02-09 10:20:54 -08001352
1353 sysfs_remove_group(&card->dev.kobj, &msb->attr_group);
1354
1355 mutex_lock(&mspro_block_disk_lock);
1356 mspro_block_data_clear(msb);
1357 mutex_unlock(&mspro_block_disk_lock);
1358
1359 mspro_block_disk_release(msb->disk);
1360 memstick_set_drvdata(card, NULL);
1361}
1362
1363#ifdef CONFIG_PM
1364
1365static int mspro_block_suspend(struct memstick_dev *card, pm_message_t state)
1366{
1367 struct mspro_block_data *msb = memstick_get_drvdata(card);
Alex Dubovbaf85322008-02-09 10:20:54 -08001368 unsigned long flags;
1369
1370 spin_lock_irqsave(&msb->q_lock, flags);
Alex Dubovbaf85322008-02-09 10:20:54 -08001371 blk_stop_queue(msb->queue);
Alex Dubovf1d82692008-07-25 19:45:02 -07001372 msb->active = 0;
Alex Dubovbaf85322008-02-09 10:20:54 -08001373 spin_unlock_irqrestore(&msb->q_lock, flags);
1374
Alex Dubovbaf85322008-02-09 10:20:54 -08001375 return 0;
1376}
1377
1378static int mspro_block_resume(struct memstick_dev *card)
1379{
1380 struct mspro_block_data *msb = memstick_get_drvdata(card);
1381 unsigned long flags;
1382 int rc = 0;
1383
1384#ifdef CONFIG_MEMSTICK_UNSAFE_RESUME
1385
1386 struct mspro_block_data *new_msb;
1387 struct memstick_host *host = card->host;
1388 struct mspro_sys_attr *s_attr, *r_attr;
1389 unsigned char cnt;
1390
1391 mutex_lock(&host->lock);
1392 new_msb = kzalloc(sizeof(struct mspro_block_data), GFP_KERNEL);
1393 if (!new_msb) {
1394 rc = -ENOMEM;
1395 goto out_unlock;
1396 }
1397
1398 new_msb->card = card;
1399 memstick_set_drvdata(card, new_msb);
1400 if (mspro_block_init_card(card))
1401 goto out_free;
1402
1403 for (cnt = 0; new_msb->attr_group.attrs[cnt]
1404 && msb->attr_group.attrs[cnt]; ++cnt) {
1405 s_attr = mspro_from_sysfs_attr(new_msb->attr_group.attrs[cnt]);
1406 r_attr = mspro_from_sysfs_attr(msb->attr_group.attrs[cnt]);
1407
1408 if (s_attr->id == MSPRO_BLOCK_ID_SYSINFO
1409 && r_attr->id == s_attr->id) {
1410 if (memcmp(s_attr->data, r_attr->data, s_attr->size))
1411 break;
1412
Alex Dubovf1d82692008-07-25 19:45:02 -07001413 msb->active = 1;
Alex Dubovbaf85322008-02-09 10:20:54 -08001414 break;
1415 }
1416 }
1417
1418out_free:
1419 memstick_set_drvdata(card, msb);
1420 mspro_block_data_clear(new_msb);
1421 kfree(new_msb);
1422out_unlock:
1423 mutex_unlock(&host->lock);
1424
1425#endif /* CONFIG_MEMSTICK_UNSAFE_RESUME */
1426
1427 spin_lock_irqsave(&msb->q_lock, flags);
1428 blk_start_queue(msb->queue);
1429 spin_unlock_irqrestore(&msb->q_lock, flags);
1430 return rc;
1431}
1432
1433#else
1434
1435#define mspro_block_suspend NULL
1436#define mspro_block_resume NULL
1437
1438#endif /* CONFIG_PM */
1439
1440static struct memstick_device_id mspro_block_id_tbl[] = {
1441 {MEMSTICK_MATCH_ALL, MEMSTICK_TYPE_PRO, MEMSTICK_CATEGORY_STORAGE_DUO,
Alex Dubov8e82f8c2008-09-13 02:33:26 -07001442 MEMSTICK_CLASS_DUO},
Alex Dubovbaf85322008-02-09 10:20:54 -08001443 {}
1444};
1445
1446
1447static struct memstick_driver mspro_block_driver = {
1448 .driver = {
1449 .name = DRIVER_NAME,
1450 .owner = THIS_MODULE
1451 },
1452 .id_table = mspro_block_id_tbl,
1453 .probe = mspro_block_probe,
1454 .remove = mspro_block_remove,
1455 .suspend = mspro_block_suspend,
1456 .resume = mspro_block_resume
1457};
1458
1459static int __init mspro_block_init(void)
1460{
1461 int rc = -ENOMEM;
1462
1463 rc = register_blkdev(major, DRIVER_NAME);
1464 if (rc < 0) {
1465 printk(KERN_ERR DRIVER_NAME ": failed to register "
1466 "major %d, error %d\n", major, rc);
1467 return rc;
1468 }
1469 if (!major)
1470 major = rc;
1471
1472 rc = memstick_register_driver(&mspro_block_driver);
1473 if (rc)
1474 unregister_blkdev(major, DRIVER_NAME);
1475 return rc;
1476}
1477
1478static void __exit mspro_block_exit(void)
1479{
1480 memstick_unregister_driver(&mspro_block_driver);
1481 unregister_blkdev(major, DRIVER_NAME);
1482 idr_destroy(&mspro_block_disk_idr);
1483}
1484
1485module_init(mspro_block_init);
1486module_exit(mspro_block_exit);
1487
1488MODULE_LICENSE("GPL");
1489MODULE_AUTHOR("Alex Dubov");
1490MODULE_DESCRIPTION("Sony MemoryStickPro block device driver");
1491MODULE_DEVICE_TABLE(memstick, mspro_block_id_tbl);