Commit 459c5fb4 authored by David S. Miller's avatar David S. Miller

Merge branch 'mscc-PTP-support'

Antoine Tenart says:

====================
net: mscc: PTP Hardware Clock (PHC) support

This series introduces the PTP Hardware Clock (PHC) support to the Mscc
Ocelot switch driver. In order to make use of this, a new register bank
is added and described in the device tree, as well as a new interrupt.
The use this bank and interrupt was made optional in the driver for dt
compatibility reasons.

Thanks!
Antoine

Since v5:
  - Made sure both the PTP interrupt and register bank were available to
    enable supporting h/w timestamping.
  - Added a check after a kzalloc.
  - Add Reviewed-by tags from Andrew.

Since v4:
  - Added SKBTX_IN_PROGRESS.
  - Fixed two xmas trees.
  - Rework the loop condition in ocelot_ptp_rdy_irq_handler.

Since v3:
  - Fixed a spin_unlock_irqrestore issue.

Since v2:
  - Prevented from a possible infinite loop when reading the h/w
    timestamps.
  - s/GFP_KERNEL/GFP_ATOMIC/ in the Tx path.
  - Set rx_filter to HWTSTAMP_FILTER_PTP_V2_EVENT at probe.
  - Fixed s/w timestamping dependencies.
  - Added Paul Burton's Acked-by on patches 2 and 4.

Since v1:
  - Used list_for_each_safe() in ocelot_deinit().
  - Fixed a memory leak in ocelot_deinit() by calling
    dev_kfree_skb_any().
  - Fixed a locking issue in get_hwtimestamp().
  - Handled the NULL case of ptp_clock_register().
  - Added comments on optional dt properties.
