hdpu_nexus.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*
  2. * Sky Nexus Register Driver
  3. *
  4. * Copyright (C) 2002 Brian Waite
  5. *
  6. * This driver allows reading the Nexus register
  7. * It exports the /proc/sky_chassis_id and also
  8. * /proc/sky_slot_id pseudo-file for status information.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License
  12. * as published by the Free Software Foundation; either version
  13. * 2 of the License, or (at your option) any later version.
  14. *
  15. */
  16. #include <linux/version.h>
  17. #include <linux/module.h>
  18. #include <linux/kernel.h>
  19. #include <linux/proc_fs.h>
  20. #include <linux/hdpu_features.h>
  21. #include <linux/pci.h>
  22. #include <linux/device.h>
  23. static int hdpu_nexus_probe(struct device *ddev);
  24. static int hdpu_nexus_remove(struct device *ddev);
  25. static struct proc_dir_entry *hdpu_slot_id;
  26. static struct proc_dir_entry *hdpu_chassis_id;
  27. static int slot_id = -1;
  28. static int chassis_id = -1;
  29. static struct device_driver hdpu_nexus_driver = {
  30. .name = HDPU_NEXUS_NAME,
  31. .bus = &platform_bus_type,
  32. .probe = hdpu_nexus_probe,
  33. .remove = hdpu_nexus_remove,
  34. };
  35. int hdpu_slot_id_read(char *buffer, char **buffer_location, off_t offset,
  36. int buffer_length, int *zero, void *ptr)
  37. {
  38. if (offset > 0)
  39. return 0;
  40. return sprintf(buffer, "%d\n", slot_id);
  41. }
  42. int hdpu_chassis_id_read(char *buffer, char **buffer_location, off_t offset,
  43. int buffer_length, int *zero, void *ptr)
  44. {
  45. if (offset > 0)
  46. return 0;
  47. return sprintf(buffer, "%d\n", chassis_id);
  48. }
  49. static int hdpu_nexus_probe(struct device *ddev)
  50. {
  51. struct platform_device *pdev = to_platform_device(ddev);
  52. struct resource *res;
  53. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  54. int *nexus_id_addr;
  55. nexus_id_addr =
  56. ioremap(res->start, (unsigned long)(res->end - res->start));
  57. if (nexus_id_addr) {
  58. slot_id = (*nexus_id_addr >> 8) & 0x1f;
  59. chassis_id = *nexus_id_addr & 0xff;
  60. iounmap(nexus_id_addr);
  61. } else
  62. printk("Could not map slot id\n");
  63. hdpu_slot_id = create_proc_entry("sky_slot_id", 0666, &proc_root);
  64. hdpu_slot_id->read_proc = hdpu_slot_id_read;
  65. hdpu_slot_id->nlink = 1;
  66. hdpu_chassis_id = create_proc_entry("sky_chassis_id", 0666, &proc_root);
  67. hdpu_chassis_id->read_proc = hdpu_chassis_id_read;
  68. hdpu_chassis_id->nlink = 1;
  69. return 0;
  70. }
  71. static int hdpu_nexus_remove(struct device *ddev)
  72. {
  73. slot_id = -1;
  74. chassis_id = -1;
  75. remove_proc_entry("sky_slot_id", &proc_root);
  76. remove_proc_entry("sky_chassis_id", &proc_root);
  77. hdpu_slot_id = 0;
  78. hdpu_chassis_id = 0;
  79. return 0;
  80. }
  81. static int __init nexus_init(void)
  82. {
  83. int rc;
  84. rc = driver_register(&hdpu_nexus_driver);
  85. return rc;
  86. }
  87. static void __exit nexus_exit(void)
  88. {
  89. driver_unregister(&hdpu_nexus_driver);
  90. }
  91. module_init(nexus_init);
  92. module_exit(nexus_exit);
  93. MODULE_AUTHOR("Brian Waite");
  94. MODULE_LICENSE("GPL");