2 * Copyright 2011 Tilera Corporation. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
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, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
14 * SPI Flash ROM driver
16 * This source code is derived from code provided in "Linux Device
17 * Drivers, Third Edition", by Jonathan Corbet, Alessandro Rubini, and
18 * Greg Kroah-Hartman, published by O'Reilly Media, Inc.
21 #include <linux/module.h>
22 #include <linux/moduleparam.h>
23 #include <linux/init.h>
24 #include <linux/kernel.h> /* printk() */
25 #include <linux/slab.h> /* kmalloc() */
26 #include <linux/fs.h> /* everything... */
27 #include <linux/errno.h> /* error codes */
28 #include <linux/types.h> /* size_t */
29 #include <linux/proc_fs.h>
30 #include <linux/fcntl.h> /* O_ACCMODE */
31 #include <linux/aio.h>
32 #include <linux/pagemap.h>
33 #include <linux/hugetlb.h>
34 #include <linux/uaccess.h>
35 #include <linux/platform_device.h>
36 #include <hv/hypervisor.h>
37 #include <linux/ioctl.h>
38 #include <linux/cdev.h>
39 #include <linux/delay.h>
40 #include <hv/drv_srom_intf.h>
43 * Size of our hypervisor I/O requests. We break up large transfers
44 * so that we don't spend large uninterrupted spans of time in the
45 * hypervisor. Erasing an SROM sector takes a significant fraction of
46 * a second, so if we allowed the user to, say, do one I/O to write the
47 * entire ROM, we'd get soft lockup timeouts, or worse.
49 #define SROM_CHUNK_SIZE ((size_t)4096)
52 * When hypervisor is busy (e.g. erasing), poll the status periodically.
56 * Interval to poll the state in msec
58 #define SROM_WAIT_TRY_INTERVAL 20
61 * Maximum times to poll the state
63 #define SROM_MAX_WAIT_TRY_TIMES 1000
66 int hv_devhdl
; /* Handle for hypervisor device */
67 u32 total_size
; /* Size of this device */
68 u32 sector_size
; /* Size of a sector */
69 u32 page_size
; /* Size of a page */
70 struct mutex lock
; /* Allow only one accessor at a time */
73 static int srom_major
; /* Dynamic major by default */
74 module_param(srom_major
, int, 0);
75 MODULE_AUTHOR("Tilera Corporation");
76 MODULE_LICENSE("GPL");
78 static int srom_devs
; /* Number of SROM partitions */
79 static struct cdev srom_cdev
;
80 static struct class *srom_class
;
81 static struct srom_dev
*srom_devices
;
84 * Handle calling the hypervisor and managing EAGAIN/EBUSY.
87 static ssize_t
_srom_read(int hv_devhdl
, void *buf
,
88 loff_t off
, size_t count
)
90 int retval
, retries
= SROM_MAX_WAIT_TRY_TIMES
;
92 retval
= hv_dev_pread(hv_devhdl
, 0, (HV_VirtAddr
)buf
,
96 if (retval
== HV_EAGAIN
)
98 if (retval
== HV_EBUSY
&& --retries
> 0) {
99 msleep(SROM_WAIT_TRY_INTERVAL
);
102 pr_err("_srom_read: error %d\n", retval
);
107 static ssize_t
_srom_write(int hv_devhdl
, const void *buf
,
108 loff_t off
, size_t count
)
110 int retval
, retries
= SROM_MAX_WAIT_TRY_TIMES
;
112 retval
= hv_dev_pwrite(hv_devhdl
, 0, (HV_VirtAddr
)buf
,
116 if (retval
== HV_EAGAIN
)
118 if (retval
== HV_EBUSY
&& --retries
> 0) {
119 msleep(SROM_WAIT_TRY_INTERVAL
);
122 pr_err("_srom_write: error %d\n", retval
);
128 * srom_open() - Device open routine.
129 * @inode: Inode for this device.
130 * @filp: File for this specific open of the device.
132 * Returns zero, or an error code.
134 static int srom_open(struct inode
*inode
, struct file
*filp
)
136 filp
->private_data
= &srom_devices
[iminor(inode
)];
142 * srom_release() - Device release routine.
143 * @inode: Inode for this device.
144 * @filp: File for this specific open of the device.
146 * Returns zero, or an error code.
148 static int srom_release(struct inode
*inode
, struct file
*filp
)
150 struct srom_dev
*srom
= filp
->private_data
;
153 /* Make sure we've flushed anything written to the ROM. */
154 mutex_lock(&srom
->lock
);
155 if (srom
->hv_devhdl
>= 0)
156 _srom_write(srom
->hv_devhdl
, &dummy
, SROM_FLUSH_OFF
, 1);
157 mutex_unlock(&srom
->lock
);
159 filp
->private_data
= NULL
;
166 * srom_read() - Read data from the device.
167 * @filp: File for this specific open of the device.
168 * @buf: User's data buffer.
169 * @count: Number of bytes requested.
170 * @f_pos: File position.
172 * Returns number of bytes read, or an error code.
174 static ssize_t
srom_read(struct file
*filp
, char __user
*buf
,
175 size_t count
, loff_t
*f_pos
)
179 struct srom_dev
*srom
= filp
->private_data
;
181 kernbuf
= kmalloc(SROM_CHUNK_SIZE
, GFP_KERNEL
);
185 if (mutex_lock_interruptible(&srom
->lock
)) {
186 retval
= -ERESTARTSYS
;
193 int bytes_this_pass
= min(count
, SROM_CHUNK_SIZE
);
195 hv_retval
= _srom_read(srom
->hv_devhdl
, kernbuf
,
196 *f_pos
, bytes_this_pass
);
198 if (copy_to_user(buf
, kernbuf
, hv_retval
) != 0) {
202 } else if (hv_retval
<= 0) {
214 mutex_unlock(&srom
->lock
);
221 * srom_write() - Write data to the device.
222 * @filp: File for this specific open of the device.
223 * @buf: User's data buffer.
224 * @count: Number of bytes requested.
225 * @f_pos: File position.
227 * Returns number of bytes written, or an error code.
229 static ssize_t
srom_write(struct file
*filp
, const char __user
*buf
,
230 size_t count
, loff_t
*f_pos
)
234 struct srom_dev
*srom
= filp
->private_data
;
236 kernbuf
= kmalloc(SROM_CHUNK_SIZE
, GFP_KERNEL
);
240 if (mutex_lock_interruptible(&srom
->lock
)) {
241 retval
= -ERESTARTSYS
;
248 int bytes_this_pass
= min(count
, SROM_CHUNK_SIZE
);
250 if (copy_from_user(kernbuf
, buf
, bytes_this_pass
) != 0) {
255 hv_retval
= _srom_write(srom
->hv_devhdl
, kernbuf
,
256 *f_pos
, bytes_this_pass
);
257 if (hv_retval
<= 0) {
269 mutex_unlock(&srom
->lock
);
275 /* Provide our own implementation so we can use srom->total_size. */
276 loff_t
srom_llseek(struct file
*filp
, loff_t offset
, int origin
)
278 struct srom_dev
*srom
= filp
->private_data
;
280 if (mutex_lock_interruptible(&srom
->lock
))
285 offset
+= srom
->total_size
;
288 offset
+= filp
->f_pos
;
292 if (offset
< 0 || offset
> srom
->total_size
) {
295 filp
->f_pos
= offset
;
299 mutex_unlock(&srom
->lock
);
304 static ssize_t
total_show(struct device
*dev
,
305 struct device_attribute
*attr
, char *buf
)
307 struct srom_dev
*srom
= dev_get_drvdata(dev
);
308 return sprintf(buf
, "%u\n", srom
->total_size
);
311 static ssize_t
sector_show(struct device
*dev
,
312 struct device_attribute
*attr
, char *buf
)
314 struct srom_dev
*srom
= dev_get_drvdata(dev
);
315 return sprintf(buf
, "%u\n", srom
->sector_size
);
318 static ssize_t
page_show(struct device
*dev
,
319 struct device_attribute
*attr
, char *buf
)
321 struct srom_dev
*srom
= dev_get_drvdata(dev
);
322 return sprintf(buf
, "%u\n", srom
->page_size
);
325 static struct device_attribute srom_dev_attrs
[] = {
326 __ATTR(total_size
, S_IRUGO
, total_show
, NULL
),
327 __ATTR(sector_size
, S_IRUGO
, sector_show
, NULL
),
328 __ATTR(page_size
, S_IRUGO
, page_show
, NULL
),
332 static char *srom_devnode(struct device
*dev
, mode_t
*mode
)
334 *mode
= S_IRUGO
| S_IWUSR
;
335 return kasprintf(GFP_KERNEL
, "srom/%s", dev_name(dev
));
341 static const struct file_operations srom_fops
= {
342 .owner
= THIS_MODULE
,
343 .llseek
= srom_llseek
,
347 .release
= srom_release
,
351 * srom_setup_minor() - Initialize per-minor information.
352 * @srom: Per-device SROM state.
353 * @index: Device to set up.
355 static int srom_setup_minor(struct srom_dev
*srom
, int index
)
358 int devhdl
= srom
->hv_devhdl
;
360 mutex_init(&srom
->lock
);
362 if (_srom_read(devhdl
, &srom
->total_size
,
363 SROM_TOTAL_SIZE_OFF
, sizeof(srom
->total_size
)) < 0)
365 if (_srom_read(devhdl
, &srom
->sector_size
,
366 SROM_SECTOR_SIZE_OFF
, sizeof(srom
->sector_size
)) < 0)
368 if (_srom_read(devhdl
, &srom
->page_size
,
369 SROM_PAGE_SIZE_OFF
, sizeof(srom
->page_size
)) < 0)
372 dev
= device_create(srom_class
, &platform_bus
,
373 MKDEV(srom_major
, index
), srom
, "%d", index
);
374 return IS_ERR(dev
) ? PTR_ERR(dev
) : 0;
377 /** srom_init() - Initialize the driver's module. */
378 static int srom_init(void)
381 dev_t dev
= MKDEV(srom_major
, 0);
384 * Start with a plausible number of partitions; the krealloc() call
385 * below will yield about log(srom_devs) additional allocations.
387 srom_devices
= kzalloc(4 * sizeof(struct srom_dev
), GFP_KERNEL
);
389 /* Discover the number of srom partitions. */
393 struct srom_dev
*new_srom_devices
=
394 krealloc(srom_devices
, (i
+1) * sizeof(struct srom_dev
),
395 GFP_KERNEL
| __GFP_ZERO
);
396 if (!new_srom_devices
) {
400 srom_devices
= new_srom_devices
;
401 sprintf(buf
, "srom/0/%d", i
);
402 devhdl
= hv_dev_open((HV_VirtAddr
)buf
, 0);
404 if (devhdl
!= HV_ENODEV
)
405 pr_notice("srom/%d: hv_dev_open failed: %d.\n",
409 srom_devices
[i
].hv_devhdl
= devhdl
;
413 /* Bail out early if we have no partitions at all. */
414 if (srom_devs
== 0) {
419 /* Register our major, and accept a dynamic number. */
421 result
= register_chrdev_region(dev
, srom_devs
, "srom");
423 result
= alloc_chrdev_region(&dev
, 0, srom_devs
, "srom");
424 srom_major
= MAJOR(dev
);
429 /* Register a character device. */
430 cdev_init(&srom_cdev
, &srom_fops
);
431 srom_cdev
.owner
= THIS_MODULE
;
432 srom_cdev
.ops
= &srom_fops
;
433 result
= cdev_add(&srom_cdev
, dev
, srom_devs
);
437 /* Create a sysfs class. */
438 srom_class
= class_create(THIS_MODULE
, "srom");
439 if (IS_ERR(srom_class
)) {
440 result
= PTR_ERR(srom_class
);
443 srom_class
->dev_attrs
= srom_dev_attrs
;
444 srom_class
->devnode
= srom_devnode
;
446 /* Do per-partition initialization */
447 for (i
= 0; i
< srom_devs
; i
++) {
448 result
= srom_setup_minor(srom_devices
+ i
, i
);
456 for (i
= 0; i
< srom_devs
; i
++)
457 device_destroy(srom_class
, MKDEV(srom_major
, i
));
458 class_destroy(srom_class
);
460 cdev_del(&srom_cdev
);
462 unregister_chrdev_region(dev
, srom_devs
);
468 /** srom_cleanup() - Clean up the driver's module. */
469 static void srom_cleanup(void)
472 for (i
= 0; i
< srom_devs
; i
++)
473 device_destroy(srom_class
, MKDEV(srom_major
, i
));
474 class_destroy(srom_class
);
475 cdev_del(&srom_cdev
);
476 unregister_chrdev_region(MKDEV(srom_major
, 0), srom_devs
);
480 module_init(srom_init
);
481 module_exit(srom_cleanup
);