uio.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890
  1. /*
  2. * drivers/uio/uio.c
  3. *
  4. * Copyright(C) 2005, Benedikt Spranger <b.spranger@linutronix.de>
  5. * Copyright(C) 2005, Thomas Gleixner <tglx@linutronix.de>
  6. * Copyright(C) 2006, Hans J. Koch <hjk@linutronix.de>
  7. * Copyright(C) 2006, Greg Kroah-Hartman <greg@kroah.com>
  8. *
  9. * Userspace IO
  10. *
  11. * Base Functions
  12. *
  13. * Licensed under the GPLv2 only.
  14. */
  15. #include <linux/module.h>
  16. #include <linux/init.h>
  17. #include <linux/poll.h>
  18. #include <linux/device.h>
  19. #include <linux/slab.h>
  20. #include <linux/mm.h>
  21. #include <linux/idr.h>
  22. #include <linux/sched.h>
  23. #include <linux/string.h>
  24. #include <linux/kobject.h>
  25. #include <linux/uio_driver.h>
  26. #define UIO_MAX_DEVICES 255
  27. struct uio_device {
  28. struct module *owner;
  29. struct device *dev;
  30. int minor;
  31. atomic_t event;
  32. struct fasync_struct *async_queue;
  33. wait_queue_head_t wait;
  34. int vma_count;
  35. struct uio_info *info;
  36. struct kobject *map_dir;
  37. struct kobject *portio_dir;
  38. };
  39. static int uio_major;
  40. static DEFINE_IDR(uio_idr);
  41. static const struct file_operations uio_fops;
  42. /* UIO class infrastructure */
  43. static struct class *uio_class;
  44. /* Protect idr accesses */
  45. static DEFINE_MUTEX(minor_lock);
  46. /*
  47. * attributes
  48. */
  49. struct uio_map {
  50. struct kobject kobj;
  51. struct uio_mem *mem;
  52. };
  53. #define to_map(map) container_of(map, struct uio_map, kobj)
  54. static ssize_t map_name_show(struct uio_mem *mem, char *buf)
  55. {
  56. if (unlikely(!mem->name))
  57. mem->name = "";
  58. return sprintf(buf, "%s\n", mem->name);
  59. }
  60. static ssize_t map_addr_show(struct uio_mem *mem, char *buf)
  61. {
  62. return sprintf(buf, "0x%lx\n", mem->addr);
  63. }
  64. static ssize_t map_size_show(struct uio_mem *mem, char *buf)
  65. {
  66. return sprintf(buf, "0x%lx\n", mem->size);
  67. }
  68. static ssize_t map_offset_show(struct uio_mem *mem, char *buf)
  69. {
  70. return sprintf(buf, "0x%lx\n", mem->addr & ~PAGE_MASK);
  71. }
  72. struct map_sysfs_entry {
  73. struct attribute attr;
  74. ssize_t (*show)(struct uio_mem *, char *);
  75. ssize_t (*store)(struct uio_mem *, const char *, size_t);
  76. };
  77. static struct map_sysfs_entry name_attribute =
  78. __ATTR(name, S_IRUGO, map_name_show, NULL);
  79. static struct map_sysfs_entry addr_attribute =
  80. __ATTR(addr, S_IRUGO, map_addr_show, NULL);
  81. static struct map_sysfs_entry size_attribute =
  82. __ATTR(size, S_IRUGO, map_size_show, NULL);
  83. static struct map_sysfs_entry offset_attribute =
  84. __ATTR(offset, S_IRUGO, map_offset_show, NULL);
  85. static struct attribute *attrs[] = {
  86. &name_attribute.attr,
  87. &addr_attribute.attr,
  88. &size_attribute.attr,
  89. &offset_attribute.attr,
  90. NULL, /* need to NULL terminate the list of attributes */
  91. };
  92. static void map_release(struct kobject *kobj)
  93. {
  94. struct uio_map *map = to_map(kobj);
  95. kfree(map);
  96. }
  97. static ssize_t map_type_show(struct kobject *kobj, struct attribute *attr,
  98. char *buf)
  99. {
  100. struct uio_map *map = to_map(kobj);
  101. struct uio_mem *mem = map->mem;
  102. struct map_sysfs_entry *entry;
  103. entry = container_of(attr, struct map_sysfs_entry, attr);
  104. if (!entry->show)
  105. return -EIO;
  106. return entry->show(mem, buf);
  107. }
  108. static const struct sysfs_ops map_sysfs_ops = {
  109. .show = map_type_show,
  110. };
  111. static struct kobj_type map_attr_type = {
  112. .release = map_release,
  113. .sysfs_ops = &map_sysfs_ops,
  114. .default_attrs = attrs,
  115. };
  116. struct uio_portio {
  117. struct kobject kobj;
  118. struct uio_port *port;
  119. };
  120. #define to_portio(portio) container_of(portio, struct uio_portio, kobj)
  121. static ssize_t portio_name_show(struct uio_port *port, char *buf)
  122. {
  123. if (unlikely(!port->name))
  124. port->name = "";
  125. return sprintf(buf, "%s\n", port->name);
  126. }
  127. static ssize_t portio_start_show(struct uio_port *port, char *buf)
  128. {
  129. return sprintf(buf, "0x%lx\n", port->start);
  130. }
  131. static ssize_t portio_size_show(struct uio_port *port, char *buf)
  132. {
  133. return sprintf(buf, "0x%lx\n", port->size);
  134. }
  135. static ssize_t portio_porttype_show(struct uio_port *port, char *buf)
  136. {
  137. const char *porttypes[] = {"none", "x86", "gpio", "other"};
  138. if ((port->porttype < 0) || (port->porttype > UIO_PORT_OTHER))
  139. return -EINVAL;
  140. return sprintf(buf, "port_%s\n", porttypes[port->porttype]);
  141. }
  142. struct portio_sysfs_entry {
  143. struct attribute attr;
  144. ssize_t (*show)(struct uio_port *, char *);
  145. ssize_t (*store)(struct uio_port *, const char *, size_t);
  146. };
  147. static struct portio_sysfs_entry portio_name_attribute =
  148. __ATTR(name, S_IRUGO, portio_name_show, NULL);
  149. static struct portio_sysfs_entry portio_start_attribute =
  150. __ATTR(start, S_IRUGO, portio_start_show, NULL);
  151. static struct portio_sysfs_entry portio_size_attribute =
  152. __ATTR(size, S_IRUGO, portio_size_show, NULL);
  153. static struct portio_sysfs_entry portio_porttype_attribute =
  154. __ATTR(porttype, S_IRUGO, portio_porttype_show, NULL);
  155. static struct attribute *portio_attrs[] = {
  156. &portio_name_attribute.attr,
  157. &portio_start_attribute.attr,
  158. &portio_size_attribute.attr,
  159. &portio_porttype_attribute.attr,
  160. NULL,
  161. };
  162. static void portio_release(struct kobject *kobj)
  163. {
  164. struct uio_portio *portio = to_portio(kobj);
  165. kfree(portio);
  166. }
  167. static ssize_t portio_type_show(struct kobject *kobj, struct attribute *attr,
  168. char *buf)
  169. {
  170. struct uio_portio *portio = to_portio(kobj);
  171. struct uio_port *port = portio->port;
  172. struct portio_sysfs_entry *entry;
  173. entry = container_of(attr, struct portio_sysfs_entry, attr);
  174. if (!entry->show)
  175. return -EIO;
  176. return entry->show(port, buf);
  177. }
  178. static const struct sysfs_ops portio_sysfs_ops = {
  179. .show = portio_type_show,
  180. };
  181. static struct kobj_type portio_attr_type = {
  182. .release = portio_release,
  183. .sysfs_ops = &portio_sysfs_ops,
  184. .default_attrs = portio_attrs,
  185. };
  186. static ssize_t show_name(struct device *dev,
  187. struct device_attribute *attr, char *buf)
  188. {
  189. struct uio_device *idev = dev_get_drvdata(dev);
  190. return sprintf(buf, "%s\n", idev->info->name);
  191. }
  192. static DEVICE_ATTR(name, S_IRUGO, show_name, NULL);
  193. static ssize_t show_version(struct device *dev,
  194. struct device_attribute *attr, char *buf)
  195. {
  196. struct uio_device *idev = dev_get_drvdata(dev);
  197. return sprintf(buf, "%s\n", idev->info->version);
  198. }
  199. static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
  200. static ssize_t show_event(struct device *dev,
  201. struct device_attribute *attr, char *buf)
  202. {
  203. struct uio_device *idev = dev_get_drvdata(dev);
  204. return sprintf(buf, "%u\n", (unsigned int)atomic_read(&idev->event));
  205. }
  206. static DEVICE_ATTR(event, S_IRUGO, show_event, NULL);
  207. static struct attribute *uio_attrs[] = {
  208. &dev_attr_name.attr,
  209. &dev_attr_version.attr,
  210. &dev_attr_event.attr,
  211. NULL,
  212. };
  213. static struct attribute_group uio_attr_grp = {
  214. .attrs = uio_attrs,
  215. };
  216. /*
  217. * device functions
  218. */
  219. static int uio_dev_add_attributes(struct uio_device *idev)
  220. {
  221. int ret;
  222. int mi, pi;
  223. int map_found = 0;
  224. int portio_found = 0;
  225. struct uio_mem *mem;
  226. struct uio_map *map;
  227. struct uio_port *port;
  228. struct uio_portio *portio;
  229. ret = sysfs_create_group(&idev->dev->kobj, &uio_attr_grp);
  230. if (ret)
  231. goto err_group;
  232. for (mi = 0; mi < MAX_UIO_MAPS; mi++) {
  233. mem = &idev->info->mem[mi];
  234. if (mem->size == 0)
  235. break;
  236. if (!map_found) {
  237. map_found = 1;
  238. idev->map_dir = kobject_create_and_add("maps",
  239. &idev->dev->kobj);
  240. if (!idev->map_dir)
  241. goto err_map;
  242. }
  243. map = kzalloc(sizeof(*map), GFP_KERNEL);
  244. if (!map)
  245. goto err_map;
  246. kobject_init(&map->kobj, &map_attr_type);
  247. map->mem = mem;
  248. mem->map = map;
  249. ret = kobject_add(&map->kobj, idev->map_dir, "map%d", mi);
  250. if (ret)
  251. goto err_map;
  252. ret = kobject_uevent(&map->kobj, KOBJ_ADD);
  253. if (ret)
  254. goto err_map;
  255. }
  256. for (pi = 0; pi < MAX_UIO_PORT_REGIONS; pi++) {
  257. port = &idev->info->port[pi];
  258. if (port->size == 0)
  259. break;
  260. if (!portio_found) {
  261. portio_found = 1;
  262. idev->portio_dir = kobject_create_and_add("portio",
  263. &idev->dev->kobj);
  264. if (!idev->portio_dir)
  265. goto err_portio;
  266. }
  267. portio = kzalloc(sizeof(*portio), GFP_KERNEL);
  268. if (!portio)
  269. goto err_portio;
  270. kobject_init(&portio->kobj, &portio_attr_type);
  271. portio->port = port;
  272. port->portio = portio;
  273. ret = kobject_add(&portio->kobj, idev->portio_dir,
  274. "port%d", pi);
  275. if (ret)
  276. goto err_portio;
  277. ret = kobject_uevent(&portio->kobj, KOBJ_ADD);
  278. if (ret)
  279. goto err_portio;
  280. }
  281. return 0;
  282. err_portio:
  283. for (pi--; pi >= 0; pi--) {
  284. port = &idev->info->port[pi];
  285. portio = port->portio;
  286. kobject_put(&portio->kobj);
  287. }
  288. kobject_put(idev->portio_dir);
  289. err_map:
  290. for (mi--; mi>=0; mi--) {
  291. mem = &idev->info->mem[mi];
  292. map = mem->map;
  293. kobject_put(&map->kobj);
  294. }
  295. kobject_put(idev->map_dir);
  296. sysfs_remove_group(&idev->dev->kobj, &uio_attr_grp);
  297. err_group:
  298. dev_err(idev->dev, "error creating sysfs files (%d)\n", ret);
  299. return ret;
  300. }
  301. static void uio_dev_del_attributes(struct uio_device *idev)
  302. {
  303. int i;
  304. struct uio_mem *mem;
  305. struct uio_port *port;
  306. for (i = 0; i < MAX_UIO_MAPS; i++) {
  307. mem = &idev->info->mem[i];
  308. if (mem->size == 0)
  309. break;
  310. kobject_put(&mem->map->kobj);
  311. }
  312. kobject_put(idev->map_dir);
  313. for (i = 0; i < MAX_UIO_PORT_REGIONS; i++) {
  314. port = &idev->info->port[i];
  315. if (port->size == 0)
  316. break;
  317. kobject_put(&port->portio->kobj);
  318. }
  319. kobject_put(idev->portio_dir);
  320. sysfs_remove_group(&idev->dev->kobj, &uio_attr_grp);
  321. }
  322. static int uio_get_minor(struct uio_device *idev)
  323. {
  324. int retval = -ENOMEM;
  325. int id;
  326. mutex_lock(&minor_lock);
  327. if (idr_pre_get(&uio_idr, GFP_KERNEL) == 0)
  328. goto exit;
  329. retval = idr_get_new(&uio_idr, idev, &id);
  330. if (retval < 0) {
  331. if (retval == -EAGAIN)
  332. retval = -ENOMEM;
  333. goto exit;
  334. }
  335. idev->minor = id & MAX_ID_MASK;
  336. exit:
  337. mutex_unlock(&minor_lock);
  338. return retval;
  339. }
  340. static void uio_free_minor(struct uio_device *idev)
  341. {
  342. mutex_lock(&minor_lock);
  343. idr_remove(&uio_idr, idev->minor);
  344. mutex_unlock(&minor_lock);
  345. }
  346. /**
  347. * uio_event_notify - trigger an interrupt event
  348. * @info: UIO device capabilities
  349. */
  350. void uio_event_notify(struct uio_info *info)
  351. {
  352. struct uio_device *idev = info->uio_dev;
  353. atomic_inc(&idev->event);
  354. wake_up_interruptible(&idev->wait);
  355. kill_fasync(&idev->async_queue, SIGIO, POLL_IN);
  356. }
  357. EXPORT_SYMBOL_GPL(uio_event_notify);
  358. /**
  359. * uio_interrupt - hardware interrupt handler
  360. * @irq: IRQ number, can be UIO_IRQ_CYCLIC for cyclic timer
  361. * @dev_id: Pointer to the devices uio_device structure
  362. */
  363. static irqreturn_t uio_interrupt(int irq, void *dev_id)
  364. {
  365. struct uio_device *idev = (struct uio_device *)dev_id;
  366. irqreturn_t ret = idev->info->handler(irq, idev->info);
  367. if (ret == IRQ_HANDLED)
  368. uio_event_notify(idev->info);
  369. return ret;
  370. }
  371. struct uio_listener {
  372. struct uio_device *dev;
  373. s32 event_count;
  374. };
  375. static int uio_open(struct inode *inode, struct file *filep)
  376. {
  377. struct uio_device *idev;
  378. struct uio_listener *listener;
  379. int ret = 0;
  380. mutex_lock(&minor_lock);
  381. idev = idr_find(&uio_idr, iminor(inode));
  382. mutex_unlock(&minor_lock);
  383. if (!idev) {
  384. ret = -ENODEV;
  385. goto out;
  386. }
  387. if (!try_module_get(idev->owner)) {
  388. ret = -ENODEV;
  389. goto out;
  390. }
  391. listener = kmalloc(sizeof(*listener), GFP_KERNEL);
  392. if (!listener) {
  393. ret = -ENOMEM;
  394. goto err_alloc_listener;
  395. }
  396. listener->dev = idev;
  397. listener->event_count = atomic_read(&idev->event);
  398. filep->private_data = listener;
  399. if (idev->info->open) {
  400. ret = idev->info->open(idev->info, inode);
  401. if (ret)
  402. goto err_infoopen;
  403. }
  404. return 0;
  405. err_infoopen:
  406. kfree(listener);
  407. err_alloc_listener:
  408. module_put(idev->owner);
  409. out:
  410. return ret;
  411. }
  412. static int uio_fasync(int fd, struct file *filep, int on)
  413. {
  414. struct uio_listener *listener = filep->private_data;
  415. struct uio_device *idev = listener->dev;
  416. return fasync_helper(fd, filep, on, &idev->async_queue);
  417. }
  418. static int uio_release(struct inode *inode, struct file *filep)
  419. {
  420. int ret = 0;
  421. struct uio_listener *listener = filep->private_data;
  422. struct uio_device *idev = listener->dev;
  423. if (idev->info->release)
  424. ret = idev->info->release(idev->info, inode);
  425. module_put(idev->owner);
  426. kfree(listener);
  427. return ret;
  428. }
  429. static unsigned int uio_poll(struct file *filep, poll_table *wait)
  430. {
  431. struct uio_listener *listener = filep->private_data;
  432. struct uio_device *idev = listener->dev;
  433. if (!idev->info->irq)
  434. return -EIO;
  435. poll_wait(filep, &idev->wait, wait);
  436. if (listener->event_count != atomic_read(&idev->event))
  437. return POLLIN | POLLRDNORM;
  438. return 0;
  439. }
  440. static ssize_t uio_read(struct file *filep, char __user *buf,
  441. size_t count, loff_t *ppos)
  442. {
  443. struct uio_listener *listener = filep->private_data;
  444. struct uio_device *idev = listener->dev;
  445. DECLARE_WAITQUEUE(wait, current);
  446. ssize_t retval;
  447. s32 event_count;
  448. if (!idev->info->irq)
  449. return -EIO;
  450. if (count != sizeof(s32))
  451. return -EINVAL;
  452. add_wait_queue(&idev->wait, &wait);
  453. do {
  454. set_current_state(TASK_INTERRUPTIBLE);
  455. event_count = atomic_read(&idev->event);
  456. if (event_count != listener->event_count) {
  457. if (copy_to_user(buf, &event_count, count))
  458. retval = -EFAULT;
  459. else {
  460. listener->event_count = event_count;
  461. retval = count;
  462. }
  463. break;
  464. }
  465. if (filep->f_flags & O_NONBLOCK) {
  466. retval = -EAGAIN;
  467. break;
  468. }
  469. if (signal_pending(current)) {
  470. retval = -ERESTARTSYS;
  471. break;
  472. }
  473. schedule();
  474. } while (1);
  475. __set_current_state(TASK_RUNNING);
  476. remove_wait_queue(&idev->wait, &wait);
  477. return retval;
  478. }
  479. static ssize_t uio_write(struct file *filep, const char __user *buf,
  480. size_t count, loff_t *ppos)
  481. {
  482. struct uio_listener *listener = filep->private_data;
  483. struct uio_device *idev = listener->dev;
  484. ssize_t retval;
  485. s32 irq_on;
  486. if (!idev->info->irq)
  487. return -EIO;
  488. if (count != sizeof(s32))
  489. return -EINVAL;
  490. if (!idev->info->irqcontrol)
  491. return -ENOSYS;
  492. if (copy_from_user(&irq_on, buf, count))
  493. return -EFAULT;
  494. retval = idev->info->irqcontrol(idev->info, irq_on);
  495. return retval ? retval : sizeof(s32);
  496. }
  497. static int uio_find_mem_index(struct vm_area_struct *vma)
  498. {
  499. int mi;
  500. struct uio_device *idev = vma->vm_private_data;
  501. for (mi = 0; mi < MAX_UIO_MAPS; mi++) {
  502. if (idev->info->mem[mi].size == 0)
  503. return -1;
  504. if (vma->vm_pgoff == mi)
  505. return mi;
  506. }
  507. return -1;
  508. }
  509. static void uio_vma_open(struct vm_area_struct *vma)
  510. {
  511. struct uio_device *idev = vma->vm_private_data;
  512. idev->vma_count++;
  513. }
  514. static void uio_vma_close(struct vm_area_struct *vma)
  515. {
  516. struct uio_device *idev = vma->vm_private_data;
  517. idev->vma_count--;
  518. }
  519. static int uio_vma_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
  520. {
  521. struct uio_device *idev = vma->vm_private_data;
  522. struct page *page;
  523. unsigned long offset;
  524. int mi = uio_find_mem_index(vma);
  525. if (mi < 0)
  526. return VM_FAULT_SIGBUS;
  527. /*
  528. * We need to subtract mi because userspace uses offset = N*PAGE_SIZE
  529. * to use mem[N].
  530. */
  531. offset = (vmf->pgoff - mi) << PAGE_SHIFT;
  532. if (idev->info->mem[mi].memtype == UIO_MEM_LOGICAL)
  533. page = virt_to_page(idev->info->mem[mi].addr + offset);
  534. else
  535. page = vmalloc_to_page((void *)idev->info->mem[mi].addr
  536. + offset);
  537. get_page(page);
  538. vmf->page = page;
  539. return 0;
  540. }
  541. static const struct vm_operations_struct uio_vm_ops = {
  542. .open = uio_vma_open,
  543. .close = uio_vma_close,
  544. .fault = uio_vma_fault,
  545. };
  546. static int uio_mmap_physical(struct vm_area_struct *vma)
  547. {
  548. struct uio_device *idev = vma->vm_private_data;
  549. int mi = uio_find_mem_index(vma);
  550. if (mi < 0)
  551. return -EINVAL;
  552. vma->vm_flags |= VM_IO | VM_RESERVED;
  553. vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
  554. return remap_pfn_range(vma,
  555. vma->vm_start,
  556. idev->info->mem[mi].addr >> PAGE_SHIFT,
  557. vma->vm_end - vma->vm_start,
  558. vma->vm_page_prot);
  559. }
  560. static int uio_mmap_logical(struct vm_area_struct *vma)
  561. {
  562. vma->vm_flags |= VM_RESERVED;
  563. vma->vm_ops = &uio_vm_ops;
  564. uio_vma_open(vma);
  565. return 0;
  566. }
  567. static int uio_mmap(struct file *filep, struct vm_area_struct *vma)
  568. {
  569. struct uio_listener *listener = filep->private_data;
  570. struct uio_device *idev = listener->dev;
  571. int mi;
  572. unsigned long requested_pages, actual_pages;
  573. int ret = 0;
  574. if (vma->vm_end < vma->vm_start)
  575. return -EINVAL;
  576. vma->vm_private_data = idev;
  577. mi = uio_find_mem_index(vma);
  578. if (mi < 0)
  579. return -EINVAL;
  580. requested_pages = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
  581. actual_pages = ((idev->info->mem[mi].addr & ~PAGE_MASK)
  582. + idev->info->mem[mi].size + PAGE_SIZE -1) >> PAGE_SHIFT;
  583. if (requested_pages > actual_pages)
  584. return -EINVAL;
  585. if (idev->info->mmap) {
  586. ret = idev->info->mmap(idev->info, vma);
  587. return ret;
  588. }
  589. switch (idev->info->mem[mi].memtype) {
  590. case UIO_MEM_PHYS:
  591. return uio_mmap_physical(vma);
  592. case UIO_MEM_LOGICAL:
  593. case UIO_MEM_VIRTUAL:
  594. return uio_mmap_logical(vma);
  595. default:
  596. return -EINVAL;
  597. }
  598. }
  599. static const struct file_operations uio_fops = {
  600. .owner = THIS_MODULE,
  601. .open = uio_open,
  602. .release = uio_release,
  603. .read = uio_read,
  604. .write = uio_write,
  605. .mmap = uio_mmap,
  606. .poll = uio_poll,
  607. .fasync = uio_fasync,
  608. };
  609. static int uio_major_init(void)
  610. {
  611. uio_major = register_chrdev(0, "uio", &uio_fops);
  612. if (uio_major < 0)
  613. return uio_major;
  614. return 0;
  615. }
  616. static void uio_major_cleanup(void)
  617. {
  618. unregister_chrdev(uio_major, "uio");
  619. }
  620. static int init_uio_class(void)
  621. {
  622. struct class *class;
  623. int ret;
  624. /* This is the first time in here, set everything up properly */
  625. ret = uio_major_init();
  626. if (ret)
  627. goto exit;
  628. class = class_create(THIS_MODULE, "uio");
  629. if (IS_ERR(class)) {
  630. ret = IS_ERR(class);
  631. printk(KERN_ERR "class_create failed for uio\n");
  632. goto err_class_create;
  633. }
  634. uio_class = class;
  635. return 0;
  636. err_class_create:
  637. uio_major_cleanup();
  638. exit:
  639. return ret;
  640. }
  641. static void release_uio_class(void)
  642. {
  643. /* Ok, we cheat as we know we only have one uio_class */
  644. class_destroy(uio_class);
  645. uio_class = NULL;
  646. uio_major_cleanup();
  647. }
  648. /**
  649. * uio_register_device - register a new userspace IO device
  650. * @owner: module that creates the new device
  651. * @parent: parent device
  652. * @info: UIO device capabilities
  653. *
  654. * returns zero on success or a negative error code.
  655. */
  656. int __uio_register_device(struct module *owner,
  657. struct device *parent,
  658. struct uio_info *info)
  659. {
  660. struct uio_device *idev;
  661. int ret = 0;
  662. if (!parent || !info || !info->name || !info->version)
  663. return -EINVAL;
  664. info->uio_dev = NULL;
  665. idev = kzalloc(sizeof(*idev), GFP_KERNEL);
  666. if (!idev) {
  667. ret = -ENOMEM;
  668. goto err_kzalloc;
  669. }
  670. idev->owner = owner;
  671. idev->info = info;
  672. init_waitqueue_head(&idev->wait);
  673. atomic_set(&idev->event, 0);
  674. ret = uio_get_minor(idev);
  675. if (ret)
  676. goto err_get_minor;
  677. idev->dev = device_create(uio_class, parent,
  678. MKDEV(uio_major, idev->minor), idev,
  679. "uio%d", idev->minor);
  680. if (IS_ERR(idev->dev)) {
  681. printk(KERN_ERR "UIO: device register failed\n");
  682. ret = PTR_ERR(idev->dev);
  683. goto err_device_create;
  684. }
  685. ret = uio_dev_add_attributes(idev);
  686. if (ret)
  687. goto err_uio_dev_add_attributes;
  688. info->uio_dev = idev;
  689. if (info->irq && (info->irq != UIO_IRQ_CUSTOM)) {
  690. ret = request_irq(info->irq, uio_interrupt,
  691. info->irq_flags, info->name, idev);
  692. if (ret)
  693. goto err_request_irq;
  694. }
  695. return 0;
  696. err_request_irq:
  697. uio_dev_del_attributes(idev);
  698. err_uio_dev_add_attributes:
  699. device_destroy(uio_class, MKDEV(uio_major, idev->minor));
  700. err_device_create:
  701. uio_free_minor(idev);
  702. err_get_minor:
  703. kfree(idev);
  704. err_kzalloc:
  705. return ret;
  706. }
  707. EXPORT_SYMBOL_GPL(__uio_register_device);
  708. /**
  709. * uio_unregister_device - unregister a industrial IO device
  710. * @info: UIO device capabilities
  711. *
  712. */
  713. void uio_unregister_device(struct uio_info *info)
  714. {
  715. struct uio_device *idev;
  716. if (!info || !info->uio_dev)
  717. return;
  718. idev = info->uio_dev;
  719. uio_free_minor(idev);
  720. if (info->irq && (info->irq != UIO_IRQ_CUSTOM))
  721. free_irq(info->irq, idev);
  722. uio_dev_del_attributes(idev);
  723. device_destroy(uio_class, MKDEV(uio_major, idev->minor));
  724. kfree(idev);
  725. return;
  726. }
  727. EXPORT_SYMBOL_GPL(uio_unregister_device);
  728. static int __init uio_init(void)
  729. {
  730. return init_uio_class();
  731. }
  732. static void __exit uio_exit(void)
  733. {
  734. release_uio_class();
  735. }
  736. module_init(uio_init)
  737. module_exit(uio_exit)
  738. MODULE_LICENSE("GPL v2");