diff options
-rw-r--r-- | Documentation/devicetree/bindings/net/fsl-tsec-phy.txt | 54 | ||||
-rw-r--r-- | arch/powerpc/boot/dts/mpc8313erdb.dts | 13 | ||||
-rw-r--r-- | arch/powerpc/boot/dts/mpc8572ds.dts | 13 | ||||
-rw-r--r-- | arch/powerpc/boot/dts/p2020ds.dts | 13 | ||||
-rw-r--r-- | arch/powerpc/boot/dts/p2020rdb.dts | 13 | ||||
-rw-r--r-- | drivers/net/Makefile | 1 | ||||
-rw-r--r-- | drivers/net/gianfar_ptp.c | 588 | ||||
-rw-r--r-- | drivers/ptp/Kconfig | 13 |
8 files changed, 708 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/net/fsl-tsec-phy.txt b/Documentation/devicetree/bindings/net/fsl-tsec-phy.txt index edb7ae19e868..2c6be0377f55 100644 --- a/Documentation/devicetree/bindings/net/fsl-tsec-phy.txt +++ b/Documentation/devicetree/bindings/net/fsl-tsec-phy.txt | |||
@@ -74,3 +74,57 @@ Example: | |||
74 | interrupt-parent = <&mpic>; | 74 | interrupt-parent = <&mpic>; |
75 | phy-handle = <&phy0> | 75 | phy-handle = <&phy0> |
76 | }; | 76 | }; |
77 | |||
78 | * Gianfar PTP clock nodes | ||
79 | |||
80 | General Properties: | ||
81 | |||
82 | - compatible Should be "fsl,etsec-ptp" | ||
83 | - reg Offset and length of the register set for the device | ||
84 | - interrupts There should be at least two interrupts. Some devices | ||
85 | have as many as four PTP related interrupts. | ||
86 | |||
87 | Clock Properties: | ||
88 | |||
89 | - fsl,tclk-period Timer reference clock period in nanoseconds. | ||
90 | - fsl,tmr-prsc Prescaler, divides the output clock. | ||
91 | - fsl,tmr-add Frequency compensation value. | ||
92 | - fsl,tmr-fiper1 Fixed interval period pulse generator. | ||
93 | - fsl,tmr-fiper2 Fixed interval period pulse generator. | ||
94 | - fsl,max-adj Maximum frequency adjustment in parts per billion. | ||
95 | |||
96 | These properties set the operational parameters for the PTP | ||
97 | clock. You must choose these carefully for the clock to work right. | ||
98 | Here is how to figure good values: | ||
99 | |||
100 | TimerOsc = system clock MHz | ||
101 | tclk_period = desired clock period nanoseconds | ||
102 | NominalFreq = 1000 / tclk_period MHz | ||
103 | FreqDivRatio = TimerOsc / NominalFreq (must be greater that 1.0) | ||
104 | tmr_add = ceil(2^32 / FreqDivRatio) | ||
105 | OutputClock = NominalFreq / tmr_prsc MHz | ||
106 | PulseWidth = 1 / OutputClock microseconds | ||
107 | FiperFreq1 = desired frequency in Hz | ||
108 | FiperDiv1 = 1000000 * OutputClock / FiperFreq1 | ||
109 | tmr_fiper1 = tmr_prsc * tclk_period * FiperDiv1 - tclk_period | ||
110 | max_adj = 1000000000 * (FreqDivRatio - 1.0) - 1 | ||
111 | |||
112 | The calculation for tmr_fiper2 is the same as for tmr_fiper1. The | ||
113 | driver expects that tmr_fiper1 will be correctly set to produce a 1 | ||
114 | Pulse Per Second (PPS) signal, since this will be offered to the PPS | ||
115 | subsystem to synchronize the Linux clock. | ||
116 | |||
117 | Example: | ||
118 | |||
119 | ptp_clock@24E00 { | ||
120 | compatible = "fsl,etsec-ptp"; | ||
121 | reg = <0x24E00 0xB0>; | ||
122 | interrupts = <12 0x8 13 0x8>; | ||
123 | interrupt-parent = < &ipic >; | ||
124 | fsl,tclk-period = <10>; | ||
125 | fsl,tmr-prsc = <100>; | ||
126 | fsl,tmr-add = <0x999999A4>; | ||
127 | fsl,tmr-fiper1 = <0x3B9AC9F6>; | ||
128 | fsl,tmr-fiper2 = <0x00018696>; | ||
129 | fsl,max-adj = <659999998>; | ||
130 | }; | ||
diff --git a/arch/powerpc/boot/dts/mpc8313erdb.dts b/arch/powerpc/boot/dts/mpc8313erdb.dts index 761faa7b6964..ac1eb320c7b4 100644 --- a/arch/powerpc/boot/dts/mpc8313erdb.dts +++ b/arch/powerpc/boot/dts/mpc8313erdb.dts | |||
@@ -176,6 +176,19 @@ | |||
176 | sleep = <&pmc 0x00300000>; | 176 | sleep = <&pmc 0x00300000>; |
177 | }; | 177 | }; |
178 | 178 | ||
179 | ptp_clock@24E00 { | ||
180 | compatible = "fsl,etsec-ptp"; | ||
181 | reg = <0x24E00 0xB0>; | ||
182 | interrupts = <12 0x8 13 0x8>; | ||
183 | interrupt-parent = < &ipic >; | ||
184 | fsl,tclk-period = <10>; | ||
185 | fsl,tmr-prsc = <100>; | ||
186 | fsl,tmr-add = <0x999999A4>; | ||
187 | fsl,tmr-fiper1 = <0x3B9AC9F6>; | ||
188 | fsl,tmr-fiper2 = <0x00018696>; | ||
189 | fsl,max-adj = <659999998>; | ||
190 | }; | ||
191 | |||
179 | enet0: ethernet@24000 { | 192 | enet0: ethernet@24000 { |
180 | #address-cells = <1>; | 193 | #address-cells = <1>; |
181 | #size-cells = <1>; | 194 | #size-cells = <1>; |
diff --git a/arch/powerpc/boot/dts/mpc8572ds.dts b/arch/powerpc/boot/dts/mpc8572ds.dts index cafc1285c140..f6c04d25e916 100644 --- a/arch/powerpc/boot/dts/mpc8572ds.dts +++ b/arch/powerpc/boot/dts/mpc8572ds.dts | |||
@@ -324,6 +324,19 @@ | |||
324 | }; | 324 | }; |
325 | }; | 325 | }; |
326 | 326 | ||
327 | ptp_clock@24E00 { | ||
328 | compatible = "fsl,etsec-ptp"; | ||
329 | reg = <0x24E00 0xB0>; | ||
330 | interrupts = <68 2 69 2 70 2 71 2>; | ||
331 | interrupt-parent = < &mpic >; | ||
332 | fsl,tclk-period = <5>; | ||
333 | fsl,tmr-prsc = <200>; | ||
334 | fsl,tmr-add = <0xAAAAAAAB>; | ||
335 | fsl,tmr-fiper1 = <0x3B9AC9FB>; | ||
336 | fsl,tmr-fiper2 = <0x3B9AC9FB>; | ||
337 | fsl,max-adj = <499999999>; | ||
338 | }; | ||
339 | |||
327 | enet0: ethernet@24000 { | 340 | enet0: ethernet@24000 { |
328 | #address-cells = <1>; | 341 | #address-cells = <1>; |
329 | #size-cells = <1>; | 342 | #size-cells = <1>; |
diff --git a/arch/powerpc/boot/dts/p2020ds.dts b/arch/powerpc/boot/dts/p2020ds.dts index 2bcf3683d223..dae403100f2f 100644 --- a/arch/powerpc/boot/dts/p2020ds.dts +++ b/arch/powerpc/boot/dts/p2020ds.dts | |||
@@ -178,6 +178,19 @@ | |||
178 | 178 | ||
179 | }; | 179 | }; |
180 | 180 | ||
181 | ptp_clock@24E00 { | ||
182 | compatible = "fsl,etsec-ptp"; | ||
183 | reg = <0x24E00 0xB0>; | ||
184 | interrupts = <68 2 69 2 70 2>; | ||
185 | interrupt-parent = < &mpic >; | ||
186 | fsl,tclk-period = <5>; | ||
187 | fsl,tmr-prsc = <200>; | ||
188 | fsl,tmr-add = <0xCCCCCCCD>; | ||
189 | fsl,tmr-fiper1 = <0x3B9AC9FB>; | ||
190 | fsl,tmr-fiper2 = <0x0001869B>; | ||
191 | fsl,max-adj = <249999999>; | ||
192 | }; | ||
193 | |||
181 | enet0: ethernet@24000 { | 194 | enet0: ethernet@24000 { |
182 | tbi-handle = <&tbi0>; | 195 | tbi-handle = <&tbi0>; |
183 | phy-handle = <&phy0>; | 196 | phy-handle = <&phy0>; |
diff --git a/arch/powerpc/boot/dts/p2020rdb.dts b/arch/powerpc/boot/dts/p2020rdb.dts index 3782a58f13be..1d7a05f3021e 100644 --- a/arch/powerpc/boot/dts/p2020rdb.dts +++ b/arch/powerpc/boot/dts/p2020rdb.dts | |||
@@ -224,6 +224,19 @@ | |||
224 | status = "disabled"; | 224 | status = "disabled"; |
225 | }; | 225 | }; |
226 | 226 | ||
227 | ptp_clock@24E00 { | ||
228 | compatible = "fsl,etsec-ptp"; | ||
229 | reg = <0x24E00 0xB0>; | ||
230 | interrupts = <68 2 69 2 70 2>; | ||
231 | interrupt-parent = < &mpic >; | ||
232 | fsl,tclk-period = <5>; | ||
233 | fsl,tmr-prsc = <200>; | ||
234 | fsl,tmr-add = <0xCCCCCCCD>; | ||
235 | fsl,tmr-fiper1 = <0x3B9AC9FB>; | ||
236 | fsl,tmr-fiper2 = <0x0001869B>; | ||
237 | fsl,max-adj = <249999999>; | ||
238 | }; | ||
239 | |||
227 | enet0: ethernet@24000 { | 240 | enet0: ethernet@24000 { |
228 | fixed-link = <1 1 1000 0 0>; | 241 | fixed-link = <1 1 1000 0 0>; |
229 | phy-connection-type = "rgmii-id"; | 242 | phy-connection-type = "rgmii-id"; |
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/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/ptp/Kconfig b/drivers/ptp/Kconfig index 70d4bb1cbdab..12eb8447c26b 100644 --- a/drivers/ptp/Kconfig +++ b/drivers/ptp/Kconfig | |||
@@ -27,4 +27,17 @@ config PTP_1588_CLOCK | |||
27 | To compile this driver as a module, choose M here: the module | 27 | To compile this driver as a module, choose M here: the module |
28 | will be called ptp. | 28 | will be called ptp. |
29 | 29 | ||
30 | config PTP_1588_CLOCK_GIANFAR | ||
31 | tristate "Freescale eTSEC as PTP clock" | ||
32 | depends on PTP_1588_CLOCK | ||
33 | depends on GIANFAR | ||
34 | help | ||
35 | This driver adds support for using the eTSEC as a PTP | ||
36 | clock. This clock is only useful if your PTP programs are | ||
37 | getting hardware time stamps on the PTP Ethernet packets | ||
38 | using the SO_TIMESTAMPING API. | ||
39 | |||
40 | To compile this driver as a module, choose M here: the module | ||
41 | will be called gianfar_ptp. | ||
42 | |||
30 | endmenu | 43 | endmenu |