gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / drivers / pci / pcie / ptm.c
blob9361f3aa26ab8e6a0bfa100b48152f14bff29bc3
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * PCI Express Precision Time Measurement
4 * Copyright (c) 2016, Intel Corporation.
5 */
7 #include <linux/module.h>
8 #include <linux/init.h>
9 #include <linux/pci.h>
10 #include "../pci.h"
12 static void pci_ptm_info(struct pci_dev *dev)
14 char clock_desc[8];
16 switch (dev->ptm_granularity) {
17 case 0:
18 snprintf(clock_desc, sizeof(clock_desc), "unknown");
19 break;
20 case 255:
21 snprintf(clock_desc, sizeof(clock_desc), ">254ns");
22 break;
23 default:
24 snprintf(clock_desc, sizeof(clock_desc), "%uns",
25 dev->ptm_granularity);
26 break;
28 pci_info(dev, "PTM enabled%s, %s granularity\n",
29 dev->ptm_root ? " (root)" : "", clock_desc);
32 void pci_ptm_init(struct pci_dev *dev)
34 int pos;
35 u32 cap, ctrl;
36 u8 local_clock;
37 struct pci_dev *ups;
39 if (!pci_is_pcie(dev))
40 return;
42 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_PTM);
43 if (!pos)
44 return;
47 * Enable PTM only on interior devices (root ports, switch ports,
48 * etc.) on the assumption that it causes no link traffic until an
49 * endpoint enables it.
51 if ((pci_pcie_type(dev) == PCI_EXP_TYPE_ENDPOINT ||
52 pci_pcie_type(dev) == PCI_EXP_TYPE_RC_END))
53 return;
55 pci_read_config_dword(dev, pos + PCI_PTM_CAP, &cap);
56 local_clock = (cap & PCI_PTM_GRANULARITY_MASK) >> 8;
59 * There's no point in enabling PTM unless it's enabled in the
60 * upstream device or this device can be a PTM Root itself. Per
61 * the spec recommendation (PCIe r3.1, sec 7.32.3), select the
62 * furthest upstream Time Source as the PTM Root.
64 ups = pci_upstream_bridge(dev);
65 if (ups && ups->ptm_enabled) {
66 ctrl = PCI_PTM_CTRL_ENABLE;
67 if (ups->ptm_granularity == 0)
68 dev->ptm_granularity = 0;
69 else if (ups->ptm_granularity > local_clock)
70 dev->ptm_granularity = ups->ptm_granularity;
71 } else {
72 if (cap & PCI_PTM_CAP_ROOT) {
73 ctrl = PCI_PTM_CTRL_ENABLE | PCI_PTM_CTRL_ROOT;
74 dev->ptm_root = 1;
75 dev->ptm_granularity = local_clock;
76 } else
77 return;
80 ctrl |= dev->ptm_granularity << 8;
81 pci_write_config_dword(dev, pos + PCI_PTM_CTRL, ctrl);
82 dev->ptm_enabled = 1;
84 pci_ptm_info(dev);
87 int pci_enable_ptm(struct pci_dev *dev, u8 *granularity)
89 int pos;
90 u32 cap, ctrl;
91 struct pci_dev *ups;
93 if (!pci_is_pcie(dev))
94 return -EINVAL;
96 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_PTM);
97 if (!pos)
98 return -EINVAL;
100 pci_read_config_dword(dev, pos + PCI_PTM_CAP, &cap);
101 if (!(cap & PCI_PTM_CAP_REQ))
102 return -EINVAL;
105 * For a PCIe Endpoint, PTM is only useful if the endpoint can
106 * issue PTM requests to upstream devices that have PTM enabled.
108 * For Root Complex Integrated Endpoints, there is no upstream
109 * device, so there must be some implementation-specific way to
110 * associate the endpoint with a time source.
112 if (pci_pcie_type(dev) == PCI_EXP_TYPE_ENDPOINT) {
113 ups = pci_upstream_bridge(dev);
114 if (!ups || !ups->ptm_enabled)
115 return -EINVAL;
117 dev->ptm_granularity = ups->ptm_granularity;
118 } else if (pci_pcie_type(dev) == PCI_EXP_TYPE_RC_END) {
119 dev->ptm_granularity = 0;
120 } else
121 return -EINVAL;
123 ctrl = PCI_PTM_CTRL_ENABLE;
124 ctrl |= dev->ptm_granularity << 8;
125 pci_write_config_dword(dev, pos + PCI_PTM_CTRL, ctrl);
126 dev->ptm_enabled = 1;
128 pci_ptm_info(dev);
130 if (granularity)
131 *granularity = dev->ptm_granularity;
132 return 0;
134 EXPORT_SYMBOL(pci_enable_ptm);