blktrans.h 2.6 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
D
David Woodhouse 已提交
2
 * Copyright © 2003-2010 David Woodhouse <dwmw2@infradead.org>
L
Linus Torvalds 已提交
3
 *
D
David Woodhouse 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
L
Linus Torvalds 已提交
17 18 19 20 21 22
 *
 */

#ifndef __MTD_TRANS_H__
#define __MTD_TRANS_H__

I
Ingo Molnar 已提交
23
#include <linux/mutex.h>
M
Maxim Levitsky 已提交
24
#include <linux/kref.h>
25
#include <linux/sysfs.h>
L
Linus Torvalds 已提交
26 27 28 29 30 31 32 33 34 35 36

struct hd_geometry;
struct mtd_info;
struct mtd_blktrans_ops;
struct file;
struct inode;

struct mtd_blktrans_dev {
	struct mtd_blktrans_ops *tr;
	struct list_head list;
	struct mtd_info *mtd;
I
Ingo Molnar 已提交
37
	struct mutex lock;
L
Linus Torvalds 已提交
38 39 40
	int devnum;
	unsigned long size;
	int readonly;
M
Maxim Levitsky 已提交
41 42
	int open;
	struct kref ref;
43
	struct gendisk *disk;
44
	struct attribute_group *disk_attributes;
45 46 47 48
	struct task_struct *thread;
	struct request_queue *rq;
	spinlock_t queue_lock;
	void *priv;
L
Linus Torvalds 已提交
49 50 51 52 53 54
};

struct mtd_blktrans_ops {
	char *name;
	int major;
	int part_bits;
55 56
	int blksize;
	int blkshift;
L
Linus Torvalds 已提交
57 58 59 60 61 62

	/* Access functions */
	int (*readsect)(struct mtd_blktrans_dev *dev,
		    unsigned long block, char *buffer);
	int (*writesect)(struct mtd_blktrans_dev *dev,
		     unsigned long block, char *buffer);
63 64
	int (*discard)(struct mtd_blktrans_dev *dev,
		       unsigned long block, unsigned nr_blocks);
L
Linus Torvalds 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87

	/* Block layer ioctls */
	int (*getgeo)(struct mtd_blktrans_dev *dev, struct hd_geometry *geo);
	int (*flush)(struct mtd_blktrans_dev *dev);

	/* Called with mtd_table_mutex held; no race with add/remove */
	int (*open)(struct mtd_blktrans_dev *dev);
	int (*release)(struct mtd_blktrans_dev *dev);

	/* Called on {de,}registration and on subsequent addition/removal
	   of devices, with mtd_table_mutex held. */
	void (*add_mtd)(struct mtd_blktrans_ops *tr, struct mtd_info *mtd);
	void (*remove_dev)(struct mtd_blktrans_dev *dev);

	struct list_head devs;
	struct list_head list;
	struct module *owner;
};

extern int register_mtd_blktrans(struct mtd_blktrans_ops *tr);
extern int deregister_mtd_blktrans(struct mtd_blktrans_ops *tr);
extern int add_mtd_blktrans_dev(struct mtd_blktrans_dev *dev);
extern int del_mtd_blktrans_dev(struct mtd_blktrans_dev *dev);
88

L
Linus Torvalds 已提交
89 90

#endif /* __MTD_TRANS_H__ */