Skip to content

Commit

Permalink
fsl/fman_port: support getting timestamp
Browse files Browse the repository at this point in the history
This patch is to add fman_port_get_tstamp() interface
to get timestamp.

Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
Acked-by: Richard Cochran <richardcochran@gmail.com>
Acked-by: Madalin Bucur <madalin.bucur@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Yangbo Lu authored and David S. Miller committed Jun 26, 2018
1 parent 0fab782 commit 880f874
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
12 changes: 12 additions & 0 deletions drivers/net/ethernet/freescale/fman/fman_port.c
Original file line number Diff line number Diff line change
Expand Up @@ -1731,6 +1731,18 @@ int fman_port_get_hash_result_offset(struct fman_port *port, u32 *offset)
}
EXPORT_SYMBOL(fman_port_get_hash_result_offset);

int fman_port_get_tstamp(struct fman_port *port, const void *data, u64 *tstamp)
{
if (port->buffer_offsets.time_stamp_offset == ILLEGAL_BASE)
return -EINVAL;

*tstamp = be64_to_cpu(*(__be64 *)(data +
port->buffer_offsets.time_stamp_offset));

return 0;
}
EXPORT_SYMBOL(fman_port_get_tstamp);

static int fman_port_probe(struct platform_device *of_dev)
{
struct fman_port *port;
Expand Down
2 changes: 2 additions & 0 deletions drivers/net/ethernet/freescale/fman/fman_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ u32 fman_port_get_qman_channel_id(struct fman_port *port);

int fman_port_get_hash_result_offset(struct fman_port *port, u32 *offset);

int fman_port_get_tstamp(struct fman_port *port, const void *data, u64 *tstamp);

struct fman_port *fman_port_bind(struct device *dev);

#endif /* __FMAN_PORT_H */

0 comments on commit 880f874

Please sign in to comment.