hdpu_nexus.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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/module.h>
  17. #include <linux/kernel.h>
  18. #include <linux/proc_fs.h>
  19. #include <linux/hdpu_features.h>
  20. #include <linux/platform_device.h>
  21. static int hdpu_nexus_probe(struct platform_device *pdev);
  22. static int hdpu_nexus_remove(struct platform_device *pdev);
  23. static struct proc_dir_entry *hdpu_slot_id;
  24. static struct proc_dir_entry *hdpu_chassis_id;
  25. static int slot_id = -1;
  26. static int chassis_id = -1;
  27. static struct platform_driver hdpu_nexus_driver = {
  28. .probe = hdpu_nexus_probe,
  29. .remove = hdpu_nexus_remove,
  30. .driver = {
  31. .name = HDPU_NEXUS_NAME,
  32. },
  33. };
  34. int hdpu_slot_id_read(char *buffer, char **buffer_location, off_t offset,
  35. int buffer_length, int *zero, void *ptr)
  36. {
  37. if (offset > 0)
  38. return 0;
  39. return sprintf(buffer, "%d\n", slot_id);
  40. }
  41. int hdpu_chassis_id_read(char *buffer, char **buffer_location, off_t offset,
  42. int buffer_length, int *zero, void *ptr)
  43. {
  44. if (offset > 0)
  45. return 0;
  46. return sprintf(buffer, "%d\n", chassis_id);
  47. }
  48. static int hdpu_nexus_probe(struct platform_device *pdev)
  49. {
  50. struct resource *res;
  51. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  52. int *nexus_id_addr;
  53. nexus_id_addr =
  54. ioremap(res->start, (unsigned long)(res->end - res->start));
  55. if (nexus_id_addr) {
  56. slot_id = (*nexus_id_addr >> 8) & 0x1f;
  57. chassis_id = *nexus_id_addr & 0xff;
  58. iounmap(nexus_id_addr);
  59. } else
  60. printk("Could not map slot id\n");
  61. hdpu_slot_id = create_proc_entry("sky_slot_id", 0666, &proc_root);
  62. hdpu_slot_id->read_proc = hdpu_slot_id_read;
  63. hdpu_chassis_id = create_proc_entry("sky_chassis_id", 0666, &proc_root);
  64. hdpu_chassis_id->read_proc = hdpu_chassis_id_read;
  65. return 0;
  66. }
  67. static int hdpu_nexus_remove(struct platform_device *pdev)
  68. {
  69. slot_id = -1;
  70. chassis_id = -1;
  71. remove_proc_entry("sky_slot_id", &proc_root);
  72. remove_proc_entry("sky_chassis_id", &proc_root);
  73. hdpu_slot_id = 0;
  74. hdpu_chassis_id = 0;
  75. return 0;
  76. }
  77. static int __init nexus_init(void)
  78. {
  79. int rc;
  80. rc = platform_driver_register(&hdpu_nexus_driver);
  81. return rc;
  82. }
  83. static void __exit nexus_exit(void)
  84. {
  85. platform_driver_unregister(&hdpu_nexus_driver);
  86. }
  87. module_init(nexus_init);
  88. module_exit(nexus_exit);
  89. MODULE_AUTHOR("Brian Waite");
  90. MODULE_LICENSE("GPL");