blob: e24160de49265667e622d0c0bf05fe5621cd4ace [file] [log] [blame]
Bruce Alland89777b2013-01-19 01:09:58 +00001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allanbf670442013-01-01 16:00:01 +00004 Copyright(c) 1999 - 2013 Intel Corporation.
Bruce Alland89777b2013-01-19 01:09:58 +00005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
23 Linux NICS <linux.nics@intel.com>
24 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
29/* PTP 1588 Hardware Clock (PHC)
30 * Derived from PTP Hardware Clock driver for Intel 82576 and 82580 (igb)
31 * Copyright (C) 2011 Richard Cochran <richardcochran@gmail.com>
32 */
33
34#include "e1000.h"
35
36/**
37 * e1000e_phc_adjfreq - adjust the frequency of the hardware clock
38 * @ptp: ptp clock structure
39 * @delta: Desired frequency change in parts per billion
40 *
41 * Adjust the frequency of the PHC cycle counter by the indicated delta from
42 * the base frequency.
43 **/
44static int e1000e_phc_adjfreq(struct ptp_clock_info *ptp, s32 delta)
45{
46 struct e1000_adapter *adapter = container_of(ptp, struct e1000_adapter,
47 ptp_clock_info);
48 struct e1000_hw *hw = &adapter->hw;
49 bool neg_adj = false;
Todd Fujinaka6c2ed392014-01-18 06:09:33 +000050 unsigned long flags;
Bruce Alland89777b2013-01-19 01:09:58 +000051 u64 adjustment;
52 u32 timinca, incvalue;
53 s32 ret_val;
54
55 if ((delta > ptp->max_adj) || (delta <= -1000000000))
56 return -EINVAL;
57
58 if (delta < 0) {
59 neg_adj = true;
60 delta = -delta;
61 }
62
63 /* Get the System Time Register SYSTIM base frequency */
64 ret_val = e1000e_get_base_timinca(adapter, &timinca);
65 if (ret_val)
66 return ret_val;
67
Todd Fujinaka6c2ed392014-01-18 06:09:33 +000068 spin_lock_irqsave(&adapter->systim_lock, flags);
69
Bruce Alland89777b2013-01-19 01:09:58 +000070 incvalue = timinca & E1000_TIMINCA_INCVALUE_MASK;
71
72 adjustment = incvalue;
73 adjustment *= delta;
74 adjustment = div_u64(adjustment, 1000000000);
75
76 incvalue = neg_adj ? (incvalue - adjustment) : (incvalue + adjustment);
77
78 timinca &= ~E1000_TIMINCA_INCVALUE_MASK;
79 timinca |= incvalue;
80
81 ew32(TIMINCA, timinca);
82
Todd Fujinaka6c2ed392014-01-18 06:09:33 +000083 spin_unlock_irqrestore(&adapter->systim_lock, flags);
84
Bruce Alland89777b2013-01-19 01:09:58 +000085 return 0;
86}
87
88/**
89 * e1000e_phc_adjtime - Shift the time of the hardware clock
90 * @ptp: ptp clock structure
91 * @delta: Desired change in nanoseconds
92 *
93 * Adjust the timer by resetting the timecounter structure.
94 **/
95static int e1000e_phc_adjtime(struct ptp_clock_info *ptp, s64 delta)
96{
97 struct e1000_adapter *adapter = container_of(ptp, struct e1000_adapter,
98 ptp_clock_info);
99 unsigned long flags;
100 s64 now;
101
102 spin_lock_irqsave(&adapter->systim_lock, flags);
103 now = timecounter_read(&adapter->tc);
104 now += delta;
105 timecounter_init(&adapter->tc, &adapter->cc, now);
106 spin_unlock_irqrestore(&adapter->systim_lock, flags);
107
108 return 0;
109}
110
111/**
112 * e1000e_phc_gettime - Reads the current time from the hardware clock
113 * @ptp: ptp clock structure
114 * @ts: timespec structure to hold the current time value
115 *
116 * Read the timecounter and return the correct value in ns after converting
117 * it into a struct timespec.
118 **/
119static int e1000e_phc_gettime(struct ptp_clock_info *ptp, struct timespec *ts)
120{
121 struct e1000_adapter *adapter = container_of(ptp, struct e1000_adapter,
122 ptp_clock_info);
123 unsigned long flags;
124 u32 remainder;
125 u64 ns;
126
127 spin_lock_irqsave(&adapter->systim_lock, flags);
128 ns = timecounter_read(&adapter->tc);
129 spin_unlock_irqrestore(&adapter->systim_lock, flags);
130
131 ts->tv_sec = div_u64_rem(ns, NSEC_PER_SEC, &remainder);
132 ts->tv_nsec = remainder;
133
134 return 0;
135}
136
137/**
138 * e1000e_phc_settime - Set the current time on the hardware clock
139 * @ptp: ptp clock structure
140 * @ts: timespec containing the new time for the cycle counter
141 *
142 * Reset the timecounter to use a new base value instead of the kernel
143 * wall timer value.
144 **/
145static int e1000e_phc_settime(struct ptp_clock_info *ptp,
146 const struct timespec *ts)
147{
148 struct e1000_adapter *adapter = container_of(ptp, struct e1000_adapter,
149 ptp_clock_info);
150 unsigned long flags;
151 u64 ns;
152
Richard Cochran73e3dd62013-04-23 01:56:34 +0000153 ns = timespec_to_ns(ts);
Bruce Alland89777b2013-01-19 01:09:58 +0000154
155 /* reset the timecounter */
156 spin_lock_irqsave(&adapter->systim_lock, flags);
157 timecounter_init(&adapter->tc, &adapter->cc, ns);
158 spin_unlock_irqrestore(&adapter->systim_lock, flags);
159
160 return 0;
161}
162
163/**
164 * e1000e_phc_enable - enable or disable an ancillary feature
165 * @ptp: ptp clock structure
166 * @request: Desired resource to enable or disable
167 * @on: Caller passes one to enable or zero to disable
168 *
169 * Enable (or disable) ancillary features of the PHC subsystem.
170 * Currently, no ancillary features are supported.
171 **/
Bruce Allan8bb62862013-01-16 08:46:49 +0000172static int e1000e_phc_enable(struct ptp_clock_info __always_unused *ptp,
173 struct ptp_clock_request __always_unused *request,
174 int __always_unused on)
Bruce Alland89777b2013-01-19 01:09:58 +0000175{
176 return -EOPNOTSUPP;
177}
178
179static void e1000e_systim_overflow_work(struct work_struct *work)
180{
181 struct e1000_adapter *adapter = container_of(work, struct e1000_adapter,
182 systim_overflow_work.work);
183 struct e1000_hw *hw = &adapter->hw;
184 struct timespec ts;
185
186 adapter->ptp_clock_info.gettime(&adapter->ptp_clock_info, &ts);
187
188 e_dbg("SYSTIM overflow check at %ld.%09lu\n", ts.tv_sec, ts.tv_nsec);
189
190 schedule_delayed_work(&adapter->systim_overflow_work,
191 E1000_SYSTIM_OVERFLOW_PERIOD);
192}
193
194static const struct ptp_clock_info e1000e_ptp_clock_info = {
195 .owner = THIS_MODULE,
196 .n_alarm = 0,
197 .n_ext_ts = 0,
198 .n_per_out = 0,
199 .pps = 0,
200 .adjfreq = e1000e_phc_adjfreq,
201 .adjtime = e1000e_phc_adjtime,
202 .gettime = e1000e_phc_gettime,
203 .settime = e1000e_phc_settime,
204 .enable = e1000e_phc_enable,
205};
206
207/**
208 * e1000e_ptp_init - initialize PTP for devices which support it
209 * @adapter: board private structure
210 *
211 * This function performs the required steps for enabling PTP support.
212 * If PTP support has already been loaded it simply calls the cyclecounter
213 * init routine and exits.
214 **/
215void e1000e_ptp_init(struct e1000_adapter *adapter)
216{
217 struct e1000_hw *hw = &adapter->hw;
218
219 adapter->ptp_clock = NULL;
220
221 if (!(adapter->flags & FLAG_HAS_HW_TIMESTAMP))
222 return;
223
224 adapter->ptp_clock_info = e1000e_ptp_clock_info;
225
226 snprintf(adapter->ptp_clock_info.name,
227 sizeof(adapter->ptp_clock_info.name), "%pm",
228 adapter->netdev->perm_addr);
229
230 switch (hw->mac.type) {
231 case e1000_pch2lan:
232 case e1000_pch_lpt:
233 if ((hw->mac.type != e1000_pch_lpt) ||
234 (er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_SYSCFI)) {
235 adapter->ptp_clock_info.max_adj = 24000000 - 1;
236 break;
237 }
238 /* fall-through */
239 case e1000_82574:
240 case e1000_82583:
241 adapter->ptp_clock_info.max_adj = 600000000 - 1;
242 break;
243 default:
244 break;
245 }
246
247 INIT_DELAYED_WORK(&adapter->systim_overflow_work,
248 e1000e_systim_overflow_work);
249
250 schedule_delayed_work(&adapter->systim_overflow_work,
251 E1000_SYSTIM_OVERFLOW_PERIOD);
252
253 adapter->ptp_clock = ptp_clock_register(&adapter->ptp_clock_info,
254 &adapter->pdev->dev);
255 if (IS_ERR(adapter->ptp_clock)) {
256 adapter->ptp_clock = NULL;
257 e_err("ptp_clock_register failed\n");
258 } else {
259 e_info("registered PHC clock\n");
260 }
261}
262
263/**
264 * e1000e_ptp_remove - disable PTP device and stop the overflow check
265 * @adapter: board private structure
266 *
267 * Stop the PTP support, and cancel the delayed work.
268 **/
269void e1000e_ptp_remove(struct e1000_adapter *adapter)
270{
271 if (!(adapter->flags & FLAG_HAS_HW_TIMESTAMP))
272 return;
273
274 cancel_delayed_work_sync(&adapter->systim_overflow_work);
275
276 if (adapter->ptp_clock) {
277 ptp_clock_unregister(adapter->ptp_clock);
278 adapter->ptp_clock = NULL;
279 e_info("removed PHC\n");
280 }
281}