diff options
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/Makefile | 1 | ||||
-rw-r--r-- | drivers/net/arm/ixp4xx_eth.c | 195 | ||||
-rw-r--r-- | drivers/net/gianfar_ptp.c | 588 | ||||
-rw-r--r-- | drivers/net/phy/Makefile | 1 | ||||
-rw-r--r-- | drivers/net/phy/dp83640.c | 1100 | ||||
-rw-r--r-- | drivers/net/phy/dp83640_reg.h | 267 |
6 files changed, 2149 insertions, 3 deletions
diff --git a/drivers/net/Makefile b/drivers/net/Makefile index 209fbb70619b..776a478e6296 100644 --- a/drivers/net/Makefile +++ b/drivers/net/Makefile | |||
@@ -31,6 +31,7 @@ obj-$(CONFIG_ATL2) += atlx/ | |||
31 | obj-$(CONFIG_ATL1E) += atl1e/ | 31 | obj-$(CONFIG_ATL1E) += atl1e/ |
32 | obj-$(CONFIG_ATL1C) += atl1c/ | 32 | obj-$(CONFIG_ATL1C) += atl1c/ |
33 | obj-$(CONFIG_GIANFAR) += gianfar_driver.o | 33 | obj-$(CONFIG_GIANFAR) += gianfar_driver.o |
34 | obj-$(CONFIG_PTP_1588_CLOCK_GIANFAR) += gianfar_ptp.o | ||
34 | obj-$(CONFIG_TEHUTI) += tehuti.o | 35 | obj-$(CONFIG_TEHUTI) += tehuti.o |
35 | obj-$(CONFIG_ENIC) += enic/ | 36 | obj-$(CONFIG_ENIC) += enic/ |
36 | obj-$(CONFIG_JME) += jme.o | 37 | obj-$(CONFIG_JME) += jme.o |
diff --git a/drivers/net/arm/ixp4xx_eth.c b/drivers/net/arm/ixp4xx_eth.c index 9eb9b98a7ae3..de51e8453c13 100644 --- a/drivers/net/arm/ixp4xx_eth.c +++ b/drivers/net/arm/ixp4xx_eth.c | |||
@@ -30,9 +30,12 @@ | |||
30 | #include <linux/etherdevice.h> | 30 | #include <linux/etherdevice.h> |
31 | #include <linux/io.h> | 31 | #include <linux/io.h> |
32 | #include <linux/kernel.h> | 32 | #include <linux/kernel.h> |
33 | #include <linux/net_tstamp.h> | ||
33 | #include <linux/phy.h> | 34 | #include <linux/phy.h> |
34 | #include <linux/platform_device.h> | 35 | #include <linux/platform_device.h> |
36 | #include <linux/ptp_classify.h> | ||
35 | #include <linux/slab.h> | 37 | #include <linux/slab.h> |
38 | #include <mach/ixp46x_ts.h> | ||
36 | #include <mach/npe.h> | 39 | #include <mach/npe.h> |
37 | #include <mach/qmgr.h> | 40 | #include <mach/qmgr.h> |
38 | 41 | ||
@@ -67,6 +70,10 @@ | |||
67 | #define RXFREE_QUEUE(port_id) (NPE_ID(port_id) + 26) | 70 | #define RXFREE_QUEUE(port_id) (NPE_ID(port_id) + 26) |
68 | #define TXDONE_QUEUE 31 | 71 | #define TXDONE_QUEUE 31 |
69 | 72 | ||
73 | #define PTP_SLAVE_MODE 1 | ||
74 | #define PTP_MASTER_MODE 2 | ||
75 | #define PORT2CHANNEL(p) NPE_ID(p->id) | ||
76 | |||
70 | /* TX Control Registers */ | 77 | /* TX Control Registers */ |
71 | #define TX_CNTRL0_TX_EN 0x01 | 78 | #define TX_CNTRL0_TX_EN 0x01 |
72 | #define TX_CNTRL0_HALFDUPLEX 0x02 | 79 | #define TX_CNTRL0_HALFDUPLEX 0x02 |
@@ -171,6 +178,8 @@ struct port { | |||
171 | int id; /* logical port ID */ | 178 | int id; /* logical port ID */ |
172 | int speed, duplex; | 179 | int speed, duplex; |
173 | u8 firmware[4]; | 180 | u8 firmware[4]; |
181 | int hwts_tx_en; | ||
182 | int hwts_rx_en; | ||
174 | }; | 183 | }; |
175 | 184 | ||
176 | /* NPE message structure */ | 185 | /* NPE message structure */ |
@@ -246,6 +255,172 @@ static int ports_open; | |||
246 | static struct port *npe_port_tab[MAX_NPES]; | 255 | static struct port *npe_port_tab[MAX_NPES]; |
247 | static struct dma_pool *dma_pool; | 256 | static struct dma_pool *dma_pool; |
248 | 257 | ||
258 | static struct sock_filter ptp_filter[] = { | ||
259 | PTP_FILTER | ||
260 | }; | ||
261 | |||
262 | static int ixp_ptp_match(struct sk_buff *skb, u16 uid_hi, u32 uid_lo, u16 seqid) | ||
263 | { | ||
264 | u8 *data = skb->data; | ||
265 | unsigned int offset; | ||
266 | u16 *hi, *id; | ||
267 | u32 lo; | ||
268 | |||
269 | if (sk_run_filter(skb, ptp_filter) != PTP_CLASS_V1_IPV4) | ||
270 | return 0; | ||
271 | |||
272 | offset = ETH_HLEN + IPV4_HLEN(data) + UDP_HLEN; | ||
273 | |||
274 | if (skb->len < offset + OFF_PTP_SEQUENCE_ID + sizeof(seqid)) | ||
275 | return 0; | ||
276 | |||
277 | hi = (u16 *)(data + offset + OFF_PTP_SOURCE_UUID); | ||
278 | id = (u16 *)(data + offset + OFF_PTP_SEQUENCE_ID); | ||
279 | |||
280 | memcpy(&lo, &hi[1], sizeof(lo)); | ||
281 | |||
282 | return (uid_hi == ntohs(*hi) && | ||
283 | uid_lo == ntohl(lo) && | ||
284 | seqid == ntohs(*id)); | ||
285 | } | ||
286 | |||
287 | static void ixp_rx_timestamp(struct port *port, struct sk_buff *skb) | ||
288 | { | ||
289 | struct skb_shared_hwtstamps *shhwtstamps; | ||
290 | struct ixp46x_ts_regs *regs; | ||
291 | u64 ns; | ||
292 | u32 ch, hi, lo, val; | ||
293 | u16 uid, seq; | ||
294 | |||
295 | if (!port->hwts_rx_en) | ||
296 | return; | ||
297 | |||
298 | ch = PORT2CHANNEL(port); | ||
299 | |||
300 | regs = (struct ixp46x_ts_regs __iomem *) IXP4XX_TIMESYNC_BASE_VIRT; | ||
301 | |||
302 | val = __raw_readl(®s->channel[ch].ch_event); | ||
303 | |||
304 | if (!(val & RX_SNAPSHOT_LOCKED)) | ||
305 | return; | ||
306 | |||
307 | lo = __raw_readl(®s->channel[ch].src_uuid_lo); | ||
308 | hi = __raw_readl(®s->channel[ch].src_uuid_hi); | ||
309 | |||
310 | uid = hi & 0xffff; | ||
311 | seq = (hi >> 16) & 0xffff; | ||
312 | |||
313 | if (!ixp_ptp_match(skb, htons(uid), htonl(lo), htons(seq))) | ||
314 | goto out; | ||
315 | |||
316 | lo = __raw_readl(®s->channel[ch].rx_snap_lo); | ||
317 | hi = __raw_readl(®s->channel[ch].rx_snap_hi); | ||
318 | ns = ((u64) hi) << 32; | ||
319 | ns |= lo; | ||
320 | ns <<= TICKS_NS_SHIFT; | ||
321 | |||
322 | shhwtstamps = skb_hwtstamps(skb); | ||
323 | memset(shhwtstamps, 0, sizeof(*shhwtstamps)); | ||
324 | shhwtstamps->hwtstamp = ns_to_ktime(ns); | ||
325 | out: | ||
326 | __raw_writel(RX_SNAPSHOT_LOCKED, ®s->channel[ch].ch_event); | ||
327 | } | ||
328 | |||
329 | static void ixp_tx_timestamp(struct port *port, struct sk_buff *skb) | ||
330 | { | ||
331 | struct skb_shared_hwtstamps shhwtstamps; | ||
332 | struct ixp46x_ts_regs *regs; | ||
333 | struct skb_shared_info *shtx; | ||
334 | u64 ns; | ||
335 | u32 ch, cnt, hi, lo, val; | ||
336 | |||
337 | shtx = skb_shinfo(skb); | ||
338 | if (unlikely(shtx->tx_flags & SKBTX_HW_TSTAMP && port->hwts_tx_en)) | ||
339 | shtx->tx_flags |= SKBTX_IN_PROGRESS; | ||
340 | else | ||
341 | return; | ||
342 | |||
343 | ch = PORT2CHANNEL(port); | ||
344 | |||
345 | regs = (struct ixp46x_ts_regs __iomem *) IXP4XX_TIMESYNC_BASE_VIRT; | ||
346 | |||
347 | /* | ||
348 | * This really stinks, but we have to poll for the Tx time stamp. | ||
349 | * Usually, the time stamp is ready after 4 to 6 microseconds. | ||
350 | */ | ||
351 | for (cnt = 0; cnt < 100; cnt++) { | ||
352 | val = __raw_readl(®s->channel[ch].ch_event); | ||
353 | if (val & TX_SNAPSHOT_LOCKED) | ||
354 | break; | ||
355 | udelay(1); | ||
356 | } | ||
357 | if (!(val & TX_SNAPSHOT_LOCKED)) { | ||
358 | shtx->tx_flags &= ~SKBTX_IN_PROGRESS; | ||
359 | return; | ||
360 | } | ||
361 | |||
362 | lo = __raw_readl(®s->channel[ch].tx_snap_lo); | ||
363 | hi = __raw_readl(®s->channel[ch].tx_snap_hi); | ||
364 | ns = ((u64) hi) << 32; | ||
365 | ns |= lo; | ||
366 | ns <<= TICKS_NS_SHIFT; | ||
367 | |||
368 | memset(&shhwtstamps, 0, sizeof(shhwtstamps)); | ||
369 | shhwtstamps.hwtstamp = ns_to_ktime(ns); | ||
370 | skb_tstamp_tx(skb, &shhwtstamps); | ||
371 | |||
372 | __raw_writel(TX_SNAPSHOT_LOCKED, ®s->channel[ch].ch_event); | ||
373 | } | ||
374 | |||
375 | static int hwtstamp_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd) | ||
376 | { | ||
377 | struct hwtstamp_config cfg; | ||
378 | struct ixp46x_ts_regs *regs; | ||
379 | struct port *port = netdev_priv(netdev); | ||
380 | int ch; | ||
381 | |||
382 | if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg))) | ||
383 | return -EFAULT; | ||
384 | |||
385 | if (cfg.flags) /* reserved for future extensions */ | ||
386 | return -EINVAL; | ||
387 | |||
388 | ch = PORT2CHANNEL(port); | ||
389 | regs = (struct ixp46x_ts_regs __iomem *) IXP4XX_TIMESYNC_BASE_VIRT; | ||
390 | |||
391 | switch (cfg.tx_type) { | ||
392 | case HWTSTAMP_TX_OFF: | ||
393 | port->hwts_tx_en = 0; | ||
394 | break; | ||
395 | case HWTSTAMP_TX_ON: | ||
396 | port->hwts_tx_en = 1; | ||
397 | break; | ||
398 | default: | ||
399 | return -ERANGE; | ||
400 | } | ||
401 | |||
402 | switch (cfg.rx_filter) { | ||
403 | case HWTSTAMP_FILTER_NONE: | ||
404 | port->hwts_rx_en = 0; | ||
405 | break; | ||
406 | case HWTSTAMP_FILTER_PTP_V1_L4_SYNC: | ||
407 | port->hwts_rx_en = PTP_SLAVE_MODE; | ||
408 | __raw_writel(0, ®s->channel[ch].ch_control); | ||
409 | break; | ||
410 | case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ: | ||
411 | port->hwts_rx_en = PTP_MASTER_MODE; | ||
412 | __raw_writel(MASTER_MODE, ®s->channel[ch].ch_control); | ||
413 | break; | ||
414 | default: | ||
415 | return -ERANGE; | ||
416 | } | ||
417 | |||
418 | /* Clear out any old time stamps. */ | ||
419 | __raw_writel(TX_SNAPSHOT_LOCKED | RX_SNAPSHOT_LOCKED, | ||
420 | ®s->channel[ch].ch_event); | ||
421 | |||
422 | return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0; | ||
423 | } | ||
249 | 424 | ||
250 | static int ixp4xx_mdio_cmd(struct mii_bus *bus, int phy_id, int location, | 425 | static int ixp4xx_mdio_cmd(struct mii_bus *bus, int phy_id, int location, |
251 | int write, u16 cmd) | 426 | int write, u16 cmd) |
@@ -573,6 +748,7 @@ static int eth_poll(struct napi_struct *napi, int budget) | |||
573 | 748 | ||
574 | debug_pkt(dev, "eth_poll", skb->data, skb->len); | 749 | debug_pkt(dev, "eth_poll", skb->data, skb->len); |
575 | 750 | ||
751 | ixp_rx_timestamp(port, skb); | ||
576 | skb->protocol = eth_type_trans(skb, dev); | 752 | skb->protocol = eth_type_trans(skb, dev); |
577 | dev->stats.rx_packets++; | 753 | dev->stats.rx_packets++; |
578 | dev->stats.rx_bytes += skb->len; | 754 | dev->stats.rx_bytes += skb->len; |
@@ -679,14 +855,12 @@ static int eth_xmit(struct sk_buff *skb, struct net_device *dev) | |||
679 | return NETDEV_TX_OK; | 855 | return NETDEV_TX_OK; |
680 | } | 856 | } |
681 | memcpy_swab32(mem, (u32 *)((int)skb->data & ~3), bytes / 4); | 857 | memcpy_swab32(mem, (u32 *)((int)skb->data & ~3), bytes / 4); |
682 | dev_kfree_skb(skb); | ||
683 | #endif | 858 | #endif |
684 | 859 | ||
685 | phys = dma_map_single(&dev->dev, mem, bytes, DMA_TO_DEVICE); | 860 | phys = dma_map_single(&dev->dev, mem, bytes, DMA_TO_DEVICE); |
686 | if (dma_mapping_error(&dev->dev, phys)) { | 861 | if (dma_mapping_error(&dev->dev, phys)) { |
687 | #ifdef __ARMEB__ | ||
688 | dev_kfree_skb(skb); | 862 | dev_kfree_skb(skb); |
689 | #else | 863 | #ifndef __ARMEB__ |
690 | kfree(mem); | 864 | kfree(mem); |
691 | #endif | 865 | #endif |
692 | dev->stats.tx_dropped++; | 866 | dev->stats.tx_dropped++; |
@@ -728,6 +902,13 @@ static int eth_xmit(struct sk_buff *skb, struct net_device *dev) | |||
728 | #if DEBUG_TX | 902 | #if DEBUG_TX |
729 | printk(KERN_DEBUG "%s: eth_xmit end\n", dev->name); | 903 | printk(KERN_DEBUG "%s: eth_xmit end\n", dev->name); |
730 | #endif | 904 | #endif |
905 | |||
906 | ixp_tx_timestamp(port, skb); | ||
907 | skb_tx_timestamp(skb); | ||
908 | |||
909 | #ifndef __ARMEB__ | ||
910 | dev_kfree_skb(skb); | ||
911 | #endif | ||
731 | return NETDEV_TX_OK; | 912 | return NETDEV_TX_OK; |
732 | } | 913 | } |
733 | 914 | ||
@@ -783,6 +964,9 @@ static int eth_ioctl(struct net_device *dev, struct ifreq *req, int cmd) | |||
783 | if (!netif_running(dev)) | 964 | if (!netif_running(dev)) |
784 | return -EINVAL; | 965 | return -EINVAL; |
785 | 966 | ||
967 | if (cpu_is_ixp46x() && cmd == SIOCSHWTSTAMP) | ||
968 | return hwtstamp_ioctl(dev, req, cmd); | ||
969 | |||
786 | return phy_mii_ioctl(port->phydev, req, cmd); | 970 | return phy_mii_ioctl(port->phydev, req, cmd); |
787 | } | 971 | } |
788 | 972 | ||
@@ -1171,6 +1355,11 @@ static int __devinit eth_init_one(struct platform_device *pdev) | |||
1171 | char phy_id[MII_BUS_ID_SIZE + 3]; | 1355 | char phy_id[MII_BUS_ID_SIZE + 3]; |
1172 | int err; | 1356 | int err; |
1173 | 1357 | ||
1358 | if (ptp_filter_init(ptp_filter, ARRAY_SIZE(ptp_filter))) { | ||
1359 | pr_err("ixp4xx_eth: bad ptp filter\n"); | ||
1360 | return -EINVAL; | ||
1361 | } | ||
1362 | |||
1174 | if (!(dev = alloc_etherdev(sizeof(struct port)))) | 1363 | if (!(dev = alloc_etherdev(sizeof(struct port)))) |
1175 | return -ENOMEM; | 1364 | return -ENOMEM; |
1176 | 1365 | ||
diff --git a/drivers/net/gianfar_ptp.c b/drivers/net/gianfar_ptp.c new file mode 100644 index 000000000000..d8e175382d1d --- /dev/null +++ b/drivers/net/gianfar_ptp.c | |||
@@ -0,0 +1,588 @@ | |||
1 | /* | ||
2 | * PTP 1588 clock using the eTSEC | ||
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 | */ | ||
20 | #include <linux/device.h> | ||
21 | #include <linux/hrtimer.h> | ||
22 | #include <linux/init.h> | ||
23 | #include <linux/interrupt.h> | ||
24 | #include <linux/kernel.h> | ||
25 | #include <linux/module.h> | ||
26 | #include <linux/of.h> | ||
27 | #include <linux/of_platform.h> | ||
28 | #include <linux/timex.h> | ||
29 | #include <linux/io.h> | ||
30 | |||
31 | #include <linux/ptp_clock_kernel.h> | ||
32 | |||
33 | #include "gianfar.h" | ||
34 | |||
35 | /* | ||
36 | * gianfar ptp registers | ||
37 | * Generated by regen.tcl on Thu May 13 01:38:57 PM CEST 2010 | ||
38 | */ | ||
39 | struct gianfar_ptp_registers { | ||
40 | u32 tmr_ctrl; /* Timer control register */ | ||
41 | u32 tmr_tevent; /* Timestamp event register */ | ||
42 | u32 tmr_temask; /* Timer event mask register */ | ||
43 | u32 tmr_pevent; /* Timestamp event register */ | ||
44 | u32 tmr_pemask; /* Timer event mask register */ | ||
45 | u32 tmr_stat; /* Timestamp status register */ | ||
46 | u32 tmr_cnt_h; /* Timer counter high register */ | ||
47 | u32 tmr_cnt_l; /* Timer counter low register */ | ||
48 | u32 tmr_add; /* Timer drift compensation addend register */ | ||
49 | u32 tmr_acc; /* Timer accumulator register */ | ||
50 | u32 tmr_prsc; /* Timer prescale */ | ||
51 | u8 res1[4]; | ||
52 | u32 tmroff_h; /* Timer offset high */ | ||
53 | u32 tmroff_l; /* Timer offset low */ | ||
54 | u8 res2[8]; | ||
55 | u32 tmr_alarm1_h; /* Timer alarm 1 high register */ | ||
56 | u32 tmr_alarm1_l; /* Timer alarm 1 high register */ | ||
57 | u32 tmr_alarm2_h; /* Timer alarm 2 high register */ | ||
58 | u32 tmr_alarm2_l; /* Timer alarm 2 high register */ | ||
59 | u8 res3[48]; | ||
60 | u32 tmr_fiper1; /* Timer fixed period interval */ | ||
61 | u32 tmr_fiper2; /* Timer fixed period interval */ | ||
62 | u32 tmr_fiper3; /* Timer fixed period interval */ | ||
63 | u8 res4[20]; | ||
64 | u32 tmr_etts1_h; /* Timestamp of general purpose external trigger */ | ||
65 | u32 tmr_etts1_l; /* Timestamp of general purpose external trigger */ | ||
66 | u32 tmr_etts2_h; /* Timestamp of general purpose external trigger */ | ||
67 | u32 tmr_etts2_l; /* Timestamp of general purpose external trigger */ | ||
68 | }; | ||
69 | |||
70 | /* Bit definitions for the TMR_CTRL register */ | ||
71 | #define ALM1P (1<<31) /* Alarm1 output polarity */ | ||
72 | #define ALM2P (1<<30) /* Alarm2 output polarity */ | ||
73 | #define FS (1<<28) /* FIPER start indication */ | ||
74 | #define PP1L (1<<27) /* Fiper1 pulse loopback mode enabled. */ | ||
75 | #define PP2L (1<<26) /* Fiper2 pulse loopback mode enabled. */ | ||
76 | #define TCLK_PERIOD_SHIFT (16) /* 1588 timer reference clock period. */ | ||
77 | #define TCLK_PERIOD_MASK (0x3ff) | ||
78 | #define RTPE (1<<15) /* Record Tx Timestamp to PAL Enable. */ | ||
79 | #define FRD (1<<14) /* FIPER Realignment Disable */ | ||
80 | #define ESFDP (1<<11) /* External Tx/Rx SFD Polarity. */ | ||
81 | #define ESFDE (1<<10) /* External Tx/Rx SFD Enable. */ | ||
82 | #define ETEP2 (1<<9) /* External trigger 2 edge polarity */ | ||
83 | #define ETEP1 (1<<8) /* External trigger 1 edge polarity */ | ||
84 | #define COPH (1<<7) /* Generated clock output phase. */ | ||
85 | #define CIPH (1<<6) /* External oscillator input clock phase */ | ||
86 | #define TMSR (1<<5) /* Timer soft reset. */ | ||
87 | #define BYP (1<<3) /* Bypass drift compensated clock */ | ||
88 | #define TE (1<<2) /* 1588 timer enable. */ | ||
89 | #define CKSEL_SHIFT (0) /* 1588 Timer reference clock source */ | ||
90 | #define CKSEL_MASK (0x3) | ||
91 | |||
92 | /* Bit definitions for the TMR_TEVENT register */ | ||
93 | #define ETS2 (1<<25) /* External trigger 2 timestamp sampled */ | ||
94 | #define ETS1 (1<<24) /* External trigger 1 timestamp sampled */ | ||
95 | #define ALM2 (1<<17) /* Current time = alarm time register 2 */ | ||
96 | #define ALM1 (1<<16) /* Current time = alarm time register 1 */ | ||
97 | #define PP1 (1<<7) /* periodic pulse generated on FIPER1 */ | ||
98 | #define PP2 (1<<6) /* periodic pulse generated on FIPER2 */ | ||
99 | #define PP3 (1<<5) /* periodic pulse generated on FIPER3 */ | ||
100 | |||
101 | /* Bit definitions for the TMR_TEMASK register */ | ||
102 | #define ETS2EN (1<<25) /* External trigger 2 timestamp enable */ | ||
103 | #define ETS1EN (1<<24) /* External trigger 1 timestamp enable */ | ||
104 | #define ALM2EN (1<<17) /* Timer ALM2 event enable */ | ||
105 | #define ALM1EN (1<<16) /* Timer ALM1 event enable */ | ||
106 | #define PP1EN (1<<7) /* Periodic pulse event 1 enable */ | ||
107 | #define PP2EN (1<<6) /* Periodic pulse event 2 enable */ | ||
108 | |||
109 | /* Bit definitions for the TMR_PEVENT register */ | ||
110 | #define TXP2 (1<<9) /* PTP transmitted timestamp im TXTS2 */ | ||
111 | #define TXP1 (1<<8) /* PTP transmitted timestamp in TXTS1 */ | ||
112 | #define RXP (1<<0) /* PTP frame has been received */ | ||
113 | |||
114 | /* Bit definitions for the TMR_PEMASK register */ | ||
115 | #define TXP2EN (1<<9) /* Transmit PTP packet event 2 enable */ | ||
116 | #define TXP1EN (1<<8) /* Transmit PTP packet event 1 enable */ | ||
117 | #define RXPEN (1<<0) /* Receive PTP packet event enable */ | ||
118 | |||
119 | /* Bit definitions for the TMR_STAT register */ | ||
120 | #define STAT_VEC_SHIFT (0) /* Timer general purpose status vector */ | ||
121 | #define STAT_VEC_MASK (0x3f) | ||
122 | |||
123 | /* Bit definitions for the TMR_PRSC register */ | ||
124 | #define PRSC_OCK_SHIFT (0) /* Output clock division/prescale factor. */ | ||
125 | #define PRSC_OCK_MASK (0xffff) | ||
126 | |||
127 | |||
128 | #define DRIVER "gianfar_ptp" | ||
129 | #define DEFAULT_CKSEL 1 | ||
130 | #define N_ALARM 1 /* first alarm is used internally to reset fipers */ | ||
131 | #define N_EXT_TS 2 | ||
132 | #define REG_SIZE sizeof(struct gianfar_ptp_registers) | ||
133 | |||
134 | struct etsects { | ||
135 | struct gianfar_ptp_registers *regs; | ||
136 | spinlock_t lock; /* protects regs */ | ||
137 | struct ptp_clock *clock; | ||
138 | struct ptp_clock_info caps; | ||
139 | struct resource *rsrc; | ||
140 | int irq; | ||
141 | u64 alarm_interval; /* for periodic alarm */ | ||
142 | u64 alarm_value; | ||
143 | u32 tclk_period; /* nanoseconds */ | ||
144 | u32 tmr_prsc; | ||
145 | u32 tmr_add; | ||
146 | u32 cksel; | ||
147 | u32 tmr_fiper1; | ||
148 | u32 tmr_fiper2; | ||
149 | }; | ||
150 | |||
151 | /* | ||
152 | * Register access functions | ||
153 | */ | ||
154 | |||
155 | /* Caller must hold etsects->lock. */ | ||
156 | static u64 tmr_cnt_read(struct etsects *etsects) | ||
157 | { | ||
158 | u64 ns; | ||
159 | u32 lo, hi; | ||
160 | |||
161 | lo = gfar_read(&etsects->regs->tmr_cnt_l); | ||
162 | hi = gfar_read(&etsects->regs->tmr_cnt_h); | ||
163 | ns = ((u64) hi) << 32; | ||
164 | ns |= lo; | ||
165 | return ns; | ||
166 | } | ||
167 | |||
168 | /* Caller must hold etsects->lock. */ | ||
169 | static void tmr_cnt_write(struct etsects *etsects, u64 ns) | ||
170 | { | ||
171 | u32 hi = ns >> 32; | ||
172 | u32 lo = ns & 0xffffffff; | ||
173 | |||
174 | gfar_write(&etsects->regs->tmr_cnt_l, lo); | ||
175 | gfar_write(&etsects->regs->tmr_cnt_h, hi); | ||
176 | } | ||
177 | |||
178 | /* Caller must hold etsects->lock. */ | ||
179 | static void set_alarm(struct etsects *etsects) | ||
180 | { | ||
181 | u64 ns; | ||
182 | u32 lo, hi; | ||
183 | |||
184 | ns = tmr_cnt_read(etsects) + 1500000000ULL; | ||
185 | ns = div_u64(ns, 1000000000UL) * 1000000000ULL; | ||
186 | ns -= etsects->tclk_period; | ||
187 | hi = ns >> 32; | ||
188 | lo = ns & 0xffffffff; | ||
189 | gfar_write(&etsects->regs->tmr_alarm1_l, lo); | ||
190 | gfar_write(&etsects->regs->tmr_alarm1_h, hi); | ||
191 | } | ||
192 | |||
193 | /* Caller must hold etsects->lock. */ | ||
194 | static void set_fipers(struct etsects *etsects) | ||
195 | { | ||
196 | u32 tmr_ctrl = gfar_read(&etsects->regs->tmr_ctrl); | ||
197 | |||
198 | gfar_write(&etsects->regs->tmr_ctrl, tmr_ctrl & (~TE)); | ||
199 | gfar_write(&etsects->regs->tmr_prsc, etsects->tmr_prsc); | ||
200 | gfar_write(&etsects->regs->tmr_fiper1, etsects->tmr_fiper1); | ||
201 | gfar_write(&etsects->regs->tmr_fiper2, etsects->tmr_fiper2); | ||
202 | set_alarm(etsects); | ||
203 | gfar_write(&etsects->regs->tmr_ctrl, tmr_ctrl|TE); | ||
204 | } | ||
205 | |||
206 | /* | ||
207 | * Interrupt service routine | ||
208 | */ | ||
209 | |||
210 | static irqreturn_t isr(int irq, void *priv) | ||
211 | { | ||
212 | struct etsects *etsects = priv; | ||
213 | struct ptp_clock_event event; | ||
214 | u64 ns; | ||
215 | u32 ack = 0, lo, hi, mask, val; | ||
216 | |||
217 | val = gfar_read(&etsects->regs->tmr_tevent); | ||
218 | |||
219 | if (val & ETS1) { | ||
220 | ack |= ETS1; | ||
221 | hi = gfar_read(&etsects->regs->tmr_etts1_h); | ||
222 | lo = gfar_read(&etsects->regs->tmr_etts1_l); | ||
223 | event.type = PTP_CLOCK_EXTTS; | ||
224 | event.index = 0; | ||
225 | event.timestamp = ((u64) hi) << 32; | ||
226 | event.timestamp |= lo; | ||
227 | ptp_clock_event(etsects->clock, &event); | ||
228 | } | ||
229 | |||
230 | if (val & ETS2) { | ||
231 | ack |= ETS2; | ||
232 | hi = gfar_read(&etsects->regs->tmr_etts2_h); | ||
233 | lo = gfar_read(&etsects->regs->tmr_etts2_l); | ||
234 | event.type = PTP_CLOCK_EXTTS; | ||
235 | event.index = 1; | ||
236 | event.timestamp = ((u64) hi) << 32; | ||
237 | event.timestamp |= lo; | ||
238 | ptp_clock_event(etsects->clock, &event); | ||
239 | } | ||
240 | |||
241 | if (val & ALM2) { | ||
242 | ack |= ALM2; | ||
243 | if (etsects->alarm_value) { | ||
244 | event.type = PTP_CLOCK_ALARM; | ||
245 | event.index = 0; | ||
246 | event.timestamp = etsects->alarm_value; | ||
247 | ptp_clock_event(etsects->clock, &event); | ||
248 | } | ||
249 | if (etsects->alarm_interval) { | ||
250 | ns = etsects->alarm_value + etsects->alarm_interval; | ||
251 | hi = ns >> 32; | ||
252 | lo = ns & 0xffffffff; | ||
253 | spin_lock(&etsects->lock); | ||
254 | gfar_write(&etsects->regs->tmr_alarm2_l, lo); | ||
255 | gfar_write(&etsects->regs->tmr_alarm2_h, hi); | ||
256 | spin_unlock(&etsects->lock); | ||
257 | etsects->alarm_value = ns; | ||
258 | } else { | ||
259 | gfar_write(&etsects->regs->tmr_tevent, ALM2); | ||
260 | spin_lock(&etsects->lock); | ||
261 | mask = gfar_read(&etsects->regs->tmr_temask); | ||
262 | mask &= ~ALM2EN; | ||
263 | gfar_write(&etsects->regs->tmr_temask, mask); | ||
264 | spin_unlock(&etsects->lock); | ||
265 | etsects->alarm_value = 0; | ||
266 | etsects->alarm_interval = 0; | ||
267 | } | ||
268 | } | ||
269 | |||
270 | if (val & PP1) { | ||
271 | ack |= PP1; | ||
272 | event.type = PTP_CLOCK_PPS; | ||
273 | ptp_clock_event(etsects->clock, &event); | ||
274 | } | ||
275 | |||
276 | if (ack) { | ||
277 | gfar_write(&etsects->regs->tmr_tevent, ack); | ||
278 | return IRQ_HANDLED; | ||
279 | } else | ||
280 | return IRQ_NONE; | ||
281 | } | ||
282 | |||
283 | /* | ||
284 | * PTP clock operations | ||
285 | */ | ||
286 | |||
287 | static int ptp_gianfar_adjfreq(struct ptp_clock_info *ptp, s32 ppb) | ||
288 | { | ||
289 | u64 adj; | ||
290 | u32 diff, tmr_add; | ||
291 | int neg_adj = 0; | ||
292 | struct etsects *etsects = container_of(ptp, struct etsects, caps); | ||
293 | |||
294 | if (ppb < 0) { | ||
295 | neg_adj = 1; | ||
296 | ppb = -ppb; | ||
297 | } | ||
298 | tmr_add = etsects->tmr_add; | ||
299 | adj = tmr_add; | ||
300 | adj *= ppb; | ||
301 | diff = div_u64(adj, 1000000000ULL); | ||
302 | |||
303 | tmr_add = neg_adj ? tmr_add - diff : tmr_add + diff; | ||
304 | |||
305 | gfar_write(&etsects->regs->tmr_add, tmr_add); | ||
306 | |||
307 | return 0; | ||
308 | } | ||
309 | |||
310 | static int ptp_gianfar_adjtime(struct ptp_clock_info *ptp, s64 delta) | ||
311 | { | ||
312 | s64 now; | ||
313 | unsigned long flags; | ||
314 | struct etsects *etsects = container_of(ptp, struct etsects, caps); | ||
315 | |||
316 | spin_lock_irqsave(&etsects->lock, flags); | ||
317 | |||
318 | now = tmr_cnt_read(etsects); | ||
319 | now += delta; | ||
320 | tmr_cnt_write(etsects, now); | ||
321 | |||
322 | spin_unlock_irqrestore(&etsects->lock, flags); | ||
323 | |||
324 | set_fipers(etsects); | ||
325 | |||
326 | return 0; | ||
327 | } | ||
328 | |||
329 | static int ptp_gianfar_gettime(struct ptp_clock_info *ptp, struct timespec *ts) | ||
330 | { | ||
331 | u64 ns; | ||
332 | u32 remainder; | ||
333 | unsigned long flags; | ||
334 | struct etsects *etsects = container_of(ptp, struct etsects, caps); | ||
335 | |||
336 | spin_lock_irqsave(&etsects->lock, flags); | ||
337 | |||
338 | ns = tmr_cnt_read(etsects); | ||
339 | |||
340 | spin_unlock_irqrestore(&etsects->lock, flags); | ||
341 | |||
342 | ts->tv_sec = div_u64_rem(ns, 1000000000, &remainder); | ||
343 | ts->tv_nsec = remainder; | ||
344 | return 0; | ||
345 | } | ||
346 | |||
347 | static int ptp_gianfar_settime(struct ptp_clock_info *ptp, | ||
348 | const struct timespec *ts) | ||
349 | { | ||
350 | u64 ns; | ||
351 | unsigned long flags; | ||
352 | struct etsects *etsects = container_of(ptp, struct etsects, caps); | ||
353 | |||
354 | ns = ts->tv_sec * 1000000000ULL; | ||
355 | ns += ts->tv_nsec; | ||
356 | |||
357 | spin_lock_irqsave(&etsects->lock, flags); | ||
358 | |||
359 | tmr_cnt_write(etsects, ns); | ||
360 | set_fipers(etsects); | ||
361 | |||
362 | spin_unlock_irqrestore(&etsects->lock, flags); | ||
363 | |||
364 | return 0; | ||
365 | } | ||
366 | |||
367 | static int ptp_gianfar_enable(struct ptp_clock_info *ptp, | ||
368 | struct ptp_clock_request *rq, int on) | ||
369 | { | ||
370 | struct etsects *etsects = container_of(ptp, struct etsects, caps); | ||
371 | unsigned long flags; | ||
372 | u32 bit, mask; | ||
373 | |||
374 | switch (rq->type) { | ||
375 | case PTP_CLK_REQ_EXTTS: | ||
376 | switch (rq->extts.index) { | ||
377 | case 0: | ||
378 | bit = ETS1EN; | ||
379 | break; | ||
380 | case 1: | ||
381 | bit = ETS2EN; | ||
382 | break; | ||
383 | default: | ||
384 | return -EINVAL; | ||
385 | } | ||
386 | spin_lock_irqsave(&etsects->lock, flags); | ||
387 | mask = gfar_read(&etsects->regs->tmr_temask); | ||
388 | if (on) | ||
389 | mask |= bit; | ||
390 | else | ||
391 | mask &= ~bit; | ||
392 | gfar_write(&etsects->regs->tmr_temask, mask); | ||
393 | spin_unlock_irqrestore(&etsects->lock, flags); | ||
394 | return 0; | ||
395 | |||
396 | case PTP_CLK_REQ_PPS: | ||
397 | spin_lock_irqsave(&etsects->lock, flags); | ||
398 | mask = gfar_read(&etsects->regs->tmr_temask); | ||
399 | if (on) | ||
400 | mask |= PP1EN; | ||
401 | else | ||
402 | mask &= ~PP1EN; | ||
403 | gfar_write(&etsects->regs->tmr_temask, mask); | ||
404 | spin_unlock_irqrestore(&etsects->lock, flags); | ||
405 | return 0; | ||
406 | |||
407 | default: | ||
408 | break; | ||
409 | } | ||
410 | |||
411 | return -EOPNOTSUPP; | ||
412 | } | ||
413 | |||
414 | static struct ptp_clock_info ptp_gianfar_caps = { | ||
415 | .owner = THIS_MODULE, | ||
416 | .name = "gianfar clock", | ||
417 | .max_adj = 512000, | ||
418 | .n_alarm = N_ALARM, | ||
419 | .n_ext_ts = N_EXT_TS, | ||
420 | .n_per_out = 0, | ||
421 | .pps = 1, | ||
422 | .adjfreq = ptp_gianfar_adjfreq, | ||
423 | .adjtime = ptp_gianfar_adjtime, | ||
424 | .gettime = ptp_gianfar_gettime, | ||
425 | .settime = ptp_gianfar_settime, | ||
426 | .enable = ptp_gianfar_enable, | ||
427 | }; | ||
428 | |||
429 | /* OF device tree */ | ||
430 | |||
431 | static int get_of_u32(struct device_node *node, char *str, u32 *val) | ||
432 | { | ||
433 | int plen; | ||
434 | const u32 *prop = of_get_property(node, str, &plen); | ||
435 | |||
436 | if (!prop || plen != sizeof(*prop)) | ||
437 | return -1; | ||
438 | *val = *prop; | ||
439 | return 0; | ||
440 | } | ||
441 | |||
442 | static int gianfar_ptp_probe(struct platform_device *dev) | ||
443 | { | ||
444 | struct device_node *node = dev->dev.of_node; | ||
445 | struct etsects *etsects; | ||
446 | struct timespec now; | ||
447 | int err = -ENOMEM; | ||
448 | u32 tmr_ctrl; | ||
449 | unsigned long flags; | ||
450 | |||
451 | etsects = kzalloc(sizeof(*etsects), GFP_KERNEL); | ||
452 | if (!etsects) | ||
453 | goto no_memory; | ||
454 | |||
455 | err = -ENODEV; | ||
456 | |||
457 | etsects->caps = ptp_gianfar_caps; | ||
458 | etsects->cksel = DEFAULT_CKSEL; | ||
459 | |||
460 | if (get_of_u32(node, "fsl,tclk-period", &etsects->tclk_period) || | ||
461 | get_of_u32(node, "fsl,tmr-prsc", &etsects->tmr_prsc) || | ||
462 | get_of_u32(node, "fsl,tmr-add", &etsects->tmr_add) || | ||
463 | get_of_u32(node, "fsl,tmr-fiper1", &etsects->tmr_fiper1) || | ||
464 | get_of_u32(node, "fsl,tmr-fiper2", &etsects->tmr_fiper2) || | ||
465 | get_of_u32(node, "fsl,max-adj", &etsects->caps.max_adj)) { | ||
466 | pr_err("device tree node missing required elements\n"); | ||
467 | goto no_node; | ||
468 | } | ||
469 | |||
470 | etsects->irq = platform_get_irq(dev, 0); | ||
471 | |||
472 | if (etsects->irq == NO_IRQ) { | ||
473 | pr_err("irq not in device tree\n"); | ||
474 | goto no_node; | ||
475 | } | ||
476 | if (request_irq(etsects->irq, isr, 0, DRIVER, etsects)) { | ||
477 | pr_err("request_irq failed\n"); | ||
478 | goto no_node; | ||
479 | } | ||
480 | |||
481 | etsects->rsrc = platform_get_resource(dev, IORESOURCE_MEM, 0); | ||
482 | if (!etsects->rsrc) { | ||
483 | pr_err("no resource\n"); | ||
484 | goto no_resource; | ||
485 | } | ||
486 | if (request_resource(&ioport_resource, etsects->rsrc)) { | ||
487 | pr_err("resource busy\n"); | ||
488 | goto no_resource; | ||
489 | } | ||
490 | |||
491 | spin_lock_init(&etsects->lock); | ||
492 | |||
493 | etsects->regs = ioremap(etsects->rsrc->start, | ||
494 | 1 + etsects->rsrc->end - etsects->rsrc->start); | ||
495 | if (!etsects->regs) { | ||
496 | pr_err("ioremap ptp registers failed\n"); | ||
497 | goto no_ioremap; | ||
498 | } | ||
499 | getnstimeofday(&now); | ||
500 | ptp_gianfar_settime(&etsects->caps, &now); | ||
501 | |||
502 | tmr_ctrl = | ||
503 | (etsects->tclk_period & TCLK_PERIOD_MASK) << TCLK_PERIOD_SHIFT | | ||
504 | (etsects->cksel & CKSEL_MASK) << CKSEL_SHIFT; | ||
505 | |||
506 | spin_lock_irqsave(&etsects->lock, flags); | ||
507 | |||
508 | gfar_write(&etsects->regs->tmr_ctrl, tmr_ctrl); | ||
509 | gfar_write(&etsects->regs->tmr_add, etsects->tmr_add); | ||
510 | gfar_write(&etsects->regs->tmr_prsc, etsects->tmr_prsc); | ||
511 | gfar_write(&etsects->regs->tmr_fiper1, etsects->tmr_fiper1); | ||
512 | gfar_write(&etsects->regs->tmr_fiper2, etsects->tmr_fiper2); | ||
513 | set_alarm(etsects); | ||
514 | gfar_write(&etsects->regs->tmr_ctrl, tmr_ctrl|FS|RTPE|TE); | ||
515 | |||
516 | spin_unlock_irqrestore(&etsects->lock, flags); | ||
517 | |||
518 | etsects->clock = ptp_clock_register(&etsects->caps); | ||
519 | if (IS_ERR(etsects->clock)) { | ||
520 | err = PTR_ERR(etsects->clock); | ||
521 | goto no_clock; | ||
522 | } | ||
523 | |||
524 | dev_set_drvdata(&dev->dev, etsects); | ||
525 | |||
526 | return 0; | ||
527 | |||
528 | no_clock: | ||
529 | no_ioremap: | ||
530 | release_resource(etsects->rsrc); | ||
531 | no_resource: | ||
532 | free_irq(etsects->irq, etsects); | ||
533 | no_node: | ||
534 | kfree(etsects); | ||
535 | no_memory: | ||
536 | return err; | ||
537 | } | ||
538 | |||
539 | static int gianfar_ptp_remove(struct platform_device *dev) | ||
540 | { | ||
541 | struct etsects *etsects = dev_get_drvdata(&dev->dev); | ||
542 | |||
543 | gfar_write(&etsects->regs->tmr_temask, 0); | ||
544 | gfar_write(&etsects->regs->tmr_ctrl, 0); | ||
545 | |||
546 | ptp_clock_unregister(etsects->clock); | ||
547 | iounmap(etsects->regs); | ||
548 | release_resource(etsects->rsrc); | ||
549 | free_irq(etsects->irq, etsects); | ||
550 | kfree(etsects); | ||
551 | |||
552 | return 0; | ||
553 | } | ||
554 | |||
555 | static struct of_device_id match_table[] = { | ||
556 | { .compatible = "fsl,etsec-ptp" }, | ||
557 | {}, | ||
558 | }; | ||
559 | |||
560 | static struct platform_driver gianfar_ptp_driver = { | ||
561 | .driver = { | ||
562 | .name = "gianfar_ptp", | ||
563 | .of_match_table = match_table, | ||
564 | .owner = THIS_MODULE, | ||
565 | }, | ||
566 | .probe = gianfar_ptp_probe, | ||
567 | .remove = gianfar_ptp_remove, | ||
568 | }; | ||
569 | |||
570 | /* module operations */ | ||
571 | |||
572 | static int __init ptp_gianfar_init(void) | ||
573 | { | ||
574 | return platform_driver_register(&gianfar_ptp_driver); | ||
575 | } | ||
576 | |||
577 | module_init(ptp_gianfar_init); | ||
578 | |||
579 | static void __exit ptp_gianfar_exit(void) | ||
580 | { | ||
581 | platform_driver_unregister(&gianfar_ptp_driver); | ||
582 | } | ||
583 | |||
584 | module_exit(ptp_gianfar_exit); | ||
585 | |||
586 | MODULE_AUTHOR("Richard Cochran <richard.cochran@omicron.at>"); | ||
587 | MODULE_DESCRIPTION("PTP clock using the eTSEC"); | ||
588 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/net/phy/Makefile b/drivers/net/phy/Makefile index 13bebab65d02..2333215bbb32 100644 --- a/drivers/net/phy/Makefile +++ b/drivers/net/phy/Makefile | |||
@@ -19,6 +19,7 @@ obj-$(CONFIG_FIXED_PHY) += fixed.o | |||
19 | obj-$(CONFIG_MDIO_BITBANG) += mdio-bitbang.o | 19 | obj-$(CONFIG_MDIO_BITBANG) += mdio-bitbang.o |
20 | obj-$(CONFIG_MDIO_GPIO) += mdio-gpio.o | 20 | obj-$(CONFIG_MDIO_GPIO) += mdio-gpio.o |
21 | obj-$(CONFIG_NATIONAL_PHY) += national.o | 21 | obj-$(CONFIG_NATIONAL_PHY) += national.o |
22 | obj-$(CONFIG_DP83640_PHY) += dp83640.o | ||
22 | obj-$(CONFIG_STE10XP) += ste10Xp.o | 23 | obj-$(CONFIG_STE10XP) += ste10Xp.o |
23 | obj-$(CONFIG_MICREL_PHY) += micrel.o | 24 | obj-$(CONFIG_MICREL_PHY) += micrel.o |
24 | obj-$(CONFIG_MDIO_OCTEON) += mdio-octeon.o | 25 | obj-$(CONFIG_MDIO_OCTEON) += mdio-octeon.o |
diff --git a/drivers/net/phy/dp83640.c b/drivers/net/phy/dp83640.c new file mode 100644 index 000000000000..b0c9522bb535 --- /dev/null +++ b/drivers/net/phy/dp83640.c | |||
@@ -0,0 +1,1100 @@ | |||
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 | */ | ||
20 | #include <linux/ethtool.h> | ||
21 | #include <linux/kernel.h> | ||
22 | #include <linux/list.h> | ||
23 | #include <linux/mii.h> | ||
24 | #include <linux/module.h> | ||
25 | #include <linux/net_tstamp.h> | ||
26 | #include <linux/netdevice.h> | ||
27 | #include <linux/phy.h> | ||
28 | #include <linux/ptp_classify.h> | ||
29 | #include <linux/ptp_clock_kernel.h> | ||
30 | |||
31 | #include "dp83640_reg.h" | ||
32 | |||
33 | #define DP83640_PHY_ID 0x20005ce1 | ||
34 | #define PAGESEL 0x13 | ||
35 | #define LAYER4 0x02 | ||
36 | #define LAYER2 0x01 | ||
37 | #define MAX_RXTS 4 | ||
38 | #define MAX_TXTS 4 | ||
39 | #define N_EXT_TS 1 | ||
40 | #define PSF_PTPVER 2 | ||
41 | #define PSF_EVNT 0x4000 | ||
42 | #define PSF_RX 0x2000 | ||
43 | #define PSF_TX 0x1000 | ||
44 | #define EXT_EVENT 1 | ||
45 | #define EXT_GPIO 1 | ||
46 | #define CAL_EVENT 2 | ||
47 | #define CAL_GPIO 9 | ||
48 | #define CAL_TRIGGER 2 | ||
49 | |||
50 | /* phyter seems to miss the mark by 16 ns */ | ||
51 | #define ADJTIME_FIX 16 | ||
52 | |||
53 | #if defined(__BIG_ENDIAN) | ||
54 | #define ENDIAN_FLAG 0 | ||
55 | #elif defined(__LITTLE_ENDIAN) | ||
56 | #define ENDIAN_FLAG PSF_ENDIAN | ||
57 | #endif | ||
58 | |||
59 | #define SKB_PTP_TYPE(__skb) (*(unsigned int *)((__skb)->cb)) | ||
60 | |||
61 | struct phy_rxts { | ||
62 | u16 ns_lo; /* ns[15:0] */ | ||
63 | u16 ns_hi; /* overflow[1:0], ns[29:16] */ | ||
64 | u16 sec_lo; /* sec[15:0] */ | ||
65 | u16 sec_hi; /* sec[31:16] */ | ||
66 | u16 seqid; /* sequenceId[15:0] */ | ||
67 | u16 msgtype; /* messageType[3:0], hash[11:0] */ | ||
68 | }; | ||
69 | |||
70 | struct phy_txts { | ||
71 | u16 ns_lo; /* ns[15:0] */ | ||
72 | u16 ns_hi; /* overflow[1:0], ns[29:16] */ | ||
73 | u16 sec_lo; /* sec[15:0] */ | ||
74 | u16 sec_hi; /* sec[31:16] */ | ||
75 | }; | ||
76 | |||
77 | struct rxts { | ||
78 | struct list_head list; | ||
79 | unsigned long tmo; | ||
80 | u64 ns; | ||
81 | u16 seqid; | ||
82 | u8 msgtype; | ||
83 | u16 hash; | ||
84 | }; | ||
85 | |||
86 | struct dp83640_clock; | ||
87 | |||
88 | struct dp83640_private { | ||
89 | struct list_head list; | ||
90 | struct dp83640_clock *clock; | ||
91 | struct phy_device *phydev; | ||
92 | struct work_struct ts_work; | ||
93 | int hwts_tx_en; | ||
94 | int hwts_rx_en; | ||
95 | int layer; | ||
96 | int version; | ||
97 | /* remember state of cfg0 during calibration */ | ||
98 | int cfg0; | ||
99 | /* remember the last event time stamp */ | ||
100 | struct phy_txts edata; | ||
101 | /* list of rx timestamps */ | ||
102 | struct list_head rxts; | ||
103 | struct list_head rxpool; | ||
104 | struct rxts rx_pool_data[MAX_RXTS]; | ||
105 | /* protects above three fields from concurrent access */ | ||
106 | spinlock_t rx_lock; | ||
107 | /* queues of incoming and outgoing packets */ | ||
108 | struct sk_buff_head rx_queue; | ||
109 | struct sk_buff_head tx_queue; | ||
110 | }; | ||
111 | |||
112 | struct dp83640_clock { | ||
113 | /* keeps the instance in the 'phyter_clocks' list */ | ||
114 | struct list_head list; | ||
115 | /* we create one clock instance per MII bus */ | ||
116 | struct mii_bus *bus; | ||
117 | /* protects extended registers from concurrent access */ | ||
118 | struct mutex extreg_lock; | ||
119 | /* remembers which page was last selected */ | ||
120 | int page; | ||
121 | /* our advertised capabilities */ | ||
122 | struct ptp_clock_info caps; | ||
123 | /* protects the three fields below from concurrent access */ | ||
124 | struct mutex clock_lock; | ||
125 | /* the one phyter from which we shall read */ | ||
126 | struct dp83640_private *chosen; | ||
127 | /* list of the other attached phyters, not chosen */ | ||
128 | struct list_head phylist; | ||
129 | /* reference to our PTP hardware clock */ | ||
130 | struct ptp_clock *ptp_clock; | ||
131 | }; | ||
132 | |||
133 | /* globals */ | ||
134 | |||
135 | static int chosen_phy = -1; | ||
136 | static ushort cal_gpio = 4; | ||
137 | |||
138 | module_param(chosen_phy, int, 0444); | ||
139 | module_param(cal_gpio, ushort, 0444); | ||
140 | |||
141 | MODULE_PARM_DESC(chosen_phy, \ | ||
142 | "The address of the PHY to use for the ancillary clock features"); | ||
143 | MODULE_PARM_DESC(cal_gpio, \ | ||
144 | "Which GPIO line to use for synchronizing multiple PHYs"); | ||
145 | |||
146 | /* a list of clocks and a mutex to protect it */ | ||
147 | static LIST_HEAD(phyter_clocks); | ||
148 | static DEFINE_MUTEX(phyter_clocks_lock); | ||
149 | |||
150 | static void rx_timestamp_work(struct work_struct *work); | ||
151 | |||
152 | /* extended register access functions */ | ||
153 | |||
154 | #define BROADCAST_ADDR 31 | ||
155 | |||
156 | static inline int broadcast_write(struct mii_bus *bus, u32 regnum, u16 val) | ||
157 | { | ||
158 | return mdiobus_write(bus, BROADCAST_ADDR, regnum, val); | ||
159 | } | ||
160 | |||
161 | /* Caller must hold extreg_lock. */ | ||
162 | static int ext_read(struct phy_device *phydev, int page, u32 regnum) | ||
163 | { | ||
164 | struct dp83640_private *dp83640 = phydev->priv; | ||
165 | int val; | ||
166 | |||
167 | if (dp83640->clock->page != page) { | ||
168 | broadcast_write(phydev->bus, PAGESEL, page); | ||
169 | dp83640->clock->page = page; | ||
170 | } | ||
171 | val = phy_read(phydev, regnum); | ||
172 | |||
173 | return val; | ||
174 | } | ||
175 | |||
176 | /* Caller must hold extreg_lock. */ | ||
177 | static void ext_write(int broadcast, struct phy_device *phydev, | ||
178 | int page, u32 regnum, u16 val) | ||
179 | { | ||
180 | struct dp83640_private *dp83640 = phydev->priv; | ||
181 | |||
182 | if (dp83640->clock->page != page) { | ||
183 | broadcast_write(phydev->bus, PAGESEL, page); | ||
184 | dp83640->clock->page = page; | ||
185 | } | ||
186 | if (broadcast) | ||
187 | broadcast_write(phydev->bus, regnum, val); | ||
188 | else | ||
189 | phy_write(phydev, regnum, val); | ||
190 | } | ||
191 | |||
192 | /* Caller must hold extreg_lock. */ | ||
193 | static int tdr_write(int bc, struct phy_device *dev, | ||
194 | const struct timespec *ts, u16 cmd) | ||
195 | { | ||
196 | ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_nsec & 0xffff);/* ns[15:0] */ | ||
197 | ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_nsec >> 16); /* ns[31:16] */ | ||
198 | ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_sec & 0xffff); /* sec[15:0] */ | ||
199 | ext_write(bc, dev, PAGE4, PTP_TDR, ts->tv_sec >> 16); /* sec[31:16]*/ | ||
200 | |||
201 | ext_write(bc, dev, PAGE4, PTP_CTL, cmd); | ||
202 | |||
203 | return 0; | ||
204 | } | ||
205 | |||
206 | /* convert phy timestamps into driver timestamps */ | ||
207 | |||
208 | static void phy2rxts(struct phy_rxts *p, struct rxts *rxts) | ||
209 | { | ||
210 | u32 sec; | ||
211 | |||
212 | sec = p->sec_lo; | ||
213 | sec |= p->sec_hi << 16; | ||
214 | |||
215 | rxts->ns = p->ns_lo; | ||
216 | rxts->ns |= (p->ns_hi & 0x3fff) << 16; | ||
217 | rxts->ns += ((u64)sec) * 1000000000ULL; | ||
218 | rxts->seqid = p->seqid; | ||
219 | rxts->msgtype = (p->msgtype >> 12) & 0xf; | ||
220 | rxts->hash = p->msgtype & 0x0fff; | ||
221 | rxts->tmo = jiffies + HZ; | ||
222 | } | ||
223 | |||
224 | static u64 phy2txts(struct phy_txts *p) | ||
225 | { | ||
226 | u64 ns; | ||
227 | u32 sec; | ||
228 | |||
229 | sec = p->sec_lo; | ||
230 | sec |= p->sec_hi << 16; | ||
231 | |||
232 | ns = p->ns_lo; | ||
233 | ns |= (p->ns_hi & 0x3fff) << 16; | ||
234 | ns += ((u64)sec) * 1000000000ULL; | ||
235 | |||
236 | return ns; | ||
237 | } | ||
238 | |||
239 | /* ptp clock methods */ | ||
240 | |||
241 | static int ptp_dp83640_adjfreq(struct ptp_clock_info *ptp, s32 ppb) | ||
242 | { | ||
243 | struct dp83640_clock *clock = | ||
244 | container_of(ptp, struct dp83640_clock, caps); | ||
245 | struct phy_device *phydev = clock->chosen->phydev; | ||
246 | u64 rate; | ||
247 | int neg_adj = 0; | ||
248 | u16 hi, lo; | ||
249 | |||
250 | if (ppb < 0) { | ||
251 | neg_adj = 1; | ||
252 | ppb = -ppb; | ||
253 | } | ||
254 | rate = ppb; | ||
255 | rate <<= 26; | ||
256 | rate = div_u64(rate, 1953125); | ||
257 | |||
258 | hi = (rate >> 16) & PTP_RATE_HI_MASK; | ||
259 | if (neg_adj) | ||
260 | hi |= PTP_RATE_DIR; | ||
261 | |||
262 | lo = rate & 0xffff; | ||
263 | |||
264 | mutex_lock(&clock->extreg_lock); | ||
265 | |||
266 | ext_write(1, phydev, PAGE4, PTP_RATEH, hi); | ||
267 | ext_write(1, phydev, PAGE4, PTP_RATEL, lo); | ||
268 | |||
269 | mutex_unlock(&clock->extreg_lock); | ||
270 | |||
271 | return 0; | ||
272 | } | ||
273 | |||
274 | static int ptp_dp83640_adjtime(struct ptp_clock_info *ptp, s64 delta) | ||
275 | { | ||
276 | struct dp83640_clock *clock = | ||
277 | container_of(ptp, struct dp83640_clock, caps); | ||
278 | struct phy_device *phydev = clock->chosen->phydev; | ||
279 | struct timespec ts; | ||
280 | int err; | ||
281 | |||
282 | delta += ADJTIME_FIX; | ||
283 | |||
284 | ts = ns_to_timespec(delta); | ||
285 | |||
286 | mutex_lock(&clock->extreg_lock); | ||
287 | |||
288 | err = tdr_write(1, phydev, &ts, PTP_STEP_CLK); | ||
289 | |||
290 | mutex_unlock(&clock->extreg_lock); | ||
291 | |||
292 | return err; | ||
293 | } | ||
294 | |||
295 | static int ptp_dp83640_gettime(struct ptp_clock_info *ptp, struct timespec *ts) | ||
296 | { | ||
297 | struct dp83640_clock *clock = | ||
298 | container_of(ptp, struct dp83640_clock, caps); | ||
299 | struct phy_device *phydev = clock->chosen->phydev; | ||
300 | unsigned int val[4]; | ||
301 | |||
302 | mutex_lock(&clock->extreg_lock); | ||
303 | |||
304 | ext_write(0, phydev, PAGE4, PTP_CTL, PTP_RD_CLK); | ||
305 | |||
306 | val[0] = ext_read(phydev, PAGE4, PTP_TDR); /* ns[15:0] */ | ||
307 | val[1] = ext_read(phydev, PAGE4, PTP_TDR); /* ns[31:16] */ | ||
308 | val[2] = ext_read(phydev, PAGE4, PTP_TDR); /* sec[15:0] */ | ||
309 | val[3] = ext_read(phydev, PAGE4, PTP_TDR); /* sec[31:16] */ | ||
310 | |||
311 | mutex_unlock(&clock->extreg_lock); | ||
312 | |||
313 | ts->tv_nsec = val[0] | (val[1] << 16); | ||
314 | ts->tv_sec = val[2] | (val[3] << 16); | ||
315 | |||
316 | return 0; | ||
317 | } | ||
318 | |||
319 | static int ptp_dp83640_settime(struct ptp_clock_info *ptp, | ||
320 | const struct timespec *ts) | ||
321 | { | ||
322 | struct dp83640_clock *clock = | ||
323 | container_of(ptp, struct dp83640_clock, caps); | ||
324 | struct phy_device *phydev = clock->chosen->phydev; | ||
325 | int err; | ||
326 | |||
327 | mutex_lock(&clock->extreg_lock); | ||
328 | |||
329 | err = tdr_write(1, phydev, ts, PTP_LOAD_CLK); | ||
330 | |||
331 | mutex_unlock(&clock->extreg_lock); | ||
332 | |||
333 | return err; | ||
334 | } | ||
335 | |||
336 | static int ptp_dp83640_enable(struct ptp_clock_info *ptp, | ||
337 | struct ptp_clock_request *rq, int on) | ||
338 | { | ||
339 | struct dp83640_clock *clock = | ||
340 | container_of(ptp, struct dp83640_clock, caps); | ||
341 | struct phy_device *phydev = clock->chosen->phydev; | ||
342 | u16 evnt; | ||
343 | |||
344 | switch (rq->type) { | ||
345 | case PTP_CLK_REQ_EXTTS: | ||
346 | if (rq->extts.index != 0) | ||
347 | return -EINVAL; | ||
348 | evnt = EVNT_WR | (EXT_EVENT & EVNT_SEL_MASK) << EVNT_SEL_SHIFT; | ||
349 | if (on) { | ||
350 | evnt |= (EXT_GPIO & EVNT_GPIO_MASK) << EVNT_GPIO_SHIFT; | ||
351 | evnt |= EVNT_RISE; | ||
352 | } | ||
353 | ext_write(0, phydev, PAGE5, PTP_EVNT, evnt); | ||
354 | return 0; | ||
355 | default: | ||
356 | break; | ||
357 | } | ||
358 | |||
359 | return -EOPNOTSUPP; | ||
360 | } | ||
361 | |||
362 | static u8 status_frame_dst[6] = { 0x01, 0x1B, 0x19, 0x00, 0x00, 0x00 }; | ||
363 | static u8 status_frame_src[6] = { 0x08, 0x00, 0x17, 0x0B, 0x6B, 0x0F }; | ||
364 | |||
365 | static void enable_status_frames(struct phy_device *phydev, bool on) | ||
366 | { | ||
367 | u16 cfg0 = 0, ver; | ||
368 | |||
369 | if (on) | ||
370 | cfg0 = PSF_EVNT_EN | PSF_RXTS_EN | PSF_TXTS_EN | ENDIAN_FLAG; | ||
371 | |||
372 | ver = (PSF_PTPVER & VERSIONPTP_MASK) << VERSIONPTP_SHIFT; | ||
373 | |||
374 | ext_write(0, phydev, PAGE5, PSF_CFG0, cfg0); | ||
375 | ext_write(0, phydev, PAGE6, PSF_CFG1, ver); | ||
376 | |||
377 | if (!phydev->attached_dev) { | ||
378 | pr_warning("dp83640: expected to find an attached netdevice\n"); | ||
379 | return; | ||
380 | } | ||
381 | |||
382 | if (on) { | ||
383 | if (dev_mc_add(phydev->attached_dev, status_frame_dst)) | ||
384 | pr_warning("dp83640: failed to add mc address\n"); | ||
385 | } else { | ||
386 | if (dev_mc_del(phydev->attached_dev, status_frame_dst)) | ||
387 | pr_warning("dp83640: failed to delete mc address\n"); | ||
388 | } | ||
389 | } | ||
390 | |||
391 | static bool is_status_frame(struct sk_buff *skb, int type) | ||
392 | { | ||
393 | struct ethhdr *h = eth_hdr(skb); | ||
394 | |||
395 | if (PTP_CLASS_V2_L2 == type && | ||
396 | !memcmp(h->h_source, status_frame_src, sizeof(status_frame_src))) | ||
397 | return true; | ||
398 | else | ||
399 | return false; | ||
400 | } | ||
401 | |||
402 | static int expired(struct rxts *rxts) | ||
403 | { | ||
404 | return time_after(jiffies, rxts->tmo); | ||
405 | } | ||
406 | |||
407 | /* Caller must hold rx_lock. */ | ||
408 | static void prune_rx_ts(struct dp83640_private *dp83640) | ||
409 | { | ||
410 | struct list_head *this, *next; | ||
411 | struct rxts *rxts; | ||
412 | |||
413 | list_for_each_safe(this, next, &dp83640->rxts) { | ||
414 | rxts = list_entry(this, struct rxts, list); | ||
415 | if (expired(rxts)) { | ||
416 | list_del_init(&rxts->list); | ||
417 | list_add(&rxts->list, &dp83640->rxpool); | ||
418 | } | ||
419 | } | ||
420 | } | ||
421 | |||
422 | /* synchronize the phyters so they act as one clock */ | ||
423 | |||
424 | static void enable_broadcast(struct phy_device *phydev, int init_page, int on) | ||
425 | { | ||
426 | int val; | ||
427 | phy_write(phydev, PAGESEL, 0); | ||
428 | val = phy_read(phydev, PHYCR2); | ||
429 | if (on) | ||
430 | val |= BC_WRITE; | ||
431 | else | ||
432 | val &= ~BC_WRITE; | ||
433 | phy_write(phydev, PHYCR2, val); | ||
434 | phy_write(phydev, PAGESEL, init_page); | ||
435 | } | ||
436 | |||
437 | static void recalibrate(struct dp83640_clock *clock) | ||
438 | { | ||
439 | s64 now, diff; | ||
440 | struct phy_txts event_ts; | ||
441 | struct timespec ts; | ||
442 | struct list_head *this; | ||
443 | struct dp83640_private *tmp; | ||
444 | struct phy_device *master = clock->chosen->phydev; | ||
445 | u16 cfg0, evnt, ptp_trig, trigger, val; | ||
446 | |||
447 | trigger = CAL_TRIGGER; | ||
448 | |||
449 | mutex_lock(&clock->extreg_lock); | ||
450 | |||
451 | /* | ||
452 | * enable broadcast, disable status frames, enable ptp clock | ||
453 | */ | ||
454 | list_for_each(this, &clock->phylist) { | ||
455 | tmp = list_entry(this, struct dp83640_private, list); | ||
456 | enable_broadcast(tmp->phydev, clock->page, 1); | ||
457 | tmp->cfg0 = ext_read(tmp->phydev, PAGE5, PSF_CFG0); | ||
458 | ext_write(0, tmp->phydev, PAGE5, PSF_CFG0, 0); | ||
459 | ext_write(0, tmp->phydev, PAGE4, PTP_CTL, PTP_ENABLE); | ||
460 | } | ||
461 | enable_broadcast(master, clock->page, 1); | ||
462 | cfg0 = ext_read(master, PAGE5, PSF_CFG0); | ||
463 | ext_write(0, master, PAGE5, PSF_CFG0, 0); | ||
464 | ext_write(0, master, PAGE4, PTP_CTL, PTP_ENABLE); | ||
465 | |||
466 | /* | ||
467 | * enable an event timestamp | ||
468 | */ | ||
469 | evnt = EVNT_WR | EVNT_RISE | EVNT_SINGLE; | ||
470 | evnt |= (CAL_EVENT & EVNT_SEL_MASK) << EVNT_SEL_SHIFT; | ||
471 | evnt |= (cal_gpio & EVNT_GPIO_MASK) << EVNT_GPIO_SHIFT; | ||
472 | |||
473 | list_for_each(this, &clock->phylist) { | ||
474 | tmp = list_entry(this, struct dp83640_private, list); | ||
475 | ext_write(0, tmp->phydev, PAGE5, PTP_EVNT, evnt); | ||
476 | } | ||
477 | ext_write(0, master, PAGE5, PTP_EVNT, evnt); | ||
478 | |||
479 | /* | ||
480 | * configure a trigger | ||
481 | */ | ||
482 | ptp_trig = TRIG_WR | TRIG_IF_LATE | TRIG_PULSE; | ||
483 | ptp_trig |= (trigger & TRIG_CSEL_MASK) << TRIG_CSEL_SHIFT; | ||
484 | ptp_trig |= (cal_gpio & TRIG_GPIO_MASK) << TRIG_GPIO_SHIFT; | ||
485 | ext_write(0, master, PAGE5, PTP_TRIG, ptp_trig); | ||
486 | |||
487 | /* load trigger */ | ||
488 | val = (trigger & TRIG_SEL_MASK) << TRIG_SEL_SHIFT; | ||
489 | val |= TRIG_LOAD; | ||
490 | ext_write(0, master, PAGE4, PTP_CTL, val); | ||
491 | |||
492 | /* enable trigger */ | ||
493 | val &= ~TRIG_LOAD; | ||
494 | val |= TRIG_EN; | ||
495 | ext_write(0, master, PAGE4, PTP_CTL, val); | ||
496 | |||
497 | /* disable trigger */ | ||
498 | val = (trigger & TRIG_SEL_MASK) << TRIG_SEL_SHIFT; | ||
499 | val |= TRIG_DIS; | ||
500 | ext_write(0, master, PAGE4, PTP_CTL, val); | ||
501 | |||
502 | /* | ||
503 | * read out and correct offsets | ||
504 | */ | ||
505 | val = ext_read(master, PAGE4, PTP_STS); | ||
506 | pr_info("master PTP_STS 0x%04hx", val); | ||
507 | val = ext_read(master, PAGE4, PTP_ESTS); | ||
508 | pr_info("master PTP_ESTS 0x%04hx", val); | ||
509 | event_ts.ns_lo = ext_read(master, PAGE4, PTP_EDATA); | ||
510 | event_ts.ns_hi = ext_read(master, PAGE4, PTP_EDATA); | ||
511 | event_ts.sec_lo = ext_read(master, PAGE4, PTP_EDATA); | ||
512 | event_ts.sec_hi = ext_read(master, PAGE4, PTP_EDATA); | ||
513 | now = phy2txts(&event_ts); | ||
514 | |||
515 | list_for_each(this, &clock->phylist) { | ||
516 | tmp = list_entry(this, struct dp83640_private, list); | ||
517 | val = ext_read(tmp->phydev, PAGE4, PTP_STS); | ||
518 | pr_info("slave PTP_STS 0x%04hx", val); | ||
519 | val = ext_read(tmp->phydev, PAGE4, PTP_ESTS); | ||
520 | pr_info("slave PTP_ESTS 0x%04hx", val); | ||
521 | event_ts.ns_lo = ext_read(tmp->phydev, PAGE4, PTP_EDATA); | ||
522 | event_ts.ns_hi = ext_read(tmp->phydev, PAGE4, PTP_EDATA); | ||
523 | event_ts.sec_lo = ext_read(tmp->phydev, PAGE4, PTP_EDATA); | ||
524 | event_ts.sec_hi = ext_read(tmp->phydev, PAGE4, PTP_EDATA); | ||
525 | diff = now - (s64) phy2txts(&event_ts); | ||
526 | pr_info("slave offset %lld nanoseconds\n", diff); | ||
527 | diff += ADJTIME_FIX; | ||
528 | ts = ns_to_timespec(diff); | ||
529 | tdr_write(0, tmp->phydev, &ts, PTP_STEP_CLK); | ||
530 | } | ||
531 | |||
532 | /* | ||
533 | * restore status frames | ||
534 | */ | ||
535 | list_for_each(this, &clock->phylist) { | ||
536 | tmp = list_entry(this, struct dp83640_private, list); | ||
537 | ext_write(0, tmp->phydev, PAGE5, PSF_CFG0, tmp->cfg0); | ||
538 | } | ||
539 | ext_write(0, master, PAGE5, PSF_CFG0, cfg0); | ||
540 | |||
541 | mutex_unlock(&clock->extreg_lock); | ||
542 | } | ||
543 | |||
544 | /* time stamping methods */ | ||
545 | |||
546 | static void decode_evnt(struct dp83640_private *dp83640, | ||
547 | struct phy_txts *phy_txts, u16 ests) | ||
548 | { | ||
549 | struct ptp_clock_event event; | ||
550 | int words = (ests >> EVNT_TS_LEN_SHIFT) & EVNT_TS_LEN_MASK; | ||
551 | |||
552 | switch (words) { /* fall through in every case */ | ||
553 | case 3: | ||
554 | dp83640->edata.sec_hi = phy_txts->sec_hi; | ||
555 | case 2: | ||
556 | dp83640->edata.sec_lo = phy_txts->sec_lo; | ||
557 | case 1: | ||
558 | dp83640->edata.ns_hi = phy_txts->ns_hi; | ||
559 | case 0: | ||
560 | dp83640->edata.ns_lo = phy_txts->ns_lo; | ||
561 | } | ||
562 | |||
563 | event.type = PTP_CLOCK_EXTTS; | ||
564 | event.index = 0; | ||
565 | event.timestamp = phy2txts(&dp83640->edata); | ||
566 | |||
567 | ptp_clock_event(dp83640->clock->ptp_clock, &event); | ||
568 | } | ||
569 | |||
570 | static void decode_rxts(struct dp83640_private *dp83640, | ||
571 | struct phy_rxts *phy_rxts) | ||
572 | { | ||
573 | struct rxts *rxts; | ||
574 | unsigned long flags; | ||
575 | |||
576 | spin_lock_irqsave(&dp83640->rx_lock, flags); | ||
577 | |||
578 | prune_rx_ts(dp83640); | ||
579 | |||
580 | if (list_empty(&dp83640->rxpool)) { | ||
581 | pr_warning("dp83640: rx timestamp pool is empty\n"); | ||
582 | goto out; | ||
583 | } | ||
584 | rxts = list_first_entry(&dp83640->rxpool, struct rxts, list); | ||
585 | list_del_init(&rxts->list); | ||
586 | phy2rxts(phy_rxts, rxts); | ||
587 | list_add_tail(&rxts->list, &dp83640->rxts); | ||
588 | out: | ||
589 | spin_unlock_irqrestore(&dp83640->rx_lock, flags); | ||
590 | } | ||
591 | |||
592 | static void decode_txts(struct dp83640_private *dp83640, | ||
593 | struct phy_txts *phy_txts) | ||
594 | { | ||
595 | struct skb_shared_hwtstamps shhwtstamps; | ||
596 | struct sk_buff *skb; | ||
597 | u64 ns; | ||
598 | |||
599 | /* We must already have the skb that triggered this. */ | ||
600 | |||
601 | skb = skb_dequeue(&dp83640->tx_queue); | ||
602 | |||
603 | if (!skb) { | ||
604 | pr_warning("dp83640: have timestamp but tx_queue empty\n"); | ||
605 | return; | ||
606 | } | ||
607 | ns = phy2txts(phy_txts); | ||
608 | memset(&shhwtstamps, 0, sizeof(shhwtstamps)); | ||
609 | shhwtstamps.hwtstamp = ns_to_ktime(ns); | ||
610 | skb_complete_tx_timestamp(skb, &shhwtstamps); | ||
611 | } | ||
612 | |||
613 | static void decode_status_frame(struct dp83640_private *dp83640, | ||
614 | struct sk_buff *skb) | ||
615 | { | ||
616 | struct phy_rxts *phy_rxts; | ||
617 | struct phy_txts *phy_txts; | ||
618 | u8 *ptr; | ||
619 | int len, size; | ||
620 | u16 ests, type; | ||
621 | |||
622 | ptr = skb->data + 2; | ||
623 | |||
624 | for (len = skb_headlen(skb) - 2; len > sizeof(type); len -= size) { | ||
625 | |||
626 | type = *(u16 *)ptr; | ||
627 | ests = type & 0x0fff; | ||
628 | type = type & 0xf000; | ||
629 | len -= sizeof(type); | ||
630 | ptr += sizeof(type); | ||
631 | |||
632 | if (PSF_RX == type && len >= sizeof(*phy_rxts)) { | ||
633 | |||
634 | phy_rxts = (struct phy_rxts *) ptr; | ||
635 | decode_rxts(dp83640, phy_rxts); | ||
636 | size = sizeof(*phy_rxts); | ||
637 | |||
638 | } else if (PSF_TX == type && len >= sizeof(*phy_txts)) { | ||
639 | |||
640 | phy_txts = (struct phy_txts *) ptr; | ||
641 | decode_txts(dp83640, phy_txts); | ||
642 | size = sizeof(*phy_txts); | ||
643 | |||
644 | } else if (PSF_EVNT == type && len >= sizeof(*phy_txts)) { | ||
645 | |||
646 | phy_txts = (struct phy_txts *) ptr; | ||
647 | decode_evnt(dp83640, phy_txts, ests); | ||
648 | size = sizeof(*phy_txts); | ||
649 | |||
650 | } else { | ||
651 | size = 0; | ||
652 | break; | ||
653 | } | ||
654 | ptr += size; | ||
655 | } | ||
656 | } | ||
657 | |||
658 | static int match(struct sk_buff *skb, unsigned int type, struct rxts *rxts) | ||
659 | { | ||
660 | u16 *seqid; | ||
661 | unsigned int offset; | ||
662 | u8 *msgtype, *data = skb_mac_header(skb); | ||
663 | |||
664 | /* check sequenceID, messageType, 12 bit hash of offset 20-29 */ | ||
665 | |||
666 | switch (type) { | ||
667 | case PTP_CLASS_V1_IPV4: | ||
668 | case PTP_CLASS_V2_IPV4: | ||
669 | offset = ETH_HLEN + IPV4_HLEN(data) + UDP_HLEN; | ||
670 | break; | ||
671 | case PTP_CLASS_V1_IPV6: | ||
672 | case PTP_CLASS_V2_IPV6: | ||
673 | offset = OFF_PTP6; | ||
674 | break; | ||
675 | case PTP_CLASS_V2_L2: | ||
676 | offset = ETH_HLEN; | ||
677 | break; | ||
678 | case PTP_CLASS_V2_VLAN: | ||
679 | offset = ETH_HLEN + VLAN_HLEN; | ||
680 | break; | ||
681 | default: | ||
682 | return 0; | ||
683 | } | ||
684 | |||
685 | if (skb->len + ETH_HLEN < offset + OFF_PTP_SEQUENCE_ID + sizeof(*seqid)) | ||
686 | return 0; | ||
687 | |||
688 | if (unlikely(type & PTP_CLASS_V1)) | ||
689 | msgtype = data + offset + OFF_PTP_CONTROL; | ||
690 | else | ||
691 | msgtype = data + offset; | ||
692 | |||
693 | seqid = (u16 *)(data + offset + OFF_PTP_SEQUENCE_ID); | ||
694 | |||
695 | return (rxts->msgtype == (*msgtype & 0xf) && | ||
696 | rxts->seqid == ntohs(*seqid)); | ||
697 | } | ||
698 | |||
699 | static void dp83640_free_clocks(void) | ||
700 | { | ||
701 | struct dp83640_clock *clock; | ||
702 | struct list_head *this, *next; | ||
703 | |||
704 | mutex_lock(&phyter_clocks_lock); | ||
705 | |||
706 | list_for_each_safe(this, next, &phyter_clocks) { | ||
707 | clock = list_entry(this, struct dp83640_clock, list); | ||
708 | if (!list_empty(&clock->phylist)) { | ||
709 | pr_warning("phy list non-empty while unloading"); | ||
710 | BUG(); | ||
711 | } | ||
712 | list_del(&clock->list); | ||
713 | mutex_destroy(&clock->extreg_lock); | ||
714 | mutex_destroy(&clock->clock_lock); | ||
715 | put_device(&clock->bus->dev); | ||
716 | kfree(clock); | ||
717 | } | ||
718 | |||
719 | mutex_unlock(&phyter_clocks_lock); | ||
720 | } | ||
721 | |||
722 | static void dp83640_clock_init(struct dp83640_clock *clock, struct mii_bus *bus) | ||
723 | { | ||
724 | INIT_LIST_HEAD(&clock->list); | ||
725 | clock->bus = bus; | ||
726 | mutex_init(&clock->extreg_lock); | ||
727 | mutex_init(&clock->clock_lock); | ||
728 | INIT_LIST_HEAD(&clock->phylist); | ||
729 | clock->caps.owner = THIS_MODULE; | ||
730 | sprintf(clock->caps.name, "dp83640 timer"); | ||
731 | clock->caps.max_adj = 1953124; | ||
732 | clock->caps.n_alarm = 0; | ||
733 | clock->caps.n_ext_ts = N_EXT_TS; | ||
734 | clock->caps.n_per_out = 0; | ||
735 | clock->caps.pps = 0; | ||
736 | clock->caps.adjfreq = ptp_dp83640_adjfreq; | ||
737 | clock->caps.adjtime = ptp_dp83640_adjtime; | ||
738 | clock->caps.gettime = ptp_dp83640_gettime; | ||
739 | clock->caps.settime = ptp_dp83640_settime; | ||
740 | clock->caps.enable = ptp_dp83640_enable; | ||
741 | /* | ||
742 | * Get a reference to this bus instance. | ||
743 | */ | ||
744 | get_device(&bus->dev); | ||
745 | } | ||
746 | |||
747 | static int choose_this_phy(struct dp83640_clock *clock, | ||
748 | struct phy_device *phydev) | ||
749 | { | ||
750 | if (chosen_phy == -1 && !clock->chosen) | ||
751 | return 1; | ||
752 | |||
753 | if (chosen_phy == phydev->addr) | ||
754 | return 1; | ||
755 | |||
756 | return 0; | ||
757 | } | ||
758 | |||
759 | static struct dp83640_clock *dp83640_clock_get(struct dp83640_clock *clock) | ||
760 | { | ||
761 | if (clock) | ||
762 | mutex_lock(&clock->clock_lock); | ||
763 | return clock; | ||
764 | } | ||
765 | |||
766 | /* | ||
767 | * Look up and lock a clock by bus instance. | ||
768 | * If there is no clock for this bus, then create it first. | ||
769 | */ | ||
770 | static struct dp83640_clock *dp83640_clock_get_bus(struct mii_bus *bus) | ||
771 | { | ||
772 | struct dp83640_clock *clock = NULL, *tmp; | ||
773 | struct list_head *this; | ||
774 | |||
775 | mutex_lock(&phyter_clocks_lock); | ||
776 | |||
777 | list_for_each(this, &phyter_clocks) { | ||
778 | tmp = list_entry(this, struct dp83640_clock, list); | ||
779 | if (tmp->bus == bus) { | ||
780 | clock = tmp; | ||
781 | break; | ||
782 | } | ||
783 | } | ||
784 | if (clock) | ||
785 | goto out; | ||
786 | |||
787 | clock = kzalloc(sizeof(struct dp83640_clock), GFP_KERNEL); | ||
788 | if (!clock) | ||
789 | goto out; | ||
790 | |||
791 | dp83640_clock_init(clock, bus); | ||
792 | list_add_tail(&phyter_clocks, &clock->list); | ||
793 | out: | ||
794 | mutex_unlock(&phyter_clocks_lock); | ||
795 | |||
796 | return dp83640_clock_get(clock); | ||
797 | } | ||
798 | |||
799 | static void dp83640_clock_put(struct dp83640_clock *clock) | ||
800 | { | ||
801 | mutex_unlock(&clock->clock_lock); | ||
802 | } | ||
803 | |||
804 | static int dp83640_probe(struct phy_device *phydev) | ||
805 | { | ||
806 | struct dp83640_clock *clock; | ||
807 | struct dp83640_private *dp83640; | ||
808 | int err = -ENOMEM, i; | ||
809 | |||
810 | if (phydev->addr == BROADCAST_ADDR) | ||
811 | return 0; | ||
812 | |||
813 | clock = dp83640_clock_get_bus(phydev->bus); | ||
814 | if (!clock) | ||
815 | goto no_clock; | ||
816 | |||
817 | dp83640 = kzalloc(sizeof(struct dp83640_private), GFP_KERNEL); | ||
818 | if (!dp83640) | ||
819 | goto no_memory; | ||
820 | |||
821 | dp83640->phydev = phydev; | ||
822 | INIT_WORK(&dp83640->ts_work, rx_timestamp_work); | ||
823 | |||
824 | INIT_LIST_HEAD(&dp83640->rxts); | ||
825 | INIT_LIST_HEAD(&dp83640->rxpool); | ||
826 | for (i = 0; i < MAX_RXTS; i++) | ||
827 | list_add(&dp83640->rx_pool_data[i].list, &dp83640->rxpool); | ||
828 | |||
829 | phydev->priv = dp83640; | ||
830 | |||
831 | spin_lock_init(&dp83640->rx_lock); | ||
832 | skb_queue_head_init(&dp83640->rx_queue); | ||
833 | skb_queue_head_init(&dp83640->tx_queue); | ||
834 | |||
835 | dp83640->clock = clock; | ||
836 | |||
837 | if (choose_this_phy(clock, phydev)) { | ||
838 | clock->chosen = dp83640; | ||
839 | clock->ptp_clock = ptp_clock_register(&clock->caps); | ||
840 | if (IS_ERR(clock->ptp_clock)) { | ||
841 | err = PTR_ERR(clock->ptp_clock); | ||
842 | goto no_register; | ||
843 | } | ||
844 | } else | ||
845 | list_add_tail(&dp83640->list, &clock->phylist); | ||
846 | |||
847 | if (clock->chosen && !list_empty(&clock->phylist)) | ||
848 | recalibrate(clock); | ||
849 | else | ||
850 | enable_broadcast(dp83640->phydev, clock->page, 1); | ||
851 | |||
852 | dp83640_clock_put(clock); | ||
853 | return 0; | ||
854 | |||
855 | no_register: | ||
856 | clock->chosen = NULL; | ||
857 | kfree(dp83640); | ||
858 | no_memory: | ||
859 | dp83640_clock_put(clock); | ||
860 | no_clock: | ||
861 | return err; | ||
862 | } | ||
863 | |||
864 | static void dp83640_remove(struct phy_device *phydev) | ||
865 | { | ||
866 | struct dp83640_clock *clock; | ||
867 | struct list_head *this, *next; | ||
868 | struct dp83640_private *tmp, *dp83640 = phydev->priv; | ||
869 | |||
870 | if (phydev->addr == BROADCAST_ADDR) | ||
871 | return; | ||
872 | |||
873 | enable_status_frames(phydev, false); | ||
874 | cancel_work_sync(&dp83640->ts_work); | ||
875 | |||
876 | clock = dp83640_clock_get(dp83640->clock); | ||
877 | |||
878 | if (dp83640 == clock->chosen) { | ||
879 | ptp_clock_unregister(clock->ptp_clock); | ||
880 | clock->chosen = NULL; | ||
881 | } else { | ||
882 | list_for_each_safe(this, next, &clock->phylist) { | ||
883 | tmp = list_entry(this, struct dp83640_private, list); | ||
884 | if (tmp == dp83640) { | ||
885 | list_del_init(&tmp->list); | ||
886 | break; | ||
887 | } | ||
888 | } | ||
889 | } | ||
890 | |||
891 | dp83640_clock_put(clock); | ||
892 | kfree(dp83640); | ||
893 | } | ||
894 | |||
895 | static int dp83640_hwtstamp(struct phy_device *phydev, struct ifreq *ifr) | ||
896 | { | ||
897 | struct dp83640_private *dp83640 = phydev->priv; | ||
898 | struct hwtstamp_config cfg; | ||
899 | u16 txcfg0, rxcfg0; | ||
900 | |||
901 | if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg))) | ||
902 | return -EFAULT; | ||
903 | |||
904 | if (cfg.flags) /* reserved for future extensions */ | ||
905 | return -EINVAL; | ||
906 | |||
907 | switch (cfg.tx_type) { | ||
908 | case HWTSTAMP_TX_OFF: | ||
909 | dp83640->hwts_tx_en = 0; | ||
910 | break; | ||
911 | case HWTSTAMP_TX_ON: | ||
912 | dp83640->hwts_tx_en = 1; | ||
913 | break; | ||
914 | default: | ||
915 | return -ERANGE; | ||
916 | } | ||
917 | |||
918 | switch (cfg.rx_filter) { | ||
919 | case HWTSTAMP_FILTER_NONE: | ||
920 | dp83640->hwts_rx_en = 0; | ||
921 | dp83640->layer = 0; | ||
922 | dp83640->version = 0; | ||
923 | break; | ||
924 | case HWTSTAMP_FILTER_PTP_V1_L4_EVENT: | ||
925 | case HWTSTAMP_FILTER_PTP_V1_L4_SYNC: | ||
926 | case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ: | ||
927 | dp83640->hwts_rx_en = 1; | ||
928 | dp83640->layer = LAYER4; | ||
929 | dp83640->version = 1; | ||
930 | break; | ||
931 | case HWTSTAMP_FILTER_PTP_V2_L4_EVENT: | ||
932 | case HWTSTAMP_FILTER_PTP_V2_L4_SYNC: | ||
933 | case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ: | ||
934 | dp83640->hwts_rx_en = 1; | ||
935 | dp83640->layer = LAYER4; | ||
936 | dp83640->version = 2; | ||
937 | break; | ||
938 | case HWTSTAMP_FILTER_PTP_V2_L2_EVENT: | ||
939 | case HWTSTAMP_FILTER_PTP_V2_L2_SYNC: | ||
940 | case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ: | ||
941 | dp83640->hwts_rx_en = 1; | ||
942 | dp83640->layer = LAYER2; | ||
943 | dp83640->version = 2; | ||
944 | break; | ||
945 | case HWTSTAMP_FILTER_PTP_V2_EVENT: | ||
946 | case HWTSTAMP_FILTER_PTP_V2_SYNC: | ||
947 | case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ: | ||
948 | dp83640->hwts_rx_en = 1; | ||
949 | dp83640->layer = LAYER4|LAYER2; | ||
950 | dp83640->version = 2; | ||
951 | break; | ||
952 | default: | ||
953 | return -ERANGE; | ||
954 | } | ||
955 | |||
956 | txcfg0 = (dp83640->version & TX_PTP_VER_MASK) << TX_PTP_VER_SHIFT; | ||
957 | rxcfg0 = (dp83640->version & TX_PTP_VER_MASK) << TX_PTP_VER_SHIFT; | ||
958 | |||
959 | if (dp83640->layer & LAYER2) { | ||
960 | txcfg0 |= TX_L2_EN; | ||
961 | rxcfg0 |= RX_L2_EN; | ||
962 | } | ||
963 | if (dp83640->layer & LAYER4) { | ||
964 | txcfg0 |= TX_IPV6_EN | TX_IPV4_EN; | ||
965 | rxcfg0 |= RX_IPV6_EN | RX_IPV4_EN; | ||
966 | } | ||
967 | |||
968 | if (dp83640->hwts_tx_en) | ||
969 | txcfg0 |= TX_TS_EN; | ||
970 | |||
971 | if (dp83640->hwts_rx_en) | ||
972 | rxcfg0 |= RX_TS_EN; | ||
973 | |||
974 | mutex_lock(&dp83640->clock->extreg_lock); | ||
975 | |||
976 | if (dp83640->hwts_tx_en || dp83640->hwts_rx_en) { | ||
977 | enable_status_frames(phydev, true); | ||
978 | ext_write(0, phydev, PAGE4, PTP_CTL, PTP_ENABLE); | ||
979 | } | ||
980 | |||
981 | ext_write(0, phydev, PAGE5, PTP_TXCFG0, txcfg0); | ||
982 | ext_write(0, phydev, PAGE5, PTP_RXCFG0, rxcfg0); | ||
983 | |||
984 | mutex_unlock(&dp83640->clock->extreg_lock); | ||
985 | |||
986 | return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0; | ||
987 | } | ||
988 | |||
989 | static void rx_timestamp_work(struct work_struct *work) | ||
990 | { | ||
991 | struct dp83640_private *dp83640 = | ||
992 | container_of(work, struct dp83640_private, ts_work); | ||
993 | struct list_head *this, *next; | ||
994 | struct rxts *rxts; | ||
995 | struct skb_shared_hwtstamps *shhwtstamps; | ||
996 | struct sk_buff *skb; | ||
997 | unsigned int type; | ||
998 | unsigned long flags; | ||
999 | |||
1000 | /* Deliver each deferred packet, with or without a time stamp. */ | ||
1001 | |||
1002 | while ((skb = skb_dequeue(&dp83640->rx_queue)) != NULL) { | ||
1003 | type = SKB_PTP_TYPE(skb); | ||
1004 | spin_lock_irqsave(&dp83640->rx_lock, flags); | ||
1005 | list_for_each_safe(this, next, &dp83640->rxts) { | ||
1006 | rxts = list_entry(this, struct rxts, list); | ||
1007 | if (match(skb, type, rxts)) { | ||
1008 | shhwtstamps = skb_hwtstamps(skb); | ||
1009 | memset(shhwtstamps, 0, sizeof(*shhwtstamps)); | ||
1010 | shhwtstamps->hwtstamp = ns_to_ktime(rxts->ns); | ||
1011 | list_del_init(&rxts->list); | ||
1012 | list_add(&rxts->list, &dp83640->rxpool); | ||
1013 | break; | ||
1014 | } | ||
1015 | } | ||
1016 | spin_unlock_irqrestore(&dp83640->rx_lock, flags); | ||
1017 | netif_rx(skb); | ||
1018 | } | ||
1019 | |||
1020 | /* Clear out expired time stamps. */ | ||
1021 | |||
1022 | spin_lock_irqsave(&dp83640->rx_lock, flags); | ||
1023 | prune_rx_ts(dp83640); | ||
1024 | spin_unlock_irqrestore(&dp83640->rx_lock, flags); | ||
1025 | } | ||
1026 | |||
1027 | static bool dp83640_rxtstamp(struct phy_device *phydev, | ||
1028 | struct sk_buff *skb, int type) | ||
1029 | { | ||
1030 | struct dp83640_private *dp83640 = phydev->priv; | ||
1031 | |||
1032 | if (!dp83640->hwts_rx_en) | ||
1033 | return false; | ||
1034 | |||
1035 | if (is_status_frame(skb, type)) { | ||
1036 | decode_status_frame(dp83640, skb); | ||
1037 | /* Let the stack drop this frame. */ | ||
1038 | return false; | ||
1039 | } | ||
1040 | |||
1041 | SKB_PTP_TYPE(skb) = type; | ||
1042 | skb_queue_tail(&dp83640->rx_queue, skb); | ||
1043 | schedule_work(&dp83640->ts_work); | ||
1044 | |||
1045 | return true; | ||
1046 | } | ||
1047 | |||
1048 | static void dp83640_txtstamp(struct phy_device *phydev, | ||
1049 | struct sk_buff *skb, int type) | ||
1050 | { | ||
1051 | struct dp83640_private *dp83640 = phydev->priv; | ||
1052 | |||
1053 | if (!dp83640->hwts_tx_en) { | ||
1054 | kfree_skb(skb); | ||
1055 | return; | ||
1056 | } | ||
1057 | skb_queue_tail(&dp83640->tx_queue, skb); | ||
1058 | schedule_work(&dp83640->ts_work); | ||
1059 | } | ||
1060 | |||
1061 | static struct phy_driver dp83640_driver = { | ||
1062 | .phy_id = DP83640_PHY_ID, | ||
1063 | .phy_id_mask = 0xfffffff0, | ||
1064 | .name = "NatSemi DP83640", | ||
1065 | .features = PHY_BASIC_FEATURES, | ||
1066 | .flags = 0, | ||
1067 | .probe = dp83640_probe, | ||
1068 | .remove = dp83640_remove, | ||
1069 | .config_aneg = genphy_config_aneg, | ||
1070 | .read_status = genphy_read_status, | ||
1071 | .hwtstamp = dp83640_hwtstamp, | ||
1072 | .rxtstamp = dp83640_rxtstamp, | ||
1073 | .txtstamp = dp83640_txtstamp, | ||
1074 | .driver = {.owner = THIS_MODULE,} | ||
1075 | }; | ||
1076 | |||
1077 | static int __init dp83640_init(void) | ||
1078 | { | ||
1079 | return phy_driver_register(&dp83640_driver); | ||
1080 | } | ||
1081 | |||
1082 | static void __exit dp83640_exit(void) | ||
1083 | { | ||
1084 | dp83640_free_clocks(); | ||
1085 | phy_driver_unregister(&dp83640_driver); | ||
1086 | } | ||
1087 | |||
1088 | MODULE_DESCRIPTION("National Semiconductor DP83640 PHY driver"); | ||
1089 | MODULE_AUTHOR("Richard Cochran <richard.cochran@omicron.at>"); | ||
1090 | MODULE_LICENSE("GPL"); | ||
1091 | |||
1092 | module_init(dp83640_init); | ||
1093 | module_exit(dp83640_exit); | ||
1094 | |||
1095 | static struct mdio_device_id __maybe_unused dp83640_tbl[] = { | ||
1096 | { DP83640_PHY_ID, 0xfffffff0 }, | ||
1097 | { } | ||
1098 | }; | ||
1099 | |||
1100 | MODULE_DEVICE_TABLE(mdio, dp83640_tbl); | ||
diff --git a/drivers/net/phy/dp83640_reg.h b/drivers/net/phy/dp83640_reg.h new file mode 100644 index 000000000000..e7fe41117003 --- /dev/null +++ b/drivers/net/phy/dp83640_reg.h | |||
@@ -0,0 +1,267 @@ | |||
1 | /* dp83640_reg.h | ||
2 | * Generated by regen.tcl on Thu Feb 17 10:02:48 AM CET 2011 | ||
3 | */ | ||
4 | #ifndef HAVE_DP83640_REGISTERS | ||
5 | #define HAVE_DP83640_REGISTERS | ||
6 | |||
7 | #define PAGE0 0x0000 | ||
8 | #define PHYCR2 0x001c /* PHY Control Register 2 */ | ||
9 | |||
10 | #define PAGE4 0x0004 | ||
11 | #define PTP_CTL 0x0014 /* PTP Control Register */ | ||
12 | #define PTP_TDR 0x0015 /* PTP Time Data Register */ | ||
13 | #define PTP_STS 0x0016 /* PTP Status Register */ | ||
14 | #define PTP_TSTS 0x0017 /* PTP Trigger Status Register */ | ||
15 | #define PTP_RATEL 0x0018 /* PTP Rate Low Register */ | ||
16 | #define PTP_RATEH 0x0019 /* PTP Rate High Register */ | ||
17 | #define PTP_RDCKSUM 0x001a /* PTP Read Checksum */ | ||
18 | #define PTP_WRCKSUM 0x001b /* PTP Write Checksum */ | ||
19 | #define PTP_TXTS 0x001c /* PTP Transmit Timestamp Register, in four 16-bit reads */ | ||
20 | #define PTP_RXTS 0x001d /* PTP Receive Timestamp Register, in six? 16-bit reads */ | ||
21 | #define PTP_ESTS 0x001e /* PTP Event Status Register */ | ||
22 | #define PTP_EDATA 0x001f /* PTP Event Data Register */ | ||
23 | |||
24 | #define PAGE5 0x0005 | ||
25 | #define PTP_TRIG 0x0014 /* PTP Trigger Configuration Register */ | ||
26 | #define PTP_EVNT 0x0015 /* PTP Event Configuration Register */ | ||
27 | #define PTP_TXCFG0 0x0016 /* PTP Transmit Configuration Register 0 */ | ||
28 | #define PTP_TXCFG1 0x0017 /* PTP Transmit Configuration Register 1 */ | ||
29 | #define PSF_CFG0 0x0018 /* PHY Status Frame Configuration Register 0 */ | ||
30 | #define PTP_RXCFG0 0x0019 /* PTP Receive Configuration Register 0 */ | ||
31 | #define PTP_RXCFG1 0x001a /* PTP Receive Configuration Register 1 */ | ||
32 | #define PTP_RXCFG2 0x001b /* PTP Receive Configuration Register 2 */ | ||
33 | #define PTP_RXCFG3 0x001c /* PTP Receive Configuration Register 3 */ | ||
34 | #define PTP_RXCFG4 0x001d /* PTP Receive Configuration Register 4 */ | ||
35 | #define PTP_TRDL 0x001e /* PTP Temporary Rate Duration Low Register */ | ||
36 | #define PTP_TRDH 0x001f /* PTP Temporary Rate Duration High Register */ | ||
37 | |||
38 | #define PAGE6 0x0006 | ||
39 | #define PTP_COC 0x0014 /* PTP Clock Output Control Register */ | ||
40 | #define PSF_CFG1 0x0015 /* PHY Status Frame Configuration Register 1 */ | ||
41 | #define PSF_CFG2 0x0016 /* PHY Status Frame Configuration Register 2 */ | ||
42 | #define PSF_CFG3 0x0017 /* PHY Status Frame Configuration Register 3 */ | ||
43 | #define PSF_CFG4 0x0018 /* PHY Status Frame Configuration Register 4 */ | ||
44 | #define PTP_SFDCFG 0x0019 /* PTP SFD Configuration Register */ | ||
45 | #define PTP_INTCTL 0x001a /* PTP Interrupt Control Register */ | ||
46 | #define PTP_CLKSRC 0x001b /* PTP Clock Source Register */ | ||
47 | #define PTP_ETR 0x001c /* PTP Ethernet Type Register */ | ||
48 | #define PTP_OFF 0x001d /* PTP Offset Register */ | ||
49 | #define PTP_GPIOMON 0x001e /* PTP GPIO Monitor Register */ | ||
50 | #define PTP_RXHASH 0x001f /* PTP Receive Hash Register */ | ||
51 | |||
52 | /* Bit definitions for the PHYCR2 register */ | ||
53 | #define BC_WRITE (1<<11) /* Broadcast Write Enable */ | ||
54 | |||
55 | /* Bit definitions for the PTP_CTL register */ | ||
56 | #define TRIG_SEL_SHIFT (10) /* PTP Trigger Select */ | ||
57 | #define TRIG_SEL_MASK (0x7) | ||
58 | #define TRIG_DIS (1<<9) /* Disable PTP Trigger */ | ||
59 | #define TRIG_EN (1<<8) /* Enable PTP Trigger */ | ||
60 | #define TRIG_READ (1<<7) /* Read PTP Trigger */ | ||
61 | #define TRIG_LOAD (1<<6) /* Load PTP Trigger */ | ||
62 | #define PTP_RD_CLK (1<<5) /* Read PTP Clock */ | ||
63 | #define PTP_LOAD_CLK (1<<4) /* Load PTP Clock */ | ||
64 | #define PTP_STEP_CLK (1<<3) /* Step PTP Clock */ | ||
65 | #define PTP_ENABLE (1<<2) /* Enable PTP Clock */ | ||
66 | #define PTP_DISABLE (1<<1) /* Disable PTP Clock */ | ||
67 | #define PTP_RESET (1<<0) /* Reset PTP Clock */ | ||
68 | |||
69 | /* Bit definitions for the PTP_STS register */ | ||
70 | #define TXTS_RDY (1<<11) /* Transmit Timestamp Ready */ | ||
71 | #define RXTS_RDY (1<<10) /* Receive Timestamp Ready */ | ||
72 | #define TRIG_DONE (1<<9) /* PTP Trigger Done */ | ||
73 | #define EVENT_RDY (1<<8) /* PTP Event Timestamp Ready */ | ||
74 | #define TXTS_IE (1<<3) /* Transmit Timestamp Interrupt Enable */ | ||
75 | #define RXTS_IE (1<<2) /* Receive Timestamp Interrupt Enable */ | ||
76 | #define TRIG_IE (1<<1) /* Trigger Interrupt Enable */ | ||
77 | #define EVENT_IE (1<<0) /* Event Interrupt Enable */ | ||
78 | |||
79 | /* Bit definitions for the PTP_TSTS register */ | ||
80 | #define TRIG7_ERROR (1<<15) /* Trigger 7 Error */ | ||
81 | #define TRIG7_ACTIVE (1<<14) /* Trigger 7 Active */ | ||
82 | #define TRIG6_ERROR (1<<13) /* Trigger 6 Error */ | ||
83 | #define TRIG6_ACTIVE (1<<12) /* Trigger 6 Active */ | ||
84 | #define TRIG5_ERROR (1<<11) /* Trigger 5 Error */ | ||
85 | #define TRIG5_ACTIVE (1<<10) /* Trigger 5 Active */ | ||
86 | #define TRIG4_ERROR (1<<9) /* Trigger 4 Error */ | ||
87 | #define TRIG4_ACTIVE (1<<8) /* Trigger 4 Active */ | ||
88 | #define TRIG3_ERROR (1<<7) /* Trigger 3 Error */ | ||
89 | #define TRIG3_ACTIVE (1<<6) /* Trigger 3 Active */ | ||
90 | #define TRIG2_ERROR (1<<5) /* Trigger 2 Error */ | ||
91 | #define TRIG2_ACTIVE (1<<4) /* Trigger 2 Active */ | ||
92 | #define TRIG1_ERROR (1<<3) /* Trigger 1 Error */ | ||
93 | #define TRIG1_ACTIVE (1<<2) /* Trigger 1 Active */ | ||
94 | #define TRIG0_ERROR (1<<1) /* Trigger 0 Error */ | ||
95 | #define TRIG0_ACTIVE (1<<0) /* Trigger 0 Active */ | ||
96 | |||
97 | /* Bit definitions for the PTP_RATEH register */ | ||
98 | #define PTP_RATE_DIR (1<<15) /* PTP Rate Direction */ | ||
99 | #define PTP_TMP_RATE (1<<14) /* PTP Temporary Rate */ | ||
100 | #define PTP_RATE_HI_SHIFT (0) /* PTP Rate High 10-bits */ | ||
101 | #define PTP_RATE_HI_MASK (0x3ff) | ||
102 | |||
103 | /* Bit definitions for the PTP_ESTS register */ | ||
104 | #define EVNTS_MISSED_SHIFT (8) /* Indicates number of events missed */ | ||
105 | #define EVNTS_MISSED_MASK (0x7) | ||
106 | #define EVNT_TS_LEN_SHIFT (6) /* Indicates length of the Timestamp field in 16-bit words minus 1 */ | ||
107 | #define EVNT_TS_LEN_MASK (0x3) | ||
108 | #define EVNT_RF (1<<5) /* Indicates whether the event is a rise or falling event */ | ||
109 | #define EVNT_NUM_SHIFT (2) /* Indicates Event Timestamp Unit which detected an event */ | ||
110 | #define EVNT_NUM_MASK (0x7) | ||
111 | #define MULT_EVNT (1<<1) /* Indicates multiple events were detected at the same time */ | ||
112 | #define EVENT_DET (1<<0) /* PTP Event Detected */ | ||
113 | |||
114 | /* Bit definitions for the PTP_EDATA register */ | ||
115 | #define E7_RISE (1<<15) /* Indicates direction of Event 7 */ | ||
116 | #define E7_DET (1<<14) /* Indicates Event 7 detected */ | ||
117 | #define E6_RISE (1<<13) /* Indicates direction of Event 6 */ | ||
118 | #define E6_DET (1<<12) /* Indicates Event 6 detected */ | ||
119 | #define E5_RISE (1<<11) /* Indicates direction of Event 5 */ | ||
120 | #define E5_DET (1<<10) /* Indicates Event 5 detected */ | ||
121 | #define E4_RISE (1<<9) /* Indicates direction of Event 4 */ | ||
122 | #define E4_DET (1<<8) /* Indicates Event 4 detected */ | ||
123 | #define E3_RISE (1<<7) /* Indicates direction of Event 3 */ | ||
124 | #define E3_DET (1<<6) /* Indicates Event 3 detected */ | ||
125 | #define E2_RISE (1<<5) /* Indicates direction of Event 2 */ | ||
126 | #define E2_DET (1<<4) /* Indicates Event 2 detected */ | ||
127 | #define E1_RISE (1<<3) /* Indicates direction of Event 1 */ | ||
128 | #define E1_DET (1<<2) /* Indicates Event 1 detected */ | ||
129 | #define E0_RISE (1<<1) /* Indicates direction of Event 0 */ | ||
130 | #define E0_DET (1<<0) /* Indicates Event 0 detected */ | ||
131 | |||
132 | /* Bit definitions for the PTP_TRIG register */ | ||
133 | #define TRIG_PULSE (1<<15) /* generate a Pulse rather than a single edge */ | ||
134 | #define TRIG_PER (1<<14) /* generate a periodic signal */ | ||
135 | #define TRIG_IF_LATE (1<<13) /* trigger immediately if already past */ | ||
136 | #define TRIG_NOTIFY (1<<12) /* Trigger Notification Enable */ | ||
137 | #define TRIG_GPIO_SHIFT (8) /* Trigger GPIO Connection, value 1-12 */ | ||
138 | #define TRIG_GPIO_MASK (0xf) | ||
139 | #define TRIG_TOGGLE (1<<7) /* Trigger Toggle Mode Enable */ | ||
140 | #define TRIG_CSEL_SHIFT (1) /* Trigger Configuration Select */ | ||
141 | #define TRIG_CSEL_MASK (0x7) | ||
142 | #define TRIG_WR (1<<0) /* Trigger Configuration Write */ | ||
143 | |||
144 | /* Bit definitions for the PTP_EVNT register */ | ||
145 | #define EVNT_RISE (1<<14) /* Event Rise Detect Enable */ | ||
146 | #define EVNT_FALL (1<<13) /* Event Fall Detect Enable */ | ||
147 | #define EVNT_SINGLE (1<<12) /* enable single event capture operation */ | ||
148 | #define EVNT_GPIO_SHIFT (8) /* Event GPIO Connection, value 1-12 */ | ||
149 | #define EVNT_GPIO_MASK (0xf) | ||
150 | #define EVNT_SEL_SHIFT (1) /* Event Select */ | ||
151 | #define EVNT_SEL_MASK (0x7) | ||
152 | #define EVNT_WR (1<<0) /* Event Configuration Write */ | ||
153 | |||
154 | /* Bit definitions for the PTP_TXCFG0 register */ | ||
155 | #define SYNC_1STEP (1<<15) /* insert timestamp into transmit Sync Messages */ | ||
156 | #define DR_INSERT (1<<13) /* Insert Delay_Req Timestamp in Delay_Resp (dangerous) */ | ||
157 | #define NTP_TS_EN (1<<12) /* Enable Timestamping of NTP Packets */ | ||
158 | #define IGNORE_2STEP (1<<11) /* Ignore Two_Step flag for One-Step operation */ | ||
159 | #define CRC_1STEP (1<<10) /* Disable checking of CRC for One-Step operation */ | ||
160 | #define CHK_1STEP (1<<9) /* Enable UDP Checksum correction for One-Step Operation */ | ||
161 | #define IP1588_EN (1<<8) /* Enable IEEE 1588 defined IP address filter */ | ||
162 | #define TX_L2_EN (1<<7) /* Layer2 Timestamp Enable */ | ||
163 | #define TX_IPV6_EN (1<<6) /* IPv6 Timestamp Enable */ | ||
164 | #define TX_IPV4_EN (1<<5) /* IPv4 Timestamp Enable */ | ||
165 | #define TX_PTP_VER_SHIFT (1) /* Enable Timestamp capture for IEEE 1588 version X */ | ||
166 | #define TX_PTP_VER_MASK (0xf) | ||
167 | #define TX_TS_EN (1<<0) /* Transmit Timestamp Enable */ | ||
168 | |||
169 | /* Bit definitions for the PTP_TXCFG1 register */ | ||
170 | #define BYTE0_MASK_SHIFT (8) /* Bit mask to be used for matching Byte0 of the PTP Message */ | ||
171 | #define BYTE0_MASK_MASK (0xff) | ||
172 | #define BYTE0_DATA_SHIFT (0) /* Data to be used for matching Byte0 of the PTP Message */ | ||
173 | #define BYTE0_DATA_MASK (0xff) | ||
174 | |||
175 | /* Bit definitions for the PSF_CFG0 register */ | ||
176 | #define MAC_SRC_ADD_SHIFT (11) /* Status Frame Mac Source Address */ | ||
177 | #define MAC_SRC_ADD_MASK (0x3) | ||
178 | #define MIN_PRE_SHIFT (8) /* Status Frame Minimum Preamble */ | ||
179 | #define MIN_PRE_MASK (0x7) | ||
180 | #define PSF_ENDIAN (1<<7) /* Status Frame Endian Control */ | ||
181 | #define PSF_IPV4 (1<<6) /* Status Frame IPv4 Enable */ | ||
182 | #define PSF_PCF_RD (1<<5) /* Control Frame Read PHY Status Frame Enable */ | ||
183 | #define PSF_ERR_EN (1<<4) /* Error PHY Status Frame Enable */ | ||
184 | #define PSF_TXTS_EN (1<<3) /* Transmit Timestamp PHY Status Frame Enable */ | ||
185 | #define PSF_RXTS_EN (1<<2) /* Receive Timestamp PHY Status Frame Enable */ | ||
186 | #define PSF_TRIG_EN (1<<1) /* Trigger PHY Status Frame Enable */ | ||
187 | #define PSF_EVNT_EN (1<<0) /* Event PHY Status Frame Enable */ | ||
188 | |||
189 | /* Bit definitions for the PTP_RXCFG0 register */ | ||
190 | #define DOMAIN_EN (1<<15) /* Domain Match Enable */ | ||
191 | #define ALT_MAST_DIS (1<<14) /* Alternate Master Timestamp Disable */ | ||
192 | #define USER_IP_SEL (1<<13) /* Selects portion of IP address accessible thru PTP_RXCFG2 */ | ||
193 | #define USER_IP_EN (1<<12) /* Enable User-programmed IP address filter */ | ||
194 | #define RX_SLAVE (1<<11) /* Receive Slave Only */ | ||
195 | #define IP1588_EN_SHIFT (8) /* Enable IEEE 1588 defined IP address filters */ | ||
196 | #define IP1588_EN_MASK (0xf) | ||
197 | #define RX_L2_EN (1<<7) /* Layer2 Timestamp Enable */ | ||
198 | #define RX_IPV6_EN (1<<6) /* IPv6 Timestamp Enable */ | ||
199 | #define RX_IPV4_EN (1<<5) /* IPv4 Timestamp Enable */ | ||
200 | #define RX_PTP_VER_SHIFT (1) /* Enable Timestamp capture for IEEE 1588 version X */ | ||
201 | #define RX_PTP_VER_MASK (0xf) | ||
202 | #define RX_TS_EN (1<<0) /* Receive Timestamp Enable */ | ||
203 | |||
204 | /* Bit definitions for the PTP_RXCFG1 register */ | ||
205 | #define BYTE0_MASK_SHIFT (8) /* Bit mask to be used for matching Byte0 of the PTP Message */ | ||
206 | #define BYTE0_MASK_MASK (0xff) | ||
207 | #define BYTE0_DATA_SHIFT (0) /* Data to be used for matching Byte0 of the PTP Message */ | ||
208 | #define BYTE0_DATA_MASK (0xff) | ||
209 | |||
210 | /* Bit definitions for the PTP_RXCFG3 register */ | ||
211 | #define TS_MIN_IFG_SHIFT (12) /* Minimum Inter-frame Gap */ | ||
212 | #define TS_MIN_IFG_MASK (0xf) | ||
213 | #define ACC_UDP (1<<11) /* Record Timestamp if UDP Checksum Error */ | ||
214 | #define ACC_CRC (1<<10) /* Record Timestamp if CRC Error */ | ||
215 | #define TS_APPEND (1<<9) /* Append Timestamp for L2 */ | ||
216 | #define TS_INSERT (1<<8) /* Enable Timestamp Insertion */ | ||
217 | #define PTP_DOMAIN_SHIFT (0) /* PTP Message domainNumber field */ | ||
218 | #define PTP_DOMAIN_MASK (0xff) | ||
219 | |||
220 | /* Bit definitions for the PTP_RXCFG4 register */ | ||
221 | #define IPV4_UDP_MOD (1<<15) /* Enable IPV4 UDP Modification */ | ||
222 | #define TS_SEC_EN (1<<14) /* Enable Timestamp Seconds */ | ||
223 | #define TS_SEC_LEN_SHIFT (12) /* Inserted Timestamp Seconds Length */ | ||
224 | #define TS_SEC_LEN_MASK (0x3) | ||
225 | #define RXTS_NS_OFF_SHIFT (6) /* Receive Timestamp Nanoseconds offset */ | ||
226 | #define RXTS_NS_OFF_MASK (0x3f) | ||
227 | #define RXTS_SEC_OFF_SHIFT (0) /* Receive Timestamp Seconds offset */ | ||
228 | #define RXTS_SEC_OFF_MASK (0x3f) | ||
229 | |||
230 | /* Bit definitions for the PTP_COC register */ | ||
231 | #define PTP_CLKOUT_EN (1<<15) /* PTP Clock Output Enable */ | ||
232 | #define PTP_CLKOUT_SEL (1<<14) /* PTP Clock Output Source Select */ | ||
233 | #define PTP_CLKOUT_SPEEDSEL (1<<13) /* PTP Clock Output I/O Speed Select */ | ||
234 | #define PTP_CLKDIV_SHIFT (0) /* PTP Clock Divide-by Value */ | ||
235 | #define PTP_CLKDIV_MASK (0xff) | ||
236 | |||
237 | /* Bit definitions for the PSF_CFG1 register */ | ||
238 | #define PTPRESERVED_SHIFT (12) /* PTP v2 reserved field */ | ||
239 | #define PTPRESERVED_MASK (0xf) | ||
240 | #define VERSIONPTP_SHIFT (8) /* PTP v2 versionPTP field */ | ||
241 | #define VERSIONPTP_MASK (0xf) | ||
242 | #define TRANSPORT_SPECIFIC_SHIFT (4) /* PTP v2 Header transportSpecific field */ | ||
243 | #define TRANSPORT_SPECIFIC_MASK (0xf) | ||
244 | #define MESSAGETYPE_SHIFT (0) /* PTP v2 messageType field */ | ||
245 | #define MESSAGETYPE_MASK (0xf) | ||
246 | |||
247 | /* Bit definitions for the PTP_SFDCFG register */ | ||
248 | #define TX_SFD_GPIO_SHIFT (4) /* TX SFD GPIO Select, value 1-12 */ | ||
249 | #define TX_SFD_GPIO_MASK (0xf) | ||
250 | #define RX_SFD_GPIO_SHIFT (0) /* RX SFD GPIO Select, value 1-12 */ | ||
251 | #define RX_SFD_GPIO_MASK (0xf) | ||
252 | |||
253 | /* Bit definitions for the PTP_INTCTL register */ | ||
254 | #define PTP_INT_GPIO_SHIFT (0) /* PTP Interrupt GPIO Select */ | ||
255 | #define PTP_INT_GPIO_MASK (0xf) | ||
256 | |||
257 | /* Bit definitions for the PTP_CLKSRC register */ | ||
258 | #define CLK_SRC_SHIFT (14) /* PTP Clock Source Select */ | ||
259 | #define CLK_SRC_MASK (0x3) | ||
260 | #define CLK_SRC_PER_SHIFT (0) /* PTP Clock Source Period */ | ||
261 | #define CLK_SRC_PER_MASK (0x7f) | ||
262 | |||
263 | /* Bit definitions for the PTP_OFF register */ | ||
264 | #define PTP_OFFSET_SHIFT (0) /* PTP Message offset from preceding header */ | ||
265 | #define PTP_OFFSET_MASK (0xff) | ||
266 | |||
267 | #endif | ||