Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Driver for the National Semiconductor DP83640 PHYTER |
| 3 | * |
| 4 | * Copyright (C) 2010 OMICRON electronics GmbH |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | */ |
Joe Perches | 8d24248 | 2012-06-09 07:49:07 +0000 | [diff] [blame] | 20 | |
| 21 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 22 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 23 | #include <linux/ethtool.h> |
| 24 | #include <linux/kernel.h> |
| 25 | #include <linux/list.h> |
| 26 | #include <linux/mii.h> |
| 27 | #include <linux/module.h> |
| 28 | #include <linux/net_tstamp.h> |
| 29 | #include <linux/netdevice.h> |
Daniel Borkmann | 408eccc | 2014-04-01 16:20:23 +0200 | [diff] [blame] | 30 | #include <linux/if_vlan.h> |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 31 | #include <linux/phy.h> |
| 32 | #include <linux/ptp_classify.h> |
| 33 | #include <linux/ptp_clock_kernel.h> |
| 34 | |
| 35 | #include "dp83640_reg.h" |
| 36 | |
| 37 | #define DP83640_PHY_ID 0x20005ce1 |
| 38 | #define PAGESEL 0x13 |
| 39 | #define LAYER4 0x02 |
| 40 | #define LAYER2 0x01 |
Richard Cochran | 8028837 | 2011-08-06 21:03:04 +0000 | [diff] [blame] | 41 | #define MAX_RXTS 64 |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 42 | #define N_EXT_TS 6 |
Stefan Sørensen | ad01577 | 2014-06-27 12:05:30 +0200 | [diff] [blame] | 43 | #define N_PER_OUT 7 |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 44 | #define PSF_PTPVER 2 |
| 45 | #define PSF_EVNT 0x4000 |
| 46 | #define PSF_RX 0x2000 |
| 47 | #define PSF_TX 0x1000 |
| 48 | #define EXT_EVENT 1 |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 49 | #define CAL_EVENT 7 |
| 50 | #define CAL_TRIGGER 7 |
Richard Cochran | 86dd361 | 2014-03-20 22:21:58 +0100 | [diff] [blame] | 51 | #define DP83640_N_PINS 12 |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 52 | |
Stephan Gatzka | 1642182 | 2012-12-04 10:21:38 +0000 | [diff] [blame] | 53 | #define MII_DP83640_MICR 0x11 |
| 54 | #define MII_DP83640_MISR 0x12 |
| 55 | |
| 56 | #define MII_DP83640_MICR_OE 0x1 |
| 57 | #define MII_DP83640_MICR_IE 0x2 |
| 58 | |
| 59 | #define MII_DP83640_MISR_RHF_INT_EN 0x01 |
| 60 | #define MII_DP83640_MISR_FHF_INT_EN 0x02 |
| 61 | #define MII_DP83640_MISR_ANC_INT_EN 0x04 |
| 62 | #define MII_DP83640_MISR_DUP_INT_EN 0x08 |
| 63 | #define MII_DP83640_MISR_SPD_INT_EN 0x10 |
| 64 | #define MII_DP83640_MISR_LINK_INT_EN 0x20 |
| 65 | #define MII_DP83640_MISR_ED_INT_EN 0x40 |
| 66 | #define MII_DP83640_MISR_LQ_INT_EN 0x80 |
| 67 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 68 | /* phyter seems to miss the mark by 16 ns */ |
| 69 | #define ADJTIME_FIX 16 |
| 70 | |
| 71 | #if defined(__BIG_ENDIAN) |
| 72 | #define ENDIAN_FLAG 0 |
| 73 | #elif defined(__LITTLE_ENDIAN) |
| 74 | #define ENDIAN_FLAG PSF_ENDIAN |
| 75 | #endif |
| 76 | |
Stefan Sørensen | 63502b8 | 2014-07-22 15:20:45 +0200 | [diff] [blame] | 77 | struct dp83640_skb_info { |
| 78 | int ptp_type; |
| 79 | unsigned long tmo; |
| 80 | }; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 81 | |
| 82 | struct phy_rxts { |
| 83 | u16 ns_lo; /* ns[15:0] */ |
| 84 | u16 ns_hi; /* overflow[1:0], ns[29:16] */ |
| 85 | u16 sec_lo; /* sec[15:0] */ |
| 86 | u16 sec_hi; /* sec[31:16] */ |
| 87 | u16 seqid; /* sequenceId[15:0] */ |
| 88 | u16 msgtype; /* messageType[3:0], hash[11:0] */ |
| 89 | }; |
| 90 | |
| 91 | struct phy_txts { |
| 92 | u16 ns_lo; /* ns[15:0] */ |
| 93 | u16 ns_hi; /* overflow[1:0], ns[29:16] */ |
| 94 | u16 sec_lo; /* sec[15:0] */ |
| 95 | u16 sec_hi; /* sec[31:16] */ |
| 96 | }; |
| 97 | |
| 98 | struct rxts { |
| 99 | struct list_head list; |
| 100 | unsigned long tmo; |
| 101 | u64 ns; |
| 102 | u16 seqid; |
| 103 | u8 msgtype; |
| 104 | u16 hash; |
| 105 | }; |
| 106 | |
| 107 | struct dp83640_clock; |
| 108 | |
| 109 | struct dp83640_private { |
| 110 | struct list_head list; |
| 111 | struct dp83640_clock *clock; |
| 112 | struct phy_device *phydev; |
| 113 | struct work_struct ts_work; |
| 114 | int hwts_tx_en; |
| 115 | int hwts_rx_en; |
| 116 | int layer; |
| 117 | int version; |
| 118 | /* remember state of cfg0 during calibration */ |
| 119 | int cfg0; |
| 120 | /* remember the last event time stamp */ |
| 121 | struct phy_txts edata; |
| 122 | /* list of rx timestamps */ |
| 123 | struct list_head rxts; |
| 124 | struct list_head rxpool; |
| 125 | struct rxts rx_pool_data[MAX_RXTS]; |
| 126 | /* protects above three fields from concurrent access */ |
| 127 | spinlock_t rx_lock; |
| 128 | /* queues of incoming and outgoing packets */ |
| 129 | struct sk_buff_head rx_queue; |
| 130 | struct sk_buff_head tx_queue; |
| 131 | }; |
| 132 | |
| 133 | struct dp83640_clock { |
| 134 | /* keeps the instance in the 'phyter_clocks' list */ |
| 135 | struct list_head list; |
| 136 | /* we create one clock instance per MII bus */ |
| 137 | struct mii_bus *bus; |
| 138 | /* protects extended registers from concurrent access */ |
| 139 | struct mutex extreg_lock; |
| 140 | /* remembers which page was last selected */ |
| 141 | int page; |
| 142 | /* our advertised capabilities */ |
| 143 | struct ptp_clock_info caps; |
| 144 | /* protects the three fields below from concurrent access */ |
| 145 | struct mutex clock_lock; |
| 146 | /* the one phyter from which we shall read */ |
| 147 | struct dp83640_private *chosen; |
| 148 | /* list of the other attached phyters, not chosen */ |
| 149 | struct list_head phylist; |
| 150 | /* reference to our PTP hardware clock */ |
| 151 | struct ptp_clock *ptp_clock; |
| 152 | }; |
| 153 | |
| 154 | /* globals */ |
| 155 | |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 156 | enum { |
| 157 | CALIBRATE_GPIO, |
| 158 | PEROUT_GPIO, |
| 159 | EXTTS0_GPIO, |
| 160 | EXTTS1_GPIO, |
| 161 | EXTTS2_GPIO, |
| 162 | EXTTS3_GPIO, |
| 163 | EXTTS4_GPIO, |
| 164 | EXTTS5_GPIO, |
| 165 | GPIO_TABLE_SIZE |
| 166 | }; |
| 167 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 168 | static int chosen_phy = -1; |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 169 | static ushort gpio_tab[GPIO_TABLE_SIZE] = { |
| 170 | 1, 2, 3, 4, 8, 9, 10, 11 |
| 171 | }; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 172 | |
| 173 | module_param(chosen_phy, int, 0444); |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 174 | module_param_array(gpio_tab, ushort, NULL, 0444); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 175 | |
| 176 | MODULE_PARM_DESC(chosen_phy, \ |
| 177 | "The address of the PHY to use for the ancillary clock features"); |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 178 | MODULE_PARM_DESC(gpio_tab, \ |
| 179 | "Which GPIO line to use for which purpose: cal,perout,extts1,...,extts6"); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 180 | |
Richard Cochran | 86dd361 | 2014-03-20 22:21:58 +0100 | [diff] [blame] | 181 | static void dp83640_gpio_defaults(struct ptp_pin_desc *pd) |
| 182 | { |
| 183 | int i, index; |
| 184 | |
| 185 | for (i = 0; i < DP83640_N_PINS; i++) { |
| 186 | snprintf(pd[i].name, sizeof(pd[i].name), "GPIO%d", 1 + i); |
| 187 | pd[i].index = i; |
| 188 | } |
| 189 | |
| 190 | for (i = 0; i < GPIO_TABLE_SIZE; i++) { |
| 191 | if (gpio_tab[i] < 1 || gpio_tab[i] > DP83640_N_PINS) { |
| 192 | pr_err("gpio_tab[%d]=%hu out of range", i, gpio_tab[i]); |
| 193 | return; |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | index = gpio_tab[CALIBRATE_GPIO] - 1; |
| 198 | pd[index].func = PTP_PF_PHYSYNC; |
| 199 | pd[index].chan = 0; |
| 200 | |
| 201 | index = gpio_tab[PEROUT_GPIO] - 1; |
| 202 | pd[index].func = PTP_PF_PEROUT; |
| 203 | pd[index].chan = 0; |
| 204 | |
| 205 | for (i = EXTTS0_GPIO; i < GPIO_TABLE_SIZE; i++) { |
| 206 | index = gpio_tab[i] - 1; |
| 207 | pd[index].func = PTP_PF_EXTTS; |
| 208 | pd[index].chan = i - EXTTS0_GPIO; |
| 209 | } |
| 210 | } |
| 211 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 212 | /* a list of clocks and a mutex to protect it */ |
| 213 | static LIST_HEAD(phyter_clocks); |
| 214 | static DEFINE_MUTEX(phyter_clocks_lock); |
| 215 | |
| 216 | static void rx_timestamp_work(struct work_struct *work); |
| 217 | |
| 218 | /* extended register access functions */ |
| 219 | |
| 220 | #define BROADCAST_ADDR 31 |
| 221 | |
| 222 | static inline int broadcast_write(struct mii_bus *bus, u32 regnum, u16 val) |
| 223 | { |
| 224 | return mdiobus_write(bus, BROADCAST_ADDR, regnum, val); |
| 225 | } |
| 226 | |
| 227 | /* Caller must hold extreg_lock. */ |
| 228 | static int ext_read(struct phy_device *phydev, int page, u32 regnum) |
| 229 | { |
| 230 | struct dp83640_private *dp83640 = phydev->priv; |
| 231 | int val; |
| 232 | |
| 233 | if (dp83640->clock->page != page) { |
| 234 | broadcast_write(phydev->bus, PAGESEL, page); |
| 235 | dp83640->clock->page = page; |
| 236 | } |
| 237 | val = phy_read(phydev, regnum); |
| 238 | |
| 239 | return val; |
| 240 | } |
| 241 | |
| 242 | /* Caller must hold extreg_lock. */ |
| 243 | static void ext_write(int broadcast, struct phy_device *phydev, |
| 244 | int page, u32 regnum, u16 val) |
| 245 | { |
| 246 | struct dp83640_private *dp83640 = phydev->priv; |
| 247 | |
| 248 | if (dp83640->clock->page != page) { |
| 249 | broadcast_write(phydev->bus, PAGESEL, page); |
| 250 | dp83640->clock->page = page; |
| 251 | } |
| 252 | if (broadcast) |
| 253 | broadcast_write(phydev->bus, regnum, val); |
| 254 | else |
| 255 | phy_write(phydev, regnum, val); |
| 256 | } |
| 257 | |
| 258 | /* Caller must hold extreg_lock. */ |
| 259 | static int tdr_write(int bc, struct phy_device *dev, |
| 260 | const struct timespec *ts, u16 cmd) |
| 261 | { |
| 262 | ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_nsec & 0xffff);/* ns[15:0] */ |
| 263 | ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_nsec >> 16); /* ns[31:16] */ |
| 264 | ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_sec & 0xffff); /* sec[15:0] */ |
| 265 | ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_sec >> 16); /* sec[31:16]*/ |
| 266 | |
| 267 | ext_write(bc, dev, PAGE4, PTP_CTL, cmd); |
| 268 | |
| 269 | return 0; |
| 270 | } |
| 271 | |
| 272 | /* convert phy timestamps into driver timestamps */ |
| 273 | |
| 274 | static void phy2rxts(struct phy_rxts *p, struct rxts *rxts) |
| 275 | { |
| 276 | u32 sec; |
| 277 | |
| 278 | sec = p->sec_lo; |
| 279 | sec |= p->sec_hi << 16; |
| 280 | |
| 281 | rxts->ns = p->ns_lo; |
| 282 | rxts->ns |= (p->ns_hi & 0x3fff) << 16; |
| 283 | rxts->ns += ((u64)sec) * 1000000000ULL; |
| 284 | rxts->seqid = p->seqid; |
| 285 | rxts->msgtype = (p->msgtype >> 12) & 0xf; |
| 286 | rxts->hash = p->msgtype & 0x0fff; |
Richard Cochran | 8028837 | 2011-08-06 21:03:04 +0000 | [diff] [blame] | 287 | rxts->tmo = jiffies + 2; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | static u64 phy2txts(struct phy_txts *p) |
| 291 | { |
| 292 | u64 ns; |
| 293 | u32 sec; |
| 294 | |
| 295 | sec = p->sec_lo; |
| 296 | sec |= p->sec_hi << 16; |
| 297 | |
| 298 | ns = p->ns_lo; |
| 299 | ns |= (p->ns_hi & 0x3fff) << 16; |
| 300 | ns += ((u64)sec) * 1000000000ULL; |
| 301 | |
| 302 | return ns; |
| 303 | } |
| 304 | |
Richard Cochran | 621bdec | 2014-03-20 22:22:00 +0100 | [diff] [blame] | 305 | static int periodic_output(struct dp83640_clock *clock, |
Stefan Sørensen | ad01577 | 2014-06-27 12:05:30 +0200 | [diff] [blame] | 306 | struct ptp_clock_request *clkreq, bool on, |
| 307 | int trigger) |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 308 | { |
| 309 | struct dp83640_private *dp83640 = clock->chosen; |
| 310 | struct phy_device *phydev = dp83640->phydev; |
Richard Cochran | 564ca56 | 2014-03-20 22:21:57 +0100 | [diff] [blame] | 311 | u32 sec, nsec, pwidth; |
Stefan Sørensen | ad01577 | 2014-06-27 12:05:30 +0200 | [diff] [blame] | 312 | u16 gpio, ptp_trig, val; |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 313 | |
Richard Cochran | 621bdec | 2014-03-20 22:22:00 +0100 | [diff] [blame] | 314 | if (on) { |
Stefan Sørensen | ad01577 | 2014-06-27 12:05:30 +0200 | [diff] [blame] | 315 | gpio = 1 + ptp_find_pin(clock->ptp_clock, PTP_PF_PEROUT, |
| 316 | trigger); |
Richard Cochran | 621bdec | 2014-03-20 22:22:00 +0100 | [diff] [blame] | 317 | if (gpio < 1) |
| 318 | return -EINVAL; |
| 319 | } else { |
| 320 | gpio = 0; |
| 321 | } |
| 322 | |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 323 | ptp_trig = TRIG_WR | |
| 324 | (trigger & TRIG_CSEL_MASK) << TRIG_CSEL_SHIFT | |
| 325 | (gpio & TRIG_GPIO_MASK) << TRIG_GPIO_SHIFT | |
| 326 | TRIG_PER | |
| 327 | TRIG_PULSE; |
| 328 | |
| 329 | val = (trigger & TRIG_SEL_MASK) << TRIG_SEL_SHIFT; |
| 330 | |
| 331 | if (!on) { |
| 332 | val |= TRIG_DIS; |
| 333 | mutex_lock(&clock->extreg_lock); |
| 334 | ext_write(0, phydev, PAGE5, PTP_TRIG, ptp_trig); |
| 335 | ext_write(0, phydev, PAGE4, PTP_CTL, val); |
| 336 | mutex_unlock(&clock->extreg_lock); |
Richard Cochran | 621bdec | 2014-03-20 22:22:00 +0100 | [diff] [blame] | 337 | return 0; |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | sec = clkreq->perout.start.sec; |
| 341 | nsec = clkreq->perout.start.nsec; |
Richard Cochran | 564ca56 | 2014-03-20 22:21:57 +0100 | [diff] [blame] | 342 | pwidth = clkreq->perout.period.sec * 1000000000UL; |
| 343 | pwidth += clkreq->perout.period.nsec; |
| 344 | pwidth /= 2; |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 345 | |
| 346 | mutex_lock(&clock->extreg_lock); |
| 347 | |
| 348 | ext_write(0, phydev, PAGE5, PTP_TRIG, ptp_trig); |
| 349 | |
| 350 | /*load trigger*/ |
| 351 | val |= TRIG_LOAD; |
| 352 | ext_write(0, phydev, PAGE4, PTP_CTL, val); |
| 353 | ext_write(0, phydev, PAGE4, PTP_TDR, nsec & 0xffff); /* ns[15:0] */ |
| 354 | ext_write(0, phydev, PAGE4, PTP_TDR, nsec >> 16); /* ns[31:16] */ |
| 355 | ext_write(0, phydev, PAGE4, PTP_TDR, sec & 0xffff); /* sec[15:0] */ |
| 356 | ext_write(0, phydev, PAGE4, PTP_TDR, sec >> 16); /* sec[31:16] */ |
Richard Cochran | 564ca56 | 2014-03-20 22:21:57 +0100 | [diff] [blame] | 357 | ext_write(0, phydev, PAGE4, PTP_TDR, pwidth & 0xffff); /* ns[15:0] */ |
| 358 | ext_write(0, phydev, PAGE4, PTP_TDR, pwidth >> 16); /* ns[31:16] */ |
Stefan Sørensen | 35e872a | 2014-06-27 12:05:29 +0200 | [diff] [blame] | 359 | /* Triggers 0 and 1 has programmable pulsewidth2 */ |
| 360 | if (trigger < 2) { |
| 361 | ext_write(0, phydev, PAGE4, PTP_TDR, pwidth & 0xffff); |
| 362 | ext_write(0, phydev, PAGE4, PTP_TDR, pwidth >> 16); |
| 363 | } |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 364 | |
| 365 | /*enable trigger*/ |
| 366 | val &= ~TRIG_LOAD; |
| 367 | val |= TRIG_EN; |
| 368 | ext_write(0, phydev, PAGE4, PTP_CTL, val); |
| 369 | |
| 370 | mutex_unlock(&clock->extreg_lock); |
Richard Cochran | 621bdec | 2014-03-20 22:22:00 +0100 | [diff] [blame] | 371 | return 0; |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 372 | } |
| 373 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 374 | /* ptp clock methods */ |
| 375 | |
| 376 | static int ptp_dp83640_adjfreq(struct ptp_clock_info *ptp, s32 ppb) |
| 377 | { |
| 378 | struct dp83640_clock *clock = |
| 379 | container_of(ptp, struct dp83640_clock, caps); |
| 380 | struct phy_device *phydev = clock->chosen->phydev; |
| 381 | u64 rate; |
| 382 | int neg_adj = 0; |
| 383 | u16 hi, lo; |
| 384 | |
| 385 | if (ppb < 0) { |
| 386 | neg_adj = 1; |
| 387 | ppb = -ppb; |
| 388 | } |
| 389 | rate = ppb; |
| 390 | rate <<= 26; |
| 391 | rate = div_u64(rate, 1953125); |
| 392 | |
| 393 | hi = (rate >> 16) & PTP_RATE_HI_MASK; |
| 394 | if (neg_adj) |
| 395 | hi |= PTP_RATE_DIR; |
| 396 | |
| 397 | lo = rate & 0xffff; |
| 398 | |
| 399 | mutex_lock(&clock->extreg_lock); |
| 400 | |
| 401 | ext_write(1, phydev, PAGE4, PTP_RATEH, hi); |
| 402 | ext_write(1, phydev, PAGE4, PTP_RATEL, lo); |
| 403 | |
| 404 | mutex_unlock(&clock->extreg_lock); |
| 405 | |
| 406 | return 0; |
| 407 | } |
| 408 | |
| 409 | static int ptp_dp83640_adjtime(struct ptp_clock_info *ptp, s64 delta) |
| 410 | { |
| 411 | struct dp83640_clock *clock = |
| 412 | container_of(ptp, struct dp83640_clock, caps); |
| 413 | struct phy_device *phydev = clock->chosen->phydev; |
| 414 | struct timespec ts; |
| 415 | int err; |
| 416 | |
| 417 | delta += ADJTIME_FIX; |
| 418 | |
| 419 | ts = ns_to_timespec(delta); |
| 420 | |
| 421 | mutex_lock(&clock->extreg_lock); |
| 422 | |
| 423 | err = tdr_write(1, phydev, &ts, PTP_STEP_CLK); |
| 424 | |
| 425 | mutex_unlock(&clock->extreg_lock); |
| 426 | |
| 427 | return err; |
| 428 | } |
| 429 | |
| 430 | static int ptp_dp83640_gettime(struct ptp_clock_info *ptp, struct timespec *ts) |
| 431 | { |
| 432 | struct dp83640_clock *clock = |
| 433 | container_of(ptp, struct dp83640_clock, caps); |
| 434 | struct phy_device *phydev = clock->chosen->phydev; |
| 435 | unsigned int val[4]; |
| 436 | |
| 437 | mutex_lock(&clock->extreg_lock); |
| 438 | |
| 439 | ext_write(0, phydev, PAGE4, PTP_CTL, PTP_RD_CLK); |
| 440 | |
| 441 | val[0] = ext_read(phydev, PAGE4, PTP_TDR); /* ns[15:0] */ |
| 442 | val[1] = ext_read(phydev, PAGE4, PTP_TDR); /* ns[31:16] */ |
| 443 | val[2] = ext_read(phydev, PAGE4, PTP_TDR); /* sec[15:0] */ |
| 444 | val[3] = ext_read(phydev, PAGE4, PTP_TDR); /* sec[31:16] */ |
| 445 | |
| 446 | mutex_unlock(&clock->extreg_lock); |
| 447 | |
| 448 | ts->tv_nsec = val[0] | (val[1] << 16); |
| 449 | ts->tv_sec = val[2] | (val[3] << 16); |
| 450 | |
| 451 | return 0; |
| 452 | } |
| 453 | |
| 454 | static int ptp_dp83640_settime(struct ptp_clock_info *ptp, |
| 455 | const struct timespec *ts) |
| 456 | { |
| 457 | struct dp83640_clock *clock = |
| 458 | container_of(ptp, struct dp83640_clock, caps); |
| 459 | struct phy_device *phydev = clock->chosen->phydev; |
| 460 | int err; |
| 461 | |
| 462 | mutex_lock(&clock->extreg_lock); |
| 463 | |
| 464 | err = tdr_write(1, phydev, ts, PTP_LOAD_CLK); |
| 465 | |
| 466 | mutex_unlock(&clock->extreg_lock); |
| 467 | |
| 468 | return err; |
| 469 | } |
| 470 | |
| 471 | static int ptp_dp83640_enable(struct ptp_clock_info *ptp, |
| 472 | struct ptp_clock_request *rq, int on) |
| 473 | { |
| 474 | struct dp83640_clock *clock = |
| 475 | container_of(ptp, struct dp83640_clock, caps); |
| 476 | struct phy_device *phydev = clock->chosen->phydev; |
Richard Cochran | fbf4b93 | 2014-03-20 22:21:56 +0100 | [diff] [blame] | 477 | unsigned int index; |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 478 | u16 evnt, event_num, gpio_num; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 479 | |
| 480 | switch (rq->type) { |
| 481 | case PTP_CLK_REQ_EXTTS: |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 482 | index = rq->extts.index; |
Richard Cochran | fbf4b93 | 2014-03-20 22:21:56 +0100 | [diff] [blame] | 483 | if (index >= N_EXT_TS) |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 484 | return -EINVAL; |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 485 | event_num = EXT_EVENT + index; |
| 486 | evnt = EVNT_WR | (event_num & EVNT_SEL_MASK) << EVNT_SEL_SHIFT; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 487 | if (on) { |
Richard Cochran | faa8971 | 2014-03-20 22:21:59 +0100 | [diff] [blame] | 488 | gpio_num = 1 + ptp_find_pin(clock->ptp_clock, |
| 489 | PTP_PF_EXTTS, index); |
| 490 | if (gpio_num < 1) |
| 491 | return -EINVAL; |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 492 | evnt |= (gpio_num & EVNT_GPIO_MASK) << EVNT_GPIO_SHIFT; |
Stefan Sørensen | 80671bd | 2014-02-03 15:36:50 +0100 | [diff] [blame] | 493 | if (rq->extts.flags & PTP_FALLING_EDGE) |
| 494 | evnt |= EVNT_FALL; |
| 495 | else |
| 496 | evnt |= EVNT_RISE; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 497 | } |
| 498 | ext_write(0, phydev, PAGE5, PTP_EVNT, evnt); |
| 499 | return 0; |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 500 | |
| 501 | case PTP_CLK_REQ_PEROUT: |
Stefan Sørensen | ad01577 | 2014-06-27 12:05:30 +0200 | [diff] [blame] | 502 | if (rq->perout.index >= N_PER_OUT) |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 503 | return -EINVAL; |
Stefan Sørensen | ad01577 | 2014-06-27 12:05:30 +0200 | [diff] [blame] | 504 | return periodic_output(clock, rq, on, rq->perout.index); |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 505 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 506 | default: |
| 507 | break; |
| 508 | } |
| 509 | |
| 510 | return -EOPNOTSUPP; |
| 511 | } |
| 512 | |
Richard Cochran | 86dd361 | 2014-03-20 22:21:58 +0100 | [diff] [blame] | 513 | static int ptp_dp83640_verify(struct ptp_clock_info *ptp, unsigned int pin, |
| 514 | enum ptp_pin_function func, unsigned int chan) |
| 515 | { |
Stefan Sørensen | 6f39eb8 | 2014-06-27 12:05:31 +0200 | [diff] [blame] | 516 | struct dp83640_clock *clock = |
| 517 | container_of(ptp, struct dp83640_clock, caps); |
| 518 | |
| 519 | if (clock->caps.pin_config[pin].func == PTP_PF_PHYSYNC && |
| 520 | !list_empty(&clock->phylist)) |
| 521 | return 1; |
| 522 | |
| 523 | if (func == PTP_PF_PHYSYNC) |
| 524 | return 1; |
| 525 | |
Richard Cochran | 86dd361 | 2014-03-20 22:21:58 +0100 | [diff] [blame] | 526 | return 0; |
| 527 | } |
| 528 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 529 | static u8 status_frame_dst[6] = { 0x01, 0x1B, 0x19, 0x00, 0x00, 0x00 }; |
| 530 | static u8 status_frame_src[6] = { 0x08, 0x00, 0x17, 0x0B, 0x6B, 0x0F }; |
| 531 | |
| 532 | static void enable_status_frames(struct phy_device *phydev, bool on) |
| 533 | { |
| 534 | u16 cfg0 = 0, ver; |
| 535 | |
| 536 | if (on) |
| 537 | cfg0 = PSF_EVNT_EN | PSF_RXTS_EN | PSF_TXTS_EN | ENDIAN_FLAG; |
| 538 | |
| 539 | ver = (PSF_PTPVER & VERSIONPTP_MASK) << VERSIONPTP_SHIFT; |
| 540 | |
| 541 | ext_write(0, phydev, PAGE5, PSF_CFG0, cfg0); |
| 542 | ext_write(0, phydev, PAGE6, PSF_CFG1, ver); |
| 543 | |
| 544 | if (!phydev->attached_dev) { |
Joe Perches | 8d24248 | 2012-06-09 07:49:07 +0000 | [diff] [blame] | 545 | pr_warn("expected to find an attached netdevice\n"); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 546 | return; |
| 547 | } |
| 548 | |
| 549 | if (on) { |
| 550 | if (dev_mc_add(phydev->attached_dev, status_frame_dst)) |
Joe Perches | 8d24248 | 2012-06-09 07:49:07 +0000 | [diff] [blame] | 551 | pr_warn("failed to add mc address\n"); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 552 | } else { |
| 553 | if (dev_mc_del(phydev->attached_dev, status_frame_dst)) |
Joe Perches | 8d24248 | 2012-06-09 07:49:07 +0000 | [diff] [blame] | 554 | pr_warn("failed to delete mc address\n"); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 555 | } |
| 556 | } |
| 557 | |
| 558 | static bool is_status_frame(struct sk_buff *skb, int type) |
| 559 | { |
| 560 | struct ethhdr *h = eth_hdr(skb); |
| 561 | |
| 562 | if (PTP_CLASS_V2_L2 == type && |
| 563 | !memcmp(h->h_source, status_frame_src, sizeof(status_frame_src))) |
| 564 | return true; |
| 565 | else |
| 566 | return false; |
| 567 | } |
| 568 | |
| 569 | static int expired(struct rxts *rxts) |
| 570 | { |
| 571 | return time_after(jiffies, rxts->tmo); |
| 572 | } |
| 573 | |
| 574 | /* Caller must hold rx_lock. */ |
| 575 | static void prune_rx_ts(struct dp83640_private *dp83640) |
| 576 | { |
| 577 | struct list_head *this, *next; |
| 578 | struct rxts *rxts; |
| 579 | |
| 580 | list_for_each_safe(this, next, &dp83640->rxts) { |
| 581 | rxts = list_entry(this, struct rxts, list); |
| 582 | if (expired(rxts)) { |
| 583 | list_del_init(&rxts->list); |
| 584 | list_add(&rxts->list, &dp83640->rxpool); |
| 585 | } |
| 586 | } |
| 587 | } |
| 588 | |
| 589 | /* synchronize the phyters so they act as one clock */ |
| 590 | |
| 591 | static void enable_broadcast(struct phy_device *phydev, int init_page, int on) |
| 592 | { |
| 593 | int val; |
| 594 | phy_write(phydev, PAGESEL, 0); |
| 595 | val = phy_read(phydev, PHYCR2); |
| 596 | if (on) |
| 597 | val |= BC_WRITE; |
| 598 | else |
| 599 | val &= ~BC_WRITE; |
| 600 | phy_write(phydev, PHYCR2, val); |
| 601 | phy_write(phydev, PAGESEL, init_page); |
| 602 | } |
| 603 | |
| 604 | static void recalibrate(struct dp83640_clock *clock) |
| 605 | { |
| 606 | s64 now, diff; |
| 607 | struct phy_txts event_ts; |
| 608 | struct timespec ts; |
| 609 | struct list_head *this; |
| 610 | struct dp83640_private *tmp; |
| 611 | struct phy_device *master = clock->chosen->phydev; |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 612 | u16 cal_gpio, cfg0, evnt, ptp_trig, trigger, val; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 613 | |
| 614 | trigger = CAL_TRIGGER; |
Stefan Sørensen | e015595 | 2014-06-27 12:05:32 +0200 | [diff] [blame] | 615 | cal_gpio = 1 + ptp_find_pin(clock->ptp_clock, PTP_PF_PHYSYNC, 0); |
| 616 | if (cal_gpio < 1) { |
| 617 | pr_err("PHY calibration pin not avaible - PHY is not calibrated."); |
| 618 | return; |
| 619 | } |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 620 | |
| 621 | mutex_lock(&clock->extreg_lock); |
| 622 | |
| 623 | /* |
| 624 | * enable broadcast, disable status frames, enable ptp clock |
| 625 | */ |
| 626 | list_for_each(this, &clock->phylist) { |
| 627 | tmp = list_entry(this, struct dp83640_private, list); |
| 628 | enable_broadcast(tmp->phydev, clock->page, 1); |
| 629 | tmp->cfg0 = ext_read(tmp->phydev, PAGE5, PSF_CFG0); |
| 630 | ext_write(0, tmp->phydev, PAGE5, PSF_CFG0, 0); |
| 631 | ext_write(0, tmp->phydev, PAGE4, PTP_CTL, PTP_ENABLE); |
| 632 | } |
| 633 | enable_broadcast(master, clock->page, 1); |
| 634 | cfg0 = ext_read(master, PAGE5, PSF_CFG0); |
| 635 | ext_write(0, master, PAGE5, PSF_CFG0, 0); |
| 636 | ext_write(0, master, PAGE4, PTP_CTL, PTP_ENABLE); |
| 637 | |
| 638 | /* |
| 639 | * enable an event timestamp |
| 640 | */ |
| 641 | evnt = EVNT_WR | EVNT_RISE | EVNT_SINGLE; |
| 642 | evnt |= (CAL_EVENT & EVNT_SEL_MASK) << EVNT_SEL_SHIFT; |
| 643 | evnt |= (cal_gpio & EVNT_GPIO_MASK) << EVNT_GPIO_SHIFT; |
| 644 | |
| 645 | list_for_each(this, &clock->phylist) { |
| 646 | tmp = list_entry(this, struct dp83640_private, list); |
| 647 | ext_write(0, tmp->phydev, PAGE5, PTP_EVNT, evnt); |
| 648 | } |
| 649 | ext_write(0, master, PAGE5, PTP_EVNT, evnt); |
| 650 | |
| 651 | /* |
| 652 | * configure a trigger |
| 653 | */ |
| 654 | ptp_trig = TRIG_WR | TRIG_IF_LATE | TRIG_PULSE; |
| 655 | ptp_trig |= (trigger & TRIG_CSEL_MASK) << TRIG_CSEL_SHIFT; |
| 656 | ptp_trig |= (cal_gpio & TRIG_GPIO_MASK) << TRIG_GPIO_SHIFT; |
| 657 | ext_write(0, master, PAGE5, PTP_TRIG, ptp_trig); |
| 658 | |
| 659 | /* load trigger */ |
| 660 | val = (trigger & TRIG_SEL_MASK) << TRIG_SEL_SHIFT; |
| 661 | val |= TRIG_LOAD; |
| 662 | ext_write(0, master, PAGE4, PTP_CTL, val); |
| 663 | |
| 664 | /* enable trigger */ |
| 665 | val &= ~TRIG_LOAD; |
| 666 | val |= TRIG_EN; |
| 667 | ext_write(0, master, PAGE4, PTP_CTL, val); |
| 668 | |
| 669 | /* disable trigger */ |
| 670 | val = (trigger & TRIG_SEL_MASK) << TRIG_SEL_SHIFT; |
| 671 | val |= TRIG_DIS; |
| 672 | ext_write(0, master, PAGE4, PTP_CTL, val); |
| 673 | |
| 674 | /* |
| 675 | * read out and correct offsets |
| 676 | */ |
| 677 | val = ext_read(master, PAGE4, PTP_STS); |
Joe Perches | 8d24248 | 2012-06-09 07:49:07 +0000 | [diff] [blame] | 678 | pr_info("master PTP_STS 0x%04hx\n", val); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 679 | val = ext_read(master, PAGE4, PTP_ESTS); |
Joe Perches | 8d24248 | 2012-06-09 07:49:07 +0000 | [diff] [blame] | 680 | pr_info("master PTP_ESTS 0x%04hx\n", val); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 681 | event_ts.ns_lo = ext_read(master, PAGE4, PTP_EDATA); |
| 682 | event_ts.ns_hi = ext_read(master, PAGE4, PTP_EDATA); |
| 683 | event_ts.sec_lo = ext_read(master, PAGE4, PTP_EDATA); |
| 684 | event_ts.sec_hi = ext_read(master, PAGE4, PTP_EDATA); |
| 685 | now = phy2txts(&event_ts); |
| 686 | |
| 687 | list_for_each(this, &clock->phylist) { |
| 688 | tmp = list_entry(this, struct dp83640_private, list); |
| 689 | val = ext_read(tmp->phydev, PAGE4, PTP_STS); |
Joe Perches | 8d24248 | 2012-06-09 07:49:07 +0000 | [diff] [blame] | 690 | pr_info("slave PTP_STS 0x%04hx\n", val); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 691 | val = ext_read(tmp->phydev, PAGE4, PTP_ESTS); |
Joe Perches | 8d24248 | 2012-06-09 07:49:07 +0000 | [diff] [blame] | 692 | pr_info("slave PTP_ESTS 0x%04hx\n", val); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 693 | event_ts.ns_lo = ext_read(tmp->phydev, PAGE4, PTP_EDATA); |
| 694 | event_ts.ns_hi = ext_read(tmp->phydev, PAGE4, PTP_EDATA); |
| 695 | event_ts.sec_lo = ext_read(tmp->phydev, PAGE4, PTP_EDATA); |
| 696 | event_ts.sec_hi = ext_read(tmp->phydev, PAGE4, PTP_EDATA); |
| 697 | diff = now - (s64) phy2txts(&event_ts); |
| 698 | pr_info("slave offset %lld nanoseconds\n", diff); |
| 699 | diff += ADJTIME_FIX; |
| 700 | ts = ns_to_timespec(diff); |
| 701 | tdr_write(0, tmp->phydev, &ts, PTP_STEP_CLK); |
| 702 | } |
| 703 | |
| 704 | /* |
| 705 | * restore status frames |
| 706 | */ |
| 707 | list_for_each(this, &clock->phylist) { |
| 708 | tmp = list_entry(this, struct dp83640_private, list); |
| 709 | ext_write(0, tmp->phydev, PAGE5, PSF_CFG0, tmp->cfg0); |
| 710 | } |
| 711 | ext_write(0, master, PAGE5, PSF_CFG0, cfg0); |
| 712 | |
| 713 | mutex_unlock(&clock->extreg_lock); |
| 714 | } |
| 715 | |
| 716 | /* time stamping methods */ |
| 717 | |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 718 | static inline u16 exts_chan_to_edata(int ch) |
| 719 | { |
| 720 | return 1 << ((ch + EXT_EVENT) * 2); |
| 721 | } |
| 722 | |
Richard Cochran | 2331038 | 2011-06-14 23:55:19 +0000 | [diff] [blame] | 723 | static int decode_evnt(struct dp83640_private *dp83640, |
Christian Riesch | 13322f2 | 2014-08-21 15:17:04 +0200 | [diff] [blame] | 724 | void *data, int len, u16 ests) |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 725 | { |
Richard Cochran | 2331038 | 2011-06-14 23:55:19 +0000 | [diff] [blame] | 726 | struct phy_txts *phy_txts; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 727 | struct ptp_clock_event event; |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 728 | int i, parsed; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 729 | int words = (ests >> EVNT_TS_LEN_SHIFT) & EVNT_TS_LEN_MASK; |
Richard Cochran | 2331038 | 2011-06-14 23:55:19 +0000 | [diff] [blame] | 730 | u16 ext_status = 0; |
| 731 | |
Christian Riesch | 13322f2 | 2014-08-21 15:17:04 +0200 | [diff] [blame] | 732 | /* calculate length of the event timestamp status message */ |
| 733 | if (ests & MULT_EVNT) |
| 734 | parsed = (words + 2) * sizeof(u16); |
| 735 | else |
| 736 | parsed = (words + 1) * sizeof(u16); |
| 737 | |
| 738 | /* check if enough data is available */ |
| 739 | if (len < parsed) |
| 740 | return len; |
| 741 | |
Richard Cochran | 2331038 | 2011-06-14 23:55:19 +0000 | [diff] [blame] | 742 | if (ests & MULT_EVNT) { |
| 743 | ext_status = *(u16 *) data; |
| 744 | data += sizeof(ext_status); |
| 745 | } |
| 746 | |
| 747 | phy_txts = data; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 748 | |
| 749 | switch (words) { /* fall through in every case */ |
| 750 | case 3: |
| 751 | dp83640->edata.sec_hi = phy_txts->sec_hi; |
| 752 | case 2: |
| 753 | dp83640->edata.sec_lo = phy_txts->sec_lo; |
| 754 | case 1: |
| 755 | dp83640->edata.ns_hi = phy_txts->ns_hi; |
| 756 | case 0: |
| 757 | dp83640->edata.ns_lo = phy_txts->ns_lo; |
| 758 | } |
| 759 | |
Christian Riesch | 13322f2 | 2014-08-21 15:17:04 +0200 | [diff] [blame] | 760 | if (!ext_status) { |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 761 | i = ((ests >> EVNT_NUM_SHIFT) & EVNT_NUM_MASK) - EXT_EVENT; |
| 762 | ext_status = exts_chan_to_edata(i); |
| 763 | } |
| 764 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 765 | event.type = PTP_CLOCK_EXTTS; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 766 | event.timestamp = phy2txts(&dp83640->edata); |
| 767 | |
Stefan Sørensen | a0077a9 | 2014-07-11 08:18:26 +0200 | [diff] [blame] | 768 | /* Compensate for input path and synchronization delays */ |
| 769 | event.timestamp -= 35; |
| 770 | |
Richard Cochran | 49b3fd4 | 2011-09-20 01:43:14 +0000 | [diff] [blame] | 771 | for (i = 0; i < N_EXT_TS; i++) { |
| 772 | if (ext_status & exts_chan_to_edata(i)) { |
| 773 | event.index = i; |
| 774 | ptp_clock_event(dp83640->clock->ptp_clock, &event); |
| 775 | } |
| 776 | } |
Richard Cochran | 2331038 | 2011-06-14 23:55:19 +0000 | [diff] [blame] | 777 | |
Christian Riesch | 13322f2 | 2014-08-21 15:17:04 +0200 | [diff] [blame] | 778 | return parsed; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 779 | } |
| 780 | |
Stefan Sørensen | 63502b8 | 2014-07-22 15:20:45 +0200 | [diff] [blame] | 781 | static int match(struct sk_buff *skb, unsigned int type, struct rxts *rxts) |
| 782 | { |
| 783 | u16 *seqid; |
| 784 | unsigned int offset = 0; |
| 785 | u8 *msgtype, *data = skb_mac_header(skb); |
| 786 | |
| 787 | /* check sequenceID, messageType, 12 bit hash of offset 20-29 */ |
| 788 | |
| 789 | if (type & PTP_CLASS_VLAN) |
| 790 | offset += VLAN_HLEN; |
| 791 | |
| 792 | switch (type & PTP_CLASS_PMASK) { |
| 793 | case PTP_CLASS_IPV4: |
Richard Cochran | cca04b2 | 2014-11-12 11:33:52 +0100 | [diff] [blame] | 794 | offset += ETH_HLEN + IPV4_HLEN(data + offset) + UDP_HLEN; |
Stefan Sørensen | 63502b8 | 2014-07-22 15:20:45 +0200 | [diff] [blame] | 795 | break; |
| 796 | case PTP_CLASS_IPV6: |
| 797 | offset += ETH_HLEN + IP6_HLEN + UDP_HLEN; |
| 798 | break; |
| 799 | case PTP_CLASS_L2: |
| 800 | offset += ETH_HLEN; |
| 801 | break; |
| 802 | default: |
| 803 | return 0; |
| 804 | } |
| 805 | |
| 806 | if (skb->len + ETH_HLEN < offset + OFF_PTP_SEQUENCE_ID + sizeof(*seqid)) |
| 807 | return 0; |
| 808 | |
| 809 | if (unlikely(type & PTP_CLASS_V1)) |
| 810 | msgtype = data + offset + OFF_PTP_CONTROL; |
| 811 | else |
| 812 | msgtype = data + offset; |
| 813 | |
| 814 | seqid = (u16 *)(data + offset + OFF_PTP_SEQUENCE_ID); |
| 815 | |
| 816 | return rxts->msgtype == (*msgtype & 0xf) && |
| 817 | rxts->seqid == ntohs(*seqid); |
| 818 | } |
| 819 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 820 | static void decode_rxts(struct dp83640_private *dp83640, |
| 821 | struct phy_rxts *phy_rxts) |
| 822 | { |
| 823 | struct rxts *rxts; |
Stefan Sørensen | 63502b8 | 2014-07-22 15:20:45 +0200 | [diff] [blame] | 824 | struct skb_shared_hwtstamps *shhwtstamps = NULL; |
| 825 | struct sk_buff *skb; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 826 | unsigned long flags; |
| 827 | |
| 828 | spin_lock_irqsave(&dp83640->rx_lock, flags); |
| 829 | |
| 830 | prune_rx_ts(dp83640); |
| 831 | |
| 832 | if (list_empty(&dp83640->rxpool)) { |
Joe Perches | 8d24248 | 2012-06-09 07:49:07 +0000 | [diff] [blame] | 833 | pr_debug("rx timestamp pool is empty\n"); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 834 | goto out; |
| 835 | } |
| 836 | rxts = list_first_entry(&dp83640->rxpool, struct rxts, list); |
| 837 | list_del_init(&rxts->list); |
| 838 | phy2rxts(phy_rxts, rxts); |
Stefan Sørensen | 63502b8 | 2014-07-22 15:20:45 +0200 | [diff] [blame] | 839 | |
| 840 | spin_lock_irqsave(&dp83640->rx_queue.lock, flags); |
| 841 | skb_queue_walk(&dp83640->rx_queue, skb) { |
| 842 | struct dp83640_skb_info *skb_info; |
| 843 | |
| 844 | skb_info = (struct dp83640_skb_info *)skb->cb; |
| 845 | if (match(skb, skb_info->ptp_type, rxts)) { |
| 846 | __skb_unlink(skb, &dp83640->rx_queue); |
| 847 | shhwtstamps = skb_hwtstamps(skb); |
| 848 | memset(shhwtstamps, 0, sizeof(*shhwtstamps)); |
| 849 | shhwtstamps->hwtstamp = ns_to_ktime(rxts->ns); |
| 850 | netif_rx_ni(skb); |
| 851 | list_add(&rxts->list, &dp83640->rxpool); |
| 852 | break; |
| 853 | } |
| 854 | } |
| 855 | spin_unlock_irqrestore(&dp83640->rx_queue.lock, flags); |
| 856 | |
| 857 | if (!shhwtstamps) |
| 858 | list_add_tail(&rxts->list, &dp83640->rxts); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 859 | out: |
| 860 | spin_unlock_irqrestore(&dp83640->rx_lock, flags); |
| 861 | } |
| 862 | |
| 863 | static void decode_txts(struct dp83640_private *dp83640, |
| 864 | struct phy_txts *phy_txts) |
| 865 | { |
| 866 | struct skb_shared_hwtstamps shhwtstamps; |
| 867 | struct sk_buff *skb; |
| 868 | u64 ns; |
| 869 | |
| 870 | /* We must already have the skb that triggered this. */ |
| 871 | |
| 872 | skb = skb_dequeue(&dp83640->tx_queue); |
| 873 | |
| 874 | if (!skb) { |
Joe Perches | 8d24248 | 2012-06-09 07:49:07 +0000 | [diff] [blame] | 875 | pr_debug("have timestamp but tx_queue empty\n"); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 876 | return; |
| 877 | } |
| 878 | ns = phy2txts(phy_txts); |
| 879 | memset(&shhwtstamps, 0, sizeof(shhwtstamps)); |
| 880 | shhwtstamps.hwtstamp = ns_to_ktime(ns); |
| 881 | skb_complete_tx_timestamp(skb, &shhwtstamps); |
| 882 | } |
| 883 | |
| 884 | static void decode_status_frame(struct dp83640_private *dp83640, |
| 885 | struct sk_buff *skb) |
| 886 | { |
| 887 | struct phy_rxts *phy_rxts; |
| 888 | struct phy_txts *phy_txts; |
| 889 | u8 *ptr; |
| 890 | int len, size; |
| 891 | u16 ests, type; |
| 892 | |
| 893 | ptr = skb->data + 2; |
| 894 | |
| 895 | for (len = skb_headlen(skb) - 2; len > sizeof(type); len -= size) { |
| 896 | |
| 897 | type = *(u16 *)ptr; |
| 898 | ests = type & 0x0fff; |
| 899 | type = type & 0xf000; |
| 900 | len -= sizeof(type); |
| 901 | ptr += sizeof(type); |
| 902 | |
| 903 | if (PSF_RX == type && len >= sizeof(*phy_rxts)) { |
| 904 | |
| 905 | phy_rxts = (struct phy_rxts *) ptr; |
| 906 | decode_rxts(dp83640, phy_rxts); |
| 907 | size = sizeof(*phy_rxts); |
| 908 | |
| 909 | } else if (PSF_TX == type && len >= sizeof(*phy_txts)) { |
| 910 | |
| 911 | phy_txts = (struct phy_txts *) ptr; |
| 912 | decode_txts(dp83640, phy_txts); |
| 913 | size = sizeof(*phy_txts); |
| 914 | |
Christian Riesch | 13322f2 | 2014-08-21 15:17:04 +0200 | [diff] [blame] | 915 | } else if (PSF_EVNT == type) { |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 916 | |
Christian Riesch | 13322f2 | 2014-08-21 15:17:04 +0200 | [diff] [blame] | 917 | size = decode_evnt(dp83640, ptr, len, ests); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 918 | |
| 919 | } else { |
| 920 | size = 0; |
| 921 | break; |
| 922 | } |
| 923 | ptr += size; |
| 924 | } |
| 925 | } |
| 926 | |
Richard Cochran | dccaa9e | 2011-09-20 01:43:16 +0000 | [diff] [blame] | 927 | static int is_sync(struct sk_buff *skb, int type) |
| 928 | { |
| 929 | u8 *data = skb->data, *msgtype; |
| 930 | unsigned int offset = 0; |
| 931 | |
Stefan Sørensen | ae5c6c6 | 2014-06-27 11:59:10 +0200 | [diff] [blame] | 932 | if (type & PTP_CLASS_VLAN) |
| 933 | offset += VLAN_HLEN; |
| 934 | |
| 935 | switch (type & PTP_CLASS_PMASK) { |
| 936 | case PTP_CLASS_IPV4: |
Richard Cochran | cca04b2 | 2014-11-12 11:33:52 +0100 | [diff] [blame] | 937 | offset += ETH_HLEN + IPV4_HLEN(data + offset) + UDP_HLEN; |
Richard Cochran | dccaa9e | 2011-09-20 01:43:16 +0000 | [diff] [blame] | 938 | break; |
Stefan Sørensen | ae5c6c6 | 2014-06-27 11:59:10 +0200 | [diff] [blame] | 939 | case PTP_CLASS_IPV6: |
| 940 | offset += ETH_HLEN + IP6_HLEN + UDP_HLEN; |
Richard Cochran | dccaa9e | 2011-09-20 01:43:16 +0000 | [diff] [blame] | 941 | break; |
Stefan Sørensen | ae5c6c6 | 2014-06-27 11:59:10 +0200 | [diff] [blame] | 942 | case PTP_CLASS_L2: |
| 943 | offset += ETH_HLEN; |
Richard Cochran | dccaa9e | 2011-09-20 01:43:16 +0000 | [diff] [blame] | 944 | break; |
| 945 | default: |
| 946 | return 0; |
| 947 | } |
| 948 | |
| 949 | if (type & PTP_CLASS_V1) |
| 950 | offset += OFF_PTP_CONTROL; |
| 951 | |
| 952 | if (skb->len < offset + 1) |
| 953 | return 0; |
| 954 | |
| 955 | msgtype = data + offset; |
| 956 | |
| 957 | return (*msgtype & 0xf) == 0; |
| 958 | } |
| 959 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 960 | static void dp83640_free_clocks(void) |
| 961 | { |
| 962 | struct dp83640_clock *clock; |
| 963 | struct list_head *this, *next; |
| 964 | |
| 965 | mutex_lock(&phyter_clocks_lock); |
| 966 | |
| 967 | list_for_each_safe(this, next, &phyter_clocks) { |
| 968 | clock = list_entry(this, struct dp83640_clock, list); |
| 969 | if (!list_empty(&clock->phylist)) { |
Joe Perches | 8d24248 | 2012-06-09 07:49:07 +0000 | [diff] [blame] | 970 | pr_warn("phy list non-empty while unloading\n"); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 971 | BUG(); |
| 972 | } |
| 973 | list_del(&clock->list); |
| 974 | mutex_destroy(&clock->extreg_lock); |
| 975 | mutex_destroy(&clock->clock_lock); |
| 976 | put_device(&clock->bus->dev); |
Richard Cochran | 86dd361 | 2014-03-20 22:21:58 +0100 | [diff] [blame] | 977 | kfree(clock->caps.pin_config); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 978 | kfree(clock); |
| 979 | } |
| 980 | |
| 981 | mutex_unlock(&phyter_clocks_lock); |
| 982 | } |
| 983 | |
| 984 | static void dp83640_clock_init(struct dp83640_clock *clock, struct mii_bus *bus) |
| 985 | { |
| 986 | INIT_LIST_HEAD(&clock->list); |
| 987 | clock->bus = bus; |
| 988 | mutex_init(&clock->extreg_lock); |
| 989 | mutex_init(&clock->clock_lock); |
| 990 | INIT_LIST_HEAD(&clock->phylist); |
| 991 | clock->caps.owner = THIS_MODULE; |
| 992 | sprintf(clock->caps.name, "dp83640 timer"); |
| 993 | clock->caps.max_adj = 1953124; |
| 994 | clock->caps.n_alarm = 0; |
| 995 | clock->caps.n_ext_ts = N_EXT_TS; |
Stefan Sørensen | ad01577 | 2014-06-27 12:05:30 +0200 | [diff] [blame] | 996 | clock->caps.n_per_out = N_PER_OUT; |
Richard Cochran | 86dd361 | 2014-03-20 22:21:58 +0100 | [diff] [blame] | 997 | clock->caps.n_pins = DP83640_N_PINS; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 998 | clock->caps.pps = 0; |
| 999 | clock->caps.adjfreq = ptp_dp83640_adjfreq; |
| 1000 | clock->caps.adjtime = ptp_dp83640_adjtime; |
| 1001 | clock->caps.gettime = ptp_dp83640_gettime; |
| 1002 | clock->caps.settime = ptp_dp83640_settime; |
| 1003 | clock->caps.enable = ptp_dp83640_enable; |
Richard Cochran | 86dd361 | 2014-03-20 22:21:58 +0100 | [diff] [blame] | 1004 | clock->caps.verify = ptp_dp83640_verify; |
| 1005 | /* |
| 1006 | * Convert the module param defaults into a dynamic pin configuration. |
| 1007 | */ |
| 1008 | dp83640_gpio_defaults(clock->caps.pin_config); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1009 | /* |
| 1010 | * Get a reference to this bus instance. |
| 1011 | */ |
| 1012 | get_device(&bus->dev); |
| 1013 | } |
| 1014 | |
| 1015 | static int choose_this_phy(struct dp83640_clock *clock, |
| 1016 | struct phy_device *phydev) |
| 1017 | { |
| 1018 | if (chosen_phy == -1 && !clock->chosen) |
| 1019 | return 1; |
| 1020 | |
| 1021 | if (chosen_phy == phydev->addr) |
| 1022 | return 1; |
| 1023 | |
| 1024 | return 0; |
| 1025 | } |
| 1026 | |
| 1027 | static struct dp83640_clock *dp83640_clock_get(struct dp83640_clock *clock) |
| 1028 | { |
| 1029 | if (clock) |
| 1030 | mutex_lock(&clock->clock_lock); |
| 1031 | return clock; |
| 1032 | } |
| 1033 | |
| 1034 | /* |
| 1035 | * Look up and lock a clock by bus instance. |
| 1036 | * If there is no clock for this bus, then create it first. |
| 1037 | */ |
| 1038 | static struct dp83640_clock *dp83640_clock_get_bus(struct mii_bus *bus) |
| 1039 | { |
| 1040 | struct dp83640_clock *clock = NULL, *tmp; |
| 1041 | struct list_head *this; |
| 1042 | |
| 1043 | mutex_lock(&phyter_clocks_lock); |
| 1044 | |
| 1045 | list_for_each(this, &phyter_clocks) { |
| 1046 | tmp = list_entry(this, struct dp83640_clock, list); |
| 1047 | if (tmp->bus == bus) { |
| 1048 | clock = tmp; |
| 1049 | break; |
| 1050 | } |
| 1051 | } |
| 1052 | if (clock) |
| 1053 | goto out; |
| 1054 | |
| 1055 | clock = kzalloc(sizeof(struct dp83640_clock), GFP_KERNEL); |
| 1056 | if (!clock) |
| 1057 | goto out; |
| 1058 | |
Richard Cochran | 86dd361 | 2014-03-20 22:21:58 +0100 | [diff] [blame] | 1059 | clock->caps.pin_config = kzalloc(sizeof(struct ptp_pin_desc) * |
| 1060 | DP83640_N_PINS, GFP_KERNEL); |
| 1061 | if (!clock->caps.pin_config) { |
| 1062 | kfree(clock); |
| 1063 | clock = NULL; |
| 1064 | goto out; |
| 1065 | } |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1066 | dp83640_clock_init(clock, bus); |
| 1067 | list_add_tail(&phyter_clocks, &clock->list); |
| 1068 | out: |
| 1069 | mutex_unlock(&phyter_clocks_lock); |
| 1070 | |
| 1071 | return dp83640_clock_get(clock); |
| 1072 | } |
| 1073 | |
| 1074 | static void dp83640_clock_put(struct dp83640_clock *clock) |
| 1075 | { |
| 1076 | mutex_unlock(&clock->clock_lock); |
| 1077 | } |
| 1078 | |
| 1079 | static int dp83640_probe(struct phy_device *phydev) |
| 1080 | { |
| 1081 | struct dp83640_clock *clock; |
| 1082 | struct dp83640_private *dp83640; |
| 1083 | int err = -ENOMEM, i; |
| 1084 | |
| 1085 | if (phydev->addr == BROADCAST_ADDR) |
| 1086 | return 0; |
| 1087 | |
| 1088 | clock = dp83640_clock_get_bus(phydev->bus); |
| 1089 | if (!clock) |
| 1090 | goto no_clock; |
| 1091 | |
| 1092 | dp83640 = kzalloc(sizeof(struct dp83640_private), GFP_KERNEL); |
| 1093 | if (!dp83640) |
| 1094 | goto no_memory; |
| 1095 | |
| 1096 | dp83640->phydev = phydev; |
| 1097 | INIT_WORK(&dp83640->ts_work, rx_timestamp_work); |
| 1098 | |
| 1099 | INIT_LIST_HEAD(&dp83640->rxts); |
| 1100 | INIT_LIST_HEAD(&dp83640->rxpool); |
| 1101 | for (i = 0; i < MAX_RXTS; i++) |
| 1102 | list_add(&dp83640->rx_pool_data[i].list, &dp83640->rxpool); |
| 1103 | |
| 1104 | phydev->priv = dp83640; |
| 1105 | |
| 1106 | spin_lock_init(&dp83640->rx_lock); |
| 1107 | skb_queue_head_init(&dp83640->rx_queue); |
| 1108 | skb_queue_head_init(&dp83640->tx_queue); |
| 1109 | |
| 1110 | dp83640->clock = clock; |
| 1111 | |
| 1112 | if (choose_this_phy(clock, phydev)) { |
| 1113 | clock->chosen = dp83640; |
Richard Cochran | 1ef7615 | 2012-09-22 07:02:03 +0000 | [diff] [blame] | 1114 | clock->ptp_clock = ptp_clock_register(&clock->caps, &phydev->dev); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1115 | if (IS_ERR(clock->ptp_clock)) { |
| 1116 | err = PTR_ERR(clock->ptp_clock); |
| 1117 | goto no_register; |
| 1118 | } |
| 1119 | } else |
| 1120 | list_add_tail(&dp83640->list, &clock->phylist); |
| 1121 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1122 | dp83640_clock_put(clock); |
| 1123 | return 0; |
| 1124 | |
| 1125 | no_register: |
| 1126 | clock->chosen = NULL; |
| 1127 | kfree(dp83640); |
| 1128 | no_memory: |
| 1129 | dp83640_clock_put(clock); |
| 1130 | no_clock: |
| 1131 | return err; |
| 1132 | } |
| 1133 | |
| 1134 | static void dp83640_remove(struct phy_device *phydev) |
| 1135 | { |
| 1136 | struct dp83640_clock *clock; |
| 1137 | struct list_head *this, *next; |
| 1138 | struct dp83640_private *tmp, *dp83640 = phydev->priv; |
| 1139 | |
| 1140 | if (phydev->addr == BROADCAST_ADDR) |
| 1141 | return; |
| 1142 | |
| 1143 | enable_status_frames(phydev, false); |
| 1144 | cancel_work_sync(&dp83640->ts_work); |
| 1145 | |
Alexander Duyck | db91b72 | 2014-09-08 11:25:34 -0400 | [diff] [blame] | 1146 | skb_queue_purge(&dp83640->rx_queue); |
| 1147 | skb_queue_purge(&dp83640->tx_queue); |
Richard Cochran | 8b3408f | 2011-10-21 00:49:17 +0000 | [diff] [blame] | 1148 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1149 | clock = dp83640_clock_get(dp83640->clock); |
| 1150 | |
| 1151 | if (dp83640 == clock->chosen) { |
| 1152 | ptp_clock_unregister(clock->ptp_clock); |
| 1153 | clock->chosen = NULL; |
| 1154 | } else { |
| 1155 | list_for_each_safe(this, next, &clock->phylist) { |
| 1156 | tmp = list_entry(this, struct dp83640_private, list); |
| 1157 | if (tmp == dp83640) { |
| 1158 | list_del_init(&tmp->list); |
| 1159 | break; |
| 1160 | } |
| 1161 | } |
| 1162 | } |
| 1163 | |
| 1164 | dp83640_clock_put(clock); |
| 1165 | kfree(dp83640); |
| 1166 | } |
| 1167 | |
Stefan Sørensen | 62ad968 | 2014-02-03 15:36:58 +0100 | [diff] [blame] | 1168 | static int dp83640_config_init(struct phy_device *phydev) |
| 1169 | { |
Stefan Sørensen | 602b109 | 2014-02-13 15:26:57 +0100 | [diff] [blame] | 1170 | struct dp83640_private *dp83640 = phydev->priv; |
| 1171 | struct dp83640_clock *clock = dp83640->clock; |
| 1172 | |
| 1173 | if (clock->chosen && !list_empty(&clock->phylist)) |
| 1174 | recalibrate(clock); |
| 1175 | else |
| 1176 | enable_broadcast(phydev, clock->page, 1); |
| 1177 | |
Stefan Sørensen | 62ad968 | 2014-02-03 15:36:58 +0100 | [diff] [blame] | 1178 | enable_status_frames(phydev, true); |
| 1179 | ext_write(0, phydev, PAGE4, PTP_CTL, PTP_ENABLE); |
| 1180 | return 0; |
| 1181 | } |
| 1182 | |
Stephan Gatzka | 1642182 | 2012-12-04 10:21:38 +0000 | [diff] [blame] | 1183 | static int dp83640_ack_interrupt(struct phy_device *phydev) |
| 1184 | { |
| 1185 | int err = phy_read(phydev, MII_DP83640_MISR); |
| 1186 | |
| 1187 | if (err < 0) |
| 1188 | return err; |
| 1189 | |
| 1190 | return 0; |
| 1191 | } |
| 1192 | |
| 1193 | static int dp83640_config_intr(struct phy_device *phydev) |
| 1194 | { |
| 1195 | int micr; |
| 1196 | int misr; |
| 1197 | int err; |
| 1198 | |
| 1199 | if (phydev->interrupts == PHY_INTERRUPT_ENABLED) { |
| 1200 | misr = phy_read(phydev, MII_DP83640_MISR); |
| 1201 | if (misr < 0) |
| 1202 | return misr; |
| 1203 | misr |= |
| 1204 | (MII_DP83640_MISR_ANC_INT_EN | |
| 1205 | MII_DP83640_MISR_DUP_INT_EN | |
| 1206 | MII_DP83640_MISR_SPD_INT_EN | |
| 1207 | MII_DP83640_MISR_LINK_INT_EN); |
| 1208 | err = phy_write(phydev, MII_DP83640_MISR, misr); |
| 1209 | if (err < 0) |
| 1210 | return err; |
| 1211 | |
| 1212 | micr = phy_read(phydev, MII_DP83640_MICR); |
| 1213 | if (micr < 0) |
| 1214 | return micr; |
| 1215 | micr |= |
| 1216 | (MII_DP83640_MICR_OE | |
| 1217 | MII_DP83640_MICR_IE); |
| 1218 | return phy_write(phydev, MII_DP83640_MICR, micr); |
| 1219 | } else { |
| 1220 | micr = phy_read(phydev, MII_DP83640_MICR); |
| 1221 | if (micr < 0) |
| 1222 | return micr; |
| 1223 | micr &= |
| 1224 | ~(MII_DP83640_MICR_OE | |
| 1225 | MII_DP83640_MICR_IE); |
| 1226 | err = phy_write(phydev, MII_DP83640_MICR, micr); |
| 1227 | if (err < 0) |
| 1228 | return err; |
| 1229 | |
| 1230 | misr = phy_read(phydev, MII_DP83640_MISR); |
| 1231 | if (misr < 0) |
| 1232 | return misr; |
| 1233 | misr &= |
| 1234 | ~(MII_DP83640_MISR_ANC_INT_EN | |
| 1235 | MII_DP83640_MISR_DUP_INT_EN | |
| 1236 | MII_DP83640_MISR_SPD_INT_EN | |
| 1237 | MII_DP83640_MISR_LINK_INT_EN); |
| 1238 | return phy_write(phydev, MII_DP83640_MISR, misr); |
| 1239 | } |
| 1240 | } |
| 1241 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1242 | static int dp83640_hwtstamp(struct phy_device *phydev, struct ifreq *ifr) |
| 1243 | { |
| 1244 | struct dp83640_private *dp83640 = phydev->priv; |
| 1245 | struct hwtstamp_config cfg; |
| 1246 | u16 txcfg0, rxcfg0; |
| 1247 | |
| 1248 | if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg))) |
| 1249 | return -EFAULT; |
| 1250 | |
| 1251 | if (cfg.flags) /* reserved for future extensions */ |
| 1252 | return -EINVAL; |
| 1253 | |
Richard Cochran | dccaa9e | 2011-09-20 01:43:16 +0000 | [diff] [blame] | 1254 | if (cfg.tx_type < 0 || cfg.tx_type > HWTSTAMP_TX_ONESTEP_SYNC) |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1255 | return -ERANGE; |
Richard Cochran | dccaa9e | 2011-09-20 01:43:16 +0000 | [diff] [blame] | 1256 | |
| 1257 | dp83640->hwts_tx_en = cfg.tx_type; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1258 | |
| 1259 | switch (cfg.rx_filter) { |
| 1260 | case HWTSTAMP_FILTER_NONE: |
| 1261 | dp83640->hwts_rx_en = 0; |
| 1262 | dp83640->layer = 0; |
| 1263 | dp83640->version = 0; |
| 1264 | break; |
| 1265 | case HWTSTAMP_FILTER_PTP_V1_L4_EVENT: |
| 1266 | case HWTSTAMP_FILTER_PTP_V1_L4_SYNC: |
| 1267 | case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ: |
| 1268 | dp83640->hwts_rx_en = 1; |
| 1269 | dp83640->layer = LAYER4; |
| 1270 | dp83640->version = 1; |
| 1271 | break; |
| 1272 | case HWTSTAMP_FILTER_PTP_V2_L4_EVENT: |
| 1273 | case HWTSTAMP_FILTER_PTP_V2_L4_SYNC: |
| 1274 | case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ: |
| 1275 | dp83640->hwts_rx_en = 1; |
| 1276 | dp83640->layer = LAYER4; |
| 1277 | dp83640->version = 2; |
| 1278 | break; |
| 1279 | case HWTSTAMP_FILTER_PTP_V2_L2_EVENT: |
| 1280 | case HWTSTAMP_FILTER_PTP_V2_L2_SYNC: |
| 1281 | case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ: |
| 1282 | dp83640->hwts_rx_en = 1; |
| 1283 | dp83640->layer = LAYER2; |
| 1284 | dp83640->version = 2; |
| 1285 | break; |
| 1286 | case HWTSTAMP_FILTER_PTP_V2_EVENT: |
| 1287 | case HWTSTAMP_FILTER_PTP_V2_SYNC: |
| 1288 | case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ: |
| 1289 | dp83640->hwts_rx_en = 1; |
| 1290 | dp83640->layer = LAYER4|LAYER2; |
| 1291 | dp83640->version = 2; |
| 1292 | break; |
| 1293 | default: |
| 1294 | return -ERANGE; |
| 1295 | } |
| 1296 | |
| 1297 | txcfg0 = (dp83640->version & TX_PTP_VER_MASK) << TX_PTP_VER_SHIFT; |
| 1298 | rxcfg0 = (dp83640->version & TX_PTP_VER_MASK) << TX_PTP_VER_SHIFT; |
| 1299 | |
| 1300 | if (dp83640->layer & LAYER2) { |
| 1301 | txcfg0 |= TX_L2_EN; |
| 1302 | rxcfg0 |= RX_L2_EN; |
| 1303 | } |
| 1304 | if (dp83640->layer & LAYER4) { |
| 1305 | txcfg0 |= TX_IPV6_EN | TX_IPV4_EN; |
| 1306 | rxcfg0 |= RX_IPV6_EN | RX_IPV4_EN; |
| 1307 | } |
| 1308 | |
| 1309 | if (dp83640->hwts_tx_en) |
| 1310 | txcfg0 |= TX_TS_EN; |
| 1311 | |
Richard Cochran | dccaa9e | 2011-09-20 01:43:16 +0000 | [diff] [blame] | 1312 | if (dp83640->hwts_tx_en == HWTSTAMP_TX_ONESTEP_SYNC) |
| 1313 | txcfg0 |= SYNC_1STEP | CHK_1STEP; |
| 1314 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1315 | if (dp83640->hwts_rx_en) |
| 1316 | rxcfg0 |= RX_TS_EN; |
| 1317 | |
| 1318 | mutex_lock(&dp83640->clock->extreg_lock); |
| 1319 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1320 | ext_write(0, phydev, PAGE5, PTP_TXCFG0, txcfg0); |
| 1321 | ext_write(0, phydev, PAGE5, PTP_RXCFG0, rxcfg0); |
| 1322 | |
| 1323 | mutex_unlock(&dp83640->clock->extreg_lock); |
| 1324 | |
| 1325 | return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0; |
| 1326 | } |
| 1327 | |
| 1328 | static void rx_timestamp_work(struct work_struct *work) |
| 1329 | { |
| 1330 | struct dp83640_private *dp83640 = |
| 1331 | container_of(work, struct dp83640_private, ts_work); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1332 | struct sk_buff *skb; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1333 | |
Stefan Sørensen | 63502b8 | 2014-07-22 15:20:45 +0200 | [diff] [blame] | 1334 | /* Deliver expired packets. */ |
| 1335 | while ((skb = skb_dequeue(&dp83640->rx_queue))) { |
| 1336 | struct dp83640_skb_info *skb_info; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1337 | |
Stefan Sørensen | 63502b8 | 2014-07-22 15:20:45 +0200 | [diff] [blame] | 1338 | skb_info = (struct dp83640_skb_info *)skb->cb; |
| 1339 | if (!time_after(jiffies, skb_info->tmo)) { |
| 1340 | skb_queue_head(&dp83640->rx_queue, skb); |
| 1341 | break; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1342 | } |
Stefan Sørensen | 63502b8 | 2014-07-22 15:20:45 +0200 | [diff] [blame] | 1343 | |
Manfred Rudigier | 72092cc | 2012-01-09 23:52:15 +0000 | [diff] [blame] | 1344 | netif_rx_ni(skb); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1345 | } |
| 1346 | |
Stefan Sørensen | 63502b8 | 2014-07-22 15:20:45 +0200 | [diff] [blame] | 1347 | if (!skb_queue_empty(&dp83640->rx_queue)) |
| 1348 | schedule_work(&dp83640->ts_work); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1349 | } |
| 1350 | |
| 1351 | static bool dp83640_rxtstamp(struct phy_device *phydev, |
| 1352 | struct sk_buff *skb, int type) |
| 1353 | { |
| 1354 | struct dp83640_private *dp83640 = phydev->priv; |
Stefan Sørensen | 63502b8 | 2014-07-22 15:20:45 +0200 | [diff] [blame] | 1355 | struct dp83640_skb_info *skb_info = (struct dp83640_skb_info *)skb->cb; |
| 1356 | struct list_head *this, *next; |
| 1357 | struct rxts *rxts; |
| 1358 | struct skb_shared_hwtstamps *shhwtstamps = NULL; |
| 1359 | unsigned long flags; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1360 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1361 | if (is_status_frame(skb, type)) { |
| 1362 | decode_status_frame(dp83640, skb); |
Richard Cochran | ae6e86b | 2011-06-14 23:55:20 +0000 | [diff] [blame] | 1363 | kfree_skb(skb); |
| 1364 | return true; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1365 | } |
| 1366 | |
Stefan Sørensen | a12f78c | 2014-06-25 14:40:16 +0200 | [diff] [blame] | 1367 | if (!dp83640->hwts_rx_en) |
| 1368 | return false; |
| 1369 | |
Stefan Sørensen | 63502b8 | 2014-07-22 15:20:45 +0200 | [diff] [blame] | 1370 | spin_lock_irqsave(&dp83640->rx_lock, flags); |
| 1371 | list_for_each_safe(this, next, &dp83640->rxts) { |
| 1372 | rxts = list_entry(this, struct rxts, list); |
| 1373 | if (match(skb, type, rxts)) { |
| 1374 | shhwtstamps = skb_hwtstamps(skb); |
| 1375 | memset(shhwtstamps, 0, sizeof(*shhwtstamps)); |
| 1376 | shhwtstamps->hwtstamp = ns_to_ktime(rxts->ns); |
| 1377 | netif_rx_ni(skb); |
| 1378 | list_del_init(&rxts->list); |
| 1379 | list_add(&rxts->list, &dp83640->rxpool); |
| 1380 | break; |
| 1381 | } |
| 1382 | } |
| 1383 | spin_unlock_irqrestore(&dp83640->rx_lock, flags); |
| 1384 | |
| 1385 | if (!shhwtstamps) { |
| 1386 | skb_info->ptp_type = type; |
| 1387 | skb_info->tmo = jiffies + 2; |
| 1388 | skb_queue_tail(&dp83640->rx_queue, skb); |
| 1389 | schedule_work(&dp83640->ts_work); |
| 1390 | } |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1391 | |
| 1392 | return true; |
| 1393 | } |
| 1394 | |
| 1395 | static void dp83640_txtstamp(struct phy_device *phydev, |
| 1396 | struct sk_buff *skb, int type) |
| 1397 | { |
| 1398 | struct dp83640_private *dp83640 = phydev->priv; |
| 1399 | |
Richard Cochran | dccaa9e | 2011-09-20 01:43:16 +0000 | [diff] [blame] | 1400 | switch (dp83640->hwts_tx_en) { |
| 1401 | |
| 1402 | case HWTSTAMP_TX_ONESTEP_SYNC: |
| 1403 | if (is_sync(skb, type)) { |
Alexander Duyck | 62bccb8 | 2014-09-04 13:31:35 -0400 | [diff] [blame] | 1404 | kfree_skb(skb); |
Richard Cochran | dccaa9e | 2011-09-20 01:43:16 +0000 | [diff] [blame] | 1405 | return; |
| 1406 | } |
| 1407 | /* fall through */ |
| 1408 | case HWTSTAMP_TX_ON: |
Stefan Sørensen | e2e2f51 | 2014-02-03 15:36:35 +0100 | [diff] [blame] | 1409 | skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; |
Richard Cochran | dccaa9e | 2011-09-20 01:43:16 +0000 | [diff] [blame] | 1410 | skb_queue_tail(&dp83640->tx_queue, skb); |
Richard Cochran | dccaa9e | 2011-09-20 01:43:16 +0000 | [diff] [blame] | 1411 | break; |
| 1412 | |
| 1413 | case HWTSTAMP_TX_OFF: |
| 1414 | default: |
Alexander Duyck | 62bccb8 | 2014-09-04 13:31:35 -0400 | [diff] [blame] | 1415 | kfree_skb(skb); |
Richard Cochran | dccaa9e | 2011-09-20 01:43:16 +0000 | [diff] [blame] | 1416 | break; |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1417 | } |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1418 | } |
| 1419 | |
Richard Cochran | 7dff349 | 2012-04-03 22:59:18 +0000 | [diff] [blame] | 1420 | static int dp83640_ts_info(struct phy_device *dev, struct ethtool_ts_info *info) |
| 1421 | { |
| 1422 | struct dp83640_private *dp83640 = dev->priv; |
| 1423 | |
| 1424 | info->so_timestamping = |
| 1425 | SOF_TIMESTAMPING_TX_HARDWARE | |
| 1426 | SOF_TIMESTAMPING_RX_HARDWARE | |
| 1427 | SOF_TIMESTAMPING_RAW_HARDWARE; |
| 1428 | info->phc_index = ptp_clock_index(dp83640->clock->ptp_clock); |
| 1429 | info->tx_types = |
| 1430 | (1 << HWTSTAMP_TX_OFF) | |
| 1431 | (1 << HWTSTAMP_TX_ON) | |
| 1432 | (1 << HWTSTAMP_TX_ONESTEP_SYNC); |
| 1433 | info->rx_filters = |
| 1434 | (1 << HWTSTAMP_FILTER_NONE) | |
| 1435 | (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) | |
| 1436 | (1 << HWTSTAMP_FILTER_PTP_V1_L4_SYNC) | |
| 1437 | (1 << HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ) | |
| 1438 | (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT) | |
| 1439 | (1 << HWTSTAMP_FILTER_PTP_V2_L4_SYNC) | |
| 1440 | (1 << HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ) | |
| 1441 | (1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) | |
| 1442 | (1 << HWTSTAMP_FILTER_PTP_V2_L2_SYNC) | |
| 1443 | (1 << HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ) | |
| 1444 | (1 << HWTSTAMP_FILTER_PTP_V2_EVENT) | |
| 1445 | (1 << HWTSTAMP_FILTER_PTP_V2_SYNC) | |
| 1446 | (1 << HWTSTAMP_FILTER_PTP_V2_DELAY_REQ); |
| 1447 | return 0; |
| 1448 | } |
| 1449 | |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1450 | static struct phy_driver dp83640_driver = { |
| 1451 | .phy_id = DP83640_PHY_ID, |
| 1452 | .phy_id_mask = 0xfffffff0, |
| 1453 | .name = "NatSemi DP83640", |
| 1454 | .features = PHY_BASIC_FEATURES, |
Stephan Gatzka | 1642182 | 2012-12-04 10:21:38 +0000 | [diff] [blame] | 1455 | .flags = PHY_HAS_INTERRUPT, |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1456 | .probe = dp83640_probe, |
| 1457 | .remove = dp83640_remove, |
Stefan Sørensen | 62ad968 | 2014-02-03 15:36:58 +0100 | [diff] [blame] | 1458 | .config_init = dp83640_config_init, |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1459 | .config_aneg = genphy_config_aneg, |
| 1460 | .read_status = genphy_read_status, |
Stephan Gatzka | 1642182 | 2012-12-04 10:21:38 +0000 | [diff] [blame] | 1461 | .ack_interrupt = dp83640_ack_interrupt, |
| 1462 | .config_intr = dp83640_config_intr, |
Richard Cochran | 7dff349 | 2012-04-03 22:59:18 +0000 | [diff] [blame] | 1463 | .ts_info = dp83640_ts_info, |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1464 | .hwtstamp = dp83640_hwtstamp, |
| 1465 | .rxtstamp = dp83640_rxtstamp, |
| 1466 | .txtstamp = dp83640_txtstamp, |
| 1467 | .driver = {.owner = THIS_MODULE,} |
| 1468 | }; |
| 1469 | |
| 1470 | static int __init dp83640_init(void) |
| 1471 | { |
| 1472 | return phy_driver_register(&dp83640_driver); |
| 1473 | } |
| 1474 | |
| 1475 | static void __exit dp83640_exit(void) |
| 1476 | { |
| 1477 | dp83640_free_clocks(); |
| 1478 | phy_driver_unregister(&dp83640_driver); |
| 1479 | } |
| 1480 | |
| 1481 | MODULE_DESCRIPTION("National Semiconductor DP83640 PHY driver"); |
Richard Cochran | fbf4b93 | 2014-03-20 22:21:56 +0100 | [diff] [blame] | 1482 | MODULE_AUTHOR("Richard Cochran <richardcochran@gmail.com>"); |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1483 | MODULE_LICENSE("GPL"); |
| 1484 | |
| 1485 | module_init(dp83640_init); |
| 1486 | module_exit(dp83640_exit); |
| 1487 | |
John Stultz | 86ff9baa | 2011-05-23 13:32:11 -0700 | [diff] [blame] | 1488 | static struct mdio_device_id __maybe_unused dp83640_tbl[] = { |
Richard Cochran | cb646e2 | 2011-04-22 12:04:55 +0200 | [diff] [blame] | 1489 | { DP83640_PHY_ID, 0xfffffff0 }, |
| 1490 | { } |
| 1491 | }; |
| 1492 | |
| 1493 | MODULE_DEVICE_TABLE(mdio, dp83640_tbl); |