ptp_private.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * PTP 1588 clock support - private declarations for the core module.
  3. *
  4. * Copyright (C) 2010 OMICRON electronics GmbH
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20. #ifndef _PTP_PRIVATE_H_
  21. #define _PTP_PRIVATE_H_
  22. #include <linux/cdev.h>
  23. #include <linux/device.h>
  24. #include <linux/mutex.h>
  25. #include <linux/posix-clock.h>
  26. #include <linux/ptp_clock.h>
  27. #include <linux/ptp_clock_kernel.h>
  28. #include <linux/time.h>
  29. #define PTP_MAX_TIMESTAMPS 128
  30. #define PTP_BUF_TIMESTAMPS 30
  31. struct timestamp_event_queue {
  32. struct ptp_extts_event buf[PTP_MAX_TIMESTAMPS];
  33. int head;
  34. int tail;
  35. spinlock_t lock;
  36. };
  37. struct ptp_clock {
  38. struct posix_clock clock;
  39. struct device *dev;
  40. struct ptp_clock_info *info;
  41. dev_t devid;
  42. int index; /* index into clocks.map */
  43. struct pps_device *pps_source;
  44. long dialed_frequency; /* remembers the frequency adjustment */
  45. struct timestamp_event_queue tsevq; /* simple fifo for time stamps */
  46. struct mutex tsevq_mux; /* one process at a time reading the fifo */
  47. struct mutex pincfg_mux; /* protect concurrent info->pin_config access */
  48. wait_queue_head_t tsev_wq;
  49. int defunct; /* tells readers to go away when clock is being removed */
  50. struct device_attribute *pin_dev_attr;
  51. struct attribute **pin_attr;
  52. struct attribute_group pin_attr_group;
  53. };
  54. /*
  55. * The function queue_cnt() is safe for readers to call without
  56. * holding q->lock. Readers use this function to verify that the queue
  57. * is nonempty before proceeding with a dequeue operation. The fact
  58. * that a writer might concurrently increment the tail does not
  59. * matter, since the queue remains nonempty nonetheless.
  60. */
  61. static inline int queue_cnt(struct timestamp_event_queue *q)
  62. {
  63. int cnt = q->tail - q->head;
  64. return cnt < 0 ? PTP_MAX_TIMESTAMPS + cnt : cnt;
  65. }
  66. /*
  67. * see ptp_chardev.c
  68. */
  69. /* caller must hold pincfg_mux */
  70. int ptp_set_pinfunc(struct ptp_clock *ptp, unsigned int pin,
  71. enum ptp_pin_function func, unsigned int chan);
  72. long ptp_ioctl(struct posix_clock *pc,
  73. unsigned int cmd, unsigned long arg);
  74. int ptp_open(struct posix_clock *pc, fmode_t fmode);
  75. ssize_t ptp_read(struct posix_clock *pc,
  76. uint flags, char __user *buf, size_t cnt);
  77. uint ptp_poll(struct posix_clock *pc,
  78. struct file *fp, poll_table *wait);
  79. /*
  80. * see ptp_sysfs.c
  81. */
  82. extern const struct attribute_group *ptp_groups[];
  83. int ptp_cleanup_sysfs(struct ptp_clock *ptp);
  84. int ptp_populate_sysfs(struct ptp_clock *ptp);
  85. #endif