blob: e93837f647dea52fe359318899f6e7893c78bc20 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
David Woodhousea1452a32010-08-08 20:58:20 +01002 * Copyright © 2003-2010 David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
David Woodhousea1452a32010-08-08 20:58:20 +01004 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
18 */
19
20#ifndef __MTD_TRANS_H__
21#define __MTD_TRANS_H__
22
Ingo Molnar48b19262006-03-31 02:29:41 -080023#include <linux/mutex.h>
Maxim Levitsky048d8712010-02-22 20:39:30 +020024#include <linux/kref.h>
Maxim Levitsky026ec572010-02-22 20:39:33 +020025#include <linux/sysfs.h>
Ezequiel Garcia22a85782012-11-10 13:08:20 -030026#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28struct hd_geometry;
29struct mtd_info;
30struct mtd_blktrans_ops;
31struct file;
32struct inode;
33
34struct mtd_blktrans_dev {
35 struct mtd_blktrans_ops *tr;
36 struct list_head list;
37 struct mtd_info *mtd;
Ingo Molnar48b19262006-03-31 02:29:41 -080038 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 int devnum;
Artem Bityutskiy7bf7e372011-03-25 17:41:20 +020040 bool bg_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 unsigned long size;
42 int readonly;
Maxim Levitsky048d8712010-02-22 20:39:30 +020043 int open;
44 struct kref ref;
Maxim Levitskya8638622010-02-22 20:39:29 +020045 struct gendisk *disk;
Maxim Levitsky026ec572010-02-22 20:39:33 +020046 struct attribute_group *disk_attributes;
Ezequiel Garcia22a85782012-11-10 13:08:20 -030047 struct workqueue_struct *wq;
48 struct work_struct work;
Maxim Levitskya8638622010-02-22 20:39:29 +020049 struct request_queue *rq;
50 spinlock_t queue_lock;
51 void *priv;
Alexander Stein70d50982012-01-10 13:26:58 +010052 fmode_t file_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055struct mtd_blktrans_ops {
56 char *name;
57 int major;
58 int part_bits;
Richard Purdie19187672006-10-27 09:09:33 +010059 int blksize;
60 int blkshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 /* Access functions */
63 int (*readsect)(struct mtd_blktrans_dev *dev,
64 unsigned long block, char *buffer);
65 int (*writesect)(struct mtd_blktrans_dev *dev,
66 unsigned long block, char *buffer);
David Woodhouseeae9acd2008-08-05 18:08:25 +010067 int (*discard)(struct mtd_blktrans_dev *dev,
68 unsigned long block, unsigned nr_blocks);
Jarkko Lavinenc7519db2011-02-14 16:16:09 +020069 void (*background)(struct mtd_blktrans_dev *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71 /* Block layer ioctls */
72 int (*getgeo)(struct mtd_blktrans_dev *dev, struct hd_geometry *geo);
73 int (*flush)(struct mtd_blktrans_dev *dev);
74
75 /* Called with mtd_table_mutex held; no race with add/remove */
76 int (*open)(struct mtd_blktrans_dev *dev);
Al Viroa8ca8892013-05-05 21:31:22 -040077 void (*release)(struct mtd_blktrans_dev *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 /* Called on {de,}registration and on subsequent addition/removal
80 of devices, with mtd_table_mutex held. */
81 void (*add_mtd)(struct mtd_blktrans_ops *tr, struct mtd_info *mtd);
82 void (*remove_dev)(struct mtd_blktrans_dev *dev);
83
84 struct list_head devs;
85 struct list_head list;
86 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087};
88
89extern int register_mtd_blktrans(struct mtd_blktrans_ops *tr);
90extern int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr);
91extern int add_mtd_blktrans_dev(struct mtd_blktrans_dev *dev);
92extern int del_mtd_blktrans_dev(struct mtd_blktrans_dev *dev);
Jarkko Lavinenc7519db2011-02-14 16:16:09 +020093extern int mtd_blktrans_cease_background(struct mtd_blktrans_dev *dev);
Thomas Gleixner61ecfa82005-11-07 11:15:31 +000094
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96#endif /* __MTD_TRANS_H__ */