gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / drivers / ptp / ptp_pch.c
blobdcd6e00c80467c47d4c05286f3363bd6f0f0ba21
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * PTP 1588 clock using the EG20T PCH
5 * Copyright (C) 2010 OMICRON electronics GmbH
6 * Copyright (C) 2011-2012 LAPIS SEMICONDUCTOR Co., LTD.
8 * This code was derived from the IXP46X driver.
9 */
11 #include <linux/device.h>
12 #include <linux/err.h>
13 #include <linux/init.h>
14 #include <linux/interrupt.h>
15 #include <linux/io.h>
16 #include <linux/irq.h>
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/pci.h>
20 #include <linux/ptp_clock_kernel.h>
21 #include <linux/slab.h>
23 #define STATION_ADDR_LEN 20
24 #define PCI_DEVICE_ID_PCH_1588 0x8819
25 #define IO_MEM_BAR 1
27 #define DEFAULT_ADDEND 0xA0000000
28 #define TICKS_NS_SHIFT 5
29 #define N_EXT_TS 2
31 enum pch_status {
32 PCH_SUCCESS,
33 PCH_INVALIDPARAM,
34 PCH_NOTIMESTAMP,
35 PCH_INTERRUPTMODEINUSE,
36 PCH_FAILED,
37 PCH_UNSUPPORTED,
39 /**
40 * struct pch_ts_regs - IEEE 1588 registers
42 struct pch_ts_regs {
43 u32 control;
44 u32 event;
45 u32 addend;
46 u32 accum;
47 u32 test;
48 u32 ts_compare;
49 u32 rsystime_lo;
50 u32 rsystime_hi;
51 u32 systime_lo;
52 u32 systime_hi;
53 u32 trgt_lo;
54 u32 trgt_hi;
55 u32 asms_lo;
56 u32 asms_hi;
57 u32 amms_lo;
58 u32 amms_hi;
59 u32 ch_control;
60 u32 ch_event;
61 u32 tx_snap_lo;
62 u32 tx_snap_hi;
63 u32 rx_snap_lo;
64 u32 rx_snap_hi;
65 u32 src_uuid_lo;
66 u32 src_uuid_hi;
67 u32 can_status;
68 u32 can_snap_lo;
69 u32 can_snap_hi;
70 u32 ts_sel;
71 u32 ts_st[6];
72 u32 reserve1[14];
73 u32 stl_max_set_en;
74 u32 stl_max_set;
75 u32 reserve2[13];
76 u32 srst;
79 #define PCH_TSC_RESET (1 << 0)
80 #define PCH_TSC_TTM_MASK (1 << 1)
81 #define PCH_TSC_ASMS_MASK (1 << 2)
82 #define PCH_TSC_AMMS_MASK (1 << 3)
83 #define PCH_TSC_PPSM_MASK (1 << 4)
84 #define PCH_TSE_TTIPEND (1 << 1)
85 #define PCH_TSE_SNS (1 << 2)
86 #define PCH_TSE_SNM (1 << 3)
87 #define PCH_TSE_PPS (1 << 4)
88 #define PCH_CC_MM (1 << 0)
89 #define PCH_CC_TA (1 << 1)
91 #define PCH_CC_MODE_SHIFT 16
92 #define PCH_CC_MODE_MASK 0x001F0000
93 #define PCH_CC_VERSION (1 << 31)
94 #define PCH_CE_TXS (1 << 0)
95 #define PCH_CE_RXS (1 << 1)
96 #define PCH_CE_OVR (1 << 0)
97 #define PCH_CE_VAL (1 << 1)
98 #define PCH_ECS_ETH (1 << 0)
100 #define PCH_ECS_CAN (1 << 1)
101 #define PCH_STATION_BYTES 6
103 #define PCH_IEEE1588_ETH (1 << 0)
104 #define PCH_IEEE1588_CAN (1 << 1)
106 * struct pch_dev - Driver private data
108 struct pch_dev {
109 struct pch_ts_regs __iomem *regs;
110 struct ptp_clock *ptp_clock;
111 struct ptp_clock_info caps;
112 int exts0_enabled;
113 int exts1_enabled;
115 u32 mem_base;
116 u32 mem_size;
117 u32 irq;
118 struct pci_dev *pdev;
119 spinlock_t register_lock;
123 * struct pch_params - 1588 module parameter
125 struct pch_params {
126 u8 station[STATION_ADDR_LEN];
129 /* structure to hold the module parameters */
130 static struct pch_params pch_param = {
131 "00:00:00:00:00:00"
135 * Register access functions
137 static inline void pch_eth_enable_set(struct pch_dev *chip)
139 u32 val;
140 /* SET the eth_enable bit */
141 val = ioread32(&chip->regs->ts_sel) | (PCH_ECS_ETH);
142 iowrite32(val, (&chip->regs->ts_sel));
145 static u64 pch_systime_read(struct pch_ts_regs __iomem *regs)
147 u64 ns;
148 u32 lo, hi;
150 lo = ioread32(&regs->systime_lo);
151 hi = ioread32(&regs->systime_hi);
153 ns = ((u64) hi) << 32;
154 ns |= lo;
155 ns <<= TICKS_NS_SHIFT;
157 return ns;
160 static void pch_systime_write(struct pch_ts_regs __iomem *regs, u64 ns)
162 u32 hi, lo;
164 ns >>= TICKS_NS_SHIFT;
165 hi = ns >> 32;
166 lo = ns & 0xffffffff;
168 iowrite32(lo, &regs->systime_lo);
169 iowrite32(hi, &regs->systime_hi);
172 static inline void pch_block_reset(struct pch_dev *chip)
174 u32 val;
175 /* Reset Hardware Assist block */
176 val = ioread32(&chip->regs->control) | PCH_TSC_RESET;
177 iowrite32(val, (&chip->regs->control));
178 val = val & ~PCH_TSC_RESET;
179 iowrite32(val, (&chip->regs->control));
182 u32 pch_ch_control_read(struct pci_dev *pdev)
184 struct pch_dev *chip = pci_get_drvdata(pdev);
185 u32 val;
187 val = ioread32(&chip->regs->ch_control);
189 return val;
191 EXPORT_SYMBOL(pch_ch_control_read);
193 void pch_ch_control_write(struct pci_dev *pdev, u32 val)
195 struct pch_dev *chip = pci_get_drvdata(pdev);
197 iowrite32(val, (&chip->regs->ch_control));
199 EXPORT_SYMBOL(pch_ch_control_write);
201 u32 pch_ch_event_read(struct pci_dev *pdev)
203 struct pch_dev *chip = pci_get_drvdata(pdev);
204 u32 val;
206 val = ioread32(&chip->regs->ch_event);
208 return val;
210 EXPORT_SYMBOL(pch_ch_event_read);
212 void pch_ch_event_write(struct pci_dev *pdev, u32 val)
214 struct pch_dev *chip = pci_get_drvdata(pdev);
216 iowrite32(val, (&chip->regs->ch_event));
218 EXPORT_SYMBOL(pch_ch_event_write);
220 u32 pch_src_uuid_lo_read(struct pci_dev *pdev)
222 struct pch_dev *chip = pci_get_drvdata(pdev);
223 u32 val;
225 val = ioread32(&chip->regs->src_uuid_lo);
227 return val;
229 EXPORT_SYMBOL(pch_src_uuid_lo_read);
231 u32 pch_src_uuid_hi_read(struct pci_dev *pdev)
233 struct pch_dev *chip = pci_get_drvdata(pdev);
234 u32 val;
236 val = ioread32(&chip->regs->src_uuid_hi);
238 return val;
240 EXPORT_SYMBOL(pch_src_uuid_hi_read);
242 u64 pch_rx_snap_read(struct pci_dev *pdev)
244 struct pch_dev *chip = pci_get_drvdata(pdev);
245 u64 ns;
246 u32 lo, hi;
248 lo = ioread32(&chip->regs->rx_snap_lo);
249 hi = ioread32(&chip->regs->rx_snap_hi);
251 ns = ((u64) hi) << 32;
252 ns |= lo;
253 ns <<= TICKS_NS_SHIFT;
255 return ns;
257 EXPORT_SYMBOL(pch_rx_snap_read);
259 u64 pch_tx_snap_read(struct pci_dev *pdev)
261 struct pch_dev *chip = pci_get_drvdata(pdev);
262 u64 ns;
263 u32 lo, hi;
265 lo = ioread32(&chip->regs->tx_snap_lo);
266 hi = ioread32(&chip->regs->tx_snap_hi);
268 ns = ((u64) hi) << 32;
269 ns |= lo;
270 ns <<= TICKS_NS_SHIFT;
272 return ns;
274 EXPORT_SYMBOL(pch_tx_snap_read);
276 /* This function enables all 64 bits in system time registers [high & low].
277 This is a work-around for non continuous value in the SystemTime Register*/
278 static void pch_set_system_time_count(struct pch_dev *chip)
280 iowrite32(0x01, &chip->regs->stl_max_set_en);
281 iowrite32(0xFFFFFFFF, &chip->regs->stl_max_set);
282 iowrite32(0x00, &chip->regs->stl_max_set_en);
285 static void pch_reset(struct pch_dev *chip)
287 /* Reset Hardware Assist */
288 pch_block_reset(chip);
290 /* enable all 32 bits in system time registers */
291 pch_set_system_time_count(chip);
295 * pch_set_station_address() - This API sets the station address used by
296 * IEEE 1588 hardware when looking at PTP
297 * traffic on the ethernet interface
298 * @addr: dress which contain the column separated address to be used.
300 int pch_set_station_address(u8 *addr, struct pci_dev *pdev)
302 s32 i;
303 struct pch_dev *chip = pci_get_drvdata(pdev);
305 /* Verify the parameter */
306 if ((chip->regs == NULL) || addr == (u8 *)NULL) {
307 dev_err(&pdev->dev,
308 "invalid params returning PCH_INVALIDPARAM\n");
309 return PCH_INVALIDPARAM;
311 /* For all station address bytes */
312 for (i = 0; i < PCH_STATION_BYTES; i++) {
313 u32 val;
314 s32 tmp;
316 tmp = hex_to_bin(addr[i * 3]);
317 if (tmp < 0) {
318 dev_err(&pdev->dev,
319 "invalid params returning PCH_INVALIDPARAM\n");
320 return PCH_INVALIDPARAM;
322 val = tmp * 16;
323 tmp = hex_to_bin(addr[(i * 3) + 1]);
324 if (tmp < 0) {
325 dev_err(&pdev->dev,
326 "invalid params returning PCH_INVALIDPARAM\n");
327 return PCH_INVALIDPARAM;
329 val += tmp;
330 /* Expects ':' separated addresses */
331 if ((i < 5) && (addr[(i * 3) + 2] != ':')) {
332 dev_err(&pdev->dev,
333 "invalid params returning PCH_INVALIDPARAM\n");
334 return PCH_INVALIDPARAM;
337 /* Ideally we should set the address only after validating
338 entire string */
339 dev_dbg(&pdev->dev, "invoking pch_station_set\n");
340 iowrite32(val, &chip->regs->ts_st[i]);
342 return 0;
344 EXPORT_SYMBOL(pch_set_station_address);
347 * Interrupt service routine
349 static irqreturn_t isr(int irq, void *priv)
351 struct pch_dev *pch_dev = priv;
352 struct pch_ts_regs __iomem *regs = pch_dev->regs;
353 struct ptp_clock_event event;
354 u32 ack = 0, lo, hi, val;
356 val = ioread32(&regs->event);
358 if (val & PCH_TSE_SNS) {
359 ack |= PCH_TSE_SNS;
360 if (pch_dev->exts0_enabled) {
361 hi = ioread32(&regs->asms_hi);
362 lo = ioread32(&regs->asms_lo);
363 event.type = PTP_CLOCK_EXTTS;
364 event.index = 0;
365 event.timestamp = ((u64) hi) << 32;
366 event.timestamp |= lo;
367 event.timestamp <<= TICKS_NS_SHIFT;
368 ptp_clock_event(pch_dev->ptp_clock, &event);
372 if (val & PCH_TSE_SNM) {
373 ack |= PCH_TSE_SNM;
374 if (pch_dev->exts1_enabled) {
375 hi = ioread32(&regs->amms_hi);
376 lo = ioread32(&regs->amms_lo);
377 event.type = PTP_CLOCK_EXTTS;
378 event.index = 1;
379 event.timestamp = ((u64) hi) << 32;
380 event.timestamp |= lo;
381 event.timestamp <<= TICKS_NS_SHIFT;
382 ptp_clock_event(pch_dev->ptp_clock, &event);
386 if (val & PCH_TSE_TTIPEND)
387 ack |= PCH_TSE_TTIPEND; /* this bit seems to be always set */
389 if (ack) {
390 iowrite32(ack, &regs->event);
391 return IRQ_HANDLED;
392 } else
393 return IRQ_NONE;
397 * PTP clock operations
400 static int ptp_pch_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
402 u64 adj;
403 u32 diff, addend;
404 int neg_adj = 0;
405 struct pch_dev *pch_dev = container_of(ptp, struct pch_dev, caps);
406 struct pch_ts_regs __iomem *regs = pch_dev->regs;
408 if (ppb < 0) {
409 neg_adj = 1;
410 ppb = -ppb;
412 addend = DEFAULT_ADDEND;
413 adj = addend;
414 adj *= ppb;
415 diff = div_u64(adj, 1000000000ULL);
417 addend = neg_adj ? addend - diff : addend + diff;
419 iowrite32(addend, &regs->addend);
421 return 0;
424 static int ptp_pch_adjtime(struct ptp_clock_info *ptp, s64 delta)
426 s64 now;
427 unsigned long flags;
428 struct pch_dev *pch_dev = container_of(ptp, struct pch_dev, caps);
429 struct pch_ts_regs __iomem *regs = pch_dev->regs;
431 spin_lock_irqsave(&pch_dev->register_lock, flags);
432 now = pch_systime_read(regs);
433 now += delta;
434 pch_systime_write(regs, now);
435 spin_unlock_irqrestore(&pch_dev->register_lock, flags);
437 return 0;
440 static int ptp_pch_gettime(struct ptp_clock_info *ptp, struct timespec64 *ts)
442 u64 ns;
443 unsigned long flags;
444 struct pch_dev *pch_dev = container_of(ptp, struct pch_dev, caps);
445 struct pch_ts_regs __iomem *regs = pch_dev->regs;
447 spin_lock_irqsave(&pch_dev->register_lock, flags);
448 ns = pch_systime_read(regs);
449 spin_unlock_irqrestore(&pch_dev->register_lock, flags);
451 *ts = ns_to_timespec64(ns);
452 return 0;
455 static int ptp_pch_settime(struct ptp_clock_info *ptp,
456 const struct timespec64 *ts)
458 u64 ns;
459 unsigned long flags;
460 struct pch_dev *pch_dev = container_of(ptp, struct pch_dev, caps);
461 struct pch_ts_regs __iomem *regs = pch_dev->regs;
463 ns = timespec64_to_ns(ts);
465 spin_lock_irqsave(&pch_dev->register_lock, flags);
466 pch_systime_write(regs, ns);
467 spin_unlock_irqrestore(&pch_dev->register_lock, flags);
469 return 0;
472 static int ptp_pch_enable(struct ptp_clock_info *ptp,
473 struct ptp_clock_request *rq, int on)
475 struct pch_dev *pch_dev = container_of(ptp, struct pch_dev, caps);
477 switch (rq->type) {
478 case PTP_CLK_REQ_EXTTS:
479 switch (rq->extts.index) {
480 case 0:
481 pch_dev->exts0_enabled = on ? 1 : 0;
482 break;
483 case 1:
484 pch_dev->exts1_enabled = on ? 1 : 0;
485 break;
486 default:
487 return -EINVAL;
489 return 0;
490 default:
491 break;
494 return -EOPNOTSUPP;
497 static const struct ptp_clock_info ptp_pch_caps = {
498 .owner = THIS_MODULE,
499 .name = "PCH timer",
500 .max_adj = 50000000,
501 .n_ext_ts = N_EXT_TS,
502 .n_pins = 0,
503 .pps = 0,
504 .adjfreq = ptp_pch_adjfreq,
505 .adjtime = ptp_pch_adjtime,
506 .gettime64 = ptp_pch_gettime,
507 .settime64 = ptp_pch_settime,
508 .enable = ptp_pch_enable,
512 #ifdef CONFIG_PM
513 static s32 pch_suspend(struct pci_dev *pdev, pm_message_t state)
515 pci_disable_device(pdev);
516 pci_enable_wake(pdev, PCI_D3hot, 0);
518 if (pci_save_state(pdev) != 0) {
519 dev_err(&pdev->dev, "could not save PCI config state\n");
520 return -ENOMEM;
522 pci_set_power_state(pdev, pci_choose_state(pdev, state));
524 return 0;
527 static s32 pch_resume(struct pci_dev *pdev)
529 s32 ret;
531 pci_set_power_state(pdev, PCI_D0);
532 pci_restore_state(pdev);
533 ret = pci_enable_device(pdev);
534 if (ret) {
535 dev_err(&pdev->dev, "pci_enable_device failed\n");
536 return ret;
538 pci_enable_wake(pdev, PCI_D3hot, 0);
539 return 0;
541 #else
542 #define pch_suspend NULL
543 #define pch_resume NULL
544 #endif
546 static void pch_remove(struct pci_dev *pdev)
548 struct pch_dev *chip = pci_get_drvdata(pdev);
550 ptp_clock_unregister(chip->ptp_clock);
551 /* free the interrupt */
552 if (pdev->irq != 0)
553 free_irq(pdev->irq, chip);
555 /* unmap the virtual IO memory space */
556 if (chip->regs != NULL) {
557 iounmap(chip->regs);
558 chip->regs = NULL;
560 /* release the reserved IO memory space */
561 if (chip->mem_base != 0) {
562 release_mem_region(chip->mem_base, chip->mem_size);
563 chip->mem_base = 0;
565 pci_disable_device(pdev);
566 kfree(chip);
567 dev_info(&pdev->dev, "complete\n");
570 static s32
571 pch_probe(struct pci_dev *pdev, const struct pci_device_id *id)
573 s32 ret;
574 unsigned long flags;
575 struct pch_dev *chip;
577 chip = kzalloc(sizeof(struct pch_dev), GFP_KERNEL);
578 if (chip == NULL)
579 return -ENOMEM;
581 /* enable the 1588 pci device */
582 ret = pci_enable_device(pdev);
583 if (ret != 0) {
584 dev_err(&pdev->dev, "could not enable the pci device\n");
585 goto err_pci_en;
588 chip->mem_base = pci_resource_start(pdev, IO_MEM_BAR);
589 if (!chip->mem_base) {
590 dev_err(&pdev->dev, "could not locate IO memory address\n");
591 ret = -ENODEV;
592 goto err_pci_start;
595 /* retrieve the available length of the IO memory space */
596 chip->mem_size = pci_resource_len(pdev, IO_MEM_BAR);
598 /* allocate the memory for the device registers */
599 if (!request_mem_region(chip->mem_base, chip->mem_size, "1588_regs")) {
600 dev_err(&pdev->dev,
601 "could not allocate register memory space\n");
602 ret = -EBUSY;
603 goto err_req_mem_region;
606 /* get the virtual address to the 1588 registers */
607 chip->regs = ioremap(chip->mem_base, chip->mem_size);
609 if (!chip->regs) {
610 dev_err(&pdev->dev, "Could not get virtual address\n");
611 ret = -ENOMEM;
612 goto err_ioremap;
615 chip->caps = ptp_pch_caps;
616 chip->ptp_clock = ptp_clock_register(&chip->caps, &pdev->dev);
617 if (IS_ERR(chip->ptp_clock)) {
618 ret = PTR_ERR(chip->ptp_clock);
619 goto err_ptp_clock_reg;
622 spin_lock_init(&chip->register_lock);
624 ret = request_irq(pdev->irq, &isr, IRQF_SHARED, KBUILD_MODNAME, chip);
625 if (ret != 0) {
626 dev_err(&pdev->dev, "failed to get irq %d\n", pdev->irq);
627 goto err_req_irq;
630 /* indicate success */
631 chip->irq = pdev->irq;
632 chip->pdev = pdev;
633 pci_set_drvdata(pdev, chip);
635 spin_lock_irqsave(&chip->register_lock, flags);
636 /* reset the ieee1588 h/w */
637 pch_reset(chip);
639 iowrite32(DEFAULT_ADDEND, &chip->regs->addend);
640 iowrite32(1, &chip->regs->trgt_lo);
641 iowrite32(0, &chip->regs->trgt_hi);
642 iowrite32(PCH_TSE_TTIPEND, &chip->regs->event);
644 pch_eth_enable_set(chip);
646 if (strcmp(pch_param.station, "00:00:00:00:00:00") != 0) {
647 if (pch_set_station_address(pch_param.station, pdev) != 0) {
648 dev_err(&pdev->dev,
649 "Invalid station address parameter\n"
650 "Module loaded but station address not set correctly\n"
654 spin_unlock_irqrestore(&chip->register_lock, flags);
655 return 0;
657 err_req_irq:
658 ptp_clock_unregister(chip->ptp_clock);
659 err_ptp_clock_reg:
660 iounmap(chip->regs);
661 chip->regs = NULL;
663 err_ioremap:
664 release_mem_region(chip->mem_base, chip->mem_size);
666 err_req_mem_region:
667 chip->mem_base = 0;
669 err_pci_start:
670 pci_disable_device(pdev);
672 err_pci_en:
673 kfree(chip);
674 dev_err(&pdev->dev, "probe failed(ret=0x%x)\n", ret);
676 return ret;
679 static const struct pci_device_id pch_ieee1588_pcidev_id[] = {
681 .vendor = PCI_VENDOR_ID_INTEL,
682 .device = PCI_DEVICE_ID_PCH_1588
687 static struct pci_driver pch_driver = {
688 .name = KBUILD_MODNAME,
689 .id_table = pch_ieee1588_pcidev_id,
690 .probe = pch_probe,
691 .remove = pch_remove,
692 .suspend = pch_suspend,
693 .resume = pch_resume,
696 static void __exit ptp_pch_exit(void)
698 pci_unregister_driver(&pch_driver);
701 static s32 __init ptp_pch_init(void)
703 s32 ret;
705 /* register the driver with the pci core */
706 ret = pci_register_driver(&pch_driver);
708 return ret;
711 module_init(ptp_pch_init);
712 module_exit(ptp_pch_exit);
714 module_param_string(station,
715 pch_param.station, sizeof(pch_param.station), 0444);
716 MODULE_PARM_DESC(station,
717 "IEEE 1588 station address to use - colon separated hex values");
719 MODULE_AUTHOR("LAPIS SEMICONDUCTOR, <tshimizu818@gmail.com>");
720 MODULE_DESCRIPTION("PTP clock using the EG20T timer");
721 MODULE_LICENSE("GPL");