]> Git Repo - linux.git/blob - arch/m68k/emu/nfblock.c
md/raid1: only allocate write behind bio for WriteMostly device
[linux.git] / arch / m68k / emu / nfblock.c
1 /*
2  * ARAnyM block device driver
3  *
4  * This file is subject to the terms and conditions of the GNU General Public
5  * License.  See the file COPYING in the main directory of this archive
6  * for more details.
7  */
8
9 #include <linux/module.h>
10 #include <linux/moduleparam.h>
11 #include <linux/init.h>
12
13 #include <linux/kernel.h>
14 #include <linux/errno.h>
15 #include <linux/types.h>
16 #include <linux/genhd.h>
17 #include <linux/blkdev.h>
18 #include <linux/hdreg.h>
19 #include <linux/slab.h>
20
21 #include <asm/natfeat.h>
22
23 static long nfhd_id;
24
25 enum {
26         /* emulation entry points */
27         NFHD_READ_WRITE = 10,
28         NFHD_GET_CAPACITY = 14,
29
30         /* skip ACSI devices */
31         NFHD_DEV_OFFSET = 8,
32 };
33
34 static inline s32 nfhd_read_write(u32 major, u32 minor, u32 rwflag, u32 recno,
35                                   u32 count, u32 buf)
36 {
37         return nf_call(nfhd_id + NFHD_READ_WRITE, major, minor, rwflag, recno,
38                        count, buf);
39 }
40
41 static inline s32 nfhd_get_capacity(u32 major, u32 minor, u32 *blocks,
42                                     u32 *blocksize)
43 {
44         return nf_call(nfhd_id + NFHD_GET_CAPACITY, major, minor,
45                        virt_to_phys(blocks), virt_to_phys(blocksize));
46 }
47
48 static LIST_HEAD(nfhd_list);
49
50 static int major_num;
51 module_param(major_num, int, 0);
52
53 struct nfhd_device {
54         struct list_head list;
55         int id;
56         u32 blocks, bsize;
57         int bshift;
58         struct gendisk *disk;
59 };
60
61 static void nfhd_submit_bio(struct bio *bio)
62 {
63         struct nfhd_device *dev = bio->bi_bdev->bd_disk->private_data;
64         struct bio_vec bvec;
65         struct bvec_iter iter;
66         int dir, len, shift;
67         sector_t sec = bio->bi_iter.bi_sector;
68
69         dir = bio_data_dir(bio);
70         shift = dev->bshift;
71         bio_for_each_segment(bvec, bio, iter) {
72                 len = bvec.bv_len;
73                 len >>= 9;
74                 nfhd_read_write(dev->id, 0, dir, sec >> shift, len >> shift,
75                                 page_to_phys(bvec.bv_page) + bvec.bv_offset);
76                 sec += len;
77         }
78         bio_endio(bio);
79 }
80
81 static int nfhd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
82 {
83         struct nfhd_device *dev = bdev->bd_disk->private_data;
84
85         geo->cylinders = dev->blocks >> (6 - dev->bshift);
86         geo->heads = 4;
87         geo->sectors = 16;
88
89         return 0;
90 }
91
92 static const struct block_device_operations nfhd_ops = {
93         .owner  = THIS_MODULE,
94         .submit_bio = nfhd_submit_bio,
95         .getgeo = nfhd_getgeo,
96 };
97
98 static int __init nfhd_init_one(int id, u32 blocks, u32 bsize)
99 {
100         struct nfhd_device *dev;
101         int dev_id = id - NFHD_DEV_OFFSET;
102
103         pr_info("nfhd%u: found device with %u blocks (%u bytes)\n", dev_id,
104                 blocks, bsize);
105
106         if (bsize < 512 || (bsize & (bsize - 1))) {
107                 pr_warn("nfhd%u: invalid block size\n", dev_id);
108                 return -EINVAL;
109         }
110
111         dev = kmalloc(sizeof(struct nfhd_device), GFP_KERNEL);
112         if (!dev)
113                 goto out;
114
115         dev->id = id;
116         dev->blocks = blocks;
117         dev->bsize = bsize;
118         dev->bshift = ffs(bsize) - 10;
119
120         dev->disk = blk_alloc_disk(NUMA_NO_NODE);
121         if (!dev->disk)
122                 goto free_dev;
123
124         dev->disk->major = major_num;
125         dev->disk->first_minor = dev_id * 16;
126         dev->disk->minors = 16;
127         dev->disk->fops = &nfhd_ops;
128         dev->disk->private_data = dev;
129         sprintf(dev->disk->disk_name, "nfhd%u", dev_id);
130         set_capacity(dev->disk, (sector_t)blocks * (bsize / 512));
131         blk_queue_logical_block_size(dev->disk->queue, bsize);
132         add_disk(dev->disk);
133
134         list_add_tail(&dev->list, &nfhd_list);
135
136         return 0;
137
138 free_dev:
139         kfree(dev);
140 out:
141         return -ENOMEM;
142 }
143
144 static int __init nfhd_init(void)
145 {
146         u32 blocks, bsize;
147         int ret;
148         int i;
149
150         nfhd_id = nf_get_id("XHDI");
151         if (!nfhd_id)
152                 return -ENODEV;
153
154         ret = register_blkdev(major_num, "nfhd");
155         if (ret < 0) {
156                 pr_warn("nfhd: unable to get major number\n");
157                 return ret;
158         }
159
160         if (!major_num)
161                 major_num = ret;
162
163         for (i = NFHD_DEV_OFFSET; i < 24; i++) {
164                 if (nfhd_get_capacity(i, 0, &blocks, &bsize))
165                         continue;
166                 nfhd_init_one(i, blocks, bsize);
167         }
168
169         return 0;
170 }
171
172 static void __exit nfhd_exit(void)
173 {
174         struct nfhd_device *dev, *next;
175
176         list_for_each_entry_safe(dev, next, &nfhd_list, list) {
177                 list_del(&dev->list);
178                 del_gendisk(dev->disk);
179                 blk_cleanup_disk(dev->disk);
180                 kfree(dev);
181         }
182         unregister_blkdev(major_num, "nfhd");
183 }
184
185 module_init(nfhd_init);
186 module_exit(nfhd_exit);
187
188 MODULE_LICENSE("GPL");
This page took 0.040836 seconds and 4 git commands to generate.