Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 1 | /* |
| 2 | * PTP 1588 clock for Freescale QorIQ 1588 timer |
| 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 | |
| 21 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 22 | |
| 23 | #include <linux/device.h> |
| 24 | #include <linux/hrtimer.h> |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 25 | #include <linux/kernel.h> |
| 26 | #include <linux/module.h> |
| 27 | #include <linux/of.h> |
| 28 | #include <linux/of_platform.h> |
| 29 | #include <linux/timex.h> |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 30 | #include <linux/slab.h> |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 31 | #include <linux/clk.h> |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 32 | |
Yangbo Lu | 6c50c1e | 2018-05-25 12:40:35 +0800 | [diff] [blame] | 33 | #include <linux/fsl/ptp_qoriq.h> |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 34 | |
| 35 | /* |
| 36 | * Register access functions |
| 37 | */ |
| 38 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 39 | /* Caller must hold ptp_qoriq->lock. */ |
| 40 | static u64 tmr_cnt_read(struct ptp_qoriq *ptp_qoriq) |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 41 | { |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 42 | struct ptp_qoriq_registers *regs = &ptp_qoriq->regs; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 43 | u64 ns; |
| 44 | u32 lo, hi; |
| 45 | |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 46 | lo = ptp_qoriq->read(®s->ctrl_regs->tmr_cnt_l); |
| 47 | hi = ptp_qoriq->read(®s->ctrl_regs->tmr_cnt_h); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 48 | ns = ((u64) hi) << 32; |
| 49 | ns |= lo; |
| 50 | return ns; |
| 51 | } |
| 52 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 53 | /* Caller must hold ptp_qoriq->lock. */ |
| 54 | static void tmr_cnt_write(struct ptp_qoriq *ptp_qoriq, u64 ns) |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 55 | { |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 56 | struct ptp_qoriq_registers *regs = &ptp_qoriq->regs; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 57 | u32 hi = ns >> 32; |
| 58 | u32 lo = ns & 0xffffffff; |
| 59 | |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 60 | ptp_qoriq->write(®s->ctrl_regs->tmr_cnt_l, lo); |
| 61 | ptp_qoriq->write(®s->ctrl_regs->tmr_cnt_h, hi); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 62 | } |
| 63 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 64 | /* Caller must hold ptp_qoriq->lock. */ |
| 65 | static void set_alarm(struct ptp_qoriq *ptp_qoriq) |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 66 | { |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 67 | struct ptp_qoriq_registers *regs = &ptp_qoriq->regs; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 68 | u64 ns; |
| 69 | u32 lo, hi; |
| 70 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 71 | ns = tmr_cnt_read(ptp_qoriq) + 1500000000ULL; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 72 | ns = div_u64(ns, 1000000000UL) * 1000000000ULL; |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 73 | ns -= ptp_qoriq->tclk_period; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 74 | hi = ns >> 32; |
| 75 | lo = ns & 0xffffffff; |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 76 | ptp_qoriq->write(®s->alarm_regs->tmr_alarm1_l, lo); |
| 77 | ptp_qoriq->write(®s->alarm_regs->tmr_alarm1_h, hi); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 78 | } |
| 79 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 80 | /* Caller must hold ptp_qoriq->lock. */ |
| 81 | static void set_fipers(struct ptp_qoriq *ptp_qoriq) |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 82 | { |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 83 | struct ptp_qoriq_registers *regs = &ptp_qoriq->regs; |
Yangbo Lu | a8f62d0 | 2018-06-25 20:37:08 +0800 | [diff] [blame] | 84 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 85 | set_alarm(ptp_qoriq); |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 86 | ptp_qoriq->write(®s->fiper_regs->tmr_fiper1, ptp_qoriq->tmr_fiper1); |
| 87 | ptp_qoriq->write(®s->fiper_regs->tmr_fiper2, ptp_qoriq->tmr_fiper2); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 88 | } |
| 89 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 90 | static int extts_clean_up(struct ptp_qoriq *ptp_qoriq, int index, |
Yangbo Lu | 6815d8b | 2019-01-21 18:41:39 +0800 | [diff] [blame] | 91 | bool update_event) |
| 92 | { |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 93 | struct ptp_qoriq_registers *regs = &ptp_qoriq->regs; |
Yangbo Lu | 6815d8b | 2019-01-21 18:41:39 +0800 | [diff] [blame] | 94 | struct ptp_clock_event event; |
| 95 | void __iomem *reg_etts_l; |
| 96 | void __iomem *reg_etts_h; |
| 97 | u32 valid, stat, lo, hi; |
| 98 | |
| 99 | switch (index) { |
| 100 | case 0: |
| 101 | valid = ETS1_VLD; |
| 102 | reg_etts_l = ®s->etts_regs->tmr_etts1_l; |
| 103 | reg_etts_h = ®s->etts_regs->tmr_etts1_h; |
| 104 | break; |
| 105 | case 1: |
| 106 | valid = ETS2_VLD; |
| 107 | reg_etts_l = ®s->etts_regs->tmr_etts2_l; |
| 108 | reg_etts_h = ®s->etts_regs->tmr_etts2_h; |
| 109 | break; |
| 110 | default: |
| 111 | return -EINVAL; |
| 112 | } |
| 113 | |
| 114 | event.type = PTP_CLOCK_EXTTS; |
| 115 | event.index = index; |
| 116 | |
| 117 | do { |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 118 | lo = ptp_qoriq->read(reg_etts_l); |
| 119 | hi = ptp_qoriq->read(reg_etts_h); |
Yangbo Lu | 6815d8b | 2019-01-21 18:41:39 +0800 | [diff] [blame] | 120 | |
| 121 | if (update_event) { |
| 122 | event.timestamp = ((u64) hi) << 32; |
| 123 | event.timestamp |= lo; |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 124 | ptp_clock_event(ptp_qoriq->clock, &event); |
Yangbo Lu | 6815d8b | 2019-01-21 18:41:39 +0800 | [diff] [blame] | 125 | } |
| 126 | |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 127 | stat = ptp_qoriq->read(®s->ctrl_regs->tmr_stat); |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 128 | } while (ptp_qoriq->extts_fifo_support && (stat & valid)); |
Yangbo Lu | 6815d8b | 2019-01-21 18:41:39 +0800 | [diff] [blame] | 129 | |
| 130 | return 0; |
| 131 | } |
| 132 | |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 133 | /* |
| 134 | * Interrupt service routine |
| 135 | */ |
| 136 | |
Yangbo Lu | 73356e4 | 2019-02-12 12:23:57 +0800 | [diff] [blame] | 137 | irqreturn_t ptp_qoriq_isr(int irq, void *priv) |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 138 | { |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 139 | struct ptp_qoriq *ptp_qoriq = priv; |
| 140 | struct ptp_qoriq_registers *regs = &ptp_qoriq->regs; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 141 | struct ptp_clock_event event; |
| 142 | u64 ns; |
Yangbo Lu | b0bc10c | 2019-01-21 18:41:38 +0800 | [diff] [blame] | 143 | u32 ack = 0, lo, hi, mask, val, irqs; |
| 144 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 145 | spin_lock(&ptp_qoriq->lock); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 146 | |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 147 | val = ptp_qoriq->read(®s->ctrl_regs->tmr_tevent); |
| 148 | mask = ptp_qoriq->read(®s->ctrl_regs->tmr_temask); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 149 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 150 | spin_unlock(&ptp_qoriq->lock); |
Yangbo Lu | b0bc10c | 2019-01-21 18:41:38 +0800 | [diff] [blame] | 151 | |
| 152 | irqs = val & mask; |
| 153 | |
| 154 | if (irqs & ETS1) { |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 155 | ack |= ETS1; |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 156 | extts_clean_up(ptp_qoriq, 0, true); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 157 | } |
| 158 | |
Yangbo Lu | b0bc10c | 2019-01-21 18:41:38 +0800 | [diff] [blame] | 159 | if (irqs & ETS2) { |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 160 | ack |= ETS2; |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 161 | extts_clean_up(ptp_qoriq, 1, true); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 162 | } |
| 163 | |
Yangbo Lu | b0bc10c | 2019-01-21 18:41:38 +0800 | [diff] [blame] | 164 | if (irqs & ALM2) { |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 165 | ack |= ALM2; |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 166 | if (ptp_qoriq->alarm_value) { |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 167 | event.type = PTP_CLOCK_ALARM; |
| 168 | event.index = 0; |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 169 | event.timestamp = ptp_qoriq->alarm_value; |
| 170 | ptp_clock_event(ptp_qoriq->clock, &event); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 171 | } |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 172 | if (ptp_qoriq->alarm_interval) { |
| 173 | ns = ptp_qoriq->alarm_value + ptp_qoriq->alarm_interval; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 174 | hi = ns >> 32; |
| 175 | lo = ns & 0xffffffff; |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 176 | ptp_qoriq->write(®s->alarm_regs->tmr_alarm2_l, lo); |
| 177 | ptp_qoriq->write(®s->alarm_regs->tmr_alarm2_h, hi); |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 178 | ptp_qoriq->alarm_value = ns; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 179 | } else { |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 180 | spin_lock(&ptp_qoriq->lock); |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 181 | mask = ptp_qoriq->read(®s->ctrl_regs->tmr_temask); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 182 | mask &= ~ALM2EN; |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 183 | ptp_qoriq->write(®s->ctrl_regs->tmr_temask, mask); |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 184 | spin_unlock(&ptp_qoriq->lock); |
| 185 | ptp_qoriq->alarm_value = 0; |
| 186 | ptp_qoriq->alarm_interval = 0; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 187 | } |
| 188 | } |
| 189 | |
Yangbo Lu | b0bc10c | 2019-01-21 18:41:38 +0800 | [diff] [blame] | 190 | if (irqs & PP1) { |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 191 | ack |= PP1; |
| 192 | event.type = PTP_CLOCK_PPS; |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 193 | ptp_clock_event(ptp_qoriq->clock, &event); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | if (ack) { |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 197 | ptp_qoriq->write(®s->ctrl_regs->tmr_tevent, ack); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 198 | return IRQ_HANDLED; |
| 199 | } else |
| 200 | return IRQ_NONE; |
| 201 | } |
Yangbo Lu | 73356e4 | 2019-02-12 12:23:57 +0800 | [diff] [blame] | 202 | EXPORT_SYMBOL_GPL(ptp_qoriq_isr); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 203 | |
| 204 | /* |
| 205 | * PTP clock operations |
| 206 | */ |
| 207 | |
Yangbo Lu | 73356e4 | 2019-02-12 12:23:57 +0800 | [diff] [blame] | 208 | int ptp_qoriq_adjfine(struct ptp_clock_info *ptp, long scaled_ppm) |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 209 | { |
| 210 | u64 adj, diff; |
| 211 | u32 tmr_add; |
| 212 | int neg_adj = 0; |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 213 | struct ptp_qoriq *ptp_qoriq = container_of(ptp, struct ptp_qoriq, caps); |
| 214 | struct ptp_qoriq_registers *regs = &ptp_qoriq->regs; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 215 | |
| 216 | if (scaled_ppm < 0) { |
| 217 | neg_adj = 1; |
| 218 | scaled_ppm = -scaled_ppm; |
| 219 | } |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 220 | tmr_add = ptp_qoriq->tmr_add; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 221 | adj = tmr_add; |
| 222 | |
| 223 | /* calculate diff as adj*(scaled_ppm/65536)/1000000 |
| 224 | * and round() to the nearest integer |
| 225 | */ |
| 226 | adj *= scaled_ppm; |
| 227 | diff = div_u64(adj, 8000000); |
| 228 | diff = (diff >> 13) + ((diff >> 12) & 1); |
| 229 | |
| 230 | tmr_add = neg_adj ? tmr_add - diff : tmr_add + diff; |
| 231 | |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 232 | ptp_qoriq->write(®s->ctrl_regs->tmr_add, tmr_add); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 233 | |
| 234 | return 0; |
| 235 | } |
Yangbo Lu | 73356e4 | 2019-02-12 12:23:57 +0800 | [diff] [blame] | 236 | EXPORT_SYMBOL_GPL(ptp_qoriq_adjfine); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 237 | |
Yangbo Lu | 73356e4 | 2019-02-12 12:23:57 +0800 | [diff] [blame] | 238 | int ptp_qoriq_adjtime(struct ptp_clock_info *ptp, s64 delta) |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 239 | { |
| 240 | s64 now; |
| 241 | unsigned long flags; |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 242 | struct ptp_qoriq *ptp_qoriq = container_of(ptp, struct ptp_qoriq, caps); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 243 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 244 | spin_lock_irqsave(&ptp_qoriq->lock, flags); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 245 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 246 | now = tmr_cnt_read(ptp_qoriq); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 247 | now += delta; |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 248 | tmr_cnt_write(ptp_qoriq, now); |
| 249 | set_fipers(ptp_qoriq); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 250 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 251 | spin_unlock_irqrestore(&ptp_qoriq->lock, flags); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 252 | |
| 253 | return 0; |
| 254 | } |
Yangbo Lu | 73356e4 | 2019-02-12 12:23:57 +0800 | [diff] [blame] | 255 | EXPORT_SYMBOL_GPL(ptp_qoriq_adjtime); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 256 | |
Yangbo Lu | 73356e4 | 2019-02-12 12:23:57 +0800 | [diff] [blame] | 257 | int ptp_qoriq_gettime(struct ptp_clock_info *ptp, struct timespec64 *ts) |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 258 | { |
| 259 | u64 ns; |
| 260 | unsigned long flags; |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 261 | struct ptp_qoriq *ptp_qoriq = container_of(ptp, struct ptp_qoriq, caps); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 262 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 263 | spin_lock_irqsave(&ptp_qoriq->lock, flags); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 264 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 265 | ns = tmr_cnt_read(ptp_qoriq); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 266 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 267 | spin_unlock_irqrestore(&ptp_qoriq->lock, flags); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 268 | |
| 269 | *ts = ns_to_timespec64(ns); |
| 270 | |
| 271 | return 0; |
| 272 | } |
Yangbo Lu | 73356e4 | 2019-02-12 12:23:57 +0800 | [diff] [blame] | 273 | EXPORT_SYMBOL_GPL(ptp_qoriq_gettime); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 274 | |
Yangbo Lu | 73356e4 | 2019-02-12 12:23:57 +0800 | [diff] [blame] | 275 | int ptp_qoriq_settime(struct ptp_clock_info *ptp, |
| 276 | const struct timespec64 *ts) |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 277 | { |
| 278 | u64 ns; |
| 279 | unsigned long flags; |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 280 | struct ptp_qoriq *ptp_qoriq = container_of(ptp, struct ptp_qoriq, caps); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 281 | |
| 282 | ns = timespec64_to_ns(ts); |
| 283 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 284 | spin_lock_irqsave(&ptp_qoriq->lock, flags); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 285 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 286 | tmr_cnt_write(ptp_qoriq, ns); |
| 287 | set_fipers(ptp_qoriq); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 288 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 289 | spin_unlock_irqrestore(&ptp_qoriq->lock, flags); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 290 | |
| 291 | return 0; |
| 292 | } |
Yangbo Lu | 73356e4 | 2019-02-12 12:23:57 +0800 | [diff] [blame] | 293 | EXPORT_SYMBOL_GPL(ptp_qoriq_settime); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 294 | |
Yangbo Lu | 73356e4 | 2019-02-12 12:23:57 +0800 | [diff] [blame] | 295 | int ptp_qoriq_enable(struct ptp_clock_info *ptp, |
| 296 | struct ptp_clock_request *rq, int on) |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 297 | { |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 298 | struct ptp_qoriq *ptp_qoriq = container_of(ptp, struct ptp_qoriq, caps); |
| 299 | struct ptp_qoriq_registers *regs = &ptp_qoriq->regs; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 300 | unsigned long flags; |
Yangbo Lu | b0bc10c | 2019-01-21 18:41:38 +0800 | [diff] [blame] | 301 | u32 bit, mask = 0; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 302 | |
| 303 | switch (rq->type) { |
| 304 | case PTP_CLK_REQ_EXTTS: |
| 305 | switch (rq->extts.index) { |
| 306 | case 0: |
| 307 | bit = ETS1EN; |
| 308 | break; |
| 309 | case 1: |
| 310 | bit = ETS2EN; |
| 311 | break; |
| 312 | default: |
| 313 | return -EINVAL; |
| 314 | } |
Yangbo Lu | 6815d8b | 2019-01-21 18:41:39 +0800 | [diff] [blame] | 315 | |
| 316 | if (on) |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 317 | extts_clean_up(ptp_qoriq, rq->extts.index, false); |
Yangbo Lu | 6815d8b | 2019-01-21 18:41:39 +0800 | [diff] [blame] | 318 | |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 319 | break; |
Yangbo Lu | b0bc10c | 2019-01-21 18:41:38 +0800 | [diff] [blame] | 320 | case PTP_CLK_REQ_PPS: |
| 321 | bit = PP1EN; |
| 322 | break; |
| 323 | default: |
| 324 | return -EOPNOTSUPP; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 325 | } |
| 326 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 327 | spin_lock_irqsave(&ptp_qoriq->lock, flags); |
Yangbo Lu | b0bc10c | 2019-01-21 18:41:38 +0800 | [diff] [blame] | 328 | |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 329 | mask = ptp_qoriq->read(®s->ctrl_regs->tmr_temask); |
Yangbo Lu | b0bc10c | 2019-01-21 18:41:38 +0800 | [diff] [blame] | 330 | if (on) { |
| 331 | mask |= bit; |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 332 | ptp_qoriq->write(®s->ctrl_regs->tmr_tevent, bit); |
Yangbo Lu | b0bc10c | 2019-01-21 18:41:38 +0800 | [diff] [blame] | 333 | } else { |
| 334 | mask &= ~bit; |
| 335 | } |
| 336 | |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 337 | ptp_qoriq->write(®s->ctrl_regs->tmr_temask, mask); |
Yangbo Lu | b0bc10c | 2019-01-21 18:41:38 +0800 | [diff] [blame] | 338 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 339 | spin_unlock_irqrestore(&ptp_qoriq->lock, flags); |
Yangbo Lu | b0bc10c | 2019-01-21 18:41:38 +0800 | [diff] [blame] | 340 | return 0; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 341 | } |
Yangbo Lu | 73356e4 | 2019-02-12 12:23:57 +0800 | [diff] [blame] | 342 | EXPORT_SYMBOL_GPL(ptp_qoriq_enable); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 343 | |
| 344 | static const struct ptp_clock_info ptp_qoriq_caps = { |
| 345 | .owner = THIS_MODULE, |
| 346 | .name = "qoriq ptp clock", |
| 347 | .max_adj = 512000, |
| 348 | .n_alarm = 0, |
| 349 | .n_ext_ts = N_EXT_TS, |
| 350 | .n_per_out = 0, |
| 351 | .n_pins = 0, |
| 352 | .pps = 1, |
| 353 | .adjfine = ptp_qoriq_adjfine, |
| 354 | .adjtime = ptp_qoriq_adjtime, |
| 355 | .gettime64 = ptp_qoriq_gettime, |
| 356 | .settime64 = ptp_qoriq_settime, |
| 357 | .enable = ptp_qoriq_enable, |
| 358 | }; |
| 359 | |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 360 | /** |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 361 | * ptp_qoriq_nominal_freq - calculate nominal frequency according to |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 362 | * reference clock frequency |
| 363 | * |
| 364 | * @clk_src: reference clock frequency |
| 365 | * |
| 366 | * The nominal frequency is the desired clock frequency. |
| 367 | * It should be less than the reference clock frequency. |
| 368 | * It should be a factor of 1000MHz. |
| 369 | * |
| 370 | * Return the nominal frequency |
| 371 | */ |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 372 | static u32 ptp_qoriq_nominal_freq(u32 clk_src) |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 373 | { |
| 374 | u32 remainder = 0; |
| 375 | |
| 376 | clk_src /= 1000000; |
| 377 | remainder = clk_src % 100; |
| 378 | if (remainder) { |
| 379 | clk_src -= remainder; |
| 380 | clk_src += 100; |
| 381 | } |
| 382 | |
| 383 | do { |
| 384 | clk_src -= 100; |
| 385 | |
| 386 | } while (1000 % clk_src); |
| 387 | |
| 388 | return clk_src * 1000000; |
| 389 | } |
| 390 | |
| 391 | /** |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 392 | * ptp_qoriq_auto_config - calculate a set of default configurations |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 393 | * |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 394 | * @ptp_qoriq: pointer to ptp_qoriq |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 395 | * @node: pointer to device_node |
| 396 | * |
| 397 | * If below dts properties are not provided, this function will be |
| 398 | * called to calculate a set of default configurations for them. |
| 399 | * "fsl,tclk-period" |
| 400 | * "fsl,tmr-prsc" |
| 401 | * "fsl,tmr-add" |
| 402 | * "fsl,tmr-fiper1" |
| 403 | * "fsl,tmr-fiper2" |
| 404 | * "fsl,max-adj" |
| 405 | * |
| 406 | * Return 0 if success |
| 407 | */ |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 408 | static int ptp_qoriq_auto_config(struct ptp_qoriq *ptp_qoriq, |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 409 | struct device_node *node) |
| 410 | { |
| 411 | struct clk *clk; |
| 412 | u64 freq_comp; |
| 413 | u64 max_adj; |
| 414 | u32 nominal_freq; |
Yangbo Lu | 74c05a3 | 2018-08-06 12:39:11 +0800 | [diff] [blame] | 415 | u32 remainder = 0; |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 416 | u32 clk_src = 0; |
| 417 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 418 | ptp_qoriq->cksel = DEFAULT_CKSEL; |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 419 | |
| 420 | clk = of_clk_get(node, 0); |
| 421 | if (!IS_ERR(clk)) { |
| 422 | clk_src = clk_get_rate(clk); |
| 423 | clk_put(clk); |
| 424 | } |
| 425 | |
| 426 | if (clk_src <= 100000000UL) { |
| 427 | pr_err("error reference clock value, or lower than 100MHz\n"); |
| 428 | return -EINVAL; |
| 429 | } |
| 430 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 431 | nominal_freq = ptp_qoriq_nominal_freq(clk_src); |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 432 | if (!nominal_freq) |
| 433 | return -EINVAL; |
| 434 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 435 | ptp_qoriq->tclk_period = 1000000000UL / nominal_freq; |
| 436 | ptp_qoriq->tmr_prsc = DEFAULT_TMR_PRSC; |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 437 | |
| 438 | /* Calculate initial frequency compensation value for TMR_ADD register. |
| 439 | * freq_comp = ceil(2^32 / freq_ratio) |
| 440 | * freq_ratio = reference_clock_freq / nominal_freq |
| 441 | */ |
| 442 | freq_comp = ((u64)1 << 32) * nominal_freq; |
Yangbo Lu | 74c05a3 | 2018-08-06 12:39:11 +0800 | [diff] [blame] | 443 | freq_comp = div_u64_rem(freq_comp, clk_src, &remainder); |
| 444 | if (remainder) |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 445 | freq_comp++; |
| 446 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 447 | ptp_qoriq->tmr_add = freq_comp; |
| 448 | ptp_qoriq->tmr_fiper1 = DEFAULT_FIPER1_PERIOD - ptp_qoriq->tclk_period; |
| 449 | ptp_qoriq->tmr_fiper2 = DEFAULT_FIPER2_PERIOD - ptp_qoriq->tclk_period; |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 450 | |
| 451 | /* max_adj = 1000000000 * (freq_ratio - 1.0) - 1 |
| 452 | * freq_ratio = reference_clock_freq / nominal_freq |
| 453 | */ |
| 454 | max_adj = 1000000000ULL * (clk_src - nominal_freq); |
Yangbo Lu | 74c05a3 | 2018-08-06 12:39:11 +0800 | [diff] [blame] | 455 | max_adj = div_u64(max_adj, nominal_freq) - 1; |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 456 | ptp_qoriq->caps.max_adj = max_adj; |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 457 | |
| 458 | return 0; |
| 459 | } |
| 460 | |
Yangbo Lu | ff54571 | 2019-02-12 12:23:58 +0800 | [diff] [blame] | 461 | int ptp_qoriq_init(struct ptp_qoriq *ptp_qoriq, void __iomem *base, |
Colin Ian King | 58066ac | 2019-02-19 14:21:20 +0000 | [diff] [blame] | 462 | const struct ptp_clock_info *caps) |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 463 | { |
Yangbo Lu | ff54571 | 2019-02-12 12:23:58 +0800 | [diff] [blame] | 464 | struct device_node *node = ptp_qoriq->dev->of_node; |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 465 | struct ptp_qoriq_registers *regs; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 466 | struct timespec64 now; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 467 | unsigned long flags; |
Yangbo Lu | ff54571 | 2019-02-12 12:23:58 +0800 | [diff] [blame] | 468 | u32 tmr_ctrl; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 469 | |
Claudiu Manoil | 7f4399b | 2019-05-09 03:07:12 +0000 | [diff] [blame^] | 470 | if (!node) |
| 471 | return -ENODEV; |
| 472 | |
Yangbo Lu | ff54571 | 2019-02-12 12:23:58 +0800 | [diff] [blame] | 473 | ptp_qoriq->base = base; |
Colin Ian King | 58066ac | 2019-02-19 14:21:20 +0000 | [diff] [blame] | 474 | ptp_qoriq->caps = *caps; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 475 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 476 | if (of_property_read_u32(node, "fsl,cksel", &ptp_qoriq->cksel)) |
| 477 | ptp_qoriq->cksel = DEFAULT_CKSEL; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 478 | |
Yangbo Lu | 6815d8b | 2019-01-21 18:41:39 +0800 | [diff] [blame] | 479 | if (of_property_read_bool(node, "fsl,extts-fifo")) |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 480 | ptp_qoriq->extts_fifo_support = true; |
Yangbo Lu | 6815d8b | 2019-01-21 18:41:39 +0800 | [diff] [blame] | 481 | else |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 482 | ptp_qoriq->extts_fifo_support = false; |
Yangbo Lu | 6815d8b | 2019-01-21 18:41:39 +0800 | [diff] [blame] | 483 | |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 484 | if (of_property_read_u32(node, |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 485 | "fsl,tclk-period", &ptp_qoriq->tclk_period) || |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 486 | of_property_read_u32(node, |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 487 | "fsl,tmr-prsc", &ptp_qoriq->tmr_prsc) || |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 488 | of_property_read_u32(node, |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 489 | "fsl,tmr-add", &ptp_qoriq->tmr_add) || |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 490 | of_property_read_u32(node, |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 491 | "fsl,tmr-fiper1", &ptp_qoriq->tmr_fiper1) || |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 492 | of_property_read_u32(node, |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 493 | "fsl,tmr-fiper2", &ptp_qoriq->tmr_fiper2) || |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 494 | of_property_read_u32(node, |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 495 | "fsl,max-adj", &ptp_qoriq->caps.max_adj)) { |
Yangbo Lu | 91305f2 | 2018-08-01 18:05:54 +0800 | [diff] [blame] | 496 | pr_warn("device tree node missing required elements, try automatic configuration\n"); |
| 497 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 498 | if (ptp_qoriq_auto_config(ptp_qoriq, node)) |
Yangbo Lu | ff54571 | 2019-02-12 12:23:58 +0800 | [diff] [blame] | 499 | return -ENODEV; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 500 | } |
| 501 | |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 502 | if (of_property_read_bool(node, "little-endian")) { |
| 503 | ptp_qoriq->read = qoriq_read_le; |
| 504 | ptp_qoriq->write = qoriq_write_le; |
| 505 | } else { |
| 506 | ptp_qoriq->read = qoriq_read_be; |
| 507 | ptp_qoriq->write = qoriq_write_be; |
| 508 | } |
| 509 | |
Yangbo Lu | d4e1768 | 2019-02-12 12:24:01 +0800 | [diff] [blame] | 510 | /* The eTSEC uses differnt memory map with DPAA/ENETC */ |
| 511 | if (of_device_is_compatible(node, "fsl,etsec-ptp")) { |
| 512 | ptp_qoriq->regs.ctrl_regs = base + ETSEC_CTRL_REGS_OFFSET; |
| 513 | ptp_qoriq->regs.alarm_regs = base + ETSEC_ALARM_REGS_OFFSET; |
| 514 | ptp_qoriq->regs.fiper_regs = base + ETSEC_FIPER_REGS_OFFSET; |
| 515 | ptp_qoriq->regs.etts_regs = base + ETSEC_ETTS_REGS_OFFSET; |
Yangbo Lu | a8f62d0 | 2018-06-25 20:37:08 +0800 | [diff] [blame] | 516 | } else { |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 517 | ptp_qoriq->regs.ctrl_regs = base + CTRL_REGS_OFFSET; |
| 518 | ptp_qoriq->regs.alarm_regs = base + ALARM_REGS_OFFSET; |
| 519 | ptp_qoriq->regs.fiper_regs = base + FIPER_REGS_OFFSET; |
| 520 | ptp_qoriq->regs.etts_regs = base + ETTS_REGS_OFFSET; |
Yangbo Lu | a8f62d0 | 2018-06-25 20:37:08 +0800 | [diff] [blame] | 521 | } |
| 522 | |
Arnd Bergmann | f696a21 | 2018-06-18 16:20:39 +0200 | [diff] [blame] | 523 | ktime_get_real_ts64(&now); |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 524 | ptp_qoriq_settime(&ptp_qoriq->caps, &now); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 525 | |
| 526 | tmr_ctrl = |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 527 | (ptp_qoriq->tclk_period & TCLK_PERIOD_MASK) << TCLK_PERIOD_SHIFT | |
| 528 | (ptp_qoriq->cksel & CKSEL_MASK) << CKSEL_SHIFT; |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 529 | |
Yangbo Lu | ff54571 | 2019-02-12 12:23:58 +0800 | [diff] [blame] | 530 | spin_lock_init(&ptp_qoriq->lock); |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 531 | spin_lock_irqsave(&ptp_qoriq->lock, flags); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 532 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 533 | regs = &ptp_qoriq->regs; |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 534 | ptp_qoriq->write(®s->ctrl_regs->tmr_ctrl, tmr_ctrl); |
| 535 | ptp_qoriq->write(®s->ctrl_regs->tmr_add, ptp_qoriq->tmr_add); |
| 536 | ptp_qoriq->write(®s->ctrl_regs->tmr_prsc, ptp_qoriq->tmr_prsc); |
| 537 | ptp_qoriq->write(®s->fiper_regs->tmr_fiper1, ptp_qoriq->tmr_fiper1); |
| 538 | ptp_qoriq->write(®s->fiper_regs->tmr_fiper2, ptp_qoriq->tmr_fiper2); |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 539 | set_alarm(ptp_qoriq); |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 540 | ptp_qoriq->write(®s->ctrl_regs->tmr_ctrl, |
| 541 | tmr_ctrl|FIPERST|RTPE|TE|FRD); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 542 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 543 | spin_unlock_irqrestore(&ptp_qoriq->lock, flags); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 544 | |
Yangbo Lu | ff54571 | 2019-02-12 12:23:58 +0800 | [diff] [blame] | 545 | ptp_qoriq->clock = ptp_clock_register(&ptp_qoriq->caps, ptp_qoriq->dev); |
| 546 | if (IS_ERR(ptp_qoriq->clock)) |
| 547 | return PTR_ERR(ptp_qoriq->clock); |
| 548 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 549 | ptp_qoriq->phc_index = ptp_clock_index(ptp_qoriq->clock); |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 550 | ptp_qoriq_create_debugfs(ptp_qoriq); |
Yangbo Lu | ff54571 | 2019-02-12 12:23:58 +0800 | [diff] [blame] | 551 | return 0; |
| 552 | } |
| 553 | EXPORT_SYMBOL_GPL(ptp_qoriq_init); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 554 | |
Yangbo Lu | ff54571 | 2019-02-12 12:23:58 +0800 | [diff] [blame] | 555 | void ptp_qoriq_free(struct ptp_qoriq *ptp_qoriq) |
| 556 | { |
| 557 | struct ptp_qoriq_registers *regs = &ptp_qoriq->regs; |
| 558 | |
Yangbo Lu | f038ddf | 2019-02-12 12:23:59 +0800 | [diff] [blame] | 559 | ptp_qoriq->write(®s->ctrl_regs->tmr_temask, 0); |
| 560 | ptp_qoriq->write(®s->ctrl_regs->tmr_ctrl, 0); |
Yangbo Lu | ff54571 | 2019-02-12 12:23:58 +0800 | [diff] [blame] | 561 | |
| 562 | ptp_qoriq_remove_debugfs(ptp_qoriq); |
| 563 | ptp_clock_unregister(ptp_qoriq->clock); |
| 564 | iounmap(ptp_qoriq->base); |
| 565 | free_irq(ptp_qoriq->irq, ptp_qoriq); |
| 566 | } |
| 567 | EXPORT_SYMBOL_GPL(ptp_qoriq_free); |
| 568 | |
| 569 | static int ptp_qoriq_probe(struct platform_device *dev) |
| 570 | { |
| 571 | struct ptp_qoriq *ptp_qoriq; |
| 572 | int err = -ENOMEM; |
| 573 | void __iomem *base; |
| 574 | |
| 575 | ptp_qoriq = kzalloc(sizeof(*ptp_qoriq), GFP_KERNEL); |
| 576 | if (!ptp_qoriq) |
| 577 | goto no_memory; |
| 578 | |
| 579 | ptp_qoriq->dev = &dev->dev; |
| 580 | |
| 581 | err = -ENODEV; |
| 582 | |
| 583 | ptp_qoriq->irq = platform_get_irq(dev, 0); |
| 584 | if (ptp_qoriq->irq < 0) { |
| 585 | pr_err("irq not in device tree\n"); |
| 586 | goto no_node; |
| 587 | } |
| 588 | if (request_irq(ptp_qoriq->irq, ptp_qoriq_isr, IRQF_SHARED, |
| 589 | DRIVER, ptp_qoriq)) { |
| 590 | pr_err("request_irq failed\n"); |
| 591 | goto no_node; |
| 592 | } |
| 593 | |
| 594 | ptp_qoriq->rsrc = platform_get_resource(dev, IORESOURCE_MEM, 0); |
| 595 | if (!ptp_qoriq->rsrc) { |
| 596 | pr_err("no resource\n"); |
| 597 | goto no_resource; |
| 598 | } |
| 599 | if (request_resource(&iomem_resource, ptp_qoriq->rsrc)) { |
| 600 | pr_err("resource busy\n"); |
| 601 | goto no_resource; |
| 602 | } |
| 603 | |
| 604 | base = ioremap(ptp_qoriq->rsrc->start, |
| 605 | resource_size(ptp_qoriq->rsrc)); |
| 606 | if (!base) { |
| 607 | pr_err("ioremap ptp registers failed\n"); |
| 608 | goto no_ioremap; |
| 609 | } |
| 610 | |
Colin Ian King | 58066ac | 2019-02-19 14:21:20 +0000 | [diff] [blame] | 611 | err = ptp_qoriq_init(ptp_qoriq, base, &ptp_qoriq_caps); |
Yangbo Lu | ff54571 | 2019-02-12 12:23:58 +0800 | [diff] [blame] | 612 | if (err) |
| 613 | goto no_clock; |
| 614 | |
| 615 | platform_set_drvdata(dev, ptp_qoriq); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 616 | return 0; |
| 617 | |
| 618 | no_clock: |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 619 | iounmap(ptp_qoriq->base); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 620 | no_ioremap: |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 621 | release_resource(ptp_qoriq->rsrc); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 622 | no_resource: |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 623 | free_irq(ptp_qoriq->irq, ptp_qoriq); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 624 | no_node: |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 625 | kfree(ptp_qoriq); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 626 | no_memory: |
| 627 | return err; |
| 628 | } |
| 629 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 630 | static int ptp_qoriq_remove(struct platform_device *dev) |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 631 | { |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 632 | struct ptp_qoriq *ptp_qoriq = platform_get_drvdata(dev); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 633 | |
Yangbo Lu | ff54571 | 2019-02-12 12:23:58 +0800 | [diff] [blame] | 634 | ptp_qoriq_free(ptp_qoriq); |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 635 | release_resource(ptp_qoriq->rsrc); |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 636 | kfree(ptp_qoriq); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 637 | return 0; |
| 638 | } |
| 639 | |
| 640 | static const struct of_device_id match_table[] = { |
| 641 | { .compatible = "fsl,etsec-ptp" }, |
Yangbo Lu | a8f62d0 | 2018-06-25 20:37:08 +0800 | [diff] [blame] | 642 | { .compatible = "fsl,fman-ptp-timer" }, |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 643 | {}, |
| 644 | }; |
| 645 | MODULE_DEVICE_TABLE(of, match_table); |
| 646 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 647 | static struct platform_driver ptp_qoriq_driver = { |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 648 | .driver = { |
| 649 | .name = "ptp_qoriq", |
| 650 | .of_match_table = match_table, |
| 651 | }, |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 652 | .probe = ptp_qoriq_probe, |
| 653 | .remove = ptp_qoriq_remove, |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 654 | }; |
| 655 | |
Yangbo Lu | 1e562c8 | 2019-02-12 12:23:56 +0800 | [diff] [blame] | 656 | module_platform_driver(ptp_qoriq_driver); |
Yangbo Lu | ceefc71d | 2018-05-25 12:40:34 +0800 | [diff] [blame] | 657 | |
| 658 | MODULE_AUTHOR("Richard Cochran <richardcochran@gmail.com>"); |
| 659 | MODULE_DESCRIPTION("PTP clock for Freescale QorIQ 1588 timer"); |
| 660 | MODULE_LICENSE("GPL"); |