1ae06c70bSJeff Kirsher // SPDX-License-Identifier: GPL-2.0
251dce24bSJeff Kirsher /* Copyright(c) 2013 - 2018 Intel Corporation. */
3beb0dff1SJacob Keller
4beb0dff1SJacob Keller #include <linux/ptp_classify.h>
510507130SPiotr Kwapulinski #include <linux/posix-clock.h>
6*e77220eeSIvan Vecera #include "i40e.h"
7*e77220eeSIvan Vecera #include "i40e_devids.h"
8beb0dff1SJacob Keller
9beb0dff1SJacob Keller /* The XL710 timesync is very much like Intel's 82599 design when it comes to
10beb0dff1SJacob Keller * the fundamental clock design. However, the clock operations are much simpler
11beb0dff1SJacob Keller * in the XL710 because the device supports a full 64 bits of nanoseconds.
12beb0dff1SJacob Keller * Because the field is so wide, we can forgo the cycle counter and just
13beb0dff1SJacob Keller * operate with the nanosecond field directly without fear of overflow.
14beb0dff1SJacob Keller *
15beb0dff1SJacob Keller * Much like the 82599, the update period is dependent upon the link speed:
1626b0ce8dSJesse Brandeburg * At 40Gb, 25Gb, or no link, the period is 1.6ns.
1726b0ce8dSJesse Brandeburg * At 10Gb or 5Gb link, the period is multiplied by 2. (3.2ns)
18beb0dff1SJacob Keller * At 1Gb link, the period is multiplied by 20. (32ns)
19beb0dff1SJacob Keller * 1588 functionality is not supported at 100Mbps.
20beb0dff1SJacob Keller */
21beb0dff1SJacob Keller #define I40E_PTP_40GB_INCVAL 0x0199999999ULL
22830e0dd9SJacob Keller #define I40E_PTP_10GB_INCVAL_MULT 2
2326b0ce8dSJesse Brandeburg #define I40E_PTP_5GB_INCVAL_MULT 2
24830e0dd9SJacob Keller #define I40E_PTP_1GB_INCVAL_MULT 20
2510507130SPiotr Kwapulinski #define I40E_ISGN 0x80000000
26beb0dff1SJacob Keller
2741a1d04bSJesse Brandeburg #define I40E_PRTTSYN_CTL1_TSYNTYPE_V1 BIT(I40E_PRTTSYN_CTL1_TSYNTYPE_SHIFT)
2841a1d04bSJesse Brandeburg #define I40E_PRTTSYN_CTL1_TSYNTYPE_V2 (2 << \
29beb0dff1SJacob Keller I40E_PRTTSYN_CTL1_TSYNTYPE_SHIFT)
3010507130SPiotr Kwapulinski #define I40E_SUBDEV_ID_25G_PTP_PIN 0xB
3110507130SPiotr Kwapulinski
3210507130SPiotr Kwapulinski enum i40e_ptp_pin {
3310507130SPiotr Kwapulinski SDP3_2 = 0,
3410507130SPiotr Kwapulinski SDP3_3,
3510507130SPiotr Kwapulinski GPIO_4
3610507130SPiotr Kwapulinski };
3710507130SPiotr Kwapulinski
38e6d25dbdSIvan Vecera enum i40e_can_set_pins {
3910507130SPiotr Kwapulinski CANT_DO_PINS = -1,
4010507130SPiotr Kwapulinski CAN_SET_PINS,
4110507130SPiotr Kwapulinski CAN_DO_PINS
4210507130SPiotr Kwapulinski };
4310507130SPiotr Kwapulinski
4410507130SPiotr Kwapulinski static struct ptp_pin_desc sdp_desc[] = {
4510507130SPiotr Kwapulinski /* name idx func chan */
4610507130SPiotr Kwapulinski {"SDP3_2", SDP3_2, PTP_PF_NONE, 0},
4710507130SPiotr Kwapulinski {"SDP3_3", SDP3_3, PTP_PF_NONE, 1},
4810507130SPiotr Kwapulinski {"GPIO_4", GPIO_4, PTP_PF_NONE, 1},
4910507130SPiotr Kwapulinski };
5010507130SPiotr Kwapulinski
5110507130SPiotr Kwapulinski enum i40e_ptp_gpio_pin_state {
5210507130SPiotr Kwapulinski end = -2,
5310507130SPiotr Kwapulinski invalid,
5410507130SPiotr Kwapulinski off,
5510507130SPiotr Kwapulinski in_A,
5610507130SPiotr Kwapulinski in_B,
5710507130SPiotr Kwapulinski out_A,
5810507130SPiotr Kwapulinski out_B,
5910507130SPiotr Kwapulinski };
6010507130SPiotr Kwapulinski
6110507130SPiotr Kwapulinski static const char * const i40e_ptp_gpio_pin_state2str[] = {
6210507130SPiotr Kwapulinski "off", "in_A", "in_B", "out_A", "out_B"
6310507130SPiotr Kwapulinski };
6410507130SPiotr Kwapulinski
6510507130SPiotr Kwapulinski enum i40e_ptp_led_pin_state {
6610507130SPiotr Kwapulinski led_end = -2,
6710507130SPiotr Kwapulinski low = 0,
6810507130SPiotr Kwapulinski high,
6910507130SPiotr Kwapulinski };
7010507130SPiotr Kwapulinski
7110507130SPiotr Kwapulinski struct i40e_ptp_pins_settings {
7210507130SPiotr Kwapulinski enum i40e_ptp_gpio_pin_state sdp3_2;
7310507130SPiotr Kwapulinski enum i40e_ptp_gpio_pin_state sdp3_3;
7410507130SPiotr Kwapulinski enum i40e_ptp_gpio_pin_state gpio_4;
7510507130SPiotr Kwapulinski enum i40e_ptp_led_pin_state led2_0;
7610507130SPiotr Kwapulinski enum i40e_ptp_led_pin_state led2_1;
7710507130SPiotr Kwapulinski enum i40e_ptp_led_pin_state led3_0;
7810507130SPiotr Kwapulinski enum i40e_ptp_led_pin_state led3_1;
7910507130SPiotr Kwapulinski };
8010507130SPiotr Kwapulinski
8110507130SPiotr Kwapulinski static const struct i40e_ptp_pins_settings
8210507130SPiotr Kwapulinski i40e_ptp_pin_led_allowed_states[] = {
8310507130SPiotr Kwapulinski {off, off, off, high, high, high, high},
8410507130SPiotr Kwapulinski {off, in_A, off, high, high, high, low},
8510507130SPiotr Kwapulinski {off, out_A, off, high, low, high, high},
8610507130SPiotr Kwapulinski {off, in_B, off, high, high, high, low},
8710507130SPiotr Kwapulinski {off, out_B, off, high, low, high, high},
8810507130SPiotr Kwapulinski {in_A, off, off, high, high, high, low},
8910507130SPiotr Kwapulinski {in_A, in_B, off, high, high, high, low},
9010507130SPiotr Kwapulinski {in_A, out_B, off, high, low, high, high},
9110507130SPiotr Kwapulinski {out_A, off, off, high, low, high, high},
9210507130SPiotr Kwapulinski {out_A, in_B, off, high, low, high, high},
9310507130SPiotr Kwapulinski {in_B, off, off, high, high, high, low},
9410507130SPiotr Kwapulinski {in_B, in_A, off, high, high, high, low},
9510507130SPiotr Kwapulinski {in_B, out_A, off, high, low, high, high},
9610507130SPiotr Kwapulinski {out_B, off, off, high, low, high, high},
9710507130SPiotr Kwapulinski {out_B, in_A, off, high, low, high, high},
9810507130SPiotr Kwapulinski {off, off, in_A, high, high, low, high},
9910507130SPiotr Kwapulinski {off, out_A, in_A, high, low, low, high},
10010507130SPiotr Kwapulinski {off, in_B, in_A, high, high, low, low},
10110507130SPiotr Kwapulinski {off, out_B, in_A, high, low, low, high},
10210507130SPiotr Kwapulinski {out_A, off, in_A, high, low, low, high},
10310507130SPiotr Kwapulinski {out_A, in_B, in_A, high, low, low, high},
10410507130SPiotr Kwapulinski {in_B, off, in_A, high, high, low, low},
10510507130SPiotr Kwapulinski {in_B, out_A, in_A, high, low, low, high},
10610507130SPiotr Kwapulinski {out_B, off, in_A, high, low, low, high},
10710507130SPiotr Kwapulinski {off, off, out_A, low, high, high, high},
10810507130SPiotr Kwapulinski {off, in_A, out_A, low, high, high, low},
10910507130SPiotr Kwapulinski {off, in_B, out_A, low, high, high, low},
11010507130SPiotr Kwapulinski {off, out_B, out_A, low, low, high, high},
11110507130SPiotr Kwapulinski {in_A, off, out_A, low, high, high, low},
11210507130SPiotr Kwapulinski {in_A, in_B, out_A, low, high, high, low},
11310507130SPiotr Kwapulinski {in_A, out_B, out_A, low, low, high, high},
11410507130SPiotr Kwapulinski {in_B, off, out_A, low, high, high, low},
11510507130SPiotr Kwapulinski {in_B, in_A, out_A, low, high, high, low},
11610507130SPiotr Kwapulinski {out_B, off, out_A, low, low, high, high},
11710507130SPiotr Kwapulinski {out_B, in_A, out_A, low, low, high, high},
11810507130SPiotr Kwapulinski {off, off, in_B, high, high, low, high},
11910507130SPiotr Kwapulinski {off, in_A, in_B, high, high, low, low},
12010507130SPiotr Kwapulinski {off, out_A, in_B, high, low, low, high},
12110507130SPiotr Kwapulinski {off, out_B, in_B, high, low, low, high},
12210507130SPiotr Kwapulinski {in_A, off, in_B, high, high, low, low},
12310507130SPiotr Kwapulinski {in_A, out_B, in_B, high, low, low, high},
12410507130SPiotr Kwapulinski {out_A, off, in_B, high, low, low, high},
12510507130SPiotr Kwapulinski {out_B, off, in_B, high, low, low, high},
12610507130SPiotr Kwapulinski {out_B, in_A, in_B, high, low, low, high},
12710507130SPiotr Kwapulinski {off, off, out_B, low, high, high, high},
12810507130SPiotr Kwapulinski {off, in_A, out_B, low, high, high, low},
12910507130SPiotr Kwapulinski {off, out_A, out_B, low, low, high, high},
13010507130SPiotr Kwapulinski {off, in_B, out_B, low, high, high, low},
13110507130SPiotr Kwapulinski {in_A, off, out_B, low, high, high, low},
13210507130SPiotr Kwapulinski {in_A, in_B, out_B, low, high, high, low},
13310507130SPiotr Kwapulinski {out_A, off, out_B, low, low, high, high},
13410507130SPiotr Kwapulinski {out_A, in_B, out_B, low, low, high, high},
13510507130SPiotr Kwapulinski {in_B, off, out_B, low, high, high, low},
13610507130SPiotr Kwapulinski {in_B, in_A, out_B, low, high, high, low},
13710507130SPiotr Kwapulinski {in_B, out_A, out_B, low, low, high, high},
13810507130SPiotr Kwapulinski {end, end, end, led_end, led_end, led_end, led_end}
13910507130SPiotr Kwapulinski };
14010507130SPiotr Kwapulinski
14110507130SPiotr Kwapulinski static int i40e_ptp_set_pins(struct i40e_pf *pf,
14210507130SPiotr Kwapulinski struct i40e_ptp_pins_settings *pins);
14310507130SPiotr Kwapulinski
14410507130SPiotr Kwapulinski /**
14510507130SPiotr Kwapulinski * i40e_ptp_extts0_work - workqueue task function
14610507130SPiotr Kwapulinski * @work: workqueue task structure
14710507130SPiotr Kwapulinski *
14810507130SPiotr Kwapulinski * Service for PTP external clock event
14910507130SPiotr Kwapulinski **/
i40e_ptp_extts0_work(struct work_struct * work)15010507130SPiotr Kwapulinski static void i40e_ptp_extts0_work(struct work_struct *work)
15110507130SPiotr Kwapulinski {
15210507130SPiotr Kwapulinski struct i40e_pf *pf = container_of(work, struct i40e_pf,
15310507130SPiotr Kwapulinski ptp_extts0_work);
15410507130SPiotr Kwapulinski struct i40e_hw *hw = &pf->hw;
15510507130SPiotr Kwapulinski struct ptp_clock_event event;
15610507130SPiotr Kwapulinski u32 hi, lo;
15710507130SPiotr Kwapulinski
15810507130SPiotr Kwapulinski /* Event time is captured by one of the two matched registers
15910507130SPiotr Kwapulinski * PRTTSYN_EVNT_L: 32 LSB of sampled time event
16010507130SPiotr Kwapulinski * PRTTSYN_EVNT_H: 32 MSB of sampled time event
16110507130SPiotr Kwapulinski * Event is defined in PRTTSYN_EVNT_0 register
16210507130SPiotr Kwapulinski */
16310507130SPiotr Kwapulinski lo = rd32(hw, I40E_PRTTSYN_EVNT_L(0));
16410507130SPiotr Kwapulinski hi = rd32(hw, I40E_PRTTSYN_EVNT_H(0));
16510507130SPiotr Kwapulinski
16610507130SPiotr Kwapulinski event.timestamp = (((u64)hi) << 32) | lo;
16710507130SPiotr Kwapulinski
16810507130SPiotr Kwapulinski event.type = PTP_CLOCK_EXTTS;
16910507130SPiotr Kwapulinski event.index = hw->pf_id;
17010507130SPiotr Kwapulinski
17110507130SPiotr Kwapulinski /* fire event */
17210507130SPiotr Kwapulinski ptp_clock_event(pf->ptp_clock, &event);
17310507130SPiotr Kwapulinski }
17410507130SPiotr Kwapulinski
17510507130SPiotr Kwapulinski /**
17610507130SPiotr Kwapulinski * i40e_is_ptp_pin_dev - check if device supports PTP pins
17710507130SPiotr Kwapulinski * @hw: pointer to the hardware structure
17810507130SPiotr Kwapulinski *
17910507130SPiotr Kwapulinski * Return true if device supports PTP pins, false otherwise.
18010507130SPiotr Kwapulinski **/
i40e_is_ptp_pin_dev(struct i40e_hw * hw)18110507130SPiotr Kwapulinski static bool i40e_is_ptp_pin_dev(struct i40e_hw *hw)
18210507130SPiotr Kwapulinski {
18310507130SPiotr Kwapulinski return hw->device_id == I40E_DEV_ID_25G_SFP28 &&
18410507130SPiotr Kwapulinski hw->subsystem_device_id == I40E_SUBDEV_ID_25G_PTP_PIN;
18510507130SPiotr Kwapulinski }
18610507130SPiotr Kwapulinski
18710507130SPiotr Kwapulinski /**
18810507130SPiotr Kwapulinski * i40e_can_set_pins - check possibility of manipulating the pins
18910507130SPiotr Kwapulinski * @pf: board private structure
19010507130SPiotr Kwapulinski *
19110507130SPiotr Kwapulinski * Check if all conditions are satisfied to manipulate PTP pins.
19210507130SPiotr Kwapulinski * Return CAN_SET_PINS if pins can be set on a specific PF or
19310507130SPiotr Kwapulinski * return CAN_DO_PINS if pins can be manipulated within a NIC or
19410507130SPiotr Kwapulinski * return CANT_DO_PINS otherwise.
19510507130SPiotr Kwapulinski **/
i40e_can_set_pins(struct i40e_pf * pf)196e6d25dbdSIvan Vecera static enum i40e_can_set_pins i40e_can_set_pins(struct i40e_pf *pf)
19710507130SPiotr Kwapulinski {
19810507130SPiotr Kwapulinski if (!i40e_is_ptp_pin_dev(&pf->hw)) {
19910507130SPiotr Kwapulinski dev_warn(&pf->pdev->dev,
20010507130SPiotr Kwapulinski "PTP external clock not supported.\n");
20110507130SPiotr Kwapulinski return CANT_DO_PINS;
20210507130SPiotr Kwapulinski }
20310507130SPiotr Kwapulinski
20410507130SPiotr Kwapulinski if (!pf->ptp_pins) {
20510507130SPiotr Kwapulinski dev_warn(&pf->pdev->dev,
20610507130SPiotr Kwapulinski "PTP PIN manipulation not allowed.\n");
20710507130SPiotr Kwapulinski return CANT_DO_PINS;
20810507130SPiotr Kwapulinski }
20910507130SPiotr Kwapulinski
21010507130SPiotr Kwapulinski if (pf->hw.pf_id) {
21110507130SPiotr Kwapulinski dev_warn(&pf->pdev->dev,
21210507130SPiotr Kwapulinski "PTP PINs should be accessed via PF0.\n");
21310507130SPiotr Kwapulinski return CAN_DO_PINS;
21410507130SPiotr Kwapulinski }
21510507130SPiotr Kwapulinski
21610507130SPiotr Kwapulinski return CAN_SET_PINS;
21710507130SPiotr Kwapulinski }
21810507130SPiotr Kwapulinski
21910507130SPiotr Kwapulinski /**
22010507130SPiotr Kwapulinski * i40_ptp_reset_timing_events - Reset PTP timing events
22110507130SPiotr Kwapulinski * @pf: Board private structure
22210507130SPiotr Kwapulinski *
22310507130SPiotr Kwapulinski * This function resets timing events for pf.
22410507130SPiotr Kwapulinski **/
i40_ptp_reset_timing_events(struct i40e_pf * pf)22510507130SPiotr Kwapulinski static void i40_ptp_reset_timing_events(struct i40e_pf *pf)
22610507130SPiotr Kwapulinski {
22710507130SPiotr Kwapulinski u32 i;
22810507130SPiotr Kwapulinski
22910507130SPiotr Kwapulinski spin_lock_bh(&pf->ptp_rx_lock);
23010507130SPiotr Kwapulinski for (i = 0; i <= I40E_PRTTSYN_RXTIME_L_MAX_INDEX; i++) {
23110507130SPiotr Kwapulinski /* reading and automatically clearing timing events registers */
23210507130SPiotr Kwapulinski rd32(&pf->hw, I40E_PRTTSYN_RXTIME_L(i));
23310507130SPiotr Kwapulinski rd32(&pf->hw, I40E_PRTTSYN_RXTIME_H(i));
23410507130SPiotr Kwapulinski pf->latch_events[i] = 0;
23510507130SPiotr Kwapulinski }
23610507130SPiotr Kwapulinski /* reading and automatically clearing timing events registers */
23710507130SPiotr Kwapulinski rd32(&pf->hw, I40E_PRTTSYN_TXTIME_L);
23810507130SPiotr Kwapulinski rd32(&pf->hw, I40E_PRTTSYN_TXTIME_H);
23910507130SPiotr Kwapulinski
24010507130SPiotr Kwapulinski pf->tx_hwtstamp_timeouts = 0;
24110507130SPiotr Kwapulinski pf->tx_hwtstamp_skipped = 0;
24210507130SPiotr Kwapulinski pf->rx_hwtstamp_cleared = 0;
24310507130SPiotr Kwapulinski pf->latch_event_flags = 0;
24410507130SPiotr Kwapulinski spin_unlock_bh(&pf->ptp_rx_lock);
24510507130SPiotr Kwapulinski }
24610507130SPiotr Kwapulinski
24710507130SPiotr Kwapulinski /**
24810507130SPiotr Kwapulinski * i40e_ptp_verify - check pins
24910507130SPiotr Kwapulinski * @ptp: ptp clock
25010507130SPiotr Kwapulinski * @pin: pin index
25110507130SPiotr Kwapulinski * @func: assigned function
25210507130SPiotr Kwapulinski * @chan: channel
25310507130SPiotr Kwapulinski *
25410507130SPiotr Kwapulinski * Check pins consistency.
25510507130SPiotr Kwapulinski * Return 0 on success or error on failure.
25610507130SPiotr Kwapulinski **/
i40e_ptp_verify(struct ptp_clock_info * ptp,unsigned int pin,enum ptp_pin_function func,unsigned int chan)25710507130SPiotr Kwapulinski static int i40e_ptp_verify(struct ptp_clock_info *ptp, unsigned int pin,
25810507130SPiotr Kwapulinski enum ptp_pin_function func, unsigned int chan)
25910507130SPiotr Kwapulinski {
26010507130SPiotr Kwapulinski switch (func) {
26110507130SPiotr Kwapulinski case PTP_PF_NONE:
26210507130SPiotr Kwapulinski case PTP_PF_EXTTS:
26310507130SPiotr Kwapulinski case PTP_PF_PEROUT:
26410507130SPiotr Kwapulinski break;
26510507130SPiotr Kwapulinski case PTP_PF_PHYSYNC:
26610507130SPiotr Kwapulinski return -EOPNOTSUPP;
26710507130SPiotr Kwapulinski }
26810507130SPiotr Kwapulinski return 0;
26910507130SPiotr Kwapulinski }
270beb0dff1SJacob Keller
271beb0dff1SJacob Keller /**
272beb0dff1SJacob Keller * i40e_ptp_read - Read the PHC time from the device
273beb0dff1SJacob Keller * @pf: Board private structure
274beb0dff1SJacob Keller * @ts: timespec structure to hold the current time value
2759a2d57a7SMiroslav Lichvar * @sts: structure to hold the system time before and after reading the PHC
276beb0dff1SJacob Keller *
277beb0dff1SJacob Keller * This function reads the PRTTSYN_TIME registers and stores them in a
278beb0dff1SJacob Keller * timespec. However, since the registers are 64 bits of nanoseconds, we must
279beb0dff1SJacob Keller * convert the result to a timespec before we can return.
280beb0dff1SJacob Keller **/
i40e_ptp_read(struct i40e_pf * pf,struct timespec64 * ts,struct ptp_system_timestamp * sts)2819a2d57a7SMiroslav Lichvar static void i40e_ptp_read(struct i40e_pf *pf, struct timespec64 *ts,
2829a2d57a7SMiroslav Lichvar struct ptp_system_timestamp *sts)
283beb0dff1SJacob Keller {
284beb0dff1SJacob Keller struct i40e_hw *hw = &pf->hw;
285beb0dff1SJacob Keller u32 hi, lo;
286beb0dff1SJacob Keller u64 ns;
287beb0dff1SJacob Keller
288beb0dff1SJacob Keller /* The timer latches on the lowest register read. */
2899a2d57a7SMiroslav Lichvar ptp_read_system_prets(sts);
290beb0dff1SJacob Keller lo = rd32(hw, I40E_PRTTSYN_TIME_L);
2919a2d57a7SMiroslav Lichvar ptp_read_system_postts(sts);
292beb0dff1SJacob Keller hi = rd32(hw, I40E_PRTTSYN_TIME_H);
293beb0dff1SJacob Keller
294beb0dff1SJacob Keller ns = (((u64)hi) << 32) | lo;
295beb0dff1SJacob Keller
2966f7a9b8aSRichard Cochran *ts = ns_to_timespec64(ns);
297beb0dff1SJacob Keller }
298beb0dff1SJacob Keller
299beb0dff1SJacob Keller /**
300beb0dff1SJacob Keller * i40e_ptp_write - Write the PHC time to the device
301beb0dff1SJacob Keller * @pf: Board private structure
302beb0dff1SJacob Keller * @ts: timespec structure that holds the new time value
303beb0dff1SJacob Keller *
304beb0dff1SJacob Keller * This function writes the PRTTSYN_TIME registers with the user value. Since
305beb0dff1SJacob Keller * we receive a timespec from the stack, we must convert that timespec into
306beb0dff1SJacob Keller * nanoseconds before programming the registers.
307beb0dff1SJacob Keller **/
i40e_ptp_write(struct i40e_pf * pf,const struct timespec64 * ts)3086f7a9b8aSRichard Cochran static void i40e_ptp_write(struct i40e_pf *pf, const struct timespec64 *ts)
309beb0dff1SJacob Keller {
310beb0dff1SJacob Keller struct i40e_hw *hw = &pf->hw;
3116f7a9b8aSRichard Cochran u64 ns = timespec64_to_ns(ts);
312beb0dff1SJacob Keller
313beb0dff1SJacob Keller /* The timer will not update until the high register is written, so
314beb0dff1SJacob Keller * write the low register first.
315beb0dff1SJacob Keller */
316beb0dff1SJacob Keller wr32(hw, I40E_PRTTSYN_TIME_L, ns & 0xFFFFFFFF);
317beb0dff1SJacob Keller wr32(hw, I40E_PRTTSYN_TIME_H, ns >> 32);
318beb0dff1SJacob Keller }
319beb0dff1SJacob Keller
320beb0dff1SJacob Keller /**
321beb0dff1SJacob Keller * i40e_ptp_convert_to_hwtstamp - Convert device clock to system time
322beb0dff1SJacob Keller * @hwtstamps: Timestamp structure to update
323beb0dff1SJacob Keller * @timestamp: Timestamp from the hardware
324beb0dff1SJacob Keller *
325beb0dff1SJacob Keller * We need to convert the NIC clock value into a hwtstamp which can be used by
326beb0dff1SJacob Keller * the upper level timestamping functions. Since the timestamp is simply a 64-
327beb0dff1SJacob Keller * bit nanosecond value, we can call ns_to_ktime directly to handle this.
328beb0dff1SJacob Keller **/
i40e_ptp_convert_to_hwtstamp(struct skb_shared_hwtstamps * hwtstamps,u64 timestamp)329beb0dff1SJacob Keller static void i40e_ptp_convert_to_hwtstamp(struct skb_shared_hwtstamps *hwtstamps,
330beb0dff1SJacob Keller u64 timestamp)
331beb0dff1SJacob Keller {
332beb0dff1SJacob Keller memset(hwtstamps, 0, sizeof(*hwtstamps));
333beb0dff1SJacob Keller
334beb0dff1SJacob Keller hwtstamps->hwtstamp = ns_to_ktime(timestamp);
335beb0dff1SJacob Keller }
336beb0dff1SJacob Keller
337beb0dff1SJacob Keller /**
338ccd3bf98SJacob Keller * i40e_ptp_adjfine - Adjust the PHC frequency
339beb0dff1SJacob Keller * @ptp: The PTP clock structure
340ccd3bf98SJacob Keller * @scaled_ppm: Scaled parts per million adjustment from base
341beb0dff1SJacob Keller *
342ccd3bf98SJacob Keller * Adjust the frequency of the PHC by the indicated delta from the base
343ccd3bf98SJacob Keller * frequency.
344ccd3bf98SJacob Keller *
345ccd3bf98SJacob Keller * Scaled parts per million is ppm with a 16 bit binary fractional field.
346beb0dff1SJacob Keller **/
i40e_ptp_adjfine(struct ptp_clock_info * ptp,long scaled_ppm)347ccd3bf98SJacob Keller static int i40e_ptp_adjfine(struct ptp_clock_info *ptp, long scaled_ppm)
348beb0dff1SJacob Keller {
349beb0dff1SJacob Keller struct i40e_pf *pf = container_of(ptp, struct i40e_pf, ptp_caps);
350beb0dff1SJacob Keller struct i40e_hw *hw = &pf->hw;
3511060707eSJacob Keller u64 adj, base_adj;
352beb0dff1SJacob Keller
3533626a690SJacob Keller smp_mb(); /* Force any pending update before accessing. */
3541060707eSJacob Keller base_adj = I40E_PTP_40GB_INCVAL * READ_ONCE(pf->ptp_adj_mult);
355beb0dff1SJacob Keller
3561060707eSJacob Keller adj = adjust_by_scaled_ppm(base_adj, scaled_ppm);
357830e0dd9SJacob Keller
358beb0dff1SJacob Keller wr32(hw, I40E_PRTTSYN_INC_L, adj & 0xFFFFFFFF);
359beb0dff1SJacob Keller wr32(hw, I40E_PRTTSYN_INC_H, adj >> 32);
360beb0dff1SJacob Keller
361beb0dff1SJacob Keller return 0;
362beb0dff1SJacob Keller }
363beb0dff1SJacob Keller
364beb0dff1SJacob Keller /**
36510507130SPiotr Kwapulinski * i40e_ptp_set_1pps_signal_hw - configure 1PPS PTP signal for pins
36610507130SPiotr Kwapulinski * @pf: the PF private data structure
36710507130SPiotr Kwapulinski *
36810507130SPiotr Kwapulinski * Configure 1PPS signal used for PTP pins
36910507130SPiotr Kwapulinski **/
i40e_ptp_set_1pps_signal_hw(struct i40e_pf * pf)37010507130SPiotr Kwapulinski static void i40e_ptp_set_1pps_signal_hw(struct i40e_pf *pf)
37110507130SPiotr Kwapulinski {
37210507130SPiotr Kwapulinski struct i40e_hw *hw = &pf->hw;
37310507130SPiotr Kwapulinski struct timespec64 now;
37410507130SPiotr Kwapulinski u64 ns;
37510507130SPiotr Kwapulinski
37610507130SPiotr Kwapulinski wr32(hw, I40E_PRTTSYN_AUX_0(1), 0);
37710507130SPiotr Kwapulinski wr32(hw, I40E_PRTTSYN_AUX_1(1), I40E_PRTTSYN_AUX_1_INSTNT);
37810507130SPiotr Kwapulinski wr32(hw, I40E_PRTTSYN_AUX_0(1), I40E_PRTTSYN_AUX_0_OUT_ENABLE);
37910507130SPiotr Kwapulinski
38010507130SPiotr Kwapulinski i40e_ptp_read(pf, &now, NULL);
38110507130SPiotr Kwapulinski now.tv_sec += I40E_PTP_2_SEC_DELAY;
38210507130SPiotr Kwapulinski now.tv_nsec = 0;
38310507130SPiotr Kwapulinski ns = timespec64_to_ns(&now);
38410507130SPiotr Kwapulinski
38510507130SPiotr Kwapulinski /* I40E_PRTTSYN_TGT_L(1) */
38610507130SPiotr Kwapulinski wr32(hw, I40E_PRTTSYN_TGT_L(1), ns & 0xFFFFFFFF);
38710507130SPiotr Kwapulinski /* I40E_PRTTSYN_TGT_H(1) */
38810507130SPiotr Kwapulinski wr32(hw, I40E_PRTTSYN_TGT_H(1), ns >> 32);
38910507130SPiotr Kwapulinski wr32(hw, I40E_PRTTSYN_CLKO(1), I40E_PTP_HALF_SECOND);
39010507130SPiotr Kwapulinski wr32(hw, I40E_PRTTSYN_AUX_1(1), I40E_PRTTSYN_AUX_1_INSTNT);
39110507130SPiotr Kwapulinski wr32(hw, I40E_PRTTSYN_AUX_0(1),
39210507130SPiotr Kwapulinski I40E_PRTTSYN_AUX_0_OUT_ENABLE_CLK_MOD);
39310507130SPiotr Kwapulinski }
39410507130SPiotr Kwapulinski
39510507130SPiotr Kwapulinski /**
396beb0dff1SJacob Keller * i40e_ptp_adjtime - Adjust the PHC time
397beb0dff1SJacob Keller * @ptp: The PTP clock structure
398beb0dff1SJacob Keller * @delta: Offset in nanoseconds to adjust the PHC time by
399beb0dff1SJacob Keller *
4004d607043SJacob Keller * Adjust the current clock time by a delta specified in nanoseconds.
401beb0dff1SJacob Keller **/
i40e_ptp_adjtime(struct ptp_clock_info * ptp,s64 delta)402beb0dff1SJacob Keller static int i40e_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
403beb0dff1SJacob Keller {
404beb0dff1SJacob Keller struct i40e_pf *pf = container_of(ptp, struct i40e_pf, ptp_caps);
40510507130SPiotr Kwapulinski struct i40e_hw *hw = &pf->hw;
406beb0dff1SJacob Keller
40719551262SJacob Keller mutex_lock(&pf->tmreg_lock);
408beb0dff1SJacob Keller
40910507130SPiotr Kwapulinski if (delta > -999999900LL && delta < 999999900LL) {
41010507130SPiotr Kwapulinski int neg_adj = 0;
41110507130SPiotr Kwapulinski u32 timadj;
41210507130SPiotr Kwapulinski u64 tohw;
41310507130SPiotr Kwapulinski
41410507130SPiotr Kwapulinski if (delta < 0) {
41510507130SPiotr Kwapulinski neg_adj = 1;
41610507130SPiotr Kwapulinski tohw = -delta;
41710507130SPiotr Kwapulinski } else {
41810507130SPiotr Kwapulinski tohw = delta;
41910507130SPiotr Kwapulinski }
42010507130SPiotr Kwapulinski
42110507130SPiotr Kwapulinski timadj = tohw & 0x3FFFFFFF;
42210507130SPiotr Kwapulinski if (neg_adj)
42310507130SPiotr Kwapulinski timadj |= I40E_ISGN;
42410507130SPiotr Kwapulinski wr32(hw, I40E_PRTTSYN_ADJ, timadj);
42510507130SPiotr Kwapulinski } else {
42610507130SPiotr Kwapulinski struct timespec64 then, now;
42710507130SPiotr Kwapulinski
42810507130SPiotr Kwapulinski then = ns_to_timespec64(delta);
4299a2d57a7SMiroslav Lichvar i40e_ptp_read(pf, &now, NULL);
430b3ccbbceSJacob Keller now = timespec64_add(now, then);
4316f7a9b8aSRichard Cochran i40e_ptp_write(pf, (const struct timespec64 *)&now);
43210507130SPiotr Kwapulinski i40e_ptp_set_1pps_signal_hw(pf);
43310507130SPiotr Kwapulinski }
434beb0dff1SJacob Keller
43519551262SJacob Keller mutex_unlock(&pf->tmreg_lock);
436beb0dff1SJacob Keller
437beb0dff1SJacob Keller return 0;
438beb0dff1SJacob Keller }
439beb0dff1SJacob Keller
440beb0dff1SJacob Keller /**
4419a2d57a7SMiroslav Lichvar * i40e_ptp_gettimex - Get the time of the PHC
442beb0dff1SJacob Keller * @ptp: The PTP clock structure
443beb0dff1SJacob Keller * @ts: timespec structure to hold the current time value
4449a2d57a7SMiroslav Lichvar * @sts: structure to hold the system time before and after reading the PHC
445beb0dff1SJacob Keller *
446beb0dff1SJacob Keller * Read the device clock and return the correct value on ns, after converting it
447beb0dff1SJacob Keller * into a timespec struct.
448beb0dff1SJacob Keller **/
i40e_ptp_gettimex(struct ptp_clock_info * ptp,struct timespec64 * ts,struct ptp_system_timestamp * sts)4499a2d57a7SMiroslav Lichvar static int i40e_ptp_gettimex(struct ptp_clock_info *ptp, struct timespec64 *ts,
4509a2d57a7SMiroslav Lichvar struct ptp_system_timestamp *sts)
451beb0dff1SJacob Keller {
452beb0dff1SJacob Keller struct i40e_pf *pf = container_of(ptp, struct i40e_pf, ptp_caps);
453beb0dff1SJacob Keller
45419551262SJacob Keller mutex_lock(&pf->tmreg_lock);
4559a2d57a7SMiroslav Lichvar i40e_ptp_read(pf, ts, sts);
45619551262SJacob Keller mutex_unlock(&pf->tmreg_lock);
457beb0dff1SJacob Keller
458beb0dff1SJacob Keller return 0;
459beb0dff1SJacob Keller }
460beb0dff1SJacob Keller
461beb0dff1SJacob Keller /**
462beb0dff1SJacob Keller * i40e_ptp_settime - Set the time of the PHC
463beb0dff1SJacob Keller * @ptp: The PTP clock structure
46410507130SPiotr Kwapulinski * @ts: timespec64 structure that holds the new time value
465beb0dff1SJacob Keller *
466beb0dff1SJacob Keller * Set the device clock to the user input value. The conversion from timespec
467beb0dff1SJacob Keller * to ns happens in the write function.
468beb0dff1SJacob Keller **/
i40e_ptp_settime(struct ptp_clock_info * ptp,const struct timespec64 * ts)469beb0dff1SJacob Keller static int i40e_ptp_settime(struct ptp_clock_info *ptp,
4706f7a9b8aSRichard Cochran const struct timespec64 *ts)
471beb0dff1SJacob Keller {
472beb0dff1SJacob Keller struct i40e_pf *pf = container_of(ptp, struct i40e_pf, ptp_caps);
473beb0dff1SJacob Keller
47419551262SJacob Keller mutex_lock(&pf->tmreg_lock);
475beb0dff1SJacob Keller i40e_ptp_write(pf, ts);
47619551262SJacob Keller mutex_unlock(&pf->tmreg_lock);
477beb0dff1SJacob Keller
478beb0dff1SJacob Keller return 0;
479beb0dff1SJacob Keller }
480beb0dff1SJacob Keller
481beb0dff1SJacob Keller /**
48210507130SPiotr Kwapulinski * i40e_pps_configure - configure PPS events
48310507130SPiotr Kwapulinski * @ptp: ptp clock
48410507130SPiotr Kwapulinski * @rq: clock request
48510507130SPiotr Kwapulinski * @on: status
486beb0dff1SJacob Keller *
48710507130SPiotr Kwapulinski * Configure PPS events for external clock source.
48810507130SPiotr Kwapulinski * Return 0 on success or error on failure.
48910507130SPiotr Kwapulinski **/
i40e_pps_configure(struct ptp_clock_info * ptp,struct ptp_clock_request * rq,int on)49010507130SPiotr Kwapulinski static int i40e_pps_configure(struct ptp_clock_info *ptp,
49110507130SPiotr Kwapulinski struct ptp_clock_request *rq,
49210507130SPiotr Kwapulinski int on)
49310507130SPiotr Kwapulinski {
49410507130SPiotr Kwapulinski struct i40e_pf *pf = container_of(ptp, struct i40e_pf, ptp_caps);
49510507130SPiotr Kwapulinski
49610507130SPiotr Kwapulinski if (!!on)
49710507130SPiotr Kwapulinski i40e_ptp_set_1pps_signal_hw(pf);
49810507130SPiotr Kwapulinski
49910507130SPiotr Kwapulinski return 0;
50010507130SPiotr Kwapulinski }
50110507130SPiotr Kwapulinski
50210507130SPiotr Kwapulinski /**
50310507130SPiotr Kwapulinski * i40e_pin_state - determine PIN state
50410507130SPiotr Kwapulinski * @index: PIN index
50510507130SPiotr Kwapulinski * @func: function assigned to PIN
50610507130SPiotr Kwapulinski *
50710507130SPiotr Kwapulinski * Determine PIN state based on PIN index and function assigned.
50810507130SPiotr Kwapulinski * Return PIN state.
50910507130SPiotr Kwapulinski **/
i40e_pin_state(int index,int func)51010507130SPiotr Kwapulinski static enum i40e_ptp_gpio_pin_state i40e_pin_state(int index, int func)
51110507130SPiotr Kwapulinski {
51210507130SPiotr Kwapulinski enum i40e_ptp_gpio_pin_state state = off;
51310507130SPiotr Kwapulinski
51410507130SPiotr Kwapulinski if (index == 0 && func == PTP_PF_EXTTS)
51510507130SPiotr Kwapulinski state = in_A;
51610507130SPiotr Kwapulinski if (index == 1 && func == PTP_PF_EXTTS)
51710507130SPiotr Kwapulinski state = in_B;
51810507130SPiotr Kwapulinski if (index == 0 && func == PTP_PF_PEROUT)
51910507130SPiotr Kwapulinski state = out_A;
52010507130SPiotr Kwapulinski if (index == 1 && func == PTP_PF_PEROUT)
52110507130SPiotr Kwapulinski state = out_B;
52210507130SPiotr Kwapulinski
52310507130SPiotr Kwapulinski return state;
52410507130SPiotr Kwapulinski }
52510507130SPiotr Kwapulinski
52610507130SPiotr Kwapulinski /**
52710507130SPiotr Kwapulinski * i40e_ptp_enable_pin - enable PINs.
52810507130SPiotr Kwapulinski * @pf: private board structure
52910507130SPiotr Kwapulinski * @chan: channel
53010507130SPiotr Kwapulinski * @func: PIN function
53110507130SPiotr Kwapulinski * @on: state
53210507130SPiotr Kwapulinski *
53310507130SPiotr Kwapulinski * Enable PTP pins for external clock source.
53410507130SPiotr Kwapulinski * Return 0 on success or error code on failure.
53510507130SPiotr Kwapulinski **/
i40e_ptp_enable_pin(struct i40e_pf * pf,unsigned int chan,enum ptp_pin_function func,int on)53610507130SPiotr Kwapulinski static int i40e_ptp_enable_pin(struct i40e_pf *pf, unsigned int chan,
53710507130SPiotr Kwapulinski enum ptp_pin_function func, int on)
53810507130SPiotr Kwapulinski {
53910507130SPiotr Kwapulinski enum i40e_ptp_gpio_pin_state *pin = NULL;
54010507130SPiotr Kwapulinski struct i40e_ptp_pins_settings pins;
54110507130SPiotr Kwapulinski int pin_index;
54210507130SPiotr Kwapulinski
54310507130SPiotr Kwapulinski /* Use PF0 to set pins. Return success for user space tools */
54410507130SPiotr Kwapulinski if (pf->hw.pf_id)
54510507130SPiotr Kwapulinski return 0;
54610507130SPiotr Kwapulinski
54710507130SPiotr Kwapulinski /* Preserve previous state of pins that we don't touch */
54810507130SPiotr Kwapulinski pins.sdp3_2 = pf->ptp_pins->sdp3_2;
54910507130SPiotr Kwapulinski pins.sdp3_3 = pf->ptp_pins->sdp3_3;
55010507130SPiotr Kwapulinski pins.gpio_4 = pf->ptp_pins->gpio_4;
55110507130SPiotr Kwapulinski
55210507130SPiotr Kwapulinski /* To turn on the pin - find the corresponding one based on
55310507130SPiotr Kwapulinski * the given index. To to turn the function off - find
55410507130SPiotr Kwapulinski * which pin had it assigned. Don't use ptp_find_pin here
55510507130SPiotr Kwapulinski * because it tries to lock the pincfg_mux which is locked by
55610507130SPiotr Kwapulinski * ptp_pin_store() that calls here.
55710507130SPiotr Kwapulinski */
55810507130SPiotr Kwapulinski if (on) {
55910507130SPiotr Kwapulinski pin_index = ptp_find_pin(pf->ptp_clock, func, chan);
56010507130SPiotr Kwapulinski if (pin_index < 0)
56110507130SPiotr Kwapulinski return -EBUSY;
56210507130SPiotr Kwapulinski
56310507130SPiotr Kwapulinski switch (pin_index) {
56410507130SPiotr Kwapulinski case SDP3_2:
56510507130SPiotr Kwapulinski pin = &pins.sdp3_2;
56610507130SPiotr Kwapulinski break;
56710507130SPiotr Kwapulinski case SDP3_3:
56810507130SPiotr Kwapulinski pin = &pins.sdp3_3;
56910507130SPiotr Kwapulinski break;
57010507130SPiotr Kwapulinski case GPIO_4:
57110507130SPiotr Kwapulinski pin = &pins.gpio_4;
57210507130SPiotr Kwapulinski break;
57310507130SPiotr Kwapulinski default:
57410507130SPiotr Kwapulinski return -EINVAL;
57510507130SPiotr Kwapulinski }
57610507130SPiotr Kwapulinski
57710507130SPiotr Kwapulinski *pin = i40e_pin_state(chan, func);
57810507130SPiotr Kwapulinski } else {
57910507130SPiotr Kwapulinski pins.sdp3_2 = off;
58010507130SPiotr Kwapulinski pins.sdp3_3 = off;
58110507130SPiotr Kwapulinski pins.gpio_4 = off;
58210507130SPiotr Kwapulinski }
58310507130SPiotr Kwapulinski
58410507130SPiotr Kwapulinski return i40e_ptp_set_pins(pf, &pins) ? -EINVAL : 0;
58510507130SPiotr Kwapulinski }
58610507130SPiotr Kwapulinski
58710507130SPiotr Kwapulinski /**
58810507130SPiotr Kwapulinski * i40e_ptp_feature_enable - Enable external clock pins
58910507130SPiotr Kwapulinski * @ptp: The PTP clock structure
59010507130SPiotr Kwapulinski * @rq: The PTP clock request structure
59110507130SPiotr Kwapulinski * @on: To turn feature on/off
59210507130SPiotr Kwapulinski *
59310507130SPiotr Kwapulinski * Setting on/off PTP PPS feature for pin.
594beb0dff1SJacob Keller **/
i40e_ptp_feature_enable(struct ptp_clock_info * ptp,struct ptp_clock_request * rq,int on)59569d1a70cSJacob Keller static int i40e_ptp_feature_enable(struct ptp_clock_info *ptp,
59610507130SPiotr Kwapulinski struct ptp_clock_request *rq,
59710507130SPiotr Kwapulinski int on)
598beb0dff1SJacob Keller {
59910507130SPiotr Kwapulinski struct i40e_pf *pf = container_of(ptp, struct i40e_pf, ptp_caps);
60010507130SPiotr Kwapulinski
60110507130SPiotr Kwapulinski enum ptp_pin_function func;
60210507130SPiotr Kwapulinski unsigned int chan;
60310507130SPiotr Kwapulinski
60410507130SPiotr Kwapulinski /* TODO: Implement flags handling for EXTTS and PEROUT */
60510507130SPiotr Kwapulinski switch (rq->type) {
60610507130SPiotr Kwapulinski case PTP_CLK_REQ_EXTTS:
60710507130SPiotr Kwapulinski func = PTP_PF_EXTTS;
60810507130SPiotr Kwapulinski chan = rq->extts.index;
60910507130SPiotr Kwapulinski break;
61010507130SPiotr Kwapulinski case PTP_CLK_REQ_PEROUT:
61110507130SPiotr Kwapulinski func = PTP_PF_PEROUT;
61210507130SPiotr Kwapulinski chan = rq->perout.index;
61310507130SPiotr Kwapulinski break;
61410507130SPiotr Kwapulinski case PTP_CLK_REQ_PPS:
61510507130SPiotr Kwapulinski return i40e_pps_configure(ptp, rq, on);
61610507130SPiotr Kwapulinski default:
617beb0dff1SJacob Keller return -EOPNOTSUPP;
618beb0dff1SJacob Keller }
619beb0dff1SJacob Keller
62010507130SPiotr Kwapulinski return i40e_ptp_enable_pin(pf, chan, func, on);
62110507130SPiotr Kwapulinski }
62210507130SPiotr Kwapulinski
623beb0dff1SJacob Keller /**
624262de08fSJesse Brandeburg * i40e_ptp_get_rx_events - Read I40E_PRTTSYN_STAT_1 and latch events
62512490501SJacob Keller * @pf: the PF data structure
62612490501SJacob Keller *
62712490501SJacob Keller * This function reads I40E_PRTTSYN_STAT_1 and updates the corresponding timers
62812490501SJacob Keller * for noticed latch events. This allows the driver to keep track of the first
62912490501SJacob Keller * time a latch event was noticed which will be used to help clear out Rx
63012490501SJacob Keller * timestamps for packets that got dropped or lost.
63112490501SJacob Keller *
63212490501SJacob Keller * This function will return the current value of I40E_PRTTSYN_STAT_1 and is
63312490501SJacob Keller * expected to be called only while under the ptp_rx_lock.
63412490501SJacob Keller **/
i40e_ptp_get_rx_events(struct i40e_pf * pf)63512490501SJacob Keller static u32 i40e_ptp_get_rx_events(struct i40e_pf *pf)
63612490501SJacob Keller {
63712490501SJacob Keller struct i40e_hw *hw = &pf->hw;
63812490501SJacob Keller u32 prttsyn_stat, new_latch_events;
63912490501SJacob Keller int i;
64012490501SJacob Keller
64112490501SJacob Keller prttsyn_stat = rd32(hw, I40E_PRTTSYN_STAT_1);
64212490501SJacob Keller new_latch_events = prttsyn_stat & ~pf->latch_event_flags;
64312490501SJacob Keller
64412490501SJacob Keller /* Update the jiffies time for any newly latched timestamp. This
64512490501SJacob Keller * ensures that we store the time that we first discovered a timestamp
64612490501SJacob Keller * was latched by the hardware. The service task will later determine
64712490501SJacob Keller * if we should free the latch and drop that timestamp should too much
64812490501SJacob Keller * time pass. This flow ensures that we only update jiffies for new
64912490501SJacob Keller * events latched since the last time we checked, and not all events
65012490501SJacob Keller * currently latched, so that the service task accounting remains
65112490501SJacob Keller * accurate.
65212490501SJacob Keller */
65312490501SJacob Keller for (i = 0; i < 4; i++) {
65412490501SJacob Keller if (new_latch_events & BIT(i))
65512490501SJacob Keller pf->latch_events[i] = jiffies;
65612490501SJacob Keller }
65712490501SJacob Keller
65812490501SJacob Keller /* Finally, we store the current status of the Rx timestamp latches */
65912490501SJacob Keller pf->latch_event_flags = prttsyn_stat;
66012490501SJacob Keller
66112490501SJacob Keller return prttsyn_stat;
66212490501SJacob Keller }
66312490501SJacob Keller
66412490501SJacob Keller /**
665beb0dff1SJacob Keller * i40e_ptp_rx_hang - Detect error case when Rx timestamp registers are hung
66661189556SJacob Keller * @pf: The PF private data structure
667beb0dff1SJacob Keller *
668beb0dff1SJacob Keller * This watchdog task is scheduled to detect error case where hardware has
669beb0dff1SJacob Keller * dropped an Rx packet that was timestamped when the ring is full. The
670beb0dff1SJacob Keller * particular error is rare but leaves the device in a state unable to timestamp
671beb0dff1SJacob Keller * any future packets.
672beb0dff1SJacob Keller **/
i40e_ptp_rx_hang(struct i40e_pf * pf)67361189556SJacob Keller void i40e_ptp_rx_hang(struct i40e_pf *pf)
674beb0dff1SJacob Keller {
675beb0dff1SJacob Keller struct i40e_hw *hw = &pf->hw;
676e6e3fc2bSJacob Keller unsigned int i, cleared = 0;
677beb0dff1SJacob Keller
678b535a013SJacob Keller /* Since we cannot turn off the Rx timestamp logic if the device is
679b535a013SJacob Keller * configured for Tx timestamping, we check if Rx timestamping is
680b535a013SJacob Keller * configured. We don't want to spuriously warn about Rx timestamp
681b535a013SJacob Keller * hangs if we don't care about the timestamps.
682b535a013SJacob Keller */
683b535a013SJacob Keller if (!(pf->flags & I40E_FLAG_PTP) || !pf->ptp_rx)
684beb0dff1SJacob Keller return;
685beb0dff1SJacob Keller
68612490501SJacob Keller spin_lock_bh(&pf->ptp_rx_lock);
687beb0dff1SJacob Keller
68812490501SJacob Keller /* Update current latch times for Rx events */
68912490501SJacob Keller i40e_ptp_get_rx_events(pf);
69012490501SJacob Keller
69112490501SJacob Keller /* Check all the currently latched Rx events and see whether they have
69212490501SJacob Keller * been latched for over a second. It is assumed that any timestamp
69312490501SJacob Keller * should have been cleared within this time, or else it was captured
69412490501SJacob Keller * for a dropped frame that the driver never received. Thus, we will
69512490501SJacob Keller * clear any timestamp that has been latched for over 1 second.
696beb0dff1SJacob Keller */
69712490501SJacob Keller for (i = 0; i < 4; i++) {
69812490501SJacob Keller if ((pf->latch_event_flags & BIT(i)) &&
69912490501SJacob Keller time_is_before_jiffies(pf->latch_events[i] + HZ)) {
70012490501SJacob Keller rd32(hw, I40E_PRTTSYN_RXTIME_H(i));
70112490501SJacob Keller pf->latch_event_flags &= ~BIT(i);
702e6e3fc2bSJacob Keller cleared++;
703beb0dff1SJacob Keller }
704beb0dff1SJacob Keller }
705beb0dff1SJacob Keller
70612490501SJacob Keller spin_unlock_bh(&pf->ptp_rx_lock);
707e6e3fc2bSJacob Keller
708e6e3fc2bSJacob Keller /* Log a warning if more than 2 timestamps got dropped in the same
709e6e3fc2bSJacob Keller * check. We don't want to warn about all drops because it can occur
710e6e3fc2bSJacob Keller * in normal scenarios such as PTP frames on multicast addresses we
711e6e3fc2bSJacob Keller * aren't listening to. However, administrator should know if this is
712e6e3fc2bSJacob Keller * the reason packets aren't receiving timestamps.
713e6e3fc2bSJacob Keller */
714e6e3fc2bSJacob Keller if (cleared > 2)
715e6e3fc2bSJacob Keller dev_dbg(&pf->pdev->dev,
716e6e3fc2bSJacob Keller "Dropped %d missed RXTIME timestamp events\n",
717e6e3fc2bSJacob Keller cleared);
718e6e3fc2bSJacob Keller
719e6e3fc2bSJacob Keller /* Finally, update the rx_hwtstamp_cleared counter */
720e6e3fc2bSJacob Keller pf->rx_hwtstamp_cleared += cleared;
72112490501SJacob Keller }
72212490501SJacob Keller
723beb0dff1SJacob Keller /**
7240bc0706bSJacob Keller * i40e_ptp_tx_hang - Detect error case when Tx timestamp register is hung
7250bc0706bSJacob Keller * @pf: The PF private data structure
7260bc0706bSJacob Keller *
7270bc0706bSJacob Keller * This watchdog task is run periodically to make sure that we clear the Tx
7280bc0706bSJacob Keller * timestamp logic if we don't obtain a timestamp in a reasonable amount of
7290bc0706bSJacob Keller * time. It is unexpected in the normal case but if it occurs it results in
7309c0c3b83SJacob Keller * permanently preventing timestamps of future packets.
7310bc0706bSJacob Keller **/
i40e_ptp_tx_hang(struct i40e_pf * pf)7320bc0706bSJacob Keller void i40e_ptp_tx_hang(struct i40e_pf *pf)
7330bc0706bSJacob Keller {
734c79756cbSJacob Keller struct sk_buff *skb;
735c79756cbSJacob Keller
7360bc0706bSJacob Keller if (!(pf->flags & I40E_FLAG_PTP) || !pf->ptp_tx)
7370bc0706bSJacob Keller return;
7380bc0706bSJacob Keller
7390bc0706bSJacob Keller /* Nothing to do if we're not already waiting for a timestamp */
7400bc0706bSJacob Keller if (!test_bit(__I40E_PTP_TX_IN_PROGRESS, pf->state))
7410bc0706bSJacob Keller return;
7420bc0706bSJacob Keller
7430bc0706bSJacob Keller /* We already have a handler routine which is run when we are notified
7440bc0706bSJacob Keller * of a Tx timestamp in the hardware. If we don't get an interrupt
7450bc0706bSJacob Keller * within a second it is reasonable to assume that we never will.
7460bc0706bSJacob Keller */
7470bc0706bSJacob Keller if (time_is_before_jiffies(pf->ptp_tx_start + HZ)) {
748c79756cbSJacob Keller skb = pf->ptp_tx_skb;
7490bc0706bSJacob Keller pf->ptp_tx_skb = NULL;
7500bc0706bSJacob Keller clear_bit_unlock(__I40E_PTP_TX_IN_PROGRESS, pf->state);
751c79756cbSJacob Keller
752c79756cbSJacob Keller /* Free the skb after we clear the bitlock */
753c79756cbSJacob Keller dev_kfree_skb_any(skb);
7540bc0706bSJacob Keller pf->tx_hwtstamp_timeouts++;
7550bc0706bSJacob Keller }
7560bc0706bSJacob Keller }
7570bc0706bSJacob Keller
7580bc0706bSJacob Keller /**
759beb0dff1SJacob Keller * i40e_ptp_tx_hwtstamp - Utility function which returns the Tx timestamp
760beb0dff1SJacob Keller * @pf: Board private structure
761beb0dff1SJacob Keller *
762beb0dff1SJacob Keller * Read the value of the Tx timestamp from the registers, convert it into a
763beb0dff1SJacob Keller * value consumable by the stack, and store that result into the shhwtstamps
764beb0dff1SJacob Keller * struct before returning it up the stack.
765beb0dff1SJacob Keller **/
i40e_ptp_tx_hwtstamp(struct i40e_pf * pf)766beb0dff1SJacob Keller void i40e_ptp_tx_hwtstamp(struct i40e_pf *pf)
767beb0dff1SJacob Keller {
768beb0dff1SJacob Keller struct skb_shared_hwtstamps shhwtstamps;
769bbc4e7d2SJacob Keller struct sk_buff *skb = pf->ptp_tx_skb;
770beb0dff1SJacob Keller struct i40e_hw *hw = &pf->hw;
771beb0dff1SJacob Keller u32 hi, lo;
772beb0dff1SJacob Keller u64 ns;
773beb0dff1SJacob Keller
77422b4777dSJacob Keller if (!(pf->flags & I40E_FLAG_PTP) || !pf->ptp_tx)
77522b4777dSJacob Keller return;
77622b4777dSJacob Keller
77722b4777dSJacob Keller /* don't attempt to timestamp if we don't have an skb */
77822b4777dSJacob Keller if (!pf->ptp_tx_skb)
77922b4777dSJacob Keller return;
78022b4777dSJacob Keller
781beb0dff1SJacob Keller lo = rd32(hw, I40E_PRTTSYN_TXTIME_L);
782beb0dff1SJacob Keller hi = rd32(hw, I40E_PRTTSYN_TXTIME_H);
783beb0dff1SJacob Keller
784beb0dff1SJacob Keller ns = (((u64)hi) << 32) | lo;
785beb0dff1SJacob Keller i40e_ptp_convert_to_hwtstamp(&shhwtstamps, ns);
786bbc4e7d2SJacob Keller
787bbc4e7d2SJacob Keller /* Clear the bit lock as soon as possible after reading the register,
788bbc4e7d2SJacob Keller * and prior to notifying the stack via skb_tstamp_tx(). Otherwise
789bbc4e7d2SJacob Keller * applications might wake up and attempt to request another transmit
790bbc4e7d2SJacob Keller * timestamp prior to the bit lock being cleared.
791bbc4e7d2SJacob Keller */
792beb0dff1SJacob Keller pf->ptp_tx_skb = NULL;
7930da36b97SJacob Keller clear_bit_unlock(__I40E_PTP_TX_IN_PROGRESS, pf->state);
794bbc4e7d2SJacob Keller
795bbc4e7d2SJacob Keller /* Notify the stack and free the skb after we've unlocked */
796bbc4e7d2SJacob Keller skb_tstamp_tx(skb, &shhwtstamps);
797bbc4e7d2SJacob Keller dev_kfree_skb_any(skb);
798beb0dff1SJacob Keller }
799beb0dff1SJacob Keller
800beb0dff1SJacob Keller /**
801beb0dff1SJacob Keller * i40e_ptp_rx_hwtstamp - Utility function which checks for an Rx timestamp
802beb0dff1SJacob Keller * @pf: Board private structure
803beb0dff1SJacob Keller * @skb: Particular skb to send timestamp with
804beb0dff1SJacob Keller * @index: Index into the receive timestamp registers for the timestamp
805beb0dff1SJacob Keller *
806beb0dff1SJacob Keller * The XL710 receives a notification in the receive descriptor with an offset
807beb0dff1SJacob Keller * into the set of RXTIME registers where the timestamp is for that skb. This
808beb0dff1SJacob Keller * function goes and fetches the receive timestamp from that offset, if a valid
809beb0dff1SJacob Keller * one exists. The RXTIME registers are in ns, so we must convert the result
810beb0dff1SJacob Keller * first.
811beb0dff1SJacob Keller **/
i40e_ptp_rx_hwtstamp(struct i40e_pf * pf,struct sk_buff * skb,u8 index)812beb0dff1SJacob Keller void i40e_ptp_rx_hwtstamp(struct i40e_pf *pf, struct sk_buff *skb, u8 index)
813beb0dff1SJacob Keller {
814beb0dff1SJacob Keller u32 prttsyn_stat, hi, lo;
815beb0dff1SJacob Keller struct i40e_hw *hw;
816beb0dff1SJacob Keller u64 ns;
817beb0dff1SJacob Keller
818beb0dff1SJacob Keller /* Since we cannot turn off the Rx timestamp logic if the device is
819beb0dff1SJacob Keller * doing Tx timestamping, check if Rx timestamping is configured.
820beb0dff1SJacob Keller */
82122b4777dSJacob Keller if (!(pf->flags & I40E_FLAG_PTP) || !pf->ptp_rx)
822beb0dff1SJacob Keller return;
823beb0dff1SJacob Keller
824beb0dff1SJacob Keller hw = &pf->hw;
825beb0dff1SJacob Keller
82612490501SJacob Keller spin_lock_bh(&pf->ptp_rx_lock);
827beb0dff1SJacob Keller
82812490501SJacob Keller /* Get current Rx events and update latch times */
82912490501SJacob Keller prttsyn_stat = i40e_ptp_get_rx_events(pf);
83012490501SJacob Keller
83112490501SJacob Keller /* TODO: Should we warn about missing Rx timestamp event? */
83212490501SJacob Keller if (!(prttsyn_stat & BIT(index))) {
83312490501SJacob Keller spin_unlock_bh(&pf->ptp_rx_lock);
834beb0dff1SJacob Keller return;
83512490501SJacob Keller }
83612490501SJacob Keller
83712490501SJacob Keller /* Clear the latched event since we're about to read its register */
83812490501SJacob Keller pf->latch_event_flags &= ~BIT(index);
839beb0dff1SJacob Keller
840beb0dff1SJacob Keller lo = rd32(hw, I40E_PRTTSYN_RXTIME_L(index));
841beb0dff1SJacob Keller hi = rd32(hw, I40E_PRTTSYN_RXTIME_H(index));
842beb0dff1SJacob Keller
84312490501SJacob Keller spin_unlock_bh(&pf->ptp_rx_lock);
84412490501SJacob Keller
845beb0dff1SJacob Keller ns = (((u64)hi) << 32) | lo;
846beb0dff1SJacob Keller
847beb0dff1SJacob Keller i40e_ptp_convert_to_hwtstamp(skb_hwtstamps(skb), ns);
848beb0dff1SJacob Keller }
849beb0dff1SJacob Keller
850beb0dff1SJacob Keller /**
851beb0dff1SJacob Keller * i40e_ptp_set_increment - Utility function to update clock increment rate
852beb0dff1SJacob Keller * @pf: Board private structure
853beb0dff1SJacob Keller *
854beb0dff1SJacob Keller * During a link change, the DMA frequency that drives the 1588 logic will
855beb0dff1SJacob Keller * change. In order to keep the PRTTSYN_TIME registers in units of nanoseconds,
856beb0dff1SJacob Keller * we must update the increment value per clock tick.
857beb0dff1SJacob Keller **/
i40e_ptp_set_increment(struct i40e_pf * pf)858beb0dff1SJacob Keller void i40e_ptp_set_increment(struct i40e_pf *pf)
859beb0dff1SJacob Keller {
860beb0dff1SJacob Keller struct i40e_link_status *hw_link_info;
861beb0dff1SJacob Keller struct i40e_hw *hw = &pf->hw;
862beb0dff1SJacob Keller u64 incval;
863830e0dd9SJacob Keller u32 mult;
864beb0dff1SJacob Keller
865beb0dff1SJacob Keller hw_link_info = &hw->phy.link_info;
866beb0dff1SJacob Keller
867beb0dff1SJacob Keller i40e_aq_get_link_info(&pf->hw, true, NULL, NULL);
868beb0dff1SJacob Keller
869beb0dff1SJacob Keller switch (hw_link_info->link_speed) {
870beb0dff1SJacob Keller case I40E_LINK_SPEED_10GB:
871830e0dd9SJacob Keller mult = I40E_PTP_10GB_INCVAL_MULT;
872beb0dff1SJacob Keller break;
87326b0ce8dSJesse Brandeburg case I40E_LINK_SPEED_5GB:
87426b0ce8dSJesse Brandeburg mult = I40E_PTP_5GB_INCVAL_MULT;
87526b0ce8dSJesse Brandeburg break;
876beb0dff1SJacob Keller case I40E_LINK_SPEED_1GB:
877830e0dd9SJacob Keller mult = I40E_PTP_1GB_INCVAL_MULT;
878beb0dff1SJacob Keller break;
879beb0dff1SJacob Keller case I40E_LINK_SPEED_100MB:
880e684fa34SShannon Nelson {
881e684fa34SShannon Nelson static int warn_once;
882e684fa34SShannon Nelson
883e684fa34SShannon Nelson if (!warn_once) {
884beb0dff1SJacob Keller dev_warn(&pf->pdev->dev,
885e684fa34SShannon Nelson "1588 functionality is not supported at 100 Mbps. Stopping the PHC.\n");
886e684fa34SShannon Nelson warn_once++;
887e684fa34SShannon Nelson }
888830e0dd9SJacob Keller mult = 0;
889beb0dff1SJacob Keller break;
890e684fa34SShannon Nelson }
891beb0dff1SJacob Keller case I40E_LINK_SPEED_40GB:
892beb0dff1SJacob Keller default:
893830e0dd9SJacob Keller mult = 1;
894beb0dff1SJacob Keller break;
895beb0dff1SJacob Keller }
896beb0dff1SJacob Keller
897830e0dd9SJacob Keller /* The increment value is calculated by taking the base 40GbE incvalue
898830e0dd9SJacob Keller * and multiplying it by a factor based on the link speed.
899830e0dd9SJacob Keller */
900830e0dd9SJacob Keller incval = I40E_PTP_40GB_INCVAL * mult;
901830e0dd9SJacob Keller
902beb0dff1SJacob Keller /* Write the new increment value into the increment register. The
903beb0dff1SJacob Keller * hardware will not update the clock until both registers have been
904beb0dff1SJacob Keller * written.
905beb0dff1SJacob Keller */
906beb0dff1SJacob Keller wr32(hw, I40E_PRTTSYN_INC_L, incval & 0xFFFFFFFF);
907beb0dff1SJacob Keller wr32(hw, I40E_PRTTSYN_INC_H, incval >> 32);
908beb0dff1SJacob Keller
909beb0dff1SJacob Keller /* Update the base adjustement value. */
910830e0dd9SJacob Keller WRITE_ONCE(pf->ptp_adj_mult, mult);
911beb0dff1SJacob Keller smp_mb(); /* Force the above update. */
912beb0dff1SJacob Keller }
913beb0dff1SJacob Keller
914beb0dff1SJacob Keller /**
915beb0dff1SJacob Keller * i40e_ptp_get_ts_config - ioctl interface to read the HW timestamping
916beb0dff1SJacob Keller * @pf: Board private structure
917f5254429SJacob Keller * @ifr: ioctl data
918beb0dff1SJacob Keller *
919beb0dff1SJacob Keller * Obtain the current hardware timestamping settigs as requested. To do this,
920beb0dff1SJacob Keller * keep a shadow copy of the timestamp settings rather than attempting to
921beb0dff1SJacob Keller * deconstruct it from the registers.
922beb0dff1SJacob Keller **/
i40e_ptp_get_ts_config(struct i40e_pf * pf,struct ifreq * ifr)923beb0dff1SJacob Keller int i40e_ptp_get_ts_config(struct i40e_pf *pf, struct ifreq *ifr)
924beb0dff1SJacob Keller {
925beb0dff1SJacob Keller struct hwtstamp_config *config = &pf->tstamp_config;
926beb0dff1SJacob Keller
927fe88bda9SJacob Keller if (!(pf->flags & I40E_FLAG_PTP))
928fe88bda9SJacob Keller return -EOPNOTSUPP;
929fe88bda9SJacob Keller
930beb0dff1SJacob Keller return copy_to_user(ifr->ifr_data, config, sizeof(*config)) ?
931beb0dff1SJacob Keller -EFAULT : 0;
932beb0dff1SJacob Keller }
933beb0dff1SJacob Keller
934beb0dff1SJacob Keller /**
93510507130SPiotr Kwapulinski * i40e_ptp_free_pins - free memory used by PTP pins
93610507130SPiotr Kwapulinski * @pf: Board private structure
93710507130SPiotr Kwapulinski *
93810507130SPiotr Kwapulinski * Release memory allocated for PTP pins.
93910507130SPiotr Kwapulinski **/
i40e_ptp_free_pins(struct i40e_pf * pf)94010507130SPiotr Kwapulinski static void i40e_ptp_free_pins(struct i40e_pf *pf)
94110507130SPiotr Kwapulinski {
94210507130SPiotr Kwapulinski if (i40e_is_ptp_pin_dev(&pf->hw)) {
94310507130SPiotr Kwapulinski kfree(pf->ptp_pins);
94410507130SPiotr Kwapulinski kfree(pf->ptp_caps.pin_config);
94510507130SPiotr Kwapulinski pf->ptp_pins = NULL;
94610507130SPiotr Kwapulinski }
94710507130SPiotr Kwapulinski }
94810507130SPiotr Kwapulinski
94910507130SPiotr Kwapulinski /**
95010507130SPiotr Kwapulinski * i40e_ptp_set_pin_hw - Set HW GPIO pin
95110507130SPiotr Kwapulinski * @hw: pointer to the hardware structure
95210507130SPiotr Kwapulinski * @pin: pin index
95310507130SPiotr Kwapulinski * @state: pin state
95410507130SPiotr Kwapulinski *
95510507130SPiotr Kwapulinski * Set status of GPIO pin for external clock handling.
95610507130SPiotr Kwapulinski **/
i40e_ptp_set_pin_hw(struct i40e_hw * hw,unsigned int pin,enum i40e_ptp_gpio_pin_state state)95710507130SPiotr Kwapulinski static void i40e_ptp_set_pin_hw(struct i40e_hw *hw,
95810507130SPiotr Kwapulinski unsigned int pin,
95910507130SPiotr Kwapulinski enum i40e_ptp_gpio_pin_state state)
96010507130SPiotr Kwapulinski {
96110507130SPiotr Kwapulinski switch (state) {
96210507130SPiotr Kwapulinski case off:
96310507130SPiotr Kwapulinski wr32(hw, I40E_GLGEN_GPIO_CTL(pin), 0);
96410507130SPiotr Kwapulinski break;
96510507130SPiotr Kwapulinski case in_A:
96610507130SPiotr Kwapulinski wr32(hw, I40E_GLGEN_GPIO_CTL(pin),
96710507130SPiotr Kwapulinski I40E_GLGEN_GPIO_CTL_PORT_0_IN_TIMESYNC_0);
96810507130SPiotr Kwapulinski break;
96910507130SPiotr Kwapulinski case in_B:
97010507130SPiotr Kwapulinski wr32(hw, I40E_GLGEN_GPIO_CTL(pin),
97110507130SPiotr Kwapulinski I40E_GLGEN_GPIO_CTL_PORT_1_IN_TIMESYNC_0);
97210507130SPiotr Kwapulinski break;
97310507130SPiotr Kwapulinski case out_A:
97410507130SPiotr Kwapulinski wr32(hw, I40E_GLGEN_GPIO_CTL(pin),
97510507130SPiotr Kwapulinski I40E_GLGEN_GPIO_CTL_PORT_0_OUT_TIMESYNC_1);
97610507130SPiotr Kwapulinski break;
97710507130SPiotr Kwapulinski case out_B:
97810507130SPiotr Kwapulinski wr32(hw, I40E_GLGEN_GPIO_CTL(pin),
97910507130SPiotr Kwapulinski I40E_GLGEN_GPIO_CTL_PORT_1_OUT_TIMESYNC_1);
98010507130SPiotr Kwapulinski break;
98110507130SPiotr Kwapulinski default:
98210507130SPiotr Kwapulinski break;
98310507130SPiotr Kwapulinski }
98410507130SPiotr Kwapulinski }
98510507130SPiotr Kwapulinski
98610507130SPiotr Kwapulinski /**
98710507130SPiotr Kwapulinski * i40e_ptp_set_led_hw - Set HW GPIO led
98810507130SPiotr Kwapulinski * @hw: pointer to the hardware structure
98910507130SPiotr Kwapulinski * @led: led index
99010507130SPiotr Kwapulinski * @state: led state
99110507130SPiotr Kwapulinski *
99210507130SPiotr Kwapulinski * Set status of GPIO led for external clock handling.
99310507130SPiotr Kwapulinski **/
i40e_ptp_set_led_hw(struct i40e_hw * hw,unsigned int led,enum i40e_ptp_led_pin_state state)99410507130SPiotr Kwapulinski static void i40e_ptp_set_led_hw(struct i40e_hw *hw,
99510507130SPiotr Kwapulinski unsigned int led,
99610507130SPiotr Kwapulinski enum i40e_ptp_led_pin_state state)
99710507130SPiotr Kwapulinski {
99810507130SPiotr Kwapulinski switch (state) {
99910507130SPiotr Kwapulinski case low:
100010507130SPiotr Kwapulinski wr32(hw, I40E_GLGEN_GPIO_SET,
100110507130SPiotr Kwapulinski I40E_GLGEN_GPIO_SET_DRV_SDP_DATA | led);
100210507130SPiotr Kwapulinski break;
100310507130SPiotr Kwapulinski case high:
100410507130SPiotr Kwapulinski wr32(hw, I40E_GLGEN_GPIO_SET,
100510507130SPiotr Kwapulinski I40E_GLGEN_GPIO_SET_DRV_SDP_DATA |
100610507130SPiotr Kwapulinski I40E_GLGEN_GPIO_SET_SDP_DATA_HI | led);
100710507130SPiotr Kwapulinski break;
100810507130SPiotr Kwapulinski default:
100910507130SPiotr Kwapulinski break;
101010507130SPiotr Kwapulinski }
101110507130SPiotr Kwapulinski }
101210507130SPiotr Kwapulinski
101310507130SPiotr Kwapulinski /**
101410507130SPiotr Kwapulinski * i40e_ptp_init_leds_hw - init LEDs
101510507130SPiotr Kwapulinski * @hw: pointer to a hardware structure
101610507130SPiotr Kwapulinski *
101710507130SPiotr Kwapulinski * Set initial state of LEDs
101810507130SPiotr Kwapulinski **/
i40e_ptp_init_leds_hw(struct i40e_hw * hw)101910507130SPiotr Kwapulinski static void i40e_ptp_init_leds_hw(struct i40e_hw *hw)
102010507130SPiotr Kwapulinski {
102110507130SPiotr Kwapulinski wr32(hw, I40E_GLGEN_GPIO_CTL(I40E_LED2_0),
102210507130SPiotr Kwapulinski I40E_GLGEN_GPIO_CTL_LED_INIT);
102310507130SPiotr Kwapulinski wr32(hw, I40E_GLGEN_GPIO_CTL(I40E_LED2_1),
102410507130SPiotr Kwapulinski I40E_GLGEN_GPIO_CTL_LED_INIT);
102510507130SPiotr Kwapulinski wr32(hw, I40E_GLGEN_GPIO_CTL(I40E_LED3_0),
102610507130SPiotr Kwapulinski I40E_GLGEN_GPIO_CTL_LED_INIT);
102710507130SPiotr Kwapulinski wr32(hw, I40E_GLGEN_GPIO_CTL(I40E_LED3_1),
102810507130SPiotr Kwapulinski I40E_GLGEN_GPIO_CTL_LED_INIT);
102910507130SPiotr Kwapulinski }
103010507130SPiotr Kwapulinski
103110507130SPiotr Kwapulinski /**
103210507130SPiotr Kwapulinski * i40e_ptp_set_pins_hw - Set HW GPIO pins
103310507130SPiotr Kwapulinski * @pf: Board private structure
103410507130SPiotr Kwapulinski *
103510507130SPiotr Kwapulinski * This function sets GPIO pins for PTP
103610507130SPiotr Kwapulinski **/
i40e_ptp_set_pins_hw(struct i40e_pf * pf)103710507130SPiotr Kwapulinski static void i40e_ptp_set_pins_hw(struct i40e_pf *pf)
103810507130SPiotr Kwapulinski {
103910507130SPiotr Kwapulinski const struct i40e_ptp_pins_settings *pins = pf->ptp_pins;
104010507130SPiotr Kwapulinski struct i40e_hw *hw = &pf->hw;
104110507130SPiotr Kwapulinski
104210507130SPiotr Kwapulinski /* pin must be disabled before it may be used */
104310507130SPiotr Kwapulinski i40e_ptp_set_pin_hw(hw, I40E_SDP3_2, off);
104410507130SPiotr Kwapulinski i40e_ptp_set_pin_hw(hw, I40E_SDP3_3, off);
104510507130SPiotr Kwapulinski i40e_ptp_set_pin_hw(hw, I40E_GPIO_4, off);
104610507130SPiotr Kwapulinski
104710507130SPiotr Kwapulinski i40e_ptp_set_pin_hw(hw, I40E_SDP3_2, pins->sdp3_2);
104810507130SPiotr Kwapulinski i40e_ptp_set_pin_hw(hw, I40E_SDP3_3, pins->sdp3_3);
104910507130SPiotr Kwapulinski i40e_ptp_set_pin_hw(hw, I40E_GPIO_4, pins->gpio_4);
105010507130SPiotr Kwapulinski
105110507130SPiotr Kwapulinski i40e_ptp_set_led_hw(hw, I40E_LED2_0, pins->led2_0);
105210507130SPiotr Kwapulinski i40e_ptp_set_led_hw(hw, I40E_LED2_1, pins->led2_1);
105310507130SPiotr Kwapulinski i40e_ptp_set_led_hw(hw, I40E_LED3_0, pins->led3_0);
105410507130SPiotr Kwapulinski i40e_ptp_set_led_hw(hw, I40E_LED3_1, pins->led3_1);
105510507130SPiotr Kwapulinski
105610507130SPiotr Kwapulinski dev_info(&pf->pdev->dev,
105710507130SPiotr Kwapulinski "PTP configuration set to: SDP3_2: %s, SDP3_3: %s, GPIO_4: %s.\n",
105810507130SPiotr Kwapulinski i40e_ptp_gpio_pin_state2str[pins->sdp3_2],
105910507130SPiotr Kwapulinski i40e_ptp_gpio_pin_state2str[pins->sdp3_3],
106010507130SPiotr Kwapulinski i40e_ptp_gpio_pin_state2str[pins->gpio_4]);
106110507130SPiotr Kwapulinski }
106210507130SPiotr Kwapulinski
106310507130SPiotr Kwapulinski /**
106410507130SPiotr Kwapulinski * i40e_ptp_set_pins - set PTP pins in HW
106510507130SPiotr Kwapulinski * @pf: Board private structure
106610507130SPiotr Kwapulinski * @pins: PTP pins to be applied
106710507130SPiotr Kwapulinski *
106810507130SPiotr Kwapulinski * Validate and set PTP pins in HW for specific PF.
106910507130SPiotr Kwapulinski * Return 0 on success or negative value on error.
107010507130SPiotr Kwapulinski **/
i40e_ptp_set_pins(struct i40e_pf * pf,struct i40e_ptp_pins_settings * pins)107110507130SPiotr Kwapulinski static int i40e_ptp_set_pins(struct i40e_pf *pf,
107210507130SPiotr Kwapulinski struct i40e_ptp_pins_settings *pins)
107310507130SPiotr Kwapulinski {
1074e6d25dbdSIvan Vecera enum i40e_can_set_pins pin_caps = i40e_can_set_pins(pf);
107510507130SPiotr Kwapulinski int i = 0;
107610507130SPiotr Kwapulinski
107710507130SPiotr Kwapulinski if (pin_caps == CANT_DO_PINS)
107810507130SPiotr Kwapulinski return -EOPNOTSUPP;
107910507130SPiotr Kwapulinski else if (pin_caps == CAN_DO_PINS)
108010507130SPiotr Kwapulinski return 0;
108110507130SPiotr Kwapulinski
108210507130SPiotr Kwapulinski if (pins->sdp3_2 == invalid)
108310507130SPiotr Kwapulinski pins->sdp3_2 = pf->ptp_pins->sdp3_2;
108410507130SPiotr Kwapulinski if (pins->sdp3_3 == invalid)
108510507130SPiotr Kwapulinski pins->sdp3_3 = pf->ptp_pins->sdp3_3;
108610507130SPiotr Kwapulinski if (pins->gpio_4 == invalid)
108710507130SPiotr Kwapulinski pins->gpio_4 = pf->ptp_pins->gpio_4;
108810507130SPiotr Kwapulinski while (i40e_ptp_pin_led_allowed_states[i].sdp3_2 != end) {
108910507130SPiotr Kwapulinski if (pins->sdp3_2 == i40e_ptp_pin_led_allowed_states[i].sdp3_2 &&
109010507130SPiotr Kwapulinski pins->sdp3_3 == i40e_ptp_pin_led_allowed_states[i].sdp3_3 &&
109110507130SPiotr Kwapulinski pins->gpio_4 == i40e_ptp_pin_led_allowed_states[i].gpio_4) {
109210507130SPiotr Kwapulinski pins->led2_0 =
109310507130SPiotr Kwapulinski i40e_ptp_pin_led_allowed_states[i].led2_0;
109410507130SPiotr Kwapulinski pins->led2_1 =
109510507130SPiotr Kwapulinski i40e_ptp_pin_led_allowed_states[i].led2_1;
109610507130SPiotr Kwapulinski pins->led3_0 =
109710507130SPiotr Kwapulinski i40e_ptp_pin_led_allowed_states[i].led3_0;
109810507130SPiotr Kwapulinski pins->led3_1 =
109910507130SPiotr Kwapulinski i40e_ptp_pin_led_allowed_states[i].led3_1;
110010507130SPiotr Kwapulinski break;
110110507130SPiotr Kwapulinski }
110210507130SPiotr Kwapulinski i++;
110310507130SPiotr Kwapulinski }
110410507130SPiotr Kwapulinski if (i40e_ptp_pin_led_allowed_states[i].sdp3_2 == end) {
110510507130SPiotr Kwapulinski dev_warn(&pf->pdev->dev,
110610507130SPiotr Kwapulinski "Unsupported PTP pin configuration: SDP3_2: %s, SDP3_3: %s, GPIO_4: %s.\n",
110710507130SPiotr Kwapulinski i40e_ptp_gpio_pin_state2str[pins->sdp3_2],
110810507130SPiotr Kwapulinski i40e_ptp_gpio_pin_state2str[pins->sdp3_3],
110910507130SPiotr Kwapulinski i40e_ptp_gpio_pin_state2str[pins->gpio_4]);
111010507130SPiotr Kwapulinski
111110507130SPiotr Kwapulinski return -EPERM;
111210507130SPiotr Kwapulinski }
111310507130SPiotr Kwapulinski memcpy(pf->ptp_pins, pins, sizeof(*pins));
111410507130SPiotr Kwapulinski i40e_ptp_set_pins_hw(pf);
111510507130SPiotr Kwapulinski i40_ptp_reset_timing_events(pf);
111610507130SPiotr Kwapulinski
111710507130SPiotr Kwapulinski return 0;
111810507130SPiotr Kwapulinski }
111910507130SPiotr Kwapulinski
112010507130SPiotr Kwapulinski /**
112110507130SPiotr Kwapulinski * i40e_ptp_alloc_pins - allocate PTP pins structure
112210507130SPiotr Kwapulinski * @pf: Board private structure
112310507130SPiotr Kwapulinski *
112410507130SPiotr Kwapulinski * allocate PTP pins structure
112510507130SPiotr Kwapulinski **/
i40e_ptp_alloc_pins(struct i40e_pf * pf)112610507130SPiotr Kwapulinski int i40e_ptp_alloc_pins(struct i40e_pf *pf)
112710507130SPiotr Kwapulinski {
112810507130SPiotr Kwapulinski if (!i40e_is_ptp_pin_dev(&pf->hw))
112910507130SPiotr Kwapulinski return 0;
113010507130SPiotr Kwapulinski
113110507130SPiotr Kwapulinski pf->ptp_pins =
113210507130SPiotr Kwapulinski kzalloc(sizeof(struct i40e_ptp_pins_settings), GFP_KERNEL);
113310507130SPiotr Kwapulinski
113410507130SPiotr Kwapulinski if (!pf->ptp_pins) {
113510507130SPiotr Kwapulinski dev_warn(&pf->pdev->dev, "Cannot allocate memory for PTP pins structure.\n");
1136230f3d53SJan Sokolowski return -ENOMEM;
113710507130SPiotr Kwapulinski }
113810507130SPiotr Kwapulinski
113910507130SPiotr Kwapulinski pf->ptp_pins->sdp3_2 = off;
114010507130SPiotr Kwapulinski pf->ptp_pins->sdp3_3 = off;
114110507130SPiotr Kwapulinski pf->ptp_pins->gpio_4 = off;
114210507130SPiotr Kwapulinski pf->ptp_pins->led2_0 = high;
114310507130SPiotr Kwapulinski pf->ptp_pins->led2_1 = high;
114410507130SPiotr Kwapulinski pf->ptp_pins->led3_0 = high;
114510507130SPiotr Kwapulinski pf->ptp_pins->led3_1 = high;
114610507130SPiotr Kwapulinski
114710507130SPiotr Kwapulinski /* Use PF0 to set pins in HW. Return success for user space tools */
114810507130SPiotr Kwapulinski if (pf->hw.pf_id)
114910507130SPiotr Kwapulinski return 0;
115010507130SPiotr Kwapulinski
115110507130SPiotr Kwapulinski i40e_ptp_init_leds_hw(&pf->hw);
115210507130SPiotr Kwapulinski i40e_ptp_set_pins_hw(pf);
115310507130SPiotr Kwapulinski
115410507130SPiotr Kwapulinski return 0;
115510507130SPiotr Kwapulinski }
115610507130SPiotr Kwapulinski
115710507130SPiotr Kwapulinski /**
115818946455SJacob Keller * i40e_ptp_set_timestamp_mode - setup hardware for requested timestamp mode
1159beb0dff1SJacob Keller * @pf: Board private structure
116018946455SJacob Keller * @config: hwtstamp settings requested or saved
1161beb0dff1SJacob Keller *
116218946455SJacob Keller * Control hardware registers to enter the specific mode requested by the
116318946455SJacob Keller * user. Also used during reset path to ensure that timestamp settings are
116418946455SJacob Keller * maintained.
1165beb0dff1SJacob Keller *
116618946455SJacob Keller * Note: modifies config in place, and may update the requested mode to be
116718946455SJacob Keller * more broad if the specific filter is not directly supported.
1168beb0dff1SJacob Keller **/
i40e_ptp_set_timestamp_mode(struct i40e_pf * pf,struct hwtstamp_config * config)116918946455SJacob Keller static int i40e_ptp_set_timestamp_mode(struct i40e_pf *pf,
117018946455SJacob Keller struct hwtstamp_config *config)
1171beb0dff1SJacob Keller {
1172beb0dff1SJacob Keller struct i40e_hw *hw = &pf->hw;
1173fe88bda9SJacob Keller u32 tsyntype, regval;
1174beb0dff1SJacob Keller
117510507130SPiotr Kwapulinski /* Selects external trigger to cause event */
117610507130SPiotr Kwapulinski regval = rd32(hw, I40E_PRTTSYN_AUX_0(0));
117710507130SPiotr Kwapulinski /* Bit 17:16 is EVNTLVL, 01B rising edge */
117810507130SPiotr Kwapulinski regval &= 0;
117910507130SPiotr Kwapulinski regval |= (1 << I40E_PRTTSYN_AUX_0_EVNTLVL_SHIFT);
118010507130SPiotr Kwapulinski /* regval: 0001 0000 0000 0000 0000 */
118110507130SPiotr Kwapulinski wr32(hw, I40E_PRTTSYN_AUX_0(0), regval);
118210507130SPiotr Kwapulinski
118310507130SPiotr Kwapulinski /* Enabel interrupts */
118410507130SPiotr Kwapulinski regval = rd32(hw, I40E_PRTTSYN_CTL0);
118510507130SPiotr Kwapulinski regval |= 1 << I40E_PRTTSYN_CTL0_EVENT_INT_ENA_SHIFT;
118610507130SPiotr Kwapulinski wr32(hw, I40E_PRTTSYN_CTL0, regval);
118710507130SPiotr Kwapulinski
118810507130SPiotr Kwapulinski INIT_WORK(&pf->ptp_extts0_work, i40e_ptp_extts0_work);
118910507130SPiotr Kwapulinski
1190beb0dff1SJacob Keller switch (config->tx_type) {
1191beb0dff1SJacob Keller case HWTSTAMP_TX_OFF:
1192beb0dff1SJacob Keller pf->ptp_tx = false;
1193beb0dff1SJacob Keller break;
1194beb0dff1SJacob Keller case HWTSTAMP_TX_ON:
1195beb0dff1SJacob Keller pf->ptp_tx = true;
1196beb0dff1SJacob Keller break;
1197beb0dff1SJacob Keller default:
1198beb0dff1SJacob Keller return -ERANGE;
1199beb0dff1SJacob Keller }
1200beb0dff1SJacob Keller
1201beb0dff1SJacob Keller switch (config->rx_filter) {
1202beb0dff1SJacob Keller case HWTSTAMP_FILTER_NONE:
1203beb0dff1SJacob Keller pf->ptp_rx = false;
12044fda14caSJacob Keller /* We set the type to V1, but do not enable UDP packet
12054fda14caSJacob Keller * recognition. In this way, we should be as close to
12064fda14caSJacob Keller * disabling PTP Rx timestamps as possible since V1 packets
12074fda14caSJacob Keller * are always UDP, since L2 packets are a V2 feature.
12084fda14caSJacob Keller */
12094fda14caSJacob Keller tsyntype = I40E_PRTTSYN_CTL1_TSYNTYPE_V1;
1210beb0dff1SJacob Keller break;
1211beb0dff1SJacob Keller case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1212beb0dff1SJacob Keller case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
1213beb0dff1SJacob Keller case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1214d36e41dcSJacob Keller if (!(pf->hw_features & I40E_HW_PTP_L4_CAPABLE))
12151e28e861SJacob Keller return -ERANGE;
1216beb0dff1SJacob Keller pf->ptp_rx = true;
1217beb0dff1SJacob Keller tsyntype = I40E_PRTTSYN_CTL1_V1MESSTYPE0_MASK |
1218beb0dff1SJacob Keller I40E_PRTTSYN_CTL1_TSYNTYPE_V1 |
1219beb0dff1SJacob Keller I40E_PRTTSYN_CTL1_UDP_ENA_MASK;
1220beb0dff1SJacob Keller config->rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_EVENT;
1221beb0dff1SJacob Keller break;
1222beb0dff1SJacob Keller case HWTSTAMP_FILTER_PTP_V2_EVENT:
1223beb0dff1SJacob Keller case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1224beb0dff1SJacob Keller case HWTSTAMP_FILTER_PTP_V2_SYNC:
1225beb0dff1SJacob Keller case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1226beb0dff1SJacob Keller case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1227beb0dff1SJacob Keller case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1228d36e41dcSJacob Keller if (!(pf->hw_features & I40E_HW_PTP_L4_CAPABLE))
12291e28e861SJacob Keller return -ERANGE;
12305463fce6SJeff Kirsher fallthrough;
12311e28e861SJacob Keller case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
12321e28e861SJacob Keller case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
12331e28e861SJacob Keller case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1234beb0dff1SJacob Keller pf->ptp_rx = true;
1235beb0dff1SJacob Keller tsyntype = I40E_PRTTSYN_CTL1_V2MESSTYPE0_MASK |
12361e28e861SJacob Keller I40E_PRTTSYN_CTL1_TSYNTYPE_V2;
1237d36e41dcSJacob Keller if (pf->hw_features & I40E_HW_PTP_L4_CAPABLE) {
12381e28e861SJacob Keller tsyntype |= I40E_PRTTSYN_CTL1_UDP_ENA_MASK;
1239beb0dff1SJacob Keller config->rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
12401e28e861SJacob Keller } else {
12411e28e861SJacob Keller config->rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_EVENT;
12421e28e861SJacob Keller }
1243beb0dff1SJacob Keller break;
1244e3412575SMiroslav Lichvar case HWTSTAMP_FILTER_NTP_ALL:
1245beb0dff1SJacob Keller case HWTSTAMP_FILTER_ALL:
1246beb0dff1SJacob Keller default:
1247beb0dff1SJacob Keller return -ERANGE;
1248beb0dff1SJacob Keller }
1249beb0dff1SJacob Keller
1250beb0dff1SJacob Keller /* Clear out all 1588-related registers to clear and unlatch them. */
125112490501SJacob Keller spin_lock_bh(&pf->ptp_rx_lock);
1252beb0dff1SJacob Keller rd32(hw, I40E_PRTTSYN_STAT_0);
1253beb0dff1SJacob Keller rd32(hw, I40E_PRTTSYN_TXTIME_H);
1254beb0dff1SJacob Keller rd32(hw, I40E_PRTTSYN_RXTIME_H(0));
1255beb0dff1SJacob Keller rd32(hw, I40E_PRTTSYN_RXTIME_H(1));
1256beb0dff1SJacob Keller rd32(hw, I40E_PRTTSYN_RXTIME_H(2));
1257beb0dff1SJacob Keller rd32(hw, I40E_PRTTSYN_RXTIME_H(3));
125812490501SJacob Keller pf->latch_event_flags = 0;
125912490501SJacob Keller spin_unlock_bh(&pf->ptp_rx_lock);
1260beb0dff1SJacob Keller
1261beb0dff1SJacob Keller /* Enable/disable the Tx timestamp interrupt based on user input. */
1262beb0dff1SJacob Keller regval = rd32(hw, I40E_PRTTSYN_CTL0);
1263beb0dff1SJacob Keller if (pf->ptp_tx)
1264beb0dff1SJacob Keller regval |= I40E_PRTTSYN_CTL0_TXTIME_INT_ENA_MASK;
1265beb0dff1SJacob Keller else
1266beb0dff1SJacob Keller regval &= ~I40E_PRTTSYN_CTL0_TXTIME_INT_ENA_MASK;
1267beb0dff1SJacob Keller wr32(hw, I40E_PRTTSYN_CTL0, regval);
1268beb0dff1SJacob Keller
1269beb0dff1SJacob Keller regval = rd32(hw, I40E_PFINT_ICR0_ENA);
1270beb0dff1SJacob Keller if (pf->ptp_tx)
1271beb0dff1SJacob Keller regval |= I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
1272beb0dff1SJacob Keller else
1273beb0dff1SJacob Keller regval &= ~I40E_PFINT_ICR0_ENA_TIMESYNC_MASK;
1274beb0dff1SJacob Keller wr32(hw, I40E_PFINT_ICR0_ENA, regval);
1275beb0dff1SJacob Keller
12764fda14caSJacob Keller /* Although there is no simple on/off switch for Rx, we "disable" Rx
12774fda14caSJacob Keller * timestamps by setting to V1 only mode and clear the UDP
12784fda14caSJacob Keller * recognition. This ought to disable all PTP Rx timestamps as V1
12794fda14caSJacob Keller * packets are always over UDP. Note that software is configured to
12804fda14caSJacob Keller * ignore Rx timestamps via the pf->ptp_rx flag.
1281beb0dff1SJacob Keller */
1282beb0dff1SJacob Keller regval = rd32(hw, I40E_PRTTSYN_CTL1);
1283beb0dff1SJacob Keller /* clear everything but the enable bit */
1284beb0dff1SJacob Keller regval &= I40E_PRTTSYN_CTL1_TSYNENA_MASK;
1285beb0dff1SJacob Keller /* now enable bits for desired Rx timestamps */
1286beb0dff1SJacob Keller regval |= tsyntype;
1287beb0dff1SJacob Keller wr32(hw, I40E_PRTTSYN_CTL1, regval);
1288beb0dff1SJacob Keller
128918946455SJacob Keller return 0;
129018946455SJacob Keller }
129118946455SJacob Keller
129218946455SJacob Keller /**
129318946455SJacob Keller * i40e_ptp_set_ts_config - ioctl interface to control the HW timestamping
129418946455SJacob Keller * @pf: Board private structure
1295f5254429SJacob Keller * @ifr: ioctl data
129618946455SJacob Keller *
129718946455SJacob Keller * Respond to the user filter requests and make the appropriate hardware
129818946455SJacob Keller * changes here. The XL710 cannot support splitting of the Tx/Rx timestamping
129918946455SJacob Keller * logic, so keep track in software of whether to indicate these timestamps
130018946455SJacob Keller * or not.
130118946455SJacob Keller *
130218946455SJacob Keller * It is permissible to "upgrade" the user request to a broader filter, as long
130318946455SJacob Keller * as the user receives the timestamps they care about and the user is notified
130418946455SJacob Keller * the filter has been broadened.
130518946455SJacob Keller **/
i40e_ptp_set_ts_config(struct i40e_pf * pf,struct ifreq * ifr)130618946455SJacob Keller int i40e_ptp_set_ts_config(struct i40e_pf *pf, struct ifreq *ifr)
130718946455SJacob Keller {
1308d19af2afSJacob Keller struct hwtstamp_config config;
130918946455SJacob Keller int err;
131018946455SJacob Keller
1311fe88bda9SJacob Keller if (!(pf->flags & I40E_FLAG_PTP))
1312fe88bda9SJacob Keller return -EOPNOTSUPP;
1313fe88bda9SJacob Keller
1314d19af2afSJacob Keller if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
131518946455SJacob Keller return -EFAULT;
131618946455SJacob Keller
1317d19af2afSJacob Keller err = i40e_ptp_set_timestamp_mode(pf, &config);
131818946455SJacob Keller if (err)
131918946455SJacob Keller return err;
132018946455SJacob Keller
1321d19af2afSJacob Keller /* save these settings for future reference */
1322d19af2afSJacob Keller pf->tstamp_config = config;
1323d19af2afSJacob Keller
1324d19af2afSJacob Keller return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
1325beb0dff1SJacob Keller -EFAULT : 0;
1326beb0dff1SJacob Keller }
1327beb0dff1SJacob Keller
1328beb0dff1SJacob Keller /**
132910507130SPiotr Kwapulinski * i40e_init_pin_config - initialize pins.
133010507130SPiotr Kwapulinski * @pf: private board structure
133110507130SPiotr Kwapulinski *
133210507130SPiotr Kwapulinski * Initialize pins for external clock source.
133310507130SPiotr Kwapulinski * Return 0 on success or error code on failure.
133410507130SPiotr Kwapulinski **/
i40e_init_pin_config(struct i40e_pf * pf)133510507130SPiotr Kwapulinski static int i40e_init_pin_config(struct i40e_pf *pf)
133610507130SPiotr Kwapulinski {
133710507130SPiotr Kwapulinski int i;
133810507130SPiotr Kwapulinski
133910507130SPiotr Kwapulinski pf->ptp_caps.n_pins = 3;
134010507130SPiotr Kwapulinski pf->ptp_caps.n_ext_ts = 2;
134110507130SPiotr Kwapulinski pf->ptp_caps.pps = 1;
134210507130SPiotr Kwapulinski pf->ptp_caps.n_per_out = 2;
134310507130SPiotr Kwapulinski
134410507130SPiotr Kwapulinski pf->ptp_caps.pin_config = kcalloc(pf->ptp_caps.n_pins,
134510507130SPiotr Kwapulinski sizeof(*pf->ptp_caps.pin_config),
134610507130SPiotr Kwapulinski GFP_KERNEL);
134710507130SPiotr Kwapulinski if (!pf->ptp_caps.pin_config)
134810507130SPiotr Kwapulinski return -ENOMEM;
134910507130SPiotr Kwapulinski
135010507130SPiotr Kwapulinski for (i = 0; i < pf->ptp_caps.n_pins; i++) {
135110507130SPiotr Kwapulinski snprintf(pf->ptp_caps.pin_config[i].name,
135210507130SPiotr Kwapulinski sizeof(pf->ptp_caps.pin_config[i].name),
135310507130SPiotr Kwapulinski "%s", sdp_desc[i].name);
135410507130SPiotr Kwapulinski pf->ptp_caps.pin_config[i].index = sdp_desc[i].index;
135510507130SPiotr Kwapulinski pf->ptp_caps.pin_config[i].func = PTP_PF_NONE;
135610507130SPiotr Kwapulinski pf->ptp_caps.pin_config[i].chan = sdp_desc[i].chan;
135710507130SPiotr Kwapulinski }
135810507130SPiotr Kwapulinski
135910507130SPiotr Kwapulinski pf->ptp_caps.verify = i40e_ptp_verify;
136010507130SPiotr Kwapulinski pf->ptp_caps.enable = i40e_ptp_feature_enable;
136110507130SPiotr Kwapulinski
136210507130SPiotr Kwapulinski pf->ptp_caps.pps = 1;
136310507130SPiotr Kwapulinski
136410507130SPiotr Kwapulinski return 0;
136510507130SPiotr Kwapulinski }
136610507130SPiotr Kwapulinski
136710507130SPiotr Kwapulinski /**
1368fbd5e2dfSJacob Keller * i40e_ptp_create_clock - Create PTP clock device for userspace
1369beb0dff1SJacob Keller * @pf: Board private structure
1370beb0dff1SJacob Keller *
1371fbd5e2dfSJacob Keller * This function creates a new PTP clock device. It only creates one if we
1372fbd5e2dfSJacob Keller * don't already have one, so it is safe to call. Will return error if it
1373fbd5e2dfSJacob Keller * can't create one, but success if we already have a device. Should be used
1374fbd5e2dfSJacob Keller * by i40e_ptp_init to create clock initially, and prevent global resets from
1375fbd5e2dfSJacob Keller * creating new clock devices.
1376beb0dff1SJacob Keller **/
i40e_ptp_create_clock(struct i40e_pf * pf)1377fbd5e2dfSJacob Keller static long i40e_ptp_create_clock(struct i40e_pf *pf)
1378beb0dff1SJacob Keller {
1379fbd5e2dfSJacob Keller /* no need to create a clock device if we already have one */
1380fbd5e2dfSJacob Keller if (!IS_ERR_OR_NULL(pf->ptp_clock))
1381fbd5e2dfSJacob Keller return 0;
1382beb0dff1SJacob Keller
1383f029c781SWolfram Sang strscpy(pf->ptp_caps.name, i40e_driver_name,
13847eb74ff8SMitch Williams sizeof(pf->ptp_caps.name) - 1);
1385beb0dff1SJacob Keller pf->ptp_caps.owner = THIS_MODULE;
1386beb0dff1SJacob Keller pf->ptp_caps.max_adj = 999999999;
1387ccd3bf98SJacob Keller pf->ptp_caps.adjfine = i40e_ptp_adjfine;
1388beb0dff1SJacob Keller pf->ptp_caps.adjtime = i40e_ptp_adjtime;
13899a2d57a7SMiroslav Lichvar pf->ptp_caps.gettimex64 = i40e_ptp_gettimex;
13906f7a9b8aSRichard Cochran pf->ptp_caps.settime64 = i40e_ptp_settime;
139110507130SPiotr Kwapulinski if (i40e_is_ptp_pin_dev(&pf->hw)) {
139210507130SPiotr Kwapulinski int err = i40e_init_pin_config(pf);
139310507130SPiotr Kwapulinski
139410507130SPiotr Kwapulinski if (err)
139510507130SPiotr Kwapulinski return err;
139610507130SPiotr Kwapulinski }
1397beb0dff1SJacob Keller
1398beb0dff1SJacob Keller /* Attempt to register the clock before enabling the hardware. */
1399beb0dff1SJacob Keller pf->ptp_clock = ptp_clock_register(&pf->ptp_caps, &pf->pdev->dev);
14006995b36cSJesse Brandeburg if (IS_ERR(pf->ptp_clock))
1401fbd5e2dfSJacob Keller return PTR_ERR(pf->ptp_clock);
1402fbd5e2dfSJacob Keller
1403fbd5e2dfSJacob Keller /* clear the hwtstamp settings here during clock create, instead of
1404fbd5e2dfSJacob Keller * during regular init, so that we can maintain settings across a
1405fbd5e2dfSJacob Keller * reset or suspend.
1406fbd5e2dfSJacob Keller */
1407fbd5e2dfSJacob Keller pf->tstamp_config.rx_filter = HWTSTAMP_FILTER_NONE;
1408fbd5e2dfSJacob Keller pf->tstamp_config.tx_type = HWTSTAMP_TX_OFF;
1409fbd5e2dfSJacob Keller
1410bf4bf09bSJacob Keller /* Set the previous "reset" time to the current Kernel clock time */
1411c4d8d90cSJacob Keller ktime_get_real_ts64(&pf->ptp_prev_hw_time);
1412bf4bf09bSJacob Keller pf->ptp_reset_start = ktime_get();
1413bf4bf09bSJacob Keller
1414fbd5e2dfSJacob Keller return 0;
1415fbd5e2dfSJacob Keller }
1416fbd5e2dfSJacob Keller
1417fbd5e2dfSJacob Keller /**
1418bf4bf09bSJacob Keller * i40e_ptp_save_hw_time - Save the current PTP time as ptp_prev_hw_time
1419bf4bf09bSJacob Keller * @pf: Board private structure
1420bf4bf09bSJacob Keller *
1421bf4bf09bSJacob Keller * Read the current PTP time and save it into pf->ptp_prev_hw_time. This should
1422bf4bf09bSJacob Keller * be called at the end of preparing to reset, just before hardware reset
1423bf4bf09bSJacob Keller * occurs, in order to preserve the PTP time as close as possible across
1424bf4bf09bSJacob Keller * resets.
1425bf4bf09bSJacob Keller */
i40e_ptp_save_hw_time(struct i40e_pf * pf)1426bf4bf09bSJacob Keller void i40e_ptp_save_hw_time(struct i40e_pf *pf)
1427bf4bf09bSJacob Keller {
1428bf4bf09bSJacob Keller /* don't try to access the PTP clock if it's not enabled */
1429bf4bf09bSJacob Keller if (!(pf->flags & I40E_FLAG_PTP))
1430bf4bf09bSJacob Keller return;
1431bf4bf09bSJacob Keller
1432bf4bf09bSJacob Keller i40e_ptp_gettimex(&pf->ptp_caps, &pf->ptp_prev_hw_time, NULL);
1433bf4bf09bSJacob Keller /* Get a monotonic starting time for this reset */
1434bf4bf09bSJacob Keller pf->ptp_reset_start = ktime_get();
1435bf4bf09bSJacob Keller }
1436bf4bf09bSJacob Keller
1437bf4bf09bSJacob Keller /**
1438bf4bf09bSJacob Keller * i40e_ptp_restore_hw_time - Restore the ptp_prev_hw_time + delta to PTP regs
1439bf4bf09bSJacob Keller * @pf: Board private structure
1440bf4bf09bSJacob Keller *
1441bf4bf09bSJacob Keller * Restore the PTP hardware clock registers. We previously cached the PTP
1442bf4bf09bSJacob Keller * hardware time as pf->ptp_prev_hw_time. To be as accurate as possible,
1443bf4bf09bSJacob Keller * update this value based on the time delta since the time was saved, using
1444bf4bf09bSJacob Keller * CLOCK_MONOTONIC (via ktime_get()) to calculate the time difference.
1445bf4bf09bSJacob Keller *
1446bf4bf09bSJacob Keller * This ensures that the hardware clock is restored to nearly what it should
1447bf4bf09bSJacob Keller * have been if a reset had not occurred.
1448bf4bf09bSJacob Keller */
i40e_ptp_restore_hw_time(struct i40e_pf * pf)1449bf4bf09bSJacob Keller void i40e_ptp_restore_hw_time(struct i40e_pf *pf)
1450bf4bf09bSJacob Keller {
1451bf4bf09bSJacob Keller ktime_t delta = ktime_sub(ktime_get(), pf->ptp_reset_start);
1452bf4bf09bSJacob Keller
1453bf4bf09bSJacob Keller /* Update the previous HW time with the ktime delta */
1454bf4bf09bSJacob Keller timespec64_add_ns(&pf->ptp_prev_hw_time, ktime_to_ns(delta));
1455bf4bf09bSJacob Keller
1456bf4bf09bSJacob Keller /* Restore the hardware clock registers */
1457bf4bf09bSJacob Keller i40e_ptp_settime(&pf->ptp_caps, &pf->ptp_prev_hw_time);
1458bf4bf09bSJacob Keller }
1459bf4bf09bSJacob Keller
1460bf4bf09bSJacob Keller /**
1461fbd5e2dfSJacob Keller * i40e_ptp_init - Initialize the 1588 support after device probe or reset
1462fbd5e2dfSJacob Keller * @pf: Board private structure
1463fbd5e2dfSJacob Keller *
1464fbd5e2dfSJacob Keller * This function sets device up for 1588 support. The first time it is run, it
1465fbd5e2dfSJacob Keller * will create a PHC clock device. It does not create a clock device if one
1466fbd5e2dfSJacob Keller * already exists. It also reconfigures the device after a reset.
1467bf4bf09bSJacob Keller *
1468bf4bf09bSJacob Keller * The first time a clock is created, i40e_ptp_create_clock will set
1469bf4bf09bSJacob Keller * pf->ptp_prev_hw_time to the current system time. During resets, it is
1470bf4bf09bSJacob Keller * expected that this timespec will be set to the last known PTP clock time,
1471bf4bf09bSJacob Keller * in order to preserve the clock time as close as possible across a reset.
1472fbd5e2dfSJacob Keller **/
i40e_ptp_init(struct i40e_pf * pf)1473fbd5e2dfSJacob Keller void i40e_ptp_init(struct i40e_pf *pf)
1474fbd5e2dfSJacob Keller {
1475fbd5e2dfSJacob Keller struct net_device *netdev = pf->vsi[pf->lan_vsi]->netdev;
1476fbd5e2dfSJacob Keller struct i40e_hw *hw = &pf->hw;
1477fe88bda9SJacob Keller u32 pf_id;
1478fbd5e2dfSJacob Keller long err;
1479fbd5e2dfSJacob Keller
1480fe88bda9SJacob Keller /* Only one PF is assigned to control 1588 logic per port. Do not
1481fe88bda9SJacob Keller * enable any support for PFs not assigned via PRTTSYN_CTL0.PF_ID
1482fe88bda9SJacob Keller */
1483fe88bda9SJacob Keller pf_id = (rd32(hw, I40E_PRTTSYN_CTL0) & I40E_PRTTSYN_CTL0_PF_ID_MASK) >>
1484fe88bda9SJacob Keller I40E_PRTTSYN_CTL0_PF_ID_SHIFT;
1485fe88bda9SJacob Keller if (hw->pf_id != pf_id) {
1486fe88bda9SJacob Keller pf->flags &= ~I40E_FLAG_PTP;
1487fe88bda9SJacob Keller dev_info(&pf->pdev->dev, "%s: PTP not supported on %s\n",
1488fe88bda9SJacob Keller __func__,
1489fe88bda9SJacob Keller netdev->name);
1490fe88bda9SJacob Keller return;
1491fe88bda9SJacob Keller }
1492fe88bda9SJacob Keller
149319551262SJacob Keller mutex_init(&pf->tmreg_lock);
149412490501SJacob Keller spin_lock_init(&pf->ptp_rx_lock);
1495fbd5e2dfSJacob Keller
1496fbd5e2dfSJacob Keller /* ensure we have a clock device */
1497fbd5e2dfSJacob Keller err = i40e_ptp_create_clock(pf);
1498fbd5e2dfSJacob Keller if (err) {
1499beb0dff1SJacob Keller pf->ptp_clock = NULL;
1500beb0dff1SJacob Keller dev_err(&pf->pdev->dev, "%s: ptp_clock_register failed\n",
1501beb0dff1SJacob Keller __func__);
1502efee95f4SNicolas Pitre } else if (pf->ptp_clock) {
1503beb0dff1SJacob Keller u32 regval;
1504beb0dff1SJacob Keller
15056dec1017SShannon Nelson if (pf->hw.debug_mask & I40E_DEBUG_LAN)
15066dec1017SShannon Nelson dev_info(&pf->pdev->dev, "PHC enabled\n");
1507beb0dff1SJacob Keller pf->flags |= I40E_FLAG_PTP;
1508beb0dff1SJacob Keller
1509beb0dff1SJacob Keller /* Ensure the clocks are running. */
1510beb0dff1SJacob Keller regval = rd32(hw, I40E_PRTTSYN_CTL0);
1511beb0dff1SJacob Keller regval |= I40E_PRTTSYN_CTL0_TSYNENA_MASK;
1512beb0dff1SJacob Keller wr32(hw, I40E_PRTTSYN_CTL0, regval);
1513beb0dff1SJacob Keller regval = rd32(hw, I40E_PRTTSYN_CTL1);
1514beb0dff1SJacob Keller regval |= I40E_PRTTSYN_CTL1_TSYNENA_MASK;
1515beb0dff1SJacob Keller wr32(hw, I40E_PRTTSYN_CTL1, regval);
1516beb0dff1SJacob Keller
1517beb0dff1SJacob Keller /* Set the increment value per clock tick. */
1518beb0dff1SJacob Keller i40e_ptp_set_increment(pf);
1519beb0dff1SJacob Keller
152018946455SJacob Keller /* reset timestamping mode */
152118946455SJacob Keller i40e_ptp_set_timestamp_mode(pf, &pf->tstamp_config);
1522beb0dff1SJacob Keller
1523bf4bf09bSJacob Keller /* Restore the clock time based on last known value */
1524bf4bf09bSJacob Keller i40e_ptp_restore_hw_time(pf);
1525beb0dff1SJacob Keller }
152610507130SPiotr Kwapulinski
152710507130SPiotr Kwapulinski i40e_ptp_set_1pps_signal_hw(pf);
1528beb0dff1SJacob Keller }
1529beb0dff1SJacob Keller
1530beb0dff1SJacob Keller /**
1531beb0dff1SJacob Keller * i40e_ptp_stop - Disable the driver/hardware support and unregister the PHC
1532beb0dff1SJacob Keller * @pf: Board private structure
1533beb0dff1SJacob Keller *
1534beb0dff1SJacob Keller * This function handles the cleanup work required from the initialization by
1535beb0dff1SJacob Keller * clearing out the important information and unregistering the PHC.
1536beb0dff1SJacob Keller **/
i40e_ptp_stop(struct i40e_pf * pf)1537beb0dff1SJacob Keller void i40e_ptp_stop(struct i40e_pf *pf)
1538beb0dff1SJacob Keller {
153910507130SPiotr Kwapulinski struct i40e_hw *hw = &pf->hw;
154010507130SPiotr Kwapulinski u32 regval;
154110507130SPiotr Kwapulinski
1542beb0dff1SJacob Keller pf->flags &= ~I40E_FLAG_PTP;
1543beb0dff1SJacob Keller pf->ptp_tx = false;
1544beb0dff1SJacob Keller pf->ptp_rx = false;
1545beb0dff1SJacob Keller
1546beb0dff1SJacob Keller if (pf->ptp_tx_skb) {
1547bdf27523SJacob Keller struct sk_buff *skb = pf->ptp_tx_skb;
1548bdf27523SJacob Keller
1549beb0dff1SJacob Keller pf->ptp_tx_skb = NULL;
15500da36b97SJacob Keller clear_bit_unlock(__I40E_PTP_TX_IN_PROGRESS, pf->state);
1551bdf27523SJacob Keller dev_kfree_skb_any(skb);
1552beb0dff1SJacob Keller }
1553beb0dff1SJacob Keller
1554beb0dff1SJacob Keller if (pf->ptp_clock) {
1555beb0dff1SJacob Keller ptp_clock_unregister(pf->ptp_clock);
1556beb0dff1SJacob Keller pf->ptp_clock = NULL;
1557beb0dff1SJacob Keller dev_info(&pf->pdev->dev, "%s: removed PHC on %s\n", __func__,
1558beb0dff1SJacob Keller pf->vsi[pf->lan_vsi]->netdev->name);
1559beb0dff1SJacob Keller }
156010507130SPiotr Kwapulinski
156110507130SPiotr Kwapulinski if (i40e_is_ptp_pin_dev(&pf->hw)) {
156210507130SPiotr Kwapulinski i40e_ptp_set_pin_hw(hw, I40E_SDP3_2, off);
156310507130SPiotr Kwapulinski i40e_ptp_set_pin_hw(hw, I40E_SDP3_3, off);
156410507130SPiotr Kwapulinski i40e_ptp_set_pin_hw(hw, I40E_GPIO_4, off);
156510507130SPiotr Kwapulinski }
156610507130SPiotr Kwapulinski
156710507130SPiotr Kwapulinski regval = rd32(hw, I40E_PRTTSYN_AUX_0(0));
156810507130SPiotr Kwapulinski regval &= ~I40E_PRTTSYN_AUX_0_PTPFLAG_MASK;
156910507130SPiotr Kwapulinski wr32(hw, I40E_PRTTSYN_AUX_0(0), regval);
157010507130SPiotr Kwapulinski
157110507130SPiotr Kwapulinski /* Disable interrupts */
157210507130SPiotr Kwapulinski regval = rd32(hw, I40E_PRTTSYN_CTL0);
157310507130SPiotr Kwapulinski regval &= ~I40E_PRTTSYN_CTL0_EVENT_INT_ENA_MASK;
157410507130SPiotr Kwapulinski wr32(hw, I40E_PRTTSYN_CTL0, regval);
157510507130SPiotr Kwapulinski
157610507130SPiotr Kwapulinski i40e_ptp_free_pins(pf);
1577beb0dff1SJacob Keller }
1578