sonic-buildimage/platform/broadcom/saibcm-modules/sdklt/linux/knet/ngknet_ptp.c
vmittal-msft 04b9ce8e32
[BCMSAI] Update BCMSAI debian to 6.0.0.10 with 6.5.23 SDK, and opennsl module to 6.5.23 (#9046)
Manual verification on switch (TH3 device)
admin@str2-xxxxx-01:~$ bcmcmd bsv
bsv
BRCM SAI ver: [6.0.0.10], OCP SAI ver: [1.9.1], SDK ver: [sdk-6.5.23]
drivshell>

admin@str2-xxxxx-01:~$ bcmcmd version
version
Broadcom Command Monitor: Copyright (c) 1998-2021 Broadcom
Release: sdk-6.5.23 built 20211020 (Wed Oct 20 06:52:58 2021)
From root@fedbbfdbee81:/__w/2/s/output/x86-xgsall-deb/hsdk
Platform: X86
OS: Unix (Posix)
Chips:
BCM56640_A0,
BCM56850_A0,
BCM56340_A0,
BCM56960_A0, BCM56860_A0,

   BCM56970_A0, BCM56870_A0,
   BCM56980_A0, BCM56980_B0,
  
   BCM56370_A0, BCM56275_A0, BCM56770_A0,
Chips:
BCM56780_A0, BCM56782_A0, BCM56784_A0, BCM56785_A0,
BCM56786_A0, BCM56787_A0, BCM56788_A0, BCM56789_A0,
BCM56880_A0, BCM56880_B0, BCM56881_A0, BCM56881_B0,
BCM56883_A0, BCM56883_B0, BCM56990_A0, BCM56990_B0,
BCM56991_B0, BCM56992_B0, BCM56996_A0, BCM56996_B0,
BCM56997_A0, BCM56997_B0

Variant drivers:
BCM56780_A0_CNA_1_2_10, BCM56780_A0_DNA_2_7_6_0, BCM56880_A0_CNA_1_2_9, BCM56880_A0_DNA_4_9_5_0
PHYs: BCM5400, BCM54182, BCM54185, BCM54180,
BCM54140, BCM54192, BCM54195, BCM54190,
BCM54194, BCM54210, BCM54220, BCM54280,
BCM54282, BCM54240, BCM54285, BCM5428X,
BCM54290, BCM54292, BCM54294, BCM54295,
BCM54296, BCM56160-GPHY, BCM53540-GPHY, BCM56275-GPHY,
BCM8750, BCM8752, BCM8754, BCM84740,
BCM84164, BCM84758, BCM84780, BCM84784,
BCM84318, BCM84328, Sesto, BCM82780,
copper sfp

drivshell>
2021-10-28 00:12:32 -07:00

195 lines
6.3 KiB
C

/*! \file ngknet_ptp.c
*
* Utility routines for PTP.
*
*/
/*
* $Copyright: Copyright 2018-2021 Broadcom. All rights reserved.
* The term 'Broadcom' refers to Broadcom Inc. and/or its subsidiaries.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* A copy of the GNU General Public License version 2 (GPLv2) can
* be found in the LICENSES folder.$
*/
#include "ngknet_callback.h"
#include "ngknet_ptp.h"
int
ngknet_ptp_rx_config_set(struct net_device *ndev, int *filter)
{
struct ngknet_private *priv = netdev_priv(ndev);
struct ngknet_dev *dev = priv->bkn_dev;
if (!dev->cbc->ptp_rx_config_set_cb) {
return SHR_E_UNAVAIL;
}
/*
* The expected Rx filter value is passed to the callback. The callback
* should pass back the actual filter value by the paramter <filter>.
* The callback can use priv->user_data to get other private parameters
* such as phys_port, dev_type, etc, which should be introduced when the
* netif is created.
*/
return dev->cbc->ptp_rx_config_set_cb(priv, filter);
}
int
ngknet_ptp_tx_config_set(struct net_device *ndev, int type)
{
struct ngknet_private *priv = netdev_priv(ndev);
struct ngknet_dev *dev = priv->bkn_dev;
if (!dev->cbc->ptp_tx_config_set_cb) {
return SHR_E_UNAVAIL;
}
/*
* The Tx type value is passed to the callback by the parameter <type>.
* The callback should do the configuration according to the type.
* The callback can use priv->user_data to get other private parameters
* such as phys_port, dev_type, etc, which should be introduced when the
* netif is created.
*/
return dev->cbc->ptp_tx_config_set_cb(priv, &type);
}
int
ngknet_ptp_rx_hwts_get(struct net_device *ndev, struct sk_buff *skb, uint64_t *ts)
{
struct ngknet_private *priv = netdev_priv(ndev);
struct ngknet_dev *dev = priv->bkn_dev;
struct ngknet_callback_desc *cbd = NGKNET_SKB_CB(skb);
struct pkt_hdr *pkh = (struct pkt_hdr *)skb->data;
if (!dev->cbc->ptp_rx_hwts_get_cb) {
return SHR_E_UNAVAIL;
}
cbd->dev_no = dev->dev_no;
cbd->dev_id = dev->pdma_dev.dev_id;
cbd->priv = priv;
cbd->pmd = skb->data + PKT_HDR_SIZE;
cbd->pmd_len = pkh->meta_len;
cbd->pkt_len = pkh->data_len;
/*
* The callback should get timestamp value for a Rx packet and return
* by the parameter <ts>.
* Some parameters have been consolidated to SKB as above. They can be
* achieved by NGKNET_SKB_CB(skb). Specially more private paramters are
* in NGKNET_SKB_CB(skb)->priv->user_data[].
*/
return dev->cbc->ptp_rx_hwts_get_cb(skb, ts);
}
int
ngknet_ptp_tx_hwts_get(struct net_device *ndev, struct sk_buff *skb, uint64_t *ts)
{
struct ngknet_private *priv = netdev_priv(ndev);
struct ngknet_dev *dev = priv->bkn_dev;
struct ngknet_callback_desc *cbd = NGKNET_SKB_CB(skb);
struct pkt_hdr *pkh = (struct pkt_hdr *)skb->data;
if (!dev->cbc->ptp_tx_hwts_get_cb) {
return SHR_E_UNAVAIL;
}
cbd->dev_no = dev->dev_no;
cbd->dev_id = dev->pdma_dev.dev_id;
cbd->priv = priv;
cbd->pmd = skb->data + PKT_HDR_SIZE;
cbd->pmd_len = pkh->meta_len;
cbd->pkt_len = pkh->data_len;
/*
* The callback should get timestamp value for a Tx packet and return
* by the parameter <ts>.
* For HWTSTAMP_TX_ONESTEP_SYNC type, the time value can be achieved and
* returned immediately. Otherwise, for HWTSTAMP_TX_ON type, the callback
* should wait till the time value can be available, i.e. the packet has
* been tranmitted out from port.
* Some parameters have been consolidated to SKB as above. They can be
* achieved by NGKNET_SKB_CB(skb). Specially more private paramters are
* in NGKNET_SKB_CB(skb)->priv->user_data[] such as phys_port, dev_type,
* and so on.
*/
return dev->cbc->ptp_tx_hwts_get_cb(skb, ts);
}
int
ngknet_ptp_tx_meta_set(struct net_device *ndev, struct sk_buff *skb)
{
struct ngknet_private *priv = netdev_priv(ndev);
struct ngknet_dev *dev = priv->bkn_dev;
struct ngknet_callback_desc *cbd = NGKNET_SKB_CB(skb);
struct pkt_hdr *pkh = (struct pkt_hdr *)skb->data;
if (!dev->cbc->ptp_tx_meta_set_cb) {
return SHR_E_UNAVAIL;
}
cbd->dev_no = dev->dev_no;
cbd->dev_id = dev->pdma_dev.dev_id;
cbd->priv = priv;
cbd->pmd = skb->data + PKT_HDR_SIZE;
cbd->pmd_len = pkh->meta_len;
cbd->pkt_len = pkh->data_len;
/*
* The callback should configure the metadata <NGKNET_SKB_CB(skb)->pmd>
* for HW timestamping according to the corresponding switch device.
* Some parameters have been consolidated to SKB as above. They can be
* achieved by NGKNET_SKB_CB(skb). Specially more private paramters are
* in NGKNET_SKB_CB(skb)->priv->user_data[] such as phys_port, dev_type,
* and so on.
*/
return dev->cbc->ptp_tx_meta_set_cb(skb);
}
int
ngknet_ptp_phc_index_get(struct net_device *ndev, int *index)
{
struct ngknet_private *priv = netdev_priv(ndev);
struct ngknet_dev *dev = priv->bkn_dev;
if (!dev->cbc->ptp_phc_index_get_cb) {
return SHR_E_UNAVAIL;
}
/*
* The callback should return the HPC index by the parameter <index>.
* priv->user_data[] can be used to get other private parameters such as
* phys_port, dev_type, etc, which should be introduced when the netif is
* created.
*/
return dev->cbc->ptp_phc_index_get_cb(priv, index);
}
int
ngknet_ptp_dev_ctrl(struct ngknet_dev *dev, int cmd, char *data, int len)
{
if (!dev->cbc->ptp_dev_ctrl_cb) {
return SHR_E_UNAVAIL;
}
/*
* The callback is IOCTL dispatcher for PTP driver/module.
* The parameter <cmd> is the command defined by the user. The parameter
* <data> and <len> are used for interactions between the user application
* and the driver for PTP device start/stop, enable/disable, set/get, and
* so on.
*/
return dev->cbc->ptp_dev_ctrl_cb(dev, cmd, data, len);
}