====================
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents 8ce2cfd4 4e3b0468
...@@ -12,13 +12,15 @@ Required properties: ...@@ -12,13 +12,15 @@ Required properties:
- "sys" - "sys"
- "rew" - "rew"
- "qs" - "qs"
- "ptp" (optional due to backward compatibility)
- "qsys" - "qsys"
- "ana" - "ana"
- "portX" with X from 0 to the number of last port index available on that - "portX" with X from 0 to the number of last port index available on that
switch switch
- interrupts: Should contain the switch interrupts for frame extraction and - interrupts: Should contain the switch interrupts for frame extraction,
frame injection frame injection and PTP ready.
- interrupt-names: should contain the interrupt names: "xtr", "inj" - interrupt-names: should contain the interrupt names: "xtr", "inj". Can contain
"ptp_rdy" which is optional due to backward compatibility.
- ethernet-ports: A container for child nodes representing switch ports. - ethernet-ports: A container for child nodes representing switch ports.
The ethernet-ports container has the following properties The ethernet-ports container has the following properties
...@@ -44,6 +46,7 @@ Example: ...@@ -44,6 +46,7 @@ Example:
reg = <0x1010000 0x10000>, reg = <0x1010000 0x10000>,
<0x1030000 0x10000>, <0x1030000 0x10000>,
<0x1080000 0x100>, <0x1080000 0x100>,
<0x10e0000 0x10000>,
<0x11e0000 0x100>, <0x11e0000 0x100>,
<0x11f0000 0x100>, <0x11f0000 0x100>,
<0x1200000 0x100>, <0x1200000 0x100>,
...@@ -57,11 +60,12 @@ Example: ...@@ -57,11 +60,12 @@ Example:
<0x1280000 0x100>, <0x1280000 0x100>,
<0x1800000 0x80000>, <0x1800000 0x80000>,
<0x1880000 0x10000>; <0x1880000 0x10000>;
reg-names = "sys", "rew", "qs", "port0", "port1", "port2", reg-names = "sys", "rew", "qs", "ptp", "port0", "port1",
"port3", "port4", "port5", "port6", "port7", "port2", "port3", "port4", "port5", "port6",
"port8", "port9", "port10", "qsys", "ana"; "port7", "port8", "port9", "port10", "qsys",
interrupts = <21 22>; "ana";
interrupt-names = "xtr", "inj"; interrupts = <18 21 22>;
interrupt-names = "ptp_rdy", "xtr", "inj";
ethernet-ports { ethernet-ports {
#address-cells = <1>; #address-cells = <1>;
......
This diff is collapsed.
...@@ -11,9 +11,11 @@ ...@@ -11,9 +11,11 @@
#include <linux/bitops.h> #include <linux/bitops.h>
#include <linux/etherdevice.h> #include <linux/etherdevice.h>
#include <linux/if_vlan.h> #include <linux/if_vlan.h>
#include <linux/net_tstamp.h>
#include <linux/phy.h> #include <linux/phy.h>
#include <linux/phy/phy.h> #include <linux/phy/phy.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <linux/ptp_clock_kernel.h>
#include <linux/regmap.h> #include <linux/regmap.h>
#include "ocelot_ana.h" #include "ocelot_ana.h"
...@@ -23,6 +25,7 @@ ...@@ -23,6 +25,7 @@
#include "ocelot_sys.h" #include "ocelot_sys.h"
#include "ocelot_qs.h" #include "ocelot_qs.h"
#include "ocelot_tc.h" #include "ocelot_tc.h"
#include "ocelot_ptp.h"
#define PGID_AGGR 64 #define PGID_AGGR 64
#define PGID_SRC 80 #define PGID_SRC 80
...@@ -38,14 +41,17 @@ ...@@ -38,14 +41,17 @@
#define OCELOT_STATS_CHECK_DELAY (2 * HZ) #define OCELOT_STATS_CHECK_DELAY (2 * HZ)
#define OCELOT_PTP_QUEUE_SZ 128
#define IFH_LEN 4 #define IFH_LEN 4
struct frame_info { struct frame_info {
u32 len; u32 len;
u16 port; u16 port;
u16 vid; u16 vid;
u8 cpuq;
u8 tag_type; u8 tag_type;
u16 rew_op;
u32 timestamp; /* rew_val */
}; };
#define IFH_INJ_BYPASS BIT(31) #define IFH_INJ_BYPASS BIT(31)
...@@ -54,6 +60,12 @@ struct frame_info { ...@@ -54,6 +60,12 @@ struct frame_info {
#define IFH_TAG_TYPE_C 0 #define IFH_TAG_TYPE_C 0
#define IFH_TAG_TYPE_S 1 #define IFH_TAG_TYPE_S 1
#define IFH_REW_OP_NOOP 0x0
#define IFH_REW_OP_DSCP 0x1
#define IFH_REW_OP_ONE_STEP_PTP 0x2
#define IFH_REW_OP_TWO_STEP_PTP 0x3
#define IFH_REW_OP_ORIGIN_PTP 0x5
#define OCELOT_SPEED_2500 0 #define OCELOT_SPEED_2500 0
#define OCELOT_SPEED_1000 1 #define OCELOT_SPEED_1000 1
#define OCELOT_SPEED_100 2 #define OCELOT_SPEED_100 2
...@@ -71,6 +83,7 @@ enum ocelot_target { ...@@ -71,6 +83,7 @@ enum ocelot_target {
SYS, SYS,
S2, S2,
HSIO, HSIO,
PTP,
TARGET_MAX, TARGET_MAX,
}; };
...@@ -343,6 +356,13 @@ enum ocelot_reg { ...@@ -343,6 +356,13 @@ enum ocelot_reg {
S2_CACHE_ACTION_DAT, S2_CACHE_ACTION_DAT,
S2_CACHE_CNT_DAT, S2_CACHE_CNT_DAT,
S2_CACHE_TG_DAT, S2_CACHE_TG_DAT,
PTP_PIN_CFG = PTP << TARGET_OFFSET,
PTP_PIN_TOD_SEC_MSB,
PTP_PIN_TOD_SEC_LSB,
PTP_PIN_TOD_NSEC,
PTP_CFG_MISC,
PTP_CLK_CFG_ADJ_CFG,
PTP_CLK_CFG_ADJ_FREQ,
}; };
enum ocelot_regfield { enum ocelot_regfield {
...@@ -393,6 +413,13 @@ enum ocelot_regfield { ...@@ -393,6 +413,13 @@ enum ocelot_regfield {
REGFIELD_MAX REGFIELD_MAX
}; };
enum ocelot_clk_pins {
ALT_PPS_PIN = 1,
EXT_CLK_PIN,
ALT_LDST_PIN,
TOD_ACC_PIN
};
struct ocelot_multicast { struct ocelot_multicast {
struct list_head list; struct list_head list;
unsigned char addr[ETH_ALEN]; unsigned char addr[ETH_ALEN];
...@@ -442,6 +469,13 @@ struct ocelot { ...@@ -442,6 +469,13 @@ struct ocelot {
u64 *stats; u64 *stats;
struct delayed_work stats_work; struct delayed_work stats_work;
struct workqueue_struct *stats_queue; struct workqueue_struct *stats_queue;
u8 ptp:1;
struct ptp_clock *ptp_clock;
struct ptp_clock_info ptp_info;
struct hwtstamp_config hwtstamp_config;
struct mutex ptp_lock; /* Protects the PTP interface state */
spinlock_t ptp_clock_lock; /* Protects the PTP clock */
}; };
struct ocelot_port { struct ocelot_port {
...@@ -465,6 +499,16 @@ struct ocelot_port { ...@@ -465,6 +499,16 @@ struct ocelot_port {
struct phy *serdes; struct phy *serdes;
struct ocelot_port_tc tc; struct ocelot_port_tc tc;
u8 ptp_cmd;
struct list_head skbs;
u8 ts_id;
};
struct ocelot_skb {
struct list_head head;
struct sk_buff *skb;
u8 id;
}; };
u32 __ocelot_read_ix(struct ocelot *ocelot, u32 reg, u32 offset); u32 __ocelot_read_ix(struct ocelot *ocelot, u32 reg, u32 offset);
...@@ -509,4 +553,7 @@ extern struct notifier_block ocelot_netdevice_nb; ...@@ -509,4 +553,7 @@ extern struct notifier_block ocelot_netdevice_nb;
extern struct notifier_block ocelot_switchdev_nb; extern struct notifier_block ocelot_switchdev_nb;
extern struct notifier_block ocelot_switchdev_blocking_nb; extern struct notifier_block ocelot_switchdev_blocking_nb;
int ocelot_ptp_gettime64(struct ptp_clock_info *ptp, struct timespec64 *ts);
void ocelot_get_hwtimestamp(struct ocelot *ocelot, struct timespec64 *ts);
#endif #endif
...@@ -16,24 +16,27 @@ ...@@ -16,24 +16,27 @@
#include "ocelot.h" #include "ocelot.h"
static int ocelot_parse_ifh(u32 *ifh, struct frame_info *info) #define IFH_EXTRACT_BITFIELD64(x, o, w) (((x) >> (o)) & GENMASK_ULL((w) - 1, 0))
static int ocelot_parse_ifh(u32 *_ifh, struct frame_info *info)
{ {
int i;
u8 llen, wlen; u8 llen, wlen;
u64 ifh[2];
ifh[0] = be64_to_cpu(((__force __be64 *)_ifh)[0]);
ifh[1] = be64_to_cpu(((__force __be64 *)_ifh)[1]);
/* The IFH is in network order, switch to CPU order */ wlen = IFH_EXTRACT_BITFIELD64(ifh[0], 7, 8);
for (i = 0; i < IFH_LEN; i++) llen = IFH_EXTRACT_BITFIELD64(ifh[0], 15, 6);
ifh[i] = ntohl((__force __be32)ifh[i]);
wlen = (ifh[1] >> 7) & 0xff;
llen = (ifh[1] >> 15) & 0x3f;
info->len = OCELOT_BUFFER_CELL_SZ * wlen + llen - 80; info->len = OCELOT_BUFFER_CELL_SZ * wlen + llen - 80;
info->port = (ifh[2] & GENMASK(14, 11)) >> 11; info->timestamp = IFH_EXTRACT_BITFIELD64(ifh[0], 21, 32);
info->port = IFH_EXTRACT_BITFIELD64(ifh[1], 43, 4);
info->cpuq = (ifh[3] & GENMASK(27, 20)) >> 20; info->tag_type = IFH_EXTRACT_BITFIELD64(ifh[1], 16, 1);
info->tag_type = (ifh[3] & BIT(16)) >> 16; info->vid = IFH_EXTRACT_BITFIELD64(ifh[1], 0, 12);
info->vid = ifh[3] & GENMASK(11, 0);
return 0; return 0;
} }
...@@ -91,13 +94,14 @@ static irqreturn_t ocelot_xtr_irq_handler(int irq, void *arg) ...@@ -91,13 +94,14 @@ static irqreturn_t ocelot_xtr_irq_handler(int irq, void *arg)
return IRQ_NONE; return IRQ_NONE;
do { do {
struct sk_buff *skb; struct skb_shared_hwtstamps *shhwtstamps;
u64 tod_in_ns, full_ts_in_ns;
struct frame_info info = {};
struct net_device *dev; struct net_device *dev;
u32 *buf; u32 ifh[4], val, *buf;
struct timespec64 ts;
int sz, len, buf_len; int sz, len, buf_len;
u32 ifh[4]; struct sk_buff *skb;
u32 val;
struct frame_info info;
for (i = 0; i < IFH_LEN; i++) { for (i = 0; i < IFH_LEN; i++) {
err = ocelot_rx_frame_word(ocelot, grp, true, &ifh[i]); err = ocelot_rx_frame_word(ocelot, grp, true, &ifh[i]);
...@@ -144,6 +148,22 @@ static irqreturn_t ocelot_xtr_irq_handler(int irq, void *arg) ...@@ -144,6 +148,22 @@ static irqreturn_t ocelot_xtr_irq_handler(int irq, void *arg)
break; break;
} }
if (ocelot->ptp) {
ocelot_ptp_gettime64(&ocelot->ptp_info, &ts);
tod_in_ns = ktime_set(ts.tv_sec, ts.tv_nsec);
if ((tod_in_ns & 0xffffffff) < info.timestamp)
full_ts_in_ns = (((tod_in_ns >> 32) - 1) << 32) |
info.timestamp;
else
full_ts_in_ns = (tod_in_ns & GENMASK_ULL(63, 32)) |
info.timestamp;
shhwtstamps = skb_hwtstamps(skb);
memset(shhwtstamps, 0, sizeof(struct skb_shared_hwtstamps));
shhwtstamps->hwtstamp = full_ts_in_ns;
}
/* Everything we see on an interface that is in the HW bridge /* Everything we see on an interface that is in the HW bridge
* has already been forwarded. * has already been forwarded.
*/ */
...@@ -163,6 +183,66 @@ static irqreturn_t ocelot_xtr_irq_handler(int irq, void *arg) ...@@ -163,6 +183,66 @@ static irqreturn_t ocelot_xtr_irq_handler(int irq, void *arg)
return IRQ_HANDLED; return IRQ_HANDLED;
} }
static irqreturn_t ocelot_ptp_rdy_irq_handler(int irq, void *arg)
{
int budget = OCELOT_PTP_QUEUE_SZ;
struct ocelot *ocelot = arg;
while (budget--) {
struct skb_shared_hwtstamps shhwtstamps;
struct list_head *pos, *tmp;
struct sk_buff *skb = NULL;
struct ocelot_skb *entry;
struct ocelot_port *port;
struct timespec64 ts;
u32 val, id, txport;
val = ocelot_read(ocelot, SYS_PTP_STATUS);
/* Check if a timestamp can be retrieved */
if (!(val & SYS_PTP_STATUS_PTP_MESS_VLD))
break;
WARN_ON(val & SYS_PTP_STATUS_PTP_OVFL);
/* Retrieve the ts ID and Tx port */
id = SYS_PTP_STATUS_PTP_MESS_ID_X(val);
txport = SYS_PTP_STATUS_PTP_MESS_TXPORT_X(val);
/* Retrieve its associated skb */
port = ocelot->ports[txport];
list_for_each_safe(pos, tmp, &port->skbs) {
entry = list_entry(pos, struct ocelot_skb, head);
if (entry->id != id)
continue;
skb = entry->skb;
list_del(pos);
kfree(entry);
}
/* Next ts */
ocelot_write(ocelot, SYS_PTP_NXT_PTP_NXT, SYS_PTP_NXT);
if (unlikely(!skb))
continue;
/* Get the h/w timestamp */
ocelot_get_hwtimestamp(ocelot, &ts);
/* Set the timestamp into the skb */
memset(&shhwtstamps, 0, sizeof(shhwtstamps));
shhwtstamps.hwtstamp = ktime_set(ts.tv_sec, ts.tv_nsec);
skb_tstamp_tx(skb, &shhwtstamps);
dev_kfree_skb_any(skb);
}
return IRQ_HANDLED;
}
static const struct of_device_id mscc_ocelot_match[] = { static const struct of_device_id mscc_ocelot_match[] = {
{ .compatible = "mscc,vsc7514-switch" }, { .compatible = "mscc,vsc7514-switch" },
{ } { }
...@@ -171,17 +251,18 @@ MODULE_DEVICE_TABLE(of, mscc_ocelot_match); ...@@ -171,17 +251,18 @@ MODULE_DEVICE_TABLE(of, mscc_ocelot_match);
static int mscc_ocelot_probe(struct platform_device *pdev) static int mscc_ocelot_probe(struct platform_device *pdev)
{ {
int err, irq;
unsigned int i;
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
struct device_node *ports, *portnp; struct device_node *ports, *portnp;
int err, irq_xtr, irq_ptp_rdy;
struct ocelot *ocelot; struct ocelot *ocelot;
struct regmap *hsio; struct regmap *hsio;
unsigned int i;
u32 val; u32 val;
struct { struct {
enum ocelot_target id; enum ocelot_target id;
char *name; char *name;
u8 optional:1;
} res[] = { } res[] = {
{ SYS, "sys" }, { SYS, "sys" },
{ REW, "rew" }, { REW, "rew" },
...@@ -189,6 +270,7 @@ static int mscc_ocelot_probe(struct platform_device *pdev) ...@@ -189,6 +270,7 @@ static int mscc_ocelot_probe(struct platform_device *pdev)
{ ANA, "ana" }, { ANA, "ana" },
{ QS, "qs" }, { QS, "qs" },
{ S2, "s2" }, { S2, "s2" },
{ PTP, "ptp", 1 },
}; };
if (!np && !pdev->dev.platform_data) if (!np && !pdev->dev.platform_data)
...@@ -205,8 +287,14 @@ static int mscc_ocelot_probe(struct platform_device *pdev) ...@@ -205,8 +287,14 @@ static int mscc_ocelot_probe(struct platform_device *pdev)
struct regmap *target; struct regmap *target;
target = ocelot_io_platform_init(ocelot, pdev, res[i].name); target = ocelot_io_platform_init(ocelot, pdev, res[i].name);
if (IS_ERR(target)) if (IS_ERR(target)) {
if (res[i].optional) {
ocelot->targets[res[i].id] = NULL;
continue;
}
return PTR_ERR(target); return PTR_ERR(target);
}
ocelot->targets[res[i].id] = target; ocelot->targets[res[i].id] = target;
} }
...@@ -223,16 +311,29 @@ static int mscc_ocelot_probe(struct platform_device *pdev) ...@@ -223,16 +311,29 @@ static int mscc_ocelot_probe(struct platform_device *pdev)
if (err) if (err)
return err; return err;
irq = platform_get_irq_byname(pdev, "xtr"); irq_xtr = platform_get_irq_byname(pdev, "xtr");
if (irq < 0) if (irq_xtr < 0)
return -ENODEV; return -ENODEV;
err = devm_request_threaded_irq(&pdev->dev, irq, NULL, err = devm_request_threaded_irq(&pdev->dev, irq_xtr, NULL,
ocelot_xtr_irq_handler, IRQF_ONESHOT, ocelot_xtr_irq_handler, IRQF_ONESHOT,
"frame extraction", ocelot); "frame extraction", ocelot);
if (err) if (err)
return err; return err;
irq_ptp_rdy = platform_get_irq_byname(pdev, "ptp_rdy");
if (irq_ptp_rdy > 0 && ocelot->targets[PTP]) {
err = devm_request_threaded_irq(&pdev->dev, irq_ptp_rdy, NULL,
ocelot_ptp_rdy_irq_handler,
IRQF_ONESHOT, "ptp ready",
ocelot);
if (err)
return err;
/* Both the PTP interrupt and the PTP bank are available */
ocelot->ptp = 1;
}
regmap_field_write(ocelot->regfields[SYS_RESET_CFG_MEM_INIT], 1); regmap_field_write(ocelot->regfields[SYS_RESET_CFG_MEM_INIT], 1);
regmap_field_write(ocelot->regfields[SYS_RESET_CFG_MEM_ENA], 1); regmap_field_write(ocelot->regfields[SYS_RESET_CFG_MEM_ENA], 1);
......
/* SPDX-License-Identifier: (GPL-2.0 OR MIT) */
/*
* Microsemi Ocelot Switch driver
*
* License: Dual MIT/GPL
* Copyright (c) 2017 Microsemi Corporation
*/
#ifndef _MSCC_OCELOT_PTP_H_
#define _MSCC_OCELOT_PTP_H_
#define PTP_PIN_CFG_RSZ 0x20
#define PTP_PIN_TOD_SEC_MSB_RSZ PTP_PIN_CFG_RSZ
#define PTP_PIN_TOD_SEC_LSB_RSZ PTP_PIN_CFG_RSZ
#define PTP_PIN_TOD_NSEC_RSZ PTP_PIN_CFG_RSZ
#define PTP_PIN_CFG_DOM BIT(0)
#define PTP_PIN_CFG_SYNC BIT(2)
#define PTP_PIN_CFG_ACTION(x) ((x) << 3)
#define PTP_PIN_CFG_ACTION_MASK PTP_PIN_CFG_ACTION(0x7)
enum {
PTP_PIN_ACTION_IDLE = 0,
PTP_PIN_ACTION_LOAD,
PTP_PIN_ACTION_SAVE,
PTP_PIN_ACTION_CLOCK,
PTP_PIN_ACTION_DELTA,
PTP_PIN_ACTION_NOSYNC,
PTP_PIN_ACTION_SYNC,
};
#define PTP_CFG_MISC_PTP_EN BIT(2)
#define PSEC_PER_SEC 1000000000000LL
#define PTP_CFG_CLK_ADJ_CFG_ENA BIT(0)
#define PTP_CFG_CLK_ADJ_CFG_DIR BIT(1)
#define PTP_CFG_CLK_ADJ_FREQ_NS BIT(30)
#endif
...@@ -234,6 +234,16 @@ static const u32 ocelot_s2_regmap[] = { ...@@ -234,6 +234,16 @@ static const u32 ocelot_s2_regmap[] = {
REG(S2_CACHE_TG_DAT, 0x000388), REG(S2_CACHE_TG_DAT, 0x000388),
}; };
static const u32 ocelot_ptp_regmap[] = {
REG(PTP_PIN_CFG, 0x000000),
REG(PTP_PIN_TOD_SEC_MSB, 0x000004),
REG(PTP_PIN_TOD_SEC_LSB, 0x000008),
REG(PTP_PIN_TOD_NSEC, 0x00000c),
REG(PTP_CFG_MISC, 0x0000a0),
REG(PTP_CLK_CFG_ADJ_CFG, 0x0000a4),
REG(PTP_CLK_CFG_ADJ_FREQ, 0x0000a8),
};
static const u32 *ocelot_regmap[] = { static const u32 *ocelot_regmap[] = {
[ANA] = ocelot_ana_regmap, [ANA] = ocelot_ana_regmap,
[QS] = ocelot_qs_regmap, [QS] = ocelot_qs_regmap,
...@@ -241,6 +251,7 @@ static const u32 *ocelot_regmap[] = { ...@@ -241,6 +251,7 @@ static const u32 *ocelot_regmap[] = {
[REW] = ocelot_rew_regmap, [REW] = ocelot_rew_regmap,
[SYS] = ocelot_sys_regmap, [SYS] = ocelot_sys_regmap,
[S2] = ocelot_s2_regmap, [S2] = ocelot_s2_regmap,
[PTP] = ocelot_ptp_regmap,
}; };
static const struct reg_field ocelot_regfields[] = { static const struct reg_field ocelot_regfields[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment