proc.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: proc.c,v 1.1.2.1 1998/06/07 23:21:01 geert Exp $
  3.  *
  4.  * Procfs interface for the Zorro bus.
  5.  *
  6.  * Copyright (C) 1998-2000 Geert Uytterhoeven
  7.  *
  8.  * Heavily based on the procfs interface for the PCI bus, which is
  9.  *
  10.  * Copyright (C) 1997, 1998 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
  11.  */
  12. #include <linux/types.h>
  13. #include <linux/zorro.h>
  14. #include <linux/proc_fs.h>
  15. #include <linux/init.h>
  16. #include <asm/uaccess.h>
  17. #include <asm/amigahw.h>
  18. #include <asm/setup.h>
  19. static loff_t
  20. proc_bus_zorro_lseek(struct file *file, loff_t off, int whence)
  21. {
  22. loff_t new;
  23. switch (whence) {
  24. case 0:
  25. new = off;
  26. break;
  27. case 1:
  28. new = file->f_pos + off;
  29. break;
  30. case 2:
  31. new = sizeof(struct ConfigDev) + off;
  32. break;
  33. default:
  34. return -EINVAL;
  35. }
  36. if (new < 0 || new > sizeof(struct ConfigDev))
  37. return -EINVAL;
  38. return (file->f_pos = new);
  39. }
  40. static ssize_t
  41. proc_bus_zorro_read(struct file *file, char *buf, size_t nbytes, loff_t *ppos)
  42. {
  43. struct inode *ino = file->f_dentry->d_inode;
  44. struct proc_dir_entry *dp = ino->u.generic_ip;
  45. struct zorro_dev *dev = dp->data;
  46. struct ConfigDev cd;
  47. loff_t pos = *ppos;
  48. if (pos >= sizeof(struct ConfigDev))
  49. return 0;
  50. if (nbytes >= sizeof(struct ConfigDev))
  51. nbytes = sizeof(struct ConfigDev);
  52. if (pos + nbytes > sizeof(struct ConfigDev))
  53. nbytes = sizeof(struct ConfigDev) - pos;
  54. /* Construct a ConfigDev */
  55. memset(&cd, 0, sizeof(cd));
  56. cd.cd_Rom = dev->rom;
  57. cd.cd_SlotAddr = dev->slotaddr;
  58. cd.cd_SlotSize = dev->slotsize;
  59. cd.cd_BoardAddr = (void *)dev->resource.start;
  60. cd.cd_BoardSize = dev->resource.end-dev->resource.start+1;
  61. if (copy_to_user(buf, &cd, nbytes))
  62. return -EFAULT;
  63. *ppos += nbytes;
  64. return nbytes;
  65. }
  66. static struct file_operations proc_bus_zorro_operations = {
  67. llseek: proc_bus_zorro_lseek,
  68. read: proc_bus_zorro_read,
  69. };
  70. static int
  71. get_zorro_dev_info(char *buf, char **start, off_t pos, int count)
  72. {
  73. u_int slot;
  74. off_t at = 0;
  75. int len, cnt;
  76. for (slot = cnt = 0; slot < zorro_num_autocon && count > cnt; slot++) {
  77. struct zorro_dev *dev = &zorro_autocon[slot];
  78. len = sprintf(buf, "%02xt%08xt%08lxt%08lxt%02xn", slot,
  79.       dev->id, dev->resource.start,
  80.       dev->resource.end-dev->resource.start+1,
  81.       dev->rom.er_Type);
  82. at += len;
  83. if (at >= pos) {
  84. if (!*start) {
  85. *start = buf + (pos - (at - len));
  86. cnt = at - pos;
  87. } else
  88. cnt += len;
  89. buf += len;
  90. }
  91. }
  92. return (count > cnt) ? cnt : count;
  93. }
  94. static struct proc_dir_entry *proc_bus_zorro_dir;
  95. static int __init zorro_proc_attach_device(u_int slot)
  96. {
  97. struct proc_dir_entry *entry;
  98. char name[4];
  99. sprintf(name, "%02x", slot);
  100. entry = create_proc_entry(name, 0, proc_bus_zorro_dir);
  101. if (!entry)
  102. return -ENOMEM;
  103. entry->proc_fops = &proc_bus_zorro_operations;
  104. entry->data = &zorro_autocon[slot];
  105. entry->size = sizeof(struct zorro_dev);
  106. return 0;
  107. }
  108. static int __init zorro_proc_init(void)
  109. {
  110. u_int slot;
  111. if (MACH_IS_AMIGA && AMIGAHW_PRESENT(ZORRO)) {
  112. proc_bus_zorro_dir = proc_mkdir("zorro", proc_bus);
  113. create_proc_info_entry("devices", 0, proc_bus_zorro_dir,
  114.        get_zorro_dev_info);
  115. for (slot = 0; slot < zorro_num_autocon; slot++)
  116. zorro_proc_attach_device(slot);
  117. }
  118. return 0;
  119. }
  120. __initcall(zorro_proc_init);