linux/drivers/net/ethernet/marvell/octeontx2/af/ptp.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0 */
   2/* Marvell PTP driver
   3 *
   4 * Copyright (C) 2020 Marvell.
   5 *
   6 */
   7
   8#ifndef PTP_H
   9#define PTP_H
  10
  11#include <linux/timecounter.h>
  12#include <linux/time64.h>
  13#include <linux/spinlock.h>
  14
  15struct ptp {
  16        struct pci_dev *pdev;
  17        void __iomem *reg_base;
  18        u32 clock_rate;
  19};
  20
  21struct ptp *ptp_get(void);
  22void ptp_put(struct ptp *ptp);
  23
  24extern struct pci_driver ptp_driver;
  25
  26#endif
  27