xref: /openbmc/linux/drivers/ptp/ptp_ocp.c (revision 1a575cde)
1a7e1abadSJonathan Lemon // SPDX-License-Identifier: GPL-2.0-only
2a7e1abadSJonathan Lemon /* Copyright (c) 2020 Facebook */
3a7e1abadSJonathan Lemon 
4a7e1abadSJonathan Lemon #include <linux/err.h>
5a7e1abadSJonathan Lemon #include <linux/kernel.h>
6a7e1abadSJonathan Lemon #include <linux/module.h>
7f67bf662SJonathan Lemon #include <linux/debugfs.h>
8a7e1abadSJonathan Lemon #include <linux/init.h>
9a7e1abadSJonathan Lemon #include <linux/pci.h>
10773bda96SJonathan Lemon #include <linux/serial_8250.h>
11773bda96SJonathan Lemon #include <linux/clkdev.h>
12773bda96SJonathan Lemon #include <linux/clk-provider.h>
13773bda96SJonathan Lemon #include <linux/platform_device.h>
14a7e1abadSJonathan Lemon #include <linux/ptp_clock_kernel.h>
15773bda96SJonathan Lemon #include <linux/spi/spi.h>
16773bda96SJonathan Lemon #include <linux/spi/xilinx_spi.h>
17773bda96SJonathan Lemon #include <net/devlink.h>
18773bda96SJonathan Lemon #include <linux/i2c.h>
19773bda96SJonathan Lemon #include <linux/mtd/mtd.h>
20a7e1abadSJonathan Lemon 
21773bda96SJonathan Lemon #ifndef PCI_VENDOR_ID_FACEBOOK
22773bda96SJonathan Lemon #define PCI_VENDOR_ID_FACEBOOK 0x1d9b
23773bda96SJonathan Lemon #endif
24773bda96SJonathan Lemon 
25773bda96SJonathan Lemon #ifndef PCI_DEVICE_ID_FACEBOOK_TIMECARD
26773bda96SJonathan Lemon #define PCI_DEVICE_ID_FACEBOOK_TIMECARD 0x0400
27773bda96SJonathan Lemon #endif
28773bda96SJonathan Lemon 
29773bda96SJonathan Lemon static struct class timecard_class = {
30773bda96SJonathan Lemon 	.owner		= THIS_MODULE,
31773bda96SJonathan Lemon 	.name		= "timecard",
32a7e1abadSJonathan Lemon };
33a7e1abadSJonathan Lemon 
34a7e1abadSJonathan Lemon struct ocp_reg {
35a7e1abadSJonathan Lemon 	u32	ctrl;
36a7e1abadSJonathan Lemon 	u32	status;
37a7e1abadSJonathan Lemon 	u32	select;
38a7e1abadSJonathan Lemon 	u32	version;
39a7e1abadSJonathan Lemon 	u32	time_ns;
40a7e1abadSJonathan Lemon 	u32	time_sec;
41a7e1abadSJonathan Lemon 	u32	__pad0[2];
42a7e1abadSJonathan Lemon 	u32	adjust_ns;
43a7e1abadSJonathan Lemon 	u32	adjust_sec;
44a7e1abadSJonathan Lemon 	u32	__pad1[2];
45a7e1abadSJonathan Lemon 	u32	offset_ns;
46a7e1abadSJonathan Lemon 	u32	offset_window_ns;
47773bda96SJonathan Lemon 	u32	__pad2[2];
48773bda96SJonathan Lemon 	u32	drift_ns;
49773bda96SJonathan Lemon 	u32	drift_window_ns;
50773bda96SJonathan Lemon 	u32	__pad3[6];
51773bda96SJonathan Lemon 	u32	servo_offset_p;
52773bda96SJonathan Lemon 	u32	servo_offset_i;
53773bda96SJonathan Lemon 	u32	servo_drift_p;
54773bda96SJonathan Lemon 	u32	servo_drift_i;
55a7e1abadSJonathan Lemon };
56a7e1abadSJonathan Lemon 
57a7e1abadSJonathan Lemon #define OCP_CTRL_ENABLE		BIT(0)
58a7e1abadSJonathan Lemon #define OCP_CTRL_ADJUST_TIME	BIT(1)
59a7e1abadSJonathan Lemon #define OCP_CTRL_ADJUST_OFFSET	BIT(2)
60773bda96SJonathan Lemon #define OCP_CTRL_ADJUST_DRIFT	BIT(3)
61773bda96SJonathan Lemon #define OCP_CTRL_ADJUST_SERVO	BIT(8)
62a7e1abadSJonathan Lemon #define OCP_CTRL_READ_TIME_REQ	BIT(30)
63a7e1abadSJonathan Lemon #define OCP_CTRL_READ_TIME_DONE	BIT(31)
64a7e1abadSJonathan Lemon 
65a7e1abadSJonathan Lemon #define OCP_STATUS_IN_SYNC	BIT(0)
66773bda96SJonathan Lemon #define OCP_STATUS_IN_HOLDOVER	BIT(1)
67a7e1abadSJonathan Lemon 
68a7e1abadSJonathan Lemon #define OCP_SELECT_CLK_NONE	0
69773bda96SJonathan Lemon #define OCP_SELECT_CLK_REG	0xfe
70a7e1abadSJonathan Lemon 
71a7e1abadSJonathan Lemon struct tod_reg {
72a7e1abadSJonathan Lemon 	u32	ctrl;
73a7e1abadSJonathan Lemon 	u32	status;
74a7e1abadSJonathan Lemon 	u32	uart_polarity;
75a7e1abadSJonathan Lemon 	u32	version;
76065efcc5SJonathan Lemon 	u32	adj_sec;
77a7e1abadSJonathan Lemon 	u32	__pad0[3];
78a7e1abadSJonathan Lemon 	u32	uart_baud;
79a7e1abadSJonathan Lemon 	u32	__pad1[3];
80a7e1abadSJonathan Lemon 	u32	utc_status;
81a7e1abadSJonathan Lemon 	u32	leap;
82a7e1abadSJonathan Lemon };
83a7e1abadSJonathan Lemon 
84a7e1abadSJonathan Lemon #define TOD_CTRL_PROTOCOL	BIT(28)
85a7e1abadSJonathan Lemon #define TOD_CTRL_DISABLE_FMT_A	BIT(17)
86a7e1abadSJonathan Lemon #define TOD_CTRL_DISABLE_FMT_B	BIT(16)
87a7e1abadSJonathan Lemon #define TOD_CTRL_ENABLE		BIT(0)
88a7e1abadSJonathan Lemon #define TOD_CTRL_GNSS_MASK	((1U << 4) - 1)
89a7e1abadSJonathan Lemon #define TOD_CTRL_GNSS_SHIFT	24
90a7e1abadSJonathan Lemon 
91a7e1abadSJonathan Lemon #define TOD_STATUS_UTC_MASK	0xff
92a7e1abadSJonathan Lemon #define TOD_STATUS_UTC_VALID	BIT(8)
93a7e1abadSJonathan Lemon #define TOD_STATUS_LEAP_VALID	BIT(16)
94a7e1abadSJonathan Lemon 
95773bda96SJonathan Lemon struct ts_reg {
96773bda96SJonathan Lemon 	u32	enable;
97773bda96SJonathan Lemon 	u32	error;
98773bda96SJonathan Lemon 	u32	polarity;
99773bda96SJonathan Lemon 	u32	version;
100773bda96SJonathan Lemon 	u32	__pad0[4];
101773bda96SJonathan Lemon 	u32	cable_delay;
102773bda96SJonathan Lemon 	u32	__pad1[3];
103773bda96SJonathan Lemon 	u32	intr;
104773bda96SJonathan Lemon 	u32	intr_mask;
105773bda96SJonathan Lemon 	u32	event_count;
106773bda96SJonathan Lemon 	u32	__pad2[1];
107773bda96SJonathan Lemon 	u32	ts_count;
108773bda96SJonathan Lemon 	u32	time_ns;
109773bda96SJonathan Lemon 	u32	time_sec;
110773bda96SJonathan Lemon 	u32	data_width;
111773bda96SJonathan Lemon 	u32	data;
112773bda96SJonathan Lemon };
113773bda96SJonathan Lemon 
114773bda96SJonathan Lemon struct pps_reg {
115773bda96SJonathan Lemon 	u32	ctrl;
116773bda96SJonathan Lemon 	u32	status;
1170d43d4f2SJonathan Lemon 	u32	__pad0[6];
1180d43d4f2SJonathan Lemon 	u32	cable_delay;
119773bda96SJonathan Lemon };
120773bda96SJonathan Lemon 
121773bda96SJonathan Lemon #define PPS_STATUS_FILTER_ERR	BIT(0)
122773bda96SJonathan Lemon #define PPS_STATUS_SUPERV_ERR	BIT(1)
123773bda96SJonathan Lemon 
124773bda96SJonathan Lemon struct img_reg {
125773bda96SJonathan Lemon 	u32	version;
126773bda96SJonathan Lemon };
127773bda96SJonathan Lemon 
128e1daf0ecSJonathan Lemon struct gpio_reg {
129e1daf0ecSJonathan Lemon 	u32	gpio1;
130e1daf0ecSJonathan Lemon 	u32	__pad0;
131e1daf0ecSJonathan Lemon 	u32	gpio2;
132e1daf0ecSJonathan Lemon 	u32	__pad1;
133e1daf0ecSJonathan Lemon };
134e1daf0ecSJonathan Lemon 
1356baf2925SJonathan Lemon struct irig_master_reg {
1366baf2925SJonathan Lemon 	u32	ctrl;
1376baf2925SJonathan Lemon 	u32	status;
1386baf2925SJonathan Lemon 	u32	__pad0;
1396baf2925SJonathan Lemon 	u32	version;
1406baf2925SJonathan Lemon 	u32	adj_sec;
1416baf2925SJonathan Lemon 	u32	mode_ctrl;
1426baf2925SJonathan Lemon };
1436baf2925SJonathan Lemon 
1446baf2925SJonathan Lemon #define IRIG_M_CTRL_ENABLE	BIT(0)
1456baf2925SJonathan Lemon 
1466baf2925SJonathan Lemon struct irig_slave_reg {
1476baf2925SJonathan Lemon 	u32	ctrl;
1486baf2925SJonathan Lemon 	u32	status;
1496baf2925SJonathan Lemon 	u32	__pad0;
1506baf2925SJonathan Lemon 	u32	version;
1516baf2925SJonathan Lemon 	u32	adj_sec;
1526baf2925SJonathan Lemon 	u32	mode_ctrl;
1536baf2925SJonathan Lemon };
1546baf2925SJonathan Lemon 
1556baf2925SJonathan Lemon #define IRIG_S_CTRL_ENABLE	BIT(0)
1566baf2925SJonathan Lemon 
1576baf2925SJonathan Lemon struct dcf_master_reg {
1586baf2925SJonathan Lemon 	u32	ctrl;
1596baf2925SJonathan Lemon 	u32	status;
1606baf2925SJonathan Lemon 	u32	__pad0;
1616baf2925SJonathan Lemon 	u32	version;
1626baf2925SJonathan Lemon 	u32	adj_sec;
1636baf2925SJonathan Lemon };
1646baf2925SJonathan Lemon 
1656baf2925SJonathan Lemon #define DCF_M_CTRL_ENABLE	BIT(0)
1666baf2925SJonathan Lemon 
1676baf2925SJonathan Lemon struct dcf_slave_reg {
1686baf2925SJonathan Lemon 	u32	ctrl;
1696baf2925SJonathan Lemon 	u32	status;
1706baf2925SJonathan Lemon 	u32	__pad0;
1716baf2925SJonathan Lemon 	u32	version;
1726baf2925SJonathan Lemon 	u32	adj_sec;
1736baf2925SJonathan Lemon };
1746baf2925SJonathan Lemon 
1756baf2925SJonathan Lemon #define DCF_S_CTRL_ENABLE	BIT(0)
1766baf2925SJonathan Lemon 
177773bda96SJonathan Lemon struct ptp_ocp_flash_info {
178773bda96SJonathan Lemon 	const char *name;
179773bda96SJonathan Lemon 	int pci_offset;
180773bda96SJonathan Lemon 	int data_size;
181773bda96SJonathan Lemon 	void *data;
182773bda96SJonathan Lemon };
183773bda96SJonathan Lemon 
1841618df6aSJonathan Lemon struct ptp_ocp_i2c_info {
1851618df6aSJonathan Lemon 	const char *name;
1861618df6aSJonathan Lemon 	unsigned long fixed_rate;
1871618df6aSJonathan Lemon 	size_t data_size;
1881618df6aSJonathan Lemon 	void *data;
1891618df6aSJonathan Lemon };
1901618df6aSJonathan Lemon 
191773bda96SJonathan Lemon struct ptp_ocp_ext_info {
192773bda96SJonathan Lemon 	int index;
193773bda96SJonathan Lemon 	irqreturn_t (*irq_fcn)(int irq, void *priv);
194a62a56d0SJonathan Lemon 	int (*enable)(void *priv, u32 req, bool enable);
195773bda96SJonathan Lemon };
196773bda96SJonathan Lemon 
197773bda96SJonathan Lemon struct ptp_ocp_ext_src {
198773bda96SJonathan Lemon 	void __iomem		*mem;
199773bda96SJonathan Lemon 	struct ptp_ocp		*bp;
200773bda96SJonathan Lemon 	struct ptp_ocp_ext_info	*info;
201773bda96SJonathan Lemon 	int			irq_vec;
202773bda96SJonathan Lemon };
203773bda96SJonathan Lemon 
204a7e1abadSJonathan Lemon struct ptp_ocp {
205a7e1abadSJonathan Lemon 	struct pci_dev		*pdev;
206773bda96SJonathan Lemon 	struct device		dev;
207a7e1abadSJonathan Lemon 	spinlock_t		lock;
208a7e1abadSJonathan Lemon 	struct ocp_reg __iomem	*reg;
209a7e1abadSJonathan Lemon 	struct tod_reg __iomem	*tod;
2100d43d4f2SJonathan Lemon 	struct pps_reg __iomem	*pps_to_ext;
2110d43d4f2SJonathan Lemon 	struct pps_reg __iomem	*pps_to_clk;
212f67bf662SJonathan Lemon 	struct gpio_reg __iomem	*pps_select;
213e1daf0ecSJonathan Lemon 	struct gpio_reg __iomem	*sma;
2146baf2925SJonathan Lemon 	struct irig_master_reg	__iomem *irig_out;
2156baf2925SJonathan Lemon 	struct irig_slave_reg	__iomem *irig_in;
2166baf2925SJonathan Lemon 	struct dcf_master_reg	__iomem *dcf_out;
2176baf2925SJonathan Lemon 	struct dcf_slave_reg	__iomem *dcf_in;
218e3516bb4SJonathan Lemon 	struct tod_reg		__iomem *nmea_out;
219773bda96SJonathan Lemon 	struct ptp_ocp_ext_src	*pps;
220773bda96SJonathan Lemon 	struct ptp_ocp_ext_src	*ts0;
221773bda96SJonathan Lemon 	struct ptp_ocp_ext_src	*ts1;
222dcf61469SJonathan Lemon 	struct ptp_ocp_ext_src	*ts2;
223773bda96SJonathan Lemon 	struct img_reg __iomem	*image;
224a7e1abadSJonathan Lemon 	struct ptp_clock	*ptp;
225a7e1abadSJonathan Lemon 	struct ptp_clock_info	ptp_info;
226773bda96SJonathan Lemon 	struct platform_device	*i2c_ctrl;
227773bda96SJonathan Lemon 	struct platform_device	*spi_flash;
228773bda96SJonathan Lemon 	struct clk_hw		*i2c_clk;
229773bda96SJonathan Lemon 	struct timer_list	watchdog;
230f67bf662SJonathan Lemon 	struct dentry		*debug_root;
231ef0cfb34SJonathan Lemon 	time64_t		gnss_lost;
232773bda96SJonathan Lemon 	int			id;
233773bda96SJonathan Lemon 	int			n_irqs;
234ef0cfb34SJonathan Lemon 	int			gnss_port;
23571d7e085SJonathan Lemon 	int			gnss2_port;
236773bda96SJonathan Lemon 	int			mac_port;	/* miniature atomic clock */
237e3516bb4SJonathan Lemon 	int			nmea_port;
238773bda96SJonathan Lemon 	u8			serial[6];
239773bda96SJonathan Lemon 	bool			has_serial;
240a62a56d0SJonathan Lemon 	u32			pps_req_map;
24189260d87SJonathan Lemon 	int			flash_start;
24289260d87SJonathan Lemon 	u32			utc_tai_offset;
2431acffc6eSJonathan Lemon 	u32			ts_window_adjust;
244a7e1abadSJonathan Lemon };
245a7e1abadSJonathan Lemon 
246a62a56d0SJonathan Lemon #define OCP_REQ_TIMESTAMP	BIT(0)
247a62a56d0SJonathan Lemon #define OCP_REQ_PPS		BIT(1)
248a62a56d0SJonathan Lemon 
249773bda96SJonathan Lemon struct ocp_resource {
250773bda96SJonathan Lemon 	unsigned long offset;
251773bda96SJonathan Lemon 	int size;
252773bda96SJonathan Lemon 	int irq_vec;
253773bda96SJonathan Lemon 	int (*setup)(struct ptp_ocp *bp, struct ocp_resource *r);
254773bda96SJonathan Lemon 	void *extra;
255773bda96SJonathan Lemon 	unsigned long bp_offset;
25656ec4403SJonathan Lemon 	const char * const name;
257773bda96SJonathan Lemon };
258773bda96SJonathan Lemon 
259773bda96SJonathan Lemon static int ptp_ocp_register_mem(struct ptp_ocp *bp, struct ocp_resource *r);
260773bda96SJonathan Lemon static int ptp_ocp_register_i2c(struct ptp_ocp *bp, struct ocp_resource *r);
261773bda96SJonathan Lemon static int ptp_ocp_register_spi(struct ptp_ocp *bp, struct ocp_resource *r);
262773bda96SJonathan Lemon static int ptp_ocp_register_serial(struct ptp_ocp *bp, struct ocp_resource *r);
263773bda96SJonathan Lemon static int ptp_ocp_register_ext(struct ptp_ocp *bp, struct ocp_resource *r);
264773bda96SJonathan Lemon static int ptp_ocp_fb_board_init(struct ptp_ocp *bp, struct ocp_resource *r);
265773bda96SJonathan Lemon static irqreturn_t ptp_ocp_ts_irq(int irq, void *priv);
266a62a56d0SJonathan Lemon static int ptp_ocp_ts_enable(void *priv, u32 req, bool enable);
267773bda96SJonathan Lemon 
268773bda96SJonathan Lemon #define bp_assign_entry(bp, res, val) ({				\
269773bda96SJonathan Lemon 	uintptr_t addr = (uintptr_t)(bp) + (res)->bp_offset;		\
270773bda96SJonathan Lemon 	*(typeof(val) *)addr = val;					\
271773bda96SJonathan Lemon })
272773bda96SJonathan Lemon 
273773bda96SJonathan Lemon #define OCP_RES_LOCATION(member) \
27456ec4403SJonathan Lemon 	.name = #member, .bp_offset = offsetof(struct ptp_ocp, member)
275773bda96SJonathan Lemon 
276773bda96SJonathan Lemon #define OCP_MEM_RESOURCE(member) \
277773bda96SJonathan Lemon 	OCP_RES_LOCATION(member), .setup = ptp_ocp_register_mem
278773bda96SJonathan Lemon 
279773bda96SJonathan Lemon #define OCP_SERIAL_RESOURCE(member) \
280773bda96SJonathan Lemon 	OCP_RES_LOCATION(member), .setup = ptp_ocp_register_serial
281773bda96SJonathan Lemon 
282773bda96SJonathan Lemon #define OCP_I2C_RESOURCE(member) \
283773bda96SJonathan Lemon 	OCP_RES_LOCATION(member), .setup = ptp_ocp_register_i2c
284773bda96SJonathan Lemon 
285773bda96SJonathan Lemon #define OCP_SPI_RESOURCE(member) \
286773bda96SJonathan Lemon 	OCP_RES_LOCATION(member), .setup = ptp_ocp_register_spi
287773bda96SJonathan Lemon 
288773bda96SJonathan Lemon #define OCP_EXT_RESOURCE(member) \
289773bda96SJonathan Lemon 	OCP_RES_LOCATION(member), .setup = ptp_ocp_register_ext
290773bda96SJonathan Lemon 
291773bda96SJonathan Lemon /* This is the MSI vector mapping used.
292a62a56d0SJonathan Lemon  * 0: TS3 (and PPS)
293773bda96SJonathan Lemon  * 1: TS0
294773bda96SJonathan Lemon  * 2: TS1
29571d7e085SJonathan Lemon  * 3: GNSS
29671d7e085SJonathan Lemon  * 4: GNSS2
297773bda96SJonathan Lemon  * 5: MAC
298dcf61469SJonathan Lemon  * 6: TS2
2991447149dSJonathan Lemon  * 7: I2C controller
300e3516bb4SJonathan Lemon  * 8: HWICAP (notused)
301773bda96SJonathan Lemon  * 9: SPI Flash
302e3516bb4SJonathan Lemon  * 10: NMEA
303773bda96SJonathan Lemon  */
304773bda96SJonathan Lemon 
305773bda96SJonathan Lemon static struct ocp_resource ocp_fb_resource[] = {
306773bda96SJonathan Lemon 	{
307773bda96SJonathan Lemon 		OCP_MEM_RESOURCE(reg),
308773bda96SJonathan Lemon 		.offset = 0x01000000, .size = 0x10000,
309773bda96SJonathan Lemon 	},
310773bda96SJonathan Lemon 	{
311773bda96SJonathan Lemon 		OCP_EXT_RESOURCE(ts0),
312773bda96SJonathan Lemon 		.offset = 0x01010000, .size = 0x10000, .irq_vec = 1,
313773bda96SJonathan Lemon 		.extra = &(struct ptp_ocp_ext_info) {
31456ec4403SJonathan Lemon 			.index = 0,
315773bda96SJonathan Lemon 			.irq_fcn = ptp_ocp_ts_irq,
316773bda96SJonathan Lemon 			.enable = ptp_ocp_ts_enable,
317773bda96SJonathan Lemon 		},
318773bda96SJonathan Lemon 	},
319773bda96SJonathan Lemon 	{
320773bda96SJonathan Lemon 		OCP_EXT_RESOURCE(ts1),
321773bda96SJonathan Lemon 		.offset = 0x01020000, .size = 0x10000, .irq_vec = 2,
322773bda96SJonathan Lemon 		.extra = &(struct ptp_ocp_ext_info) {
32356ec4403SJonathan Lemon 			.index = 1,
324773bda96SJonathan Lemon 			.irq_fcn = ptp_ocp_ts_irq,
325773bda96SJonathan Lemon 			.enable = ptp_ocp_ts_enable,
326773bda96SJonathan Lemon 		},
327773bda96SJonathan Lemon 	},
328773bda96SJonathan Lemon 	{
329dcf61469SJonathan Lemon 		OCP_EXT_RESOURCE(ts2),
330dcf61469SJonathan Lemon 		.offset = 0x01060000, .size = 0x10000, .irq_vec = 6,
331dcf61469SJonathan Lemon 		.extra = &(struct ptp_ocp_ext_info) {
332dcf61469SJonathan Lemon 			.index = 2,
333dcf61469SJonathan Lemon 			.irq_fcn = ptp_ocp_ts_irq,
334dcf61469SJonathan Lemon 			.enable = ptp_ocp_ts_enable,
335dcf61469SJonathan Lemon 		},
336dcf61469SJonathan Lemon 	},
337dcf61469SJonathan Lemon 	{
338a62a56d0SJonathan Lemon 		OCP_EXT_RESOURCE(pps),
339a62a56d0SJonathan Lemon 		.offset = 0x010C0000, .size = 0x10000, .irq_vec = 0,
340a62a56d0SJonathan Lemon 		.extra = &(struct ptp_ocp_ext_info) {
341a62a56d0SJonathan Lemon 			.index = 3,
342a62a56d0SJonathan Lemon 			.irq_fcn = ptp_ocp_ts_irq,
343a62a56d0SJonathan Lemon 			.enable = ptp_ocp_ts_enable,
344a62a56d0SJonathan Lemon 		},
345a62a56d0SJonathan Lemon 	},
346a62a56d0SJonathan Lemon 	{
3470d43d4f2SJonathan Lemon 		OCP_MEM_RESOURCE(pps_to_ext),
3480d43d4f2SJonathan Lemon 		.offset = 0x01030000, .size = 0x10000,
3490d43d4f2SJonathan Lemon 	},
3500d43d4f2SJonathan Lemon 	{
3510d43d4f2SJonathan Lemon 		OCP_MEM_RESOURCE(pps_to_clk),
352773bda96SJonathan Lemon 		.offset = 0x01040000, .size = 0x10000,
353773bda96SJonathan Lemon 	},
354773bda96SJonathan Lemon 	{
355773bda96SJonathan Lemon 		OCP_MEM_RESOURCE(tod),
356773bda96SJonathan Lemon 		.offset = 0x01050000, .size = 0x10000,
357773bda96SJonathan Lemon 	},
358773bda96SJonathan Lemon 	{
3596baf2925SJonathan Lemon 		OCP_MEM_RESOURCE(irig_in),
3606baf2925SJonathan Lemon 		.offset = 0x01070000, .size = 0x10000,
3616baf2925SJonathan Lemon 	},
3626baf2925SJonathan Lemon 	{
3636baf2925SJonathan Lemon 		OCP_MEM_RESOURCE(irig_out),
3646baf2925SJonathan Lemon 		.offset = 0x01080000, .size = 0x10000,
3656baf2925SJonathan Lemon 	},
3666baf2925SJonathan Lemon 	{
3676baf2925SJonathan Lemon 		OCP_MEM_RESOURCE(dcf_in),
3686baf2925SJonathan Lemon 		.offset = 0x01090000, .size = 0x10000,
3696baf2925SJonathan Lemon 	},
3706baf2925SJonathan Lemon 	{
3716baf2925SJonathan Lemon 		OCP_MEM_RESOURCE(dcf_out),
3726baf2925SJonathan Lemon 		.offset = 0x010A0000, .size = 0x10000,
3736baf2925SJonathan Lemon 	},
3746baf2925SJonathan Lemon 	{
375e3516bb4SJonathan Lemon 		OCP_MEM_RESOURCE(nmea_out),
376e3516bb4SJonathan Lemon 		.offset = 0x010B0000, .size = 0x10000,
377e3516bb4SJonathan Lemon 	},
378e3516bb4SJonathan Lemon 	{
379773bda96SJonathan Lemon 		OCP_MEM_RESOURCE(image),
380773bda96SJonathan Lemon 		.offset = 0x00020000, .size = 0x1000,
381773bda96SJonathan Lemon 	},
382773bda96SJonathan Lemon 	{
383f67bf662SJonathan Lemon 		OCP_MEM_RESOURCE(pps_select),
384f67bf662SJonathan Lemon 		.offset = 0x00130000, .size = 0x1000,
385f67bf662SJonathan Lemon 	},
386f67bf662SJonathan Lemon 	{
387e1daf0ecSJonathan Lemon 		OCP_MEM_RESOURCE(sma),
388e1daf0ecSJonathan Lemon 		.offset = 0x00140000, .size = 0x1000,
389e1daf0ecSJonathan Lemon 	},
390e1daf0ecSJonathan Lemon 	{
391773bda96SJonathan Lemon 		OCP_I2C_RESOURCE(i2c_ctrl),
392773bda96SJonathan Lemon 		.offset = 0x00150000, .size = 0x10000, .irq_vec = 7,
3931618df6aSJonathan Lemon 		.extra = &(struct ptp_ocp_i2c_info) {
3941618df6aSJonathan Lemon 			.name = "xiic-i2c",
3951618df6aSJonathan Lemon 			.fixed_rate = 50000000,
3961618df6aSJonathan Lemon 		},
397773bda96SJonathan Lemon 	},
398773bda96SJonathan Lemon 	{
399ef0cfb34SJonathan Lemon 		OCP_SERIAL_RESOURCE(gnss_port),
400773bda96SJonathan Lemon 		.offset = 0x00160000 + 0x1000, .irq_vec = 3,
401773bda96SJonathan Lemon 	},
402773bda96SJonathan Lemon 	{
40371d7e085SJonathan Lemon 		OCP_SERIAL_RESOURCE(gnss2_port),
40471d7e085SJonathan Lemon 		.offset = 0x00170000 + 0x1000, .irq_vec = 4,
40571d7e085SJonathan Lemon 	},
40671d7e085SJonathan Lemon 	{
407773bda96SJonathan Lemon 		OCP_SERIAL_RESOURCE(mac_port),
408773bda96SJonathan Lemon 		.offset = 0x00180000 + 0x1000, .irq_vec = 5,
409773bda96SJonathan Lemon 	},
410773bda96SJonathan Lemon 	{
411e3516bb4SJonathan Lemon 		OCP_SERIAL_RESOURCE(nmea_port),
412e3516bb4SJonathan Lemon 		.offset = 0x00190000 + 0x1000, .irq_vec = 10,
413e3516bb4SJonathan Lemon 	},
414e3516bb4SJonathan Lemon 	{
415773bda96SJonathan Lemon 		OCP_SPI_RESOURCE(spi_flash),
416773bda96SJonathan Lemon 		.offset = 0x00310000, .size = 0x10000, .irq_vec = 9,
417773bda96SJonathan Lemon 		.extra = &(struct ptp_ocp_flash_info) {
418773bda96SJonathan Lemon 			.name = "xilinx_spi", .pci_offset = 0,
419773bda96SJonathan Lemon 			.data_size = sizeof(struct xspi_platform_data),
420773bda96SJonathan Lemon 			.data = &(struct xspi_platform_data) {
421773bda96SJonathan Lemon 				.num_chipselect = 1,
422773bda96SJonathan Lemon 				.bits_per_word = 8,
423773bda96SJonathan Lemon 				.num_devices = 1,
424773bda96SJonathan Lemon 				.devices = &(struct spi_board_info) {
425773bda96SJonathan Lemon 					.modalias = "spi-nor",
426773bda96SJonathan Lemon 				},
427773bda96SJonathan Lemon 			},
428773bda96SJonathan Lemon 		},
429773bda96SJonathan Lemon 	},
430773bda96SJonathan Lemon 	{
431773bda96SJonathan Lemon 		.setup = ptp_ocp_fb_board_init,
432773bda96SJonathan Lemon 	},
433773bda96SJonathan Lemon 	{ }
434773bda96SJonathan Lemon };
435773bda96SJonathan Lemon 
436773bda96SJonathan Lemon static const struct pci_device_id ptp_ocp_pcidev_id[] = {
437773bda96SJonathan Lemon 	{ PCI_DEVICE_DATA(FACEBOOK, TIMECARD, &ocp_fb_resource) },
438773bda96SJonathan Lemon 	{ 0 }
439773bda96SJonathan Lemon };
440773bda96SJonathan Lemon MODULE_DEVICE_TABLE(pci, ptp_ocp_pcidev_id);
441773bda96SJonathan Lemon 
442773bda96SJonathan Lemon static DEFINE_MUTEX(ptp_ocp_lock);
443773bda96SJonathan Lemon static DEFINE_IDR(ptp_ocp_idr);
444773bda96SJonathan Lemon 
445e1daf0ecSJonathan Lemon struct ocp_selector {
446773bda96SJonathan Lemon 	const char *name;
447773bda96SJonathan Lemon 	int value;
448e1daf0ecSJonathan Lemon };
449e1daf0ecSJonathan Lemon 
450e1daf0ecSJonathan Lemon static struct ocp_selector ptp_ocp_clock[] = {
451773bda96SJonathan Lemon 	{ .name = "NONE",	.value = 0 },
452773bda96SJonathan Lemon 	{ .name = "TOD",	.value = 1 },
453773bda96SJonathan Lemon 	{ .name = "IRIG",	.value = 2 },
454773bda96SJonathan Lemon 	{ .name = "PPS",	.value = 3 },
455773bda96SJonathan Lemon 	{ .name = "PTP",	.value = 4 },
456773bda96SJonathan Lemon 	{ .name = "RTC",	.value = 5 },
457773bda96SJonathan Lemon 	{ .name = "DCF",	.value = 6 },
458773bda96SJonathan Lemon 	{ .name = "REGS",	.value = 0xfe },
459773bda96SJonathan Lemon 	{ .name = "EXT",	.value = 0xff },
460e1daf0ecSJonathan Lemon 	{ }
461e1daf0ecSJonathan Lemon };
462e1daf0ecSJonathan Lemon 
463e1daf0ecSJonathan Lemon static struct ocp_selector ptp_ocp_sma_in[] = {
464e1daf0ecSJonathan Lemon 	{ .name = "10Mhz",	.value = 0x00 },
465e1daf0ecSJonathan Lemon 	{ .name = "PPS1",	.value = 0x01 },
466e1daf0ecSJonathan Lemon 	{ .name = "PPS2",	.value = 0x02 },
467e1daf0ecSJonathan Lemon 	{ .name = "TS1",	.value = 0x04 },
468e1daf0ecSJonathan Lemon 	{ .name = "TS2",	.value = 0x08 },
4696baf2925SJonathan Lemon 	{ .name = "IRIG",	.value = 0x10 },
4706baf2925SJonathan Lemon 	{ .name = "DCF",	.value = 0x20 },
471e1daf0ecSJonathan Lemon 	{ }
472e1daf0ecSJonathan Lemon };
473e1daf0ecSJonathan Lemon 
474e1daf0ecSJonathan Lemon static struct ocp_selector ptp_ocp_sma_out[] = {
475e1daf0ecSJonathan Lemon 	{ .name = "10Mhz",	.value = 0x00 },
476e1daf0ecSJonathan Lemon 	{ .name = "PHC",	.value = 0x01 },
477e1daf0ecSJonathan Lemon 	{ .name = "MAC",	.value = 0x02 },
478e1daf0ecSJonathan Lemon 	{ .name = "GNSS",	.value = 0x04 },
479e1daf0ecSJonathan Lemon 	{ .name = "GNSS2",	.value = 0x08 },
4806baf2925SJonathan Lemon 	{ .name = "IRIG",	.value = 0x10 },
4816baf2925SJonathan Lemon 	{ .name = "DCF",	.value = 0x20 },
482e1daf0ecSJonathan Lemon 	{ }
483773bda96SJonathan Lemon };
484773bda96SJonathan Lemon 
485773bda96SJonathan Lemon static const char *
486e1daf0ecSJonathan Lemon ptp_ocp_select_name_from_val(struct ocp_selector *tbl, int val)
487773bda96SJonathan Lemon {
488773bda96SJonathan Lemon 	int i;
489773bda96SJonathan Lemon 
490e1daf0ecSJonathan Lemon 	for (i = 0; tbl[i].name; i++)
491e1daf0ecSJonathan Lemon 		if (tbl[i].value == val)
492e1daf0ecSJonathan Lemon 			return tbl[i].name;
493773bda96SJonathan Lemon 	return NULL;
494773bda96SJonathan Lemon }
495773bda96SJonathan Lemon 
496773bda96SJonathan Lemon static int
497e1daf0ecSJonathan Lemon ptp_ocp_select_val_from_name(struct ocp_selector *tbl, const char *name)
498773bda96SJonathan Lemon {
499e1daf0ecSJonathan Lemon 	const char *select;
500773bda96SJonathan Lemon 	int i;
501773bda96SJonathan Lemon 
502e1daf0ecSJonathan Lemon 	for (i = 0; tbl[i].name; i++) {
503e1daf0ecSJonathan Lemon 		select = tbl[i].name;
504e1daf0ecSJonathan Lemon 		if (!strncasecmp(name, select, strlen(select)))
505e1daf0ecSJonathan Lemon 			return tbl[i].value;
506773bda96SJonathan Lemon 	}
507773bda96SJonathan Lemon 	return -EINVAL;
508773bda96SJonathan Lemon }
509773bda96SJonathan Lemon 
510e1daf0ecSJonathan Lemon static ssize_t
511e1daf0ecSJonathan Lemon ptp_ocp_select_table_show(struct ocp_selector *tbl, char *buf)
512e1daf0ecSJonathan Lemon {
513e1daf0ecSJonathan Lemon 	ssize_t count;
514e1daf0ecSJonathan Lemon 	int i;
515e1daf0ecSJonathan Lemon 
516e1daf0ecSJonathan Lemon 	count = 0;
517e1daf0ecSJonathan Lemon 	for (i = 0; tbl[i].name; i++)
518e1daf0ecSJonathan Lemon 		count += sysfs_emit_at(buf, count, "%s ", tbl[i].name);
519e1daf0ecSJonathan Lemon 	if (count)
520e1daf0ecSJonathan Lemon 		count--;
521e1daf0ecSJonathan Lemon 	count += sysfs_emit_at(buf, count, "\n");
522e1daf0ecSJonathan Lemon 	return count;
523e1daf0ecSJonathan Lemon }
524e1daf0ecSJonathan Lemon 
525a7e1abadSJonathan Lemon static int
526a7e1abadSJonathan Lemon __ptp_ocp_gettime_locked(struct ptp_ocp *bp, struct timespec64 *ts,
527a7e1abadSJonathan Lemon 			 struct ptp_system_timestamp *sts)
528a7e1abadSJonathan Lemon {
529a7e1abadSJonathan Lemon 	u32 ctrl, time_sec, time_ns;
530a7e1abadSJonathan Lemon 	int i;
531a7e1abadSJonathan Lemon 
532a7e1abadSJonathan Lemon 	ptp_read_system_prets(sts);
5331acffc6eSJonathan Lemon 
5341acffc6eSJonathan Lemon 	ctrl = OCP_CTRL_READ_TIME_REQ | OCP_CTRL_ENABLE;
535a7e1abadSJonathan Lemon 	iowrite32(ctrl, &bp->reg->ctrl);
536a7e1abadSJonathan Lemon 
537a7e1abadSJonathan Lemon 	for (i = 0; i < 100; i++) {
538a7e1abadSJonathan Lemon 		ctrl = ioread32(&bp->reg->ctrl);
539a7e1abadSJonathan Lemon 		if (ctrl & OCP_CTRL_READ_TIME_DONE)
540a7e1abadSJonathan Lemon 			break;
541a7e1abadSJonathan Lemon 	}
542a7e1abadSJonathan Lemon 	ptp_read_system_postts(sts);
543a7e1abadSJonathan Lemon 
5441acffc6eSJonathan Lemon 	if (sts && bp->ts_window_adjust) {
5451acffc6eSJonathan Lemon 		s64 ns = timespec64_to_ns(&sts->post_ts);
5461acffc6eSJonathan Lemon 
5471acffc6eSJonathan Lemon 		sts->post_ts = ns_to_timespec64(ns - bp->ts_window_adjust);
5481acffc6eSJonathan Lemon 	}
5491acffc6eSJonathan Lemon 
550a7e1abadSJonathan Lemon 	time_ns = ioread32(&bp->reg->time_ns);
551a7e1abadSJonathan Lemon 	time_sec = ioread32(&bp->reg->time_sec);
552a7e1abadSJonathan Lemon 
553a7e1abadSJonathan Lemon 	ts->tv_sec = time_sec;
554a7e1abadSJonathan Lemon 	ts->tv_nsec = time_ns;
555a7e1abadSJonathan Lemon 
556a7e1abadSJonathan Lemon 	return ctrl & OCP_CTRL_READ_TIME_DONE ? 0 : -ETIMEDOUT;
557a7e1abadSJonathan Lemon }
558a7e1abadSJonathan Lemon 
559a7e1abadSJonathan Lemon static int
560a7e1abadSJonathan Lemon ptp_ocp_gettimex(struct ptp_clock_info *ptp_info, struct timespec64 *ts,
561a7e1abadSJonathan Lemon 		 struct ptp_system_timestamp *sts)
562a7e1abadSJonathan Lemon {
563a7e1abadSJonathan Lemon 	struct ptp_ocp *bp = container_of(ptp_info, struct ptp_ocp, ptp_info);
564a7e1abadSJonathan Lemon 	unsigned long flags;
565a7e1abadSJonathan Lemon 	int err;
566a7e1abadSJonathan Lemon 
567a7e1abadSJonathan Lemon 	spin_lock_irqsave(&bp->lock, flags);
568a7e1abadSJonathan Lemon 	err = __ptp_ocp_gettime_locked(bp, ts, sts);
569a7e1abadSJonathan Lemon 	spin_unlock_irqrestore(&bp->lock, flags);
570a7e1abadSJonathan Lemon 
571a7e1abadSJonathan Lemon 	return err;
572a7e1abadSJonathan Lemon }
573a7e1abadSJonathan Lemon 
574a7e1abadSJonathan Lemon static void
575a7e1abadSJonathan Lemon __ptp_ocp_settime_locked(struct ptp_ocp *bp, const struct timespec64 *ts)
576a7e1abadSJonathan Lemon {
577a7e1abadSJonathan Lemon 	u32 ctrl, time_sec, time_ns;
578a7e1abadSJonathan Lemon 	u32 select;
579a7e1abadSJonathan Lemon 
580a7e1abadSJonathan Lemon 	time_ns = ts->tv_nsec;
581a7e1abadSJonathan Lemon 	time_sec = ts->tv_sec;
582a7e1abadSJonathan Lemon 
583a7e1abadSJonathan Lemon 	select = ioread32(&bp->reg->select);
584a7e1abadSJonathan Lemon 	iowrite32(OCP_SELECT_CLK_REG, &bp->reg->select);
585a7e1abadSJonathan Lemon 
586a7e1abadSJonathan Lemon 	iowrite32(time_ns, &bp->reg->adjust_ns);
587a7e1abadSJonathan Lemon 	iowrite32(time_sec, &bp->reg->adjust_sec);
588a7e1abadSJonathan Lemon 
5891acffc6eSJonathan Lemon 	ctrl = OCP_CTRL_ADJUST_TIME | OCP_CTRL_ENABLE;
590a7e1abadSJonathan Lemon 	iowrite32(ctrl, &bp->reg->ctrl);
591a7e1abadSJonathan Lemon 
592a7e1abadSJonathan Lemon 	/* restore clock selection */
593a7e1abadSJonathan Lemon 	iowrite32(select >> 16, &bp->reg->select);
594a7e1abadSJonathan Lemon }
595a7e1abadSJonathan Lemon 
596a7e1abadSJonathan Lemon static int
597a7e1abadSJonathan Lemon ptp_ocp_settime(struct ptp_clock_info *ptp_info, const struct timespec64 *ts)
598a7e1abadSJonathan Lemon {
599a7e1abadSJonathan Lemon 	struct ptp_ocp *bp = container_of(ptp_info, struct ptp_ocp, ptp_info);
600a7e1abadSJonathan Lemon 	unsigned long flags;
601a7e1abadSJonathan Lemon 
602a7e1abadSJonathan Lemon 	spin_lock_irqsave(&bp->lock, flags);
603a7e1abadSJonathan Lemon 	__ptp_ocp_settime_locked(bp, ts);
604a7e1abadSJonathan Lemon 	spin_unlock_irqrestore(&bp->lock, flags);
605a7e1abadSJonathan Lemon 
606a7e1abadSJonathan Lemon 	return 0;
607a7e1abadSJonathan Lemon }
608a7e1abadSJonathan Lemon 
6096d59d4faSJonathan Lemon static void
6106d59d4faSJonathan Lemon __ptp_ocp_adjtime_locked(struct ptp_ocp *bp, u64 adj_val)
6116d59d4faSJonathan Lemon {
6126d59d4faSJonathan Lemon 	u32 select, ctrl;
6136d59d4faSJonathan Lemon 
6146d59d4faSJonathan Lemon 	select = ioread32(&bp->reg->select);
6156d59d4faSJonathan Lemon 	iowrite32(OCP_SELECT_CLK_REG, &bp->reg->select);
6166d59d4faSJonathan Lemon 
6176d59d4faSJonathan Lemon 	iowrite32(adj_val, &bp->reg->offset_ns);
6186d59d4faSJonathan Lemon 	iowrite32(adj_val & 0x7f, &bp->reg->offset_window_ns);
6196d59d4faSJonathan Lemon 
6206d59d4faSJonathan Lemon 	ctrl = OCP_CTRL_ADJUST_OFFSET | OCP_CTRL_ENABLE;
6216d59d4faSJonathan Lemon 	iowrite32(ctrl, &bp->reg->ctrl);
6226d59d4faSJonathan Lemon 
6236d59d4faSJonathan Lemon 	/* restore clock selection */
6246d59d4faSJonathan Lemon 	iowrite32(select >> 16, &bp->reg->select);
6256d59d4faSJonathan Lemon }
6266d59d4faSJonathan Lemon 
627a7e1abadSJonathan Lemon static int
628a7e1abadSJonathan Lemon ptp_ocp_adjtime(struct ptp_clock_info *ptp_info, s64 delta_ns)
629a7e1abadSJonathan Lemon {
630a7e1abadSJonathan Lemon 	struct ptp_ocp *bp = container_of(ptp_info, struct ptp_ocp, ptp_info);
631a7e1abadSJonathan Lemon 	unsigned long flags;
6326d59d4faSJonathan Lemon 	u32 adj_ns, sign;
633a7e1abadSJonathan Lemon 
6346d59d4faSJonathan Lemon 	sign = delta_ns < 0 ? BIT(31) : 0;
6356d59d4faSJonathan Lemon 	adj_ns = sign ? -delta_ns : delta_ns;
636a7e1abadSJonathan Lemon 
637a7e1abadSJonathan Lemon 	spin_lock_irqsave(&bp->lock, flags);
6386d59d4faSJonathan Lemon 	__ptp_ocp_adjtime_locked(bp, sign | adj_ns);
639a7e1abadSJonathan Lemon 	spin_unlock_irqrestore(&bp->lock, flags);
640a7e1abadSJonathan Lemon 
6416d59d4faSJonathan Lemon 	return 0;
642a7e1abadSJonathan Lemon }
643a7e1abadSJonathan Lemon 
644a7e1abadSJonathan Lemon static int
645a7e1abadSJonathan Lemon ptp_ocp_null_adjfine(struct ptp_clock_info *ptp_info, long scaled_ppm)
646a7e1abadSJonathan Lemon {
647a7e1abadSJonathan Lemon 	if (scaled_ppm == 0)
648a7e1abadSJonathan Lemon 		return 0;
649a7e1abadSJonathan Lemon 
650a7e1abadSJonathan Lemon 	return -EOPNOTSUPP;
651a7e1abadSJonathan Lemon }
652a7e1abadSJonathan Lemon 
653773bda96SJonathan Lemon static int
6546d59d4faSJonathan Lemon ptp_ocp_null_adjphase(struct ptp_clock_info *ptp_info, s32 phase_ns)
655773bda96SJonathan Lemon {
656773bda96SJonathan Lemon 	return -EOPNOTSUPP;
657773bda96SJonathan Lemon }
658773bda96SJonathan Lemon 
659773bda96SJonathan Lemon static int
660773bda96SJonathan Lemon ptp_ocp_enable(struct ptp_clock_info *ptp_info, struct ptp_clock_request *rq,
661773bda96SJonathan Lemon 	       int on)
662773bda96SJonathan Lemon {
663773bda96SJonathan Lemon 	struct ptp_ocp *bp = container_of(ptp_info, struct ptp_ocp, ptp_info);
664773bda96SJonathan Lemon 	struct ptp_ocp_ext_src *ext = NULL;
665a62a56d0SJonathan Lemon 	u32 req;
666773bda96SJonathan Lemon 	int err;
667773bda96SJonathan Lemon 
668773bda96SJonathan Lemon 	switch (rq->type) {
669773bda96SJonathan Lemon 	case PTP_CLK_REQ_EXTTS:
670a62a56d0SJonathan Lemon 		req = OCP_REQ_TIMESTAMP;
671773bda96SJonathan Lemon 		switch (rq->extts.index) {
672773bda96SJonathan Lemon 		case 0:
673773bda96SJonathan Lemon 			ext = bp->ts0;
674773bda96SJonathan Lemon 			break;
675773bda96SJonathan Lemon 		case 1:
676773bda96SJonathan Lemon 			ext = bp->ts1;
677773bda96SJonathan Lemon 			break;
678dcf61469SJonathan Lemon 		case 2:
679dcf61469SJonathan Lemon 			ext = bp->ts2;
680dcf61469SJonathan Lemon 			break;
681a62a56d0SJonathan Lemon 		case 3:
682a62a56d0SJonathan Lemon 			ext = bp->pps;
683a62a56d0SJonathan Lemon 			break;
684773bda96SJonathan Lemon 		}
685773bda96SJonathan Lemon 		break;
686773bda96SJonathan Lemon 	case PTP_CLK_REQ_PPS:
687a62a56d0SJonathan Lemon 		req = OCP_REQ_PPS;
688773bda96SJonathan Lemon 		ext = bp->pps;
689773bda96SJonathan Lemon 		break;
690a62a56d0SJonathan Lemon 	case PTP_CLK_REQ_PEROUT:
691a62a56d0SJonathan Lemon 		if (on &&
692a62a56d0SJonathan Lemon 		    (rq->perout.period.sec != 1 || rq->perout.period.nsec != 0))
693a62a56d0SJonathan Lemon 			return -EINVAL;
694a62a56d0SJonathan Lemon 		/* This is a request for 1PPS on an output SMA.
695a62a56d0SJonathan Lemon 		 * Allow, but assume manual configuration.
696a62a56d0SJonathan Lemon 		 */
697a62a56d0SJonathan Lemon 		return 0;
698773bda96SJonathan Lemon 	default:
699773bda96SJonathan Lemon 		return -EOPNOTSUPP;
700773bda96SJonathan Lemon 	}
701773bda96SJonathan Lemon 
702773bda96SJonathan Lemon 	err = -ENXIO;
703773bda96SJonathan Lemon 	if (ext)
704a62a56d0SJonathan Lemon 		err = ext->info->enable(ext, req, on);
705773bda96SJonathan Lemon 
706773bda96SJonathan Lemon 	return err;
707773bda96SJonathan Lemon }
708773bda96SJonathan Lemon 
709a7e1abadSJonathan Lemon static const struct ptp_clock_info ptp_ocp_clock_info = {
710a7e1abadSJonathan Lemon 	.owner		= THIS_MODULE,
711a7e1abadSJonathan Lemon 	.name		= KBUILD_MODNAME,
712a7e1abadSJonathan Lemon 	.max_adj	= 100000000,
713a7e1abadSJonathan Lemon 	.gettimex64	= ptp_ocp_gettimex,
714a7e1abadSJonathan Lemon 	.settime64	= ptp_ocp_settime,
715a7e1abadSJonathan Lemon 	.adjtime	= ptp_ocp_adjtime,
716a7e1abadSJonathan Lemon 	.adjfine	= ptp_ocp_null_adjfine,
7176d59d4faSJonathan Lemon 	.adjphase	= ptp_ocp_null_adjphase,
718773bda96SJonathan Lemon 	.enable		= ptp_ocp_enable,
719773bda96SJonathan Lemon 	.pps		= true,
720a62a56d0SJonathan Lemon 	.n_ext_ts	= 4,
721a62a56d0SJonathan Lemon 	.n_per_out	= 1,
722a7e1abadSJonathan Lemon };
723a7e1abadSJonathan Lemon 
724773bda96SJonathan Lemon static void
725773bda96SJonathan Lemon __ptp_ocp_clear_drift_locked(struct ptp_ocp *bp)
726773bda96SJonathan Lemon {
727773bda96SJonathan Lemon 	u32 ctrl, select;
728773bda96SJonathan Lemon 
729773bda96SJonathan Lemon 	select = ioread32(&bp->reg->select);
730773bda96SJonathan Lemon 	iowrite32(OCP_SELECT_CLK_REG, &bp->reg->select);
731773bda96SJonathan Lemon 
732773bda96SJonathan Lemon 	iowrite32(0, &bp->reg->drift_ns);
733773bda96SJonathan Lemon 
7341acffc6eSJonathan Lemon 	ctrl = OCP_CTRL_ADJUST_DRIFT | OCP_CTRL_ENABLE;
735773bda96SJonathan Lemon 	iowrite32(ctrl, &bp->reg->ctrl);
736773bda96SJonathan Lemon 
737773bda96SJonathan Lemon 	/* restore clock selection */
738773bda96SJonathan Lemon 	iowrite32(select >> 16, &bp->reg->select);
739773bda96SJonathan Lemon }
740773bda96SJonathan Lemon 
741773bda96SJonathan Lemon static void
742773bda96SJonathan Lemon ptp_ocp_watchdog(struct timer_list *t)
743773bda96SJonathan Lemon {
744773bda96SJonathan Lemon 	struct ptp_ocp *bp = from_timer(bp, t, watchdog);
745773bda96SJonathan Lemon 	unsigned long flags;
746773bda96SJonathan Lemon 	u32 status;
747773bda96SJonathan Lemon 
7480d43d4f2SJonathan Lemon 	status = ioread32(&bp->pps_to_clk->status);
749773bda96SJonathan Lemon 
750773bda96SJonathan Lemon 	if (status & PPS_STATUS_SUPERV_ERR) {
7510d43d4f2SJonathan Lemon 		iowrite32(status, &bp->pps_to_clk->status);
752ef0cfb34SJonathan Lemon 		if (!bp->gnss_lost) {
753773bda96SJonathan Lemon 			spin_lock_irqsave(&bp->lock, flags);
754773bda96SJonathan Lemon 			__ptp_ocp_clear_drift_locked(bp);
755773bda96SJonathan Lemon 			spin_unlock_irqrestore(&bp->lock, flags);
756ef0cfb34SJonathan Lemon 			bp->gnss_lost = ktime_get_real_seconds();
757773bda96SJonathan Lemon 		}
758773bda96SJonathan Lemon 
759ef0cfb34SJonathan Lemon 	} else if (bp->gnss_lost) {
760ef0cfb34SJonathan Lemon 		bp->gnss_lost = 0;
761773bda96SJonathan Lemon 	}
762773bda96SJonathan Lemon 
763773bda96SJonathan Lemon 	mod_timer(&bp->watchdog, jiffies + HZ);
764773bda96SJonathan Lemon }
765773bda96SJonathan Lemon 
7661acffc6eSJonathan Lemon static void
7671acffc6eSJonathan Lemon ptp_ocp_estimate_pci_timing(struct ptp_ocp *bp)
7681acffc6eSJonathan Lemon {
7691acffc6eSJonathan Lemon 	ktime_t start, end;
7701acffc6eSJonathan Lemon 	ktime_t delay;
7711acffc6eSJonathan Lemon 	u32 ctrl;
7721acffc6eSJonathan Lemon 
7731acffc6eSJonathan Lemon 	ctrl = ioread32(&bp->reg->ctrl);
7741acffc6eSJonathan Lemon 	ctrl = OCP_CTRL_READ_TIME_REQ | OCP_CTRL_ENABLE;
7751acffc6eSJonathan Lemon 
7761acffc6eSJonathan Lemon 	iowrite32(ctrl, &bp->reg->ctrl);
7771acffc6eSJonathan Lemon 
7781acffc6eSJonathan Lemon 	start = ktime_get_ns();
7791acffc6eSJonathan Lemon 
7801acffc6eSJonathan Lemon 	ctrl = ioread32(&bp->reg->ctrl);
7811acffc6eSJonathan Lemon 
7821acffc6eSJonathan Lemon 	end = ktime_get_ns();
7831acffc6eSJonathan Lemon 
7841acffc6eSJonathan Lemon 	delay = end - start;
7851acffc6eSJonathan Lemon 	bp->ts_window_adjust = (delay >> 5) * 3;
7861acffc6eSJonathan Lemon }
7871acffc6eSJonathan Lemon 
788a7e1abadSJonathan Lemon static int
789773bda96SJonathan Lemon ptp_ocp_init_clock(struct ptp_ocp *bp)
790a7e1abadSJonathan Lemon {
791a7e1abadSJonathan Lemon 	struct timespec64 ts;
792a7e1abadSJonathan Lemon 	bool sync;
793a7e1abadSJonathan Lemon 	u32 ctrl;
794a7e1abadSJonathan Lemon 
7951acffc6eSJonathan Lemon 	ctrl = OCP_CTRL_ENABLE;
796a7e1abadSJonathan Lemon 	iowrite32(ctrl, &bp->reg->ctrl);
797a7e1abadSJonathan Lemon 
798773bda96SJonathan Lemon 	/* NO DRIFT Correction */
799773bda96SJonathan Lemon 	/* offset_p:i 1/8, offset_i: 1/16, drift_p: 0, drift_i: 0 */
800773bda96SJonathan Lemon 	iowrite32(0x2000, &bp->reg->servo_offset_p);
801773bda96SJonathan Lemon 	iowrite32(0x1000, &bp->reg->servo_offset_i);
802773bda96SJonathan Lemon 	iowrite32(0,	  &bp->reg->servo_drift_p);
803773bda96SJonathan Lemon 	iowrite32(0,	  &bp->reg->servo_drift_i);
804773bda96SJonathan Lemon 
805773bda96SJonathan Lemon 	/* latch servo values */
806773bda96SJonathan Lemon 	ctrl |= OCP_CTRL_ADJUST_SERVO;
807773bda96SJonathan Lemon 	iowrite32(ctrl, &bp->reg->ctrl);
808773bda96SJonathan Lemon 
809a7e1abadSJonathan Lemon 	if ((ioread32(&bp->reg->ctrl) & OCP_CTRL_ENABLE) == 0) {
810a7e1abadSJonathan Lemon 		dev_err(&bp->pdev->dev, "clock not enabled\n");
811a7e1abadSJonathan Lemon 		return -ENODEV;
812a7e1abadSJonathan Lemon 	}
813a7e1abadSJonathan Lemon 
8141acffc6eSJonathan Lemon 	ptp_ocp_estimate_pci_timing(bp);
8151acffc6eSJonathan Lemon 
816a7e1abadSJonathan Lemon 	sync = ioread32(&bp->reg->status) & OCP_STATUS_IN_SYNC;
817a7e1abadSJonathan Lemon 	if (!sync) {
818065efcc5SJonathan Lemon 		ktime_get_clocktai_ts64(&ts);
819a7e1abadSJonathan Lemon 		ptp_ocp_settime(&bp->ptp_info, &ts);
820a7e1abadSJonathan Lemon 	}
821a7e1abadSJonathan Lemon 
822065efcc5SJonathan Lemon 	/* If there is a clock supervisor, then enable the watchdog */
823065efcc5SJonathan Lemon 	if (bp->pps_to_clk) {
824773bda96SJonathan Lemon 		timer_setup(&bp->watchdog, ptp_ocp_watchdog, 0);
825773bda96SJonathan Lemon 		mod_timer(&bp->watchdog, jiffies + HZ);
826065efcc5SJonathan Lemon 	}
827773bda96SJonathan Lemon 
828a7e1abadSJonathan Lemon 	return 0;
829a7e1abadSJonathan Lemon }
830a7e1abadSJonathan Lemon 
831a7e1abadSJonathan Lemon static void
83289260d87SJonathan Lemon ptp_ocp_utc_distribute(struct ptp_ocp *bp, u32 val)
83389260d87SJonathan Lemon {
83489260d87SJonathan Lemon 	unsigned long flags;
83589260d87SJonathan Lemon 
83689260d87SJonathan Lemon 	spin_lock_irqsave(&bp->lock, flags);
83789260d87SJonathan Lemon 
83889260d87SJonathan Lemon 	bp->utc_tai_offset = val;
83989260d87SJonathan Lemon 
84089260d87SJonathan Lemon 	if (bp->irig_out)
84189260d87SJonathan Lemon 		iowrite32(val, &bp->irig_out->adj_sec);
84289260d87SJonathan Lemon 	if (bp->dcf_out)
84389260d87SJonathan Lemon 		iowrite32(val, &bp->dcf_out->adj_sec);
844e3516bb4SJonathan Lemon 	if (bp->nmea_out)
845e3516bb4SJonathan Lemon 		iowrite32(val, &bp->nmea_out->adj_sec);
84689260d87SJonathan Lemon 
84789260d87SJonathan Lemon 	spin_unlock_irqrestore(&bp->lock, flags);
84889260d87SJonathan Lemon }
84989260d87SJonathan Lemon 
85089260d87SJonathan Lemon static void
851065efcc5SJonathan Lemon ptp_ocp_tod_init(struct ptp_ocp *bp)
852065efcc5SJonathan Lemon {
853065efcc5SJonathan Lemon 	u32 ctrl, reg;
854065efcc5SJonathan Lemon 
855065efcc5SJonathan Lemon 	ctrl = ioread32(&bp->tod->ctrl);
856065efcc5SJonathan Lemon 	ctrl |= TOD_CTRL_PROTOCOL | TOD_CTRL_ENABLE;
857065efcc5SJonathan Lemon 	ctrl &= ~(TOD_CTRL_DISABLE_FMT_A | TOD_CTRL_DISABLE_FMT_B);
858065efcc5SJonathan Lemon 	iowrite32(ctrl, &bp->tod->ctrl);
859065efcc5SJonathan Lemon 
860065efcc5SJonathan Lemon 	reg = ioread32(&bp->tod->utc_status);
861065efcc5SJonathan Lemon 	if (reg & TOD_STATUS_UTC_VALID)
862065efcc5SJonathan Lemon 		ptp_ocp_utc_distribute(bp, reg & TOD_STATUS_UTC_MASK);
863065efcc5SJonathan Lemon }
864065efcc5SJonathan Lemon 
865065efcc5SJonathan Lemon static void
866a7e1abadSJonathan Lemon ptp_ocp_tod_info(struct ptp_ocp *bp)
867a7e1abadSJonathan Lemon {
868a7e1abadSJonathan Lemon 	static const char * const proto_name[] = {
869a7e1abadSJonathan Lemon 		"NMEA", "NMEA_ZDA", "NMEA_RMC", "NMEA_none",
870a7e1abadSJonathan Lemon 		"UBX", "UBX_UTC", "UBX_LS", "UBX_none"
871a7e1abadSJonathan Lemon 	};
872a7e1abadSJonathan Lemon 	static const char * const gnss_name[] = {
873a7e1abadSJonathan Lemon 		"ALL", "COMBINED", "GPS", "GLONASS", "GALILEO", "BEIDOU",
874a7e1abadSJonathan Lemon 	};
875a7e1abadSJonathan Lemon 	u32 version, ctrl, reg;
876a7e1abadSJonathan Lemon 	int idx;
877a7e1abadSJonathan Lemon 
878a7e1abadSJonathan Lemon 	version = ioread32(&bp->tod->version);
879a7e1abadSJonathan Lemon 	dev_info(&bp->pdev->dev, "TOD Version %d.%d.%d\n",
880a7e1abadSJonathan Lemon 		 version >> 24, (version >> 16) & 0xff, version & 0xffff);
881a7e1abadSJonathan Lemon 
882a7e1abadSJonathan Lemon 	ctrl = ioread32(&bp->tod->ctrl);
883a7e1abadSJonathan Lemon 	idx = ctrl & TOD_CTRL_PROTOCOL ? 4 : 0;
884a7e1abadSJonathan Lemon 	idx += (ctrl >> 16) & 3;
885a7e1abadSJonathan Lemon 	dev_info(&bp->pdev->dev, "control: %x\n", ctrl);
886a7e1abadSJonathan Lemon 	dev_info(&bp->pdev->dev, "TOD Protocol %s %s\n", proto_name[idx],
887a7e1abadSJonathan Lemon 		 ctrl & TOD_CTRL_ENABLE ? "enabled" : "");
888a7e1abadSJonathan Lemon 
889a7e1abadSJonathan Lemon 	idx = (ctrl >> TOD_CTRL_GNSS_SHIFT) & TOD_CTRL_GNSS_MASK;
890a7e1abadSJonathan Lemon 	if (idx < ARRAY_SIZE(gnss_name))
891a7e1abadSJonathan Lemon 		dev_info(&bp->pdev->dev, "GNSS %s\n", gnss_name[idx]);
892a7e1abadSJonathan Lemon 
893a7e1abadSJonathan Lemon 	reg = ioread32(&bp->tod->status);
894a7e1abadSJonathan Lemon 	dev_info(&bp->pdev->dev, "status: %x\n", reg);
895a7e1abadSJonathan Lemon 
896065efcc5SJonathan Lemon 	reg = ioread32(&bp->tod->adj_sec);
897a7e1abadSJonathan Lemon 	dev_info(&bp->pdev->dev, "correction: %d\n", reg);
898a7e1abadSJonathan Lemon 
899a7e1abadSJonathan Lemon 	reg = ioread32(&bp->tod->utc_status);
900a7e1abadSJonathan Lemon 	dev_info(&bp->pdev->dev, "utc_status: %x\n", reg);
901a7e1abadSJonathan Lemon 	dev_info(&bp->pdev->dev, "utc_offset: %d  valid:%d  leap_valid:%d\n",
902a7e1abadSJonathan Lemon 		 reg & TOD_STATUS_UTC_MASK, reg & TOD_STATUS_UTC_VALID ? 1 : 0,
903a7e1abadSJonathan Lemon 		 reg & TOD_STATUS_LEAP_VALID ? 1 : 0);
904a7e1abadSJonathan Lemon }
905a7e1abadSJonathan Lemon 
906773bda96SJonathan Lemon static int
907773bda96SJonathan Lemon ptp_ocp_firstchild(struct device *dev, void *data)
908773bda96SJonathan Lemon {
909773bda96SJonathan Lemon 	return 1;
910773bda96SJonathan Lemon }
911773bda96SJonathan Lemon 
912773bda96SJonathan Lemon static int
913773bda96SJonathan Lemon ptp_ocp_read_i2c(struct i2c_adapter *adap, u8 addr, u8 reg, u8 sz, u8 *data)
914773bda96SJonathan Lemon {
915773bda96SJonathan Lemon 	struct i2c_msg msgs[2] = {
916773bda96SJonathan Lemon 		{
917773bda96SJonathan Lemon 			.addr = addr,
918773bda96SJonathan Lemon 			.len = 1,
919773bda96SJonathan Lemon 			.buf = &reg,
920773bda96SJonathan Lemon 		},
921773bda96SJonathan Lemon 		{
922773bda96SJonathan Lemon 			.addr = addr,
923773bda96SJonathan Lemon 			.flags = I2C_M_RD,
924773bda96SJonathan Lemon 			.len = 2,
925773bda96SJonathan Lemon 			.buf = data,
926773bda96SJonathan Lemon 		},
927773bda96SJonathan Lemon 	};
928773bda96SJonathan Lemon 	int err;
929773bda96SJonathan Lemon 	u8 len;
930773bda96SJonathan Lemon 
931773bda96SJonathan Lemon 	/* xiic-i2c for some stupid reason only does 2 byte reads. */
932773bda96SJonathan Lemon 	while (sz) {
933773bda96SJonathan Lemon 		len = min_t(u8, sz, 2);
934773bda96SJonathan Lemon 		msgs[1].len = len;
935773bda96SJonathan Lemon 		err = i2c_transfer(adap, msgs, 2);
936773bda96SJonathan Lemon 		if (err != msgs[1].len)
937773bda96SJonathan Lemon 			return err;
938773bda96SJonathan Lemon 		msgs[1].buf += len;
939773bda96SJonathan Lemon 		reg += len;
940773bda96SJonathan Lemon 		sz -= len;
941773bda96SJonathan Lemon 	}
942773bda96SJonathan Lemon 	return 0;
943773bda96SJonathan Lemon }
944773bda96SJonathan Lemon 
945773bda96SJonathan Lemon static void
946773bda96SJonathan Lemon ptp_ocp_get_serial_number(struct ptp_ocp *bp)
947773bda96SJonathan Lemon {
948773bda96SJonathan Lemon 	struct i2c_adapter *adap;
949773bda96SJonathan Lemon 	struct device *dev;
950773bda96SJonathan Lemon 	int err;
951773bda96SJonathan Lemon 
9521447149dSJonathan Lemon 	if (!bp->i2c_ctrl)
9531447149dSJonathan Lemon 		return;
9541447149dSJonathan Lemon 
955773bda96SJonathan Lemon 	dev = device_find_child(&bp->i2c_ctrl->dev, NULL, ptp_ocp_firstchild);
956773bda96SJonathan Lemon 	if (!dev) {
957773bda96SJonathan Lemon 		dev_err(&bp->pdev->dev, "Can't find I2C adapter\n");
958773bda96SJonathan Lemon 		return;
959773bda96SJonathan Lemon 	}
960773bda96SJonathan Lemon 
961773bda96SJonathan Lemon 	adap = i2c_verify_adapter(dev);
962773bda96SJonathan Lemon 	if (!adap) {
963773bda96SJonathan Lemon 		dev_err(&bp->pdev->dev, "device '%s' isn't an I2C adapter\n",
964773bda96SJonathan Lemon 			dev_name(dev));
965773bda96SJonathan Lemon 		goto out;
966773bda96SJonathan Lemon 	}
967773bda96SJonathan Lemon 
968773bda96SJonathan Lemon 	err = ptp_ocp_read_i2c(adap, 0x58, 0x9A, 6, bp->serial);
969773bda96SJonathan Lemon 	if (err) {
970773bda96SJonathan Lemon 		dev_err(&bp->pdev->dev, "could not read eeprom: %d\n", err);
971773bda96SJonathan Lemon 		goto out;
972773bda96SJonathan Lemon 	}
973773bda96SJonathan Lemon 
974773bda96SJonathan Lemon 	bp->has_serial = true;
975773bda96SJonathan Lemon 
976773bda96SJonathan Lemon out:
977773bda96SJonathan Lemon 	put_device(dev);
978773bda96SJonathan Lemon }
979773bda96SJonathan Lemon 
980773bda96SJonathan Lemon static struct device *
981773bda96SJonathan Lemon ptp_ocp_find_flash(struct ptp_ocp *bp)
982773bda96SJonathan Lemon {
983773bda96SJonathan Lemon 	struct device *dev, *last;
984773bda96SJonathan Lemon 
985773bda96SJonathan Lemon 	last = NULL;
986773bda96SJonathan Lemon 	dev = &bp->spi_flash->dev;
987773bda96SJonathan Lemon 
988773bda96SJonathan Lemon 	while ((dev = device_find_child(dev, NULL, ptp_ocp_firstchild))) {
989773bda96SJonathan Lemon 		if (!strcmp("mtd", dev_bus_name(dev)))
990773bda96SJonathan Lemon 			break;
991773bda96SJonathan Lemon 		put_device(last);
992773bda96SJonathan Lemon 		last = dev;
993773bda96SJonathan Lemon 	}
994773bda96SJonathan Lemon 	put_device(last);
995773bda96SJonathan Lemon 
996773bda96SJonathan Lemon 	return dev;
997773bda96SJonathan Lemon }
998773bda96SJonathan Lemon 
999773bda96SJonathan Lemon static int
1000773bda96SJonathan Lemon ptp_ocp_devlink_flash(struct devlink *devlink, struct device *dev,
1001773bda96SJonathan Lemon 		      const struct firmware *fw)
1002773bda96SJonathan Lemon {
1003773bda96SJonathan Lemon 	struct mtd_info *mtd = dev_get_drvdata(dev);
1004773bda96SJonathan Lemon 	struct ptp_ocp *bp = devlink_priv(devlink);
1005773bda96SJonathan Lemon 	size_t off, len, resid, wrote;
1006773bda96SJonathan Lemon 	struct erase_info erase;
1007773bda96SJonathan Lemon 	size_t base, blksz;
10087c807572SJonathan Lemon 	int err = 0;
1009773bda96SJonathan Lemon 
1010773bda96SJonathan Lemon 	off = 0;
1011773bda96SJonathan Lemon 	base = bp->flash_start;
1012773bda96SJonathan Lemon 	blksz = 4096;
1013773bda96SJonathan Lemon 	resid = fw->size;
1014773bda96SJonathan Lemon 
1015773bda96SJonathan Lemon 	while (resid) {
1016773bda96SJonathan Lemon 		devlink_flash_update_status_notify(devlink, "Flashing",
1017773bda96SJonathan Lemon 						   NULL, off, fw->size);
1018773bda96SJonathan Lemon 
1019773bda96SJonathan Lemon 		len = min_t(size_t, resid, blksz);
1020773bda96SJonathan Lemon 		erase.addr = base + off;
1021773bda96SJonathan Lemon 		erase.len = blksz;
1022773bda96SJonathan Lemon 
1023773bda96SJonathan Lemon 		err = mtd_erase(mtd, &erase);
1024773bda96SJonathan Lemon 		if (err)
1025773bda96SJonathan Lemon 			goto out;
1026773bda96SJonathan Lemon 
1027773bda96SJonathan Lemon 		err = mtd_write(mtd, base + off, len, &wrote, &fw->data[off]);
1028773bda96SJonathan Lemon 		if (err)
1029773bda96SJonathan Lemon 			goto out;
1030773bda96SJonathan Lemon 
1031773bda96SJonathan Lemon 		off += blksz;
1032773bda96SJonathan Lemon 		resid -= len;
1033773bda96SJonathan Lemon 	}
1034773bda96SJonathan Lemon out:
1035773bda96SJonathan Lemon 	return err;
1036773bda96SJonathan Lemon }
1037773bda96SJonathan Lemon 
1038773bda96SJonathan Lemon static int
1039773bda96SJonathan Lemon ptp_ocp_devlink_flash_update(struct devlink *devlink,
1040773bda96SJonathan Lemon 			     struct devlink_flash_update_params *params,
1041773bda96SJonathan Lemon 			     struct netlink_ext_ack *extack)
1042773bda96SJonathan Lemon {
1043773bda96SJonathan Lemon 	struct ptp_ocp *bp = devlink_priv(devlink);
1044773bda96SJonathan Lemon 	struct device *dev;
1045773bda96SJonathan Lemon 	const char *msg;
1046773bda96SJonathan Lemon 	int err;
1047773bda96SJonathan Lemon 
1048773bda96SJonathan Lemon 	dev = ptp_ocp_find_flash(bp);
1049773bda96SJonathan Lemon 	if (!dev) {
1050773bda96SJonathan Lemon 		dev_err(&bp->pdev->dev, "Can't find Flash SPI adapter\n");
1051773bda96SJonathan Lemon 		return -ENODEV;
1052773bda96SJonathan Lemon 	}
1053773bda96SJonathan Lemon 
1054773bda96SJonathan Lemon 	devlink_flash_update_status_notify(devlink, "Preparing to flash",
1055773bda96SJonathan Lemon 					   NULL, 0, 0);
1056773bda96SJonathan Lemon 
1057773bda96SJonathan Lemon 	err = ptp_ocp_devlink_flash(devlink, dev, params->fw);
1058773bda96SJonathan Lemon 
1059773bda96SJonathan Lemon 	msg = err ? "Flash error" : "Flash complete";
1060773bda96SJonathan Lemon 	devlink_flash_update_status_notify(devlink, msg, NULL, 0, 0);
1061773bda96SJonathan Lemon 
1062773bda96SJonathan Lemon 	put_device(dev);
1063773bda96SJonathan Lemon 	return err;
1064773bda96SJonathan Lemon }
1065773bda96SJonathan Lemon 
1066773bda96SJonathan Lemon static int
1067773bda96SJonathan Lemon ptp_ocp_devlink_info_get(struct devlink *devlink, struct devlink_info_req *req,
1068773bda96SJonathan Lemon 			 struct netlink_ext_ack *extack)
1069773bda96SJonathan Lemon {
1070773bda96SJonathan Lemon 	struct ptp_ocp *bp = devlink_priv(devlink);
1071773bda96SJonathan Lemon 	char buf[32];
1072773bda96SJonathan Lemon 	int err;
1073773bda96SJonathan Lemon 
1074773bda96SJonathan Lemon 	err = devlink_info_driver_name_put(req, KBUILD_MODNAME);
1075773bda96SJonathan Lemon 	if (err)
1076773bda96SJonathan Lemon 		return err;
1077773bda96SJonathan Lemon 
1078773bda96SJonathan Lemon 	if (bp->image) {
1079773bda96SJonathan Lemon 		u32 ver = ioread32(&bp->image->version);
1080773bda96SJonathan Lemon 
1081773bda96SJonathan Lemon 		if (ver & 0xffff) {
1082773bda96SJonathan Lemon 			sprintf(buf, "%d", ver);
1083773bda96SJonathan Lemon 			err = devlink_info_version_running_put(req,
10841a052da9SJonathan Lemon 							       "fw",
1085773bda96SJonathan Lemon 							       buf);
1086773bda96SJonathan Lemon 		} else {
1087773bda96SJonathan Lemon 			sprintf(buf, "%d", ver >> 16);
1088773bda96SJonathan Lemon 			err = devlink_info_version_running_put(req,
10891a052da9SJonathan Lemon 							       "loader",
1090773bda96SJonathan Lemon 							       buf);
1091773bda96SJonathan Lemon 		}
1092773bda96SJonathan Lemon 		if (err)
1093773bda96SJonathan Lemon 			return err;
1094773bda96SJonathan Lemon 	}
1095773bda96SJonathan Lemon 
1096773bda96SJonathan Lemon 	if (!bp->has_serial)
1097773bda96SJonathan Lemon 		ptp_ocp_get_serial_number(bp);
1098773bda96SJonathan Lemon 
1099773bda96SJonathan Lemon 	if (bp->has_serial) {
1100773bda96SJonathan Lemon 		sprintf(buf, "%pM", bp->serial);
1101773bda96SJonathan Lemon 		err = devlink_info_serial_number_put(req, buf);
1102773bda96SJonathan Lemon 		if (err)
1103773bda96SJonathan Lemon 			return err;
1104773bda96SJonathan Lemon 	}
1105773bda96SJonathan Lemon 
1106773bda96SJonathan Lemon 	return 0;
1107773bda96SJonathan Lemon }
1108773bda96SJonathan Lemon 
1109773bda96SJonathan Lemon static const struct devlink_ops ptp_ocp_devlink_ops = {
1110773bda96SJonathan Lemon 	.flash_update = ptp_ocp_devlink_flash_update,
1111773bda96SJonathan Lemon 	.info_get = ptp_ocp_devlink_info_get,
1112773bda96SJonathan Lemon };
1113773bda96SJonathan Lemon 
1114773bda96SJonathan Lemon static void __iomem *
1115773bda96SJonathan Lemon __ptp_ocp_get_mem(struct ptp_ocp *bp, unsigned long start, int size)
1116773bda96SJonathan Lemon {
1117773bda96SJonathan Lemon 	struct resource res = DEFINE_RES_MEM_NAMED(start, size, "ptp_ocp");
1118773bda96SJonathan Lemon 
1119773bda96SJonathan Lemon 	return devm_ioremap_resource(&bp->pdev->dev, &res);
1120773bda96SJonathan Lemon }
1121773bda96SJonathan Lemon 
1122773bda96SJonathan Lemon static void __iomem *
1123773bda96SJonathan Lemon ptp_ocp_get_mem(struct ptp_ocp *bp, struct ocp_resource *r)
1124773bda96SJonathan Lemon {
1125773bda96SJonathan Lemon 	unsigned long start;
1126773bda96SJonathan Lemon 
1127773bda96SJonathan Lemon 	start = pci_resource_start(bp->pdev, 0) + r->offset;
1128773bda96SJonathan Lemon 	return __ptp_ocp_get_mem(bp, start, r->size);
1129773bda96SJonathan Lemon }
1130773bda96SJonathan Lemon 
1131773bda96SJonathan Lemon static void
1132773bda96SJonathan Lemon ptp_ocp_set_irq_resource(struct resource *res, int irq)
1133773bda96SJonathan Lemon {
1134773bda96SJonathan Lemon 	struct resource r = DEFINE_RES_IRQ(irq);
1135773bda96SJonathan Lemon 	*res = r;
1136773bda96SJonathan Lemon }
1137773bda96SJonathan Lemon 
1138773bda96SJonathan Lemon static void
1139773bda96SJonathan Lemon ptp_ocp_set_mem_resource(struct resource *res, unsigned long start, int size)
1140773bda96SJonathan Lemon {
1141773bda96SJonathan Lemon 	struct resource r = DEFINE_RES_MEM(start, size);
1142773bda96SJonathan Lemon 	*res = r;
1143773bda96SJonathan Lemon }
1144773bda96SJonathan Lemon 
1145773bda96SJonathan Lemon static int
1146773bda96SJonathan Lemon ptp_ocp_register_spi(struct ptp_ocp *bp, struct ocp_resource *r)
1147773bda96SJonathan Lemon {
1148773bda96SJonathan Lemon 	struct ptp_ocp_flash_info *info;
1149773bda96SJonathan Lemon 	struct pci_dev *pdev = bp->pdev;
1150773bda96SJonathan Lemon 	struct platform_device *p;
1151773bda96SJonathan Lemon 	struct resource res[2];
1152773bda96SJonathan Lemon 	unsigned long start;
1153773bda96SJonathan Lemon 	int id;
1154773bda96SJonathan Lemon 
1155773bda96SJonathan Lemon 	start = pci_resource_start(pdev, 0) + r->offset;
1156773bda96SJonathan Lemon 	ptp_ocp_set_mem_resource(&res[0], start, r->size);
1157773bda96SJonathan Lemon 	ptp_ocp_set_irq_resource(&res[1], pci_irq_vector(pdev, r->irq_vec));
1158773bda96SJonathan Lemon 
1159773bda96SJonathan Lemon 	info = r->extra;
1160773bda96SJonathan Lemon 	id = pci_dev_id(pdev) << 1;
1161773bda96SJonathan Lemon 	id += info->pci_offset;
1162773bda96SJonathan Lemon 
1163773bda96SJonathan Lemon 	p = platform_device_register_resndata(&pdev->dev, info->name, id,
1164773bda96SJonathan Lemon 					      res, 2, info->data,
1165773bda96SJonathan Lemon 					      info->data_size);
1166773bda96SJonathan Lemon 	if (IS_ERR(p))
1167773bda96SJonathan Lemon 		return PTR_ERR(p);
1168773bda96SJonathan Lemon 
1169773bda96SJonathan Lemon 	bp_assign_entry(bp, r, p);
1170773bda96SJonathan Lemon 
1171773bda96SJonathan Lemon 	return 0;
1172773bda96SJonathan Lemon }
1173773bda96SJonathan Lemon 
1174773bda96SJonathan Lemon static struct platform_device *
1175773bda96SJonathan Lemon ptp_ocp_i2c_bus(struct pci_dev *pdev, struct ocp_resource *r, int id)
1176773bda96SJonathan Lemon {
11771618df6aSJonathan Lemon 	struct ptp_ocp_i2c_info *info;
1178773bda96SJonathan Lemon 	struct resource res[2];
1179773bda96SJonathan Lemon 	unsigned long start;
1180773bda96SJonathan Lemon 
11811618df6aSJonathan Lemon 	info = r->extra;
1182773bda96SJonathan Lemon 	start = pci_resource_start(pdev, 0) + r->offset;
1183773bda96SJonathan Lemon 	ptp_ocp_set_mem_resource(&res[0], start, r->size);
1184773bda96SJonathan Lemon 	ptp_ocp_set_irq_resource(&res[1], pci_irq_vector(pdev, r->irq_vec));
1185773bda96SJonathan Lemon 
11861618df6aSJonathan Lemon 	return platform_device_register_resndata(&pdev->dev, info->name,
11871618df6aSJonathan Lemon 						 id, res, 2,
11881618df6aSJonathan Lemon 						 info->data, info->data_size);
1189773bda96SJonathan Lemon }
1190773bda96SJonathan Lemon 
1191773bda96SJonathan Lemon static int
1192773bda96SJonathan Lemon ptp_ocp_register_i2c(struct ptp_ocp *bp, struct ocp_resource *r)
1193773bda96SJonathan Lemon {
1194773bda96SJonathan Lemon 	struct pci_dev *pdev = bp->pdev;
11951618df6aSJonathan Lemon 	struct ptp_ocp_i2c_info *info;
1196773bda96SJonathan Lemon 	struct platform_device *p;
1197773bda96SJonathan Lemon 	struct clk_hw *clk;
1198773bda96SJonathan Lemon 	char buf[32];
1199773bda96SJonathan Lemon 	int id;
1200773bda96SJonathan Lemon 
12011618df6aSJonathan Lemon 	info = r->extra;
1202773bda96SJonathan Lemon 	id = pci_dev_id(bp->pdev);
1203773bda96SJonathan Lemon 
1204773bda96SJonathan Lemon 	sprintf(buf, "AXI.%d", id);
12051618df6aSJonathan Lemon 	clk = clk_hw_register_fixed_rate(&pdev->dev, buf, NULL, 0,
12061618df6aSJonathan Lemon 					 info->fixed_rate);
1207773bda96SJonathan Lemon 	if (IS_ERR(clk))
1208773bda96SJonathan Lemon 		return PTR_ERR(clk);
1209773bda96SJonathan Lemon 	bp->i2c_clk = clk;
1210773bda96SJonathan Lemon 
12111618df6aSJonathan Lemon 	sprintf(buf, "%s.%d", info->name, id);
1212773bda96SJonathan Lemon 	devm_clk_hw_register_clkdev(&pdev->dev, clk, NULL, buf);
1213773bda96SJonathan Lemon 	p = ptp_ocp_i2c_bus(bp->pdev, r, id);
1214773bda96SJonathan Lemon 	if (IS_ERR(p))
1215773bda96SJonathan Lemon 		return PTR_ERR(p);
1216773bda96SJonathan Lemon 
1217773bda96SJonathan Lemon 	bp_assign_entry(bp, r, p);
1218773bda96SJonathan Lemon 
1219773bda96SJonathan Lemon 	return 0;
1220773bda96SJonathan Lemon }
1221773bda96SJonathan Lemon 
1222773bda96SJonathan Lemon static irqreturn_t
1223773bda96SJonathan Lemon ptp_ocp_ts_irq(int irq, void *priv)
1224773bda96SJonathan Lemon {
1225773bda96SJonathan Lemon 	struct ptp_ocp_ext_src *ext = priv;
1226773bda96SJonathan Lemon 	struct ts_reg __iomem *reg = ext->mem;
1227773bda96SJonathan Lemon 	struct ptp_clock_event ev;
1228773bda96SJonathan Lemon 	u32 sec, nsec;
1229773bda96SJonathan Lemon 
1230a62a56d0SJonathan Lemon 	if (ext == ext->bp->pps) {
1231a62a56d0SJonathan Lemon 		if (ext->bp->pps_req_map & OCP_REQ_PPS) {
1232a62a56d0SJonathan Lemon 			ev.type = PTP_CLOCK_PPS;
1233a62a56d0SJonathan Lemon 			ptp_clock_event(ext->bp->ptp, &ev);
1234a62a56d0SJonathan Lemon 		}
1235a62a56d0SJonathan Lemon 
1236a62a56d0SJonathan Lemon 		if ((ext->bp->pps_req_map & ~OCP_REQ_PPS) == 0)
1237a62a56d0SJonathan Lemon 			goto out;
1238a62a56d0SJonathan Lemon 	}
1239a62a56d0SJonathan Lemon 
1240773bda96SJonathan Lemon 	/* XXX should fix API - this converts s/ns -> ts -> s/ns */
1241773bda96SJonathan Lemon 	sec = ioread32(&reg->time_sec);
1242773bda96SJonathan Lemon 	nsec = ioread32(&reg->time_ns);
1243773bda96SJonathan Lemon 
1244773bda96SJonathan Lemon 	ev.type = PTP_CLOCK_EXTTS;
1245773bda96SJonathan Lemon 	ev.index = ext->info->index;
12461acffc6eSJonathan Lemon 	ev.timestamp = sec * NSEC_PER_SEC + nsec;
1247773bda96SJonathan Lemon 
1248773bda96SJonathan Lemon 	ptp_clock_event(ext->bp->ptp, &ev);
1249773bda96SJonathan Lemon 
1250a62a56d0SJonathan Lemon out:
1251773bda96SJonathan Lemon 	iowrite32(1, &reg->intr);	/* write 1 to ack */
1252773bda96SJonathan Lemon 
1253773bda96SJonathan Lemon 	return IRQ_HANDLED;
1254773bda96SJonathan Lemon }
1255773bda96SJonathan Lemon 
1256773bda96SJonathan Lemon static int
1257a62a56d0SJonathan Lemon ptp_ocp_ts_enable(void *priv, u32 req, bool enable)
1258773bda96SJonathan Lemon {
1259773bda96SJonathan Lemon 	struct ptp_ocp_ext_src *ext = priv;
1260773bda96SJonathan Lemon 	struct ts_reg __iomem *reg = ext->mem;
1261a62a56d0SJonathan Lemon 	struct ptp_ocp *bp = ext->bp;
1262a62a56d0SJonathan Lemon 
1263a62a56d0SJonathan Lemon 	if (ext == bp->pps) {
1264a62a56d0SJonathan Lemon 		u32 old_map = bp->pps_req_map;
1265a62a56d0SJonathan Lemon 
1266a62a56d0SJonathan Lemon 		if (enable)
1267a62a56d0SJonathan Lemon 			bp->pps_req_map |= req;
1268a62a56d0SJonathan Lemon 		else
1269a62a56d0SJonathan Lemon 			bp->pps_req_map &= ~req;
1270a62a56d0SJonathan Lemon 
1271a62a56d0SJonathan Lemon 		/* if no state change, just return */
1272a62a56d0SJonathan Lemon 		if ((!!old_map ^ !!bp->pps_req_map) == 0)
1273a62a56d0SJonathan Lemon 			return 0;
1274a62a56d0SJonathan Lemon 	}
1275773bda96SJonathan Lemon 
1276773bda96SJonathan Lemon 	if (enable) {
1277773bda96SJonathan Lemon 		iowrite32(1, &reg->enable);
1278773bda96SJonathan Lemon 		iowrite32(1, &reg->intr_mask);
1279773bda96SJonathan Lemon 		iowrite32(1, &reg->intr);
1280773bda96SJonathan Lemon 	} else {
1281773bda96SJonathan Lemon 		iowrite32(0, &reg->intr_mask);
1282773bda96SJonathan Lemon 		iowrite32(0, &reg->enable);
1283773bda96SJonathan Lemon 	}
1284773bda96SJonathan Lemon 
1285773bda96SJonathan Lemon 	return 0;
1286773bda96SJonathan Lemon }
1287773bda96SJonathan Lemon 
1288773bda96SJonathan Lemon static void
1289773bda96SJonathan Lemon ptp_ocp_unregister_ext(struct ptp_ocp_ext_src *ext)
1290773bda96SJonathan Lemon {
1291a62a56d0SJonathan Lemon 	ext->info->enable(ext, ~0, false);
1292773bda96SJonathan Lemon 	pci_free_irq(ext->bp->pdev, ext->irq_vec, ext);
1293773bda96SJonathan Lemon 	kfree(ext);
1294773bda96SJonathan Lemon }
1295773bda96SJonathan Lemon 
1296773bda96SJonathan Lemon static int
1297773bda96SJonathan Lemon ptp_ocp_register_ext(struct ptp_ocp *bp, struct ocp_resource *r)
1298773bda96SJonathan Lemon {
1299773bda96SJonathan Lemon 	struct pci_dev *pdev = bp->pdev;
1300773bda96SJonathan Lemon 	struct ptp_ocp_ext_src *ext;
1301773bda96SJonathan Lemon 	int err;
1302773bda96SJonathan Lemon 
1303773bda96SJonathan Lemon 	ext = kzalloc(sizeof(*ext), GFP_KERNEL);
1304773bda96SJonathan Lemon 	if (!ext)
1305773bda96SJonathan Lemon 		return -ENOMEM;
1306773bda96SJonathan Lemon 
1307773bda96SJonathan Lemon 	err = -EINVAL;
1308773bda96SJonathan Lemon 	ext->mem = ptp_ocp_get_mem(bp, r);
1309773bda96SJonathan Lemon 	if (!ext->mem)
1310773bda96SJonathan Lemon 		goto out;
1311773bda96SJonathan Lemon 
1312773bda96SJonathan Lemon 	ext->bp = bp;
1313773bda96SJonathan Lemon 	ext->info = r->extra;
1314773bda96SJonathan Lemon 	ext->irq_vec = r->irq_vec;
1315773bda96SJonathan Lemon 
1316773bda96SJonathan Lemon 	err = pci_request_irq(pdev, r->irq_vec, ext->info->irq_fcn, NULL,
131756ec4403SJonathan Lemon 			      ext, "ocp%d.%s", bp->id, r->name);
1318773bda96SJonathan Lemon 	if (err) {
1319773bda96SJonathan Lemon 		dev_err(&pdev->dev, "Could not get irq %d\n", r->irq_vec);
1320773bda96SJonathan Lemon 		goto out;
1321773bda96SJonathan Lemon 	}
1322773bda96SJonathan Lemon 
1323773bda96SJonathan Lemon 	bp_assign_entry(bp, r, ext);
1324773bda96SJonathan Lemon 
1325773bda96SJonathan Lemon 	return 0;
1326773bda96SJonathan Lemon 
1327773bda96SJonathan Lemon out:
1328773bda96SJonathan Lemon 	kfree(ext);
1329773bda96SJonathan Lemon 	return err;
1330773bda96SJonathan Lemon }
1331773bda96SJonathan Lemon 
1332773bda96SJonathan Lemon static int
1333773bda96SJonathan Lemon ptp_ocp_serial_line(struct ptp_ocp *bp, struct ocp_resource *r)
1334773bda96SJonathan Lemon {
1335773bda96SJonathan Lemon 	struct pci_dev *pdev = bp->pdev;
1336773bda96SJonathan Lemon 	struct uart_8250_port uart;
1337773bda96SJonathan Lemon 
1338773bda96SJonathan Lemon 	/* Setting UPF_IOREMAP and leaving port.membase unspecified lets
1339773bda96SJonathan Lemon 	 * the serial port device claim and release the pci resource.
1340773bda96SJonathan Lemon 	 */
1341773bda96SJonathan Lemon 	memset(&uart, 0, sizeof(uart));
1342773bda96SJonathan Lemon 	uart.port.dev = &pdev->dev;
1343773bda96SJonathan Lemon 	uart.port.iotype = UPIO_MEM;
1344773bda96SJonathan Lemon 	uart.port.regshift = 2;
1345773bda96SJonathan Lemon 	uart.port.mapbase = pci_resource_start(pdev, 0) + r->offset;
1346773bda96SJonathan Lemon 	uart.port.irq = pci_irq_vector(pdev, r->irq_vec);
1347773bda96SJonathan Lemon 	uart.port.uartclk = 50000000;
1348773bda96SJonathan Lemon 	uart.port.flags = UPF_FIXED_TYPE | UPF_IOREMAP;
1349773bda96SJonathan Lemon 	uart.port.type = PORT_16550A;
1350773bda96SJonathan Lemon 
1351773bda96SJonathan Lemon 	return serial8250_register_8250_port(&uart);
1352773bda96SJonathan Lemon }
1353773bda96SJonathan Lemon 
1354773bda96SJonathan Lemon static int
1355773bda96SJonathan Lemon ptp_ocp_register_serial(struct ptp_ocp *bp, struct ocp_resource *r)
1356773bda96SJonathan Lemon {
1357773bda96SJonathan Lemon 	int port;
1358773bda96SJonathan Lemon 
1359773bda96SJonathan Lemon 	port = ptp_ocp_serial_line(bp, r);
1360773bda96SJonathan Lemon 	if (port < 0)
1361773bda96SJonathan Lemon 		return port;
1362773bda96SJonathan Lemon 
1363773bda96SJonathan Lemon 	bp_assign_entry(bp, r, port);
1364773bda96SJonathan Lemon 
1365773bda96SJonathan Lemon 	return 0;
1366773bda96SJonathan Lemon }
1367773bda96SJonathan Lemon 
1368773bda96SJonathan Lemon static int
1369773bda96SJonathan Lemon ptp_ocp_register_mem(struct ptp_ocp *bp, struct ocp_resource *r)
1370773bda96SJonathan Lemon {
1371773bda96SJonathan Lemon 	void __iomem *mem;
1372773bda96SJonathan Lemon 
1373773bda96SJonathan Lemon 	mem = ptp_ocp_get_mem(bp, r);
1374773bda96SJonathan Lemon 	if (!mem)
1375773bda96SJonathan Lemon 		return -EINVAL;
1376773bda96SJonathan Lemon 
1377773bda96SJonathan Lemon 	bp_assign_entry(bp, r, mem);
1378773bda96SJonathan Lemon 
1379773bda96SJonathan Lemon 	return 0;
1380773bda96SJonathan Lemon }
1381773bda96SJonathan Lemon 
1382e3516bb4SJonathan Lemon static void
1383e3516bb4SJonathan Lemon ptp_ocp_nmea_out_init(struct ptp_ocp *bp)
1384e3516bb4SJonathan Lemon {
1385e3516bb4SJonathan Lemon 	if (!bp->nmea_out)
1386e3516bb4SJonathan Lemon 		return;
1387e3516bb4SJonathan Lemon 
1388e3516bb4SJonathan Lemon 	iowrite32(0, &bp->nmea_out->ctrl);		/* disable */
1389e3516bb4SJonathan Lemon 	iowrite32(7, &bp->nmea_out->uart_baud);		/* 115200 */
1390e3516bb4SJonathan Lemon 	iowrite32(1, &bp->nmea_out->ctrl);		/* enable */
1391e3516bb4SJonathan Lemon }
1392e3516bb4SJonathan Lemon 
1393773bda96SJonathan Lemon /* FB specific board initializers; last "resource" registered. */
1394773bda96SJonathan Lemon static int
1395773bda96SJonathan Lemon ptp_ocp_fb_board_init(struct ptp_ocp *bp, struct ocp_resource *r)
1396773bda96SJonathan Lemon {
1397773bda96SJonathan Lemon 	bp->flash_start = 1024 * 4096;
1398773bda96SJonathan Lemon 
1399065efcc5SJonathan Lemon 	ptp_ocp_tod_init(bp);
1400e3516bb4SJonathan Lemon 	ptp_ocp_nmea_out_init(bp);
1401065efcc5SJonathan Lemon 
1402773bda96SJonathan Lemon 	return ptp_ocp_init_clock(bp);
1403773bda96SJonathan Lemon }
1404773bda96SJonathan Lemon 
140556ec4403SJonathan Lemon static bool
140656ec4403SJonathan Lemon ptp_ocp_allow_irq(struct ptp_ocp *bp, struct ocp_resource *r)
140756ec4403SJonathan Lemon {
140856ec4403SJonathan Lemon 	bool allow = !r->irq_vec || r->irq_vec < bp->n_irqs;
140956ec4403SJonathan Lemon 
141056ec4403SJonathan Lemon 	if (!allow)
141156ec4403SJonathan Lemon 		dev_err(&bp->pdev->dev, "irq %d out of range, skipping %s\n",
141256ec4403SJonathan Lemon 			r->irq_vec, r->name);
141356ec4403SJonathan Lemon 	return allow;
141456ec4403SJonathan Lemon }
141556ec4403SJonathan Lemon 
1416773bda96SJonathan Lemon static int
1417773bda96SJonathan Lemon ptp_ocp_register_resources(struct ptp_ocp *bp, kernel_ulong_t driver_data)
1418773bda96SJonathan Lemon {
1419773bda96SJonathan Lemon 	struct ocp_resource *r, *table;
1420773bda96SJonathan Lemon 	int err = 0;
1421773bda96SJonathan Lemon 
1422773bda96SJonathan Lemon 	table = (struct ocp_resource *)driver_data;
1423773bda96SJonathan Lemon 	for (r = table; r->setup; r++) {
142456ec4403SJonathan Lemon 		if (!ptp_ocp_allow_irq(bp, r))
142556ec4403SJonathan Lemon 			continue;
1426773bda96SJonathan Lemon 		err = r->setup(bp, r);
1427bceff290SJonathan Lemon 		if (err) {
1428bceff290SJonathan Lemon 			dev_err(&bp->pdev->dev,
1429bceff290SJonathan Lemon 				"Could not register %s: err %d\n",
1430bceff290SJonathan Lemon 				r->name, err);
1431773bda96SJonathan Lemon 			break;
1432773bda96SJonathan Lemon 		}
1433bceff290SJonathan Lemon 	}
1434773bda96SJonathan Lemon 	return err;
1435773bda96SJonathan Lemon }
1436773bda96SJonathan Lemon 
14376baf2925SJonathan Lemon static void
14386baf2925SJonathan Lemon ptp_ocp_enable_fpga(u32 __iomem *reg, u32 bit, bool enable)
14396baf2925SJonathan Lemon {
14406baf2925SJonathan Lemon 	u32 ctrl;
14416baf2925SJonathan Lemon 	bool on;
14426baf2925SJonathan Lemon 
14436baf2925SJonathan Lemon 	ctrl = ioread32(reg);
14446baf2925SJonathan Lemon 	on = ctrl & bit;
14456baf2925SJonathan Lemon 	if (on ^ enable) {
14466baf2925SJonathan Lemon 		ctrl &= ~bit;
14476baf2925SJonathan Lemon 		ctrl |= enable ? bit : 0;
14486baf2925SJonathan Lemon 		iowrite32(ctrl, reg);
14496baf2925SJonathan Lemon 	}
14506baf2925SJonathan Lemon }
14516baf2925SJonathan Lemon 
14526baf2925SJonathan Lemon static void
14536baf2925SJonathan Lemon ptp_ocp_irig_out(struct ptp_ocp *bp, bool enable)
14546baf2925SJonathan Lemon {
14556baf2925SJonathan Lemon 	return ptp_ocp_enable_fpga(&bp->irig_out->ctrl,
14566baf2925SJonathan Lemon 				   IRIG_M_CTRL_ENABLE, enable);
14576baf2925SJonathan Lemon }
14586baf2925SJonathan Lemon 
14596baf2925SJonathan Lemon static void
14606baf2925SJonathan Lemon ptp_ocp_irig_in(struct ptp_ocp *bp, bool enable)
14616baf2925SJonathan Lemon {
14626baf2925SJonathan Lemon 	return ptp_ocp_enable_fpga(&bp->irig_in->ctrl,
14636baf2925SJonathan Lemon 				   IRIG_S_CTRL_ENABLE, enable);
14646baf2925SJonathan Lemon }
14656baf2925SJonathan Lemon 
14666baf2925SJonathan Lemon static void
14676baf2925SJonathan Lemon ptp_ocp_dcf_out(struct ptp_ocp *bp, bool enable)
14686baf2925SJonathan Lemon {
14696baf2925SJonathan Lemon 	return ptp_ocp_enable_fpga(&bp->dcf_out->ctrl,
14706baf2925SJonathan Lemon 				   DCF_M_CTRL_ENABLE, enable);
14716baf2925SJonathan Lemon }
14726baf2925SJonathan Lemon 
14736baf2925SJonathan Lemon static void
14746baf2925SJonathan Lemon ptp_ocp_dcf_in(struct ptp_ocp *bp, bool enable)
14756baf2925SJonathan Lemon {
14766baf2925SJonathan Lemon 	return ptp_ocp_enable_fpga(&bp->dcf_in->ctrl,
14776baf2925SJonathan Lemon 				   DCF_S_CTRL_ENABLE, enable);
14786baf2925SJonathan Lemon }
14796baf2925SJonathan Lemon 
14806baf2925SJonathan Lemon static void
14816baf2925SJonathan Lemon __handle_signal_outputs(struct ptp_ocp *bp, u32 val)
14826baf2925SJonathan Lemon {
14836baf2925SJonathan Lemon 	ptp_ocp_irig_out(bp, val & 0x00100010);
14846baf2925SJonathan Lemon 	ptp_ocp_dcf_out(bp, val & 0x00200020);
14856baf2925SJonathan Lemon }
14866baf2925SJonathan Lemon 
14876baf2925SJonathan Lemon static void
14886baf2925SJonathan Lemon __handle_signal_inputs(struct ptp_ocp *bp, u32 val)
14896baf2925SJonathan Lemon {
14906baf2925SJonathan Lemon 	ptp_ocp_irig_in(bp, val & 0x00100010);
14916baf2925SJonathan Lemon 	ptp_ocp_dcf_in(bp, val & 0x00200020);
14926baf2925SJonathan Lemon }
14936baf2925SJonathan Lemon 
1494e1daf0ecSJonathan Lemon /*
1495e1daf0ecSJonathan Lemon  * ANT0 == gps	(in)
1496e1daf0ecSJonathan Lemon  * ANT1 == sma1 (in)
1497e1daf0ecSJonathan Lemon  * ANT2 == sma2 (in)
1498e1daf0ecSJonathan Lemon  * ANT3 == sma3 (out)
1499e1daf0ecSJonathan Lemon  * ANT4 == sma4 (out)
1500e1daf0ecSJonathan Lemon  */
1501e1daf0ecSJonathan Lemon 
1502e1daf0ecSJonathan Lemon enum ptp_ocp_sma_mode {
1503e1daf0ecSJonathan Lemon 	SMA_MODE_IN,
1504e1daf0ecSJonathan Lemon 	SMA_MODE_OUT,
1505e1daf0ecSJonathan Lemon };
1506e1daf0ecSJonathan Lemon 
1507e1daf0ecSJonathan Lemon static struct ptp_ocp_sma_connector {
1508e1daf0ecSJonathan Lemon 	enum	ptp_ocp_sma_mode mode;
1509e1daf0ecSJonathan Lemon 	bool	fixed_mode;
1510e1daf0ecSJonathan Lemon 	u16	default_out_idx;
1511e1daf0ecSJonathan Lemon } ptp_ocp_sma_map[4] = {
1512e1daf0ecSJonathan Lemon 	{
1513e1daf0ecSJonathan Lemon 		.mode = SMA_MODE_IN,
1514e1daf0ecSJonathan Lemon 		.fixed_mode = true,
1515e1daf0ecSJonathan Lemon 	},
1516e1daf0ecSJonathan Lemon 	{
1517e1daf0ecSJonathan Lemon 		.mode = SMA_MODE_IN,
1518e1daf0ecSJonathan Lemon 		.fixed_mode = true,
1519e1daf0ecSJonathan Lemon 	},
1520e1daf0ecSJonathan Lemon 	{
1521e1daf0ecSJonathan Lemon 		.mode = SMA_MODE_OUT,
1522e1daf0ecSJonathan Lemon 		.fixed_mode = true,
1523e1daf0ecSJonathan Lemon 		.default_out_idx = 0,		/* 10Mhz */
1524e1daf0ecSJonathan Lemon 	},
1525e1daf0ecSJonathan Lemon 	{
1526e1daf0ecSJonathan Lemon 		.mode = SMA_MODE_OUT,
1527e1daf0ecSJonathan Lemon 		.fixed_mode = true,
1528e1daf0ecSJonathan Lemon 		.default_out_idx = 1,		/* PHC */
1529e1daf0ecSJonathan Lemon 	},
1530e1daf0ecSJonathan Lemon };
1531e1daf0ecSJonathan Lemon 
1532e1daf0ecSJonathan Lemon static ssize_t
1533e1daf0ecSJonathan Lemon ptp_ocp_show_output(u32 val, char *buf, int default_idx)
1534e1daf0ecSJonathan Lemon {
1535e1daf0ecSJonathan Lemon 	const char *name;
1536e1daf0ecSJonathan Lemon 	ssize_t count;
1537e1daf0ecSJonathan Lemon 
1538e1daf0ecSJonathan Lemon 	count = sysfs_emit(buf, "OUT: ");
1539e1daf0ecSJonathan Lemon 	name = ptp_ocp_select_name_from_val(ptp_ocp_sma_out, val);
1540e1daf0ecSJonathan Lemon 	if (!name)
1541e1daf0ecSJonathan Lemon 		name = ptp_ocp_sma_out[default_idx].name;
1542e1daf0ecSJonathan Lemon 	count += sysfs_emit_at(buf, count, "%s\n", name);
1543e1daf0ecSJonathan Lemon 	return count;
1544e1daf0ecSJonathan Lemon }
1545e1daf0ecSJonathan Lemon 
1546e1daf0ecSJonathan Lemon static ssize_t
1547e1daf0ecSJonathan Lemon ptp_ocp_show_inputs(u32 val, char *buf, const char *zero_in)
1548e1daf0ecSJonathan Lemon {
1549e1daf0ecSJonathan Lemon 	const char *name;
1550e1daf0ecSJonathan Lemon 	ssize_t count;
1551e1daf0ecSJonathan Lemon 	int i;
1552e1daf0ecSJonathan Lemon 
1553e1daf0ecSJonathan Lemon 	count = sysfs_emit(buf, "IN: ");
1554e1daf0ecSJonathan Lemon 	for (i = 0; i < ARRAY_SIZE(ptp_ocp_sma_in); i++) {
1555e1daf0ecSJonathan Lemon 		if (val & ptp_ocp_sma_in[i].value) {
1556e1daf0ecSJonathan Lemon 			name = ptp_ocp_sma_in[i].name;
1557e1daf0ecSJonathan Lemon 			count += sysfs_emit_at(buf, count, "%s ", name);
1558e1daf0ecSJonathan Lemon 		}
1559e1daf0ecSJonathan Lemon 	}
1560e1daf0ecSJonathan Lemon 	if (!val && zero_in)
1561e1daf0ecSJonathan Lemon 		count += sysfs_emit_at(buf, count, "%s ", zero_in);
1562e1daf0ecSJonathan Lemon 	if (count)
1563e1daf0ecSJonathan Lemon 		count--;
1564e1daf0ecSJonathan Lemon 	count += sysfs_emit_at(buf, count, "\n");
1565e1daf0ecSJonathan Lemon 	return count;
1566e1daf0ecSJonathan Lemon }
1567e1daf0ecSJonathan Lemon 
1568e1daf0ecSJonathan Lemon static int
1569e1daf0ecSJonathan Lemon sma_parse_inputs(const char *buf, enum ptp_ocp_sma_mode *mode)
1570e1daf0ecSJonathan Lemon {
1571e1daf0ecSJonathan Lemon 	struct ocp_selector *tbl[] = { ptp_ocp_sma_in, ptp_ocp_sma_out };
1572e1daf0ecSJonathan Lemon 	int idx, count, dir;
1573e1daf0ecSJonathan Lemon 	char **argv;
1574e1daf0ecSJonathan Lemon 	int ret;
1575e1daf0ecSJonathan Lemon 
1576e1daf0ecSJonathan Lemon 	argv = argv_split(GFP_KERNEL, buf, &count);
1577e1daf0ecSJonathan Lemon 	if (!argv)
1578e1daf0ecSJonathan Lemon 		return -ENOMEM;
1579e1daf0ecSJonathan Lemon 
1580e1daf0ecSJonathan Lemon 	ret = -EINVAL;
1581e1daf0ecSJonathan Lemon 	if (!count)
1582e1daf0ecSJonathan Lemon 		goto out;
1583e1daf0ecSJonathan Lemon 
1584e1daf0ecSJonathan Lemon 	idx = 0;
1585e1daf0ecSJonathan Lemon 	dir = *mode == SMA_MODE_IN ? 0 : 1;
1586e1daf0ecSJonathan Lemon 	if (!strcasecmp("IN:", argv[idx])) {
1587e1daf0ecSJonathan Lemon 		dir = 0;
1588e1daf0ecSJonathan Lemon 		idx++;
1589e1daf0ecSJonathan Lemon 	}
1590e1daf0ecSJonathan Lemon 	if (!strcasecmp("OUT:", argv[0])) {
1591e1daf0ecSJonathan Lemon 		dir = 1;
1592e1daf0ecSJonathan Lemon 		idx++;
1593e1daf0ecSJonathan Lemon 	}
1594e1daf0ecSJonathan Lemon 	*mode = dir == 0 ? SMA_MODE_IN : SMA_MODE_OUT;
1595e1daf0ecSJonathan Lemon 
1596e1daf0ecSJonathan Lemon 	ret = 0;
1597e1daf0ecSJonathan Lemon 	for (; idx < count; idx++)
1598e1daf0ecSJonathan Lemon 		ret |= ptp_ocp_select_val_from_name(tbl[dir], argv[idx]);
1599e1daf0ecSJonathan Lemon 	if (ret < 0)
1600e1daf0ecSJonathan Lemon 		ret = -EINVAL;
1601e1daf0ecSJonathan Lemon 
1602e1daf0ecSJonathan Lemon out:
1603e1daf0ecSJonathan Lemon 	argv_free(argv);
1604e1daf0ecSJonathan Lemon 	return ret;
1605e1daf0ecSJonathan Lemon }
1606e1daf0ecSJonathan Lemon 
1607e1daf0ecSJonathan Lemon static ssize_t
1608e1daf0ecSJonathan Lemon ptp_ocp_sma_show(struct ptp_ocp *bp, int sma_nr, u32 val, char *buf,
1609e1daf0ecSJonathan Lemon 		 const char *zero_in)
1610e1daf0ecSJonathan Lemon {
1611e1daf0ecSJonathan Lemon 	struct ptp_ocp_sma_connector *sma = &ptp_ocp_sma_map[sma_nr - 1];
1612e1daf0ecSJonathan Lemon 
1613e1daf0ecSJonathan Lemon 	if (sma->mode == SMA_MODE_IN)
1614e1daf0ecSJonathan Lemon 		return ptp_ocp_show_inputs(val, buf, zero_in);
1615e1daf0ecSJonathan Lemon 
1616e1daf0ecSJonathan Lemon 	return ptp_ocp_show_output(val, buf, sma->default_out_idx);
1617e1daf0ecSJonathan Lemon }
1618e1daf0ecSJonathan Lemon 
1619e1daf0ecSJonathan Lemon static ssize_t
1620e1daf0ecSJonathan Lemon sma1_show(struct device *dev, struct device_attribute *attr, char *buf)
1621e1daf0ecSJonathan Lemon {
1622e1daf0ecSJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
1623e1daf0ecSJonathan Lemon 	u32 val;
1624e1daf0ecSJonathan Lemon 
1625e1daf0ecSJonathan Lemon 	val = ioread32(&bp->sma->gpio1) & 0x3f;
1626e1daf0ecSJonathan Lemon 	return ptp_ocp_sma_show(bp, 1, val, buf, ptp_ocp_sma_in[0].name);
1627e1daf0ecSJonathan Lemon }
1628e1daf0ecSJonathan Lemon 
1629e1daf0ecSJonathan Lemon static ssize_t
1630e1daf0ecSJonathan Lemon sma2_show(struct device *dev, struct device_attribute *attr, char *buf)
1631e1daf0ecSJonathan Lemon {
1632e1daf0ecSJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
1633e1daf0ecSJonathan Lemon 	u32 val;
1634e1daf0ecSJonathan Lemon 
1635e1daf0ecSJonathan Lemon 	val = (ioread32(&bp->sma->gpio1) >> 16) & 0x3f;
1636e1daf0ecSJonathan Lemon 	return ptp_ocp_sma_show(bp, 2, val, buf, NULL);
1637e1daf0ecSJonathan Lemon }
1638e1daf0ecSJonathan Lemon 
1639e1daf0ecSJonathan Lemon static ssize_t
1640e1daf0ecSJonathan Lemon sma3_show(struct device *dev, struct device_attribute *attr, char *buf)
1641e1daf0ecSJonathan Lemon {
1642e1daf0ecSJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
1643e1daf0ecSJonathan Lemon 	u32 val;
1644e1daf0ecSJonathan Lemon 
1645e1daf0ecSJonathan Lemon 	val = ioread32(&bp->sma->gpio2) & 0x3f;
1646e1daf0ecSJonathan Lemon 	return ptp_ocp_sma_show(bp, 3, val, buf, NULL);
1647e1daf0ecSJonathan Lemon }
1648e1daf0ecSJonathan Lemon 
1649e1daf0ecSJonathan Lemon static ssize_t
1650e1daf0ecSJonathan Lemon sma4_show(struct device *dev, struct device_attribute *attr, char *buf)
1651e1daf0ecSJonathan Lemon {
1652e1daf0ecSJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
1653e1daf0ecSJonathan Lemon 	u32 val;
1654e1daf0ecSJonathan Lemon 
1655e1daf0ecSJonathan Lemon 	val = (ioread32(&bp->sma->gpio2) >> 16) & 0x3f;
1656e1daf0ecSJonathan Lemon 	return ptp_ocp_sma_show(bp, 4, val, buf, NULL);
1657e1daf0ecSJonathan Lemon }
1658e1daf0ecSJonathan Lemon 
1659e1daf0ecSJonathan Lemon static void
1660e1daf0ecSJonathan Lemon ptp_ocp_sma_store_output(struct ptp_ocp *bp, u32 val, u32 shift)
1661e1daf0ecSJonathan Lemon {
1662e1daf0ecSJonathan Lemon 	unsigned long flags;
1663e1daf0ecSJonathan Lemon 	u32 gpio, mask;
1664e1daf0ecSJonathan Lemon 
1665e1daf0ecSJonathan Lemon 	mask = 0xffff << (16 - shift);
1666e1daf0ecSJonathan Lemon 
1667e1daf0ecSJonathan Lemon 	spin_lock_irqsave(&bp->lock, flags);
1668e1daf0ecSJonathan Lemon 
1669e1daf0ecSJonathan Lemon 	gpio = ioread32(&bp->sma->gpio2);
1670e1daf0ecSJonathan Lemon 	gpio = (gpio & mask) | (val << shift);
16716baf2925SJonathan Lemon 
16726baf2925SJonathan Lemon 	__handle_signal_outputs(bp, gpio);
16736baf2925SJonathan Lemon 
1674e1daf0ecSJonathan Lemon 	iowrite32(gpio, &bp->sma->gpio2);
1675e1daf0ecSJonathan Lemon 
1676e1daf0ecSJonathan Lemon 	spin_unlock_irqrestore(&bp->lock, flags);
1677e1daf0ecSJonathan Lemon }
1678e1daf0ecSJonathan Lemon 
1679e1daf0ecSJonathan Lemon static void
1680e1daf0ecSJonathan Lemon ptp_ocp_sma_store_inputs(struct ptp_ocp *bp, u32 val, u32 shift)
1681e1daf0ecSJonathan Lemon {
1682e1daf0ecSJonathan Lemon 	unsigned long flags;
1683e1daf0ecSJonathan Lemon 	u32 gpio, mask;
1684e1daf0ecSJonathan Lemon 
1685e1daf0ecSJonathan Lemon 	mask = 0xffff << (16 - shift);
1686e1daf0ecSJonathan Lemon 
1687e1daf0ecSJonathan Lemon 	spin_lock_irqsave(&bp->lock, flags);
1688e1daf0ecSJonathan Lemon 
1689e1daf0ecSJonathan Lemon 	gpio = ioread32(&bp->sma->gpio1);
1690e1daf0ecSJonathan Lemon 	gpio = (gpio & mask) | (val << shift);
16916baf2925SJonathan Lemon 
16926baf2925SJonathan Lemon 	__handle_signal_inputs(bp, gpio);
16936baf2925SJonathan Lemon 
1694e1daf0ecSJonathan Lemon 	iowrite32(gpio, &bp->sma->gpio1);
1695e1daf0ecSJonathan Lemon 
1696e1daf0ecSJonathan Lemon 	spin_unlock_irqrestore(&bp->lock, flags);
1697e1daf0ecSJonathan Lemon }
1698e1daf0ecSJonathan Lemon 
1699e1daf0ecSJonathan Lemon static ssize_t
1700e1daf0ecSJonathan Lemon ptp_ocp_sma_store(struct ptp_ocp *bp, const char *buf, int sma_nr, u32 shift)
1701e1daf0ecSJonathan Lemon {
1702e1daf0ecSJonathan Lemon 	struct ptp_ocp_sma_connector *sma = &ptp_ocp_sma_map[sma_nr - 1];
1703e1daf0ecSJonathan Lemon 	enum ptp_ocp_sma_mode mode;
1704e1daf0ecSJonathan Lemon 	int val;
1705e1daf0ecSJonathan Lemon 
1706e1daf0ecSJonathan Lemon 	mode = sma->mode;
1707e1daf0ecSJonathan Lemon 	val = sma_parse_inputs(buf, &mode);
1708e1daf0ecSJonathan Lemon 	if (val < 0)
1709e1daf0ecSJonathan Lemon 		return val;
1710e1daf0ecSJonathan Lemon 
1711e1daf0ecSJonathan Lemon 	if (mode != sma->mode && sma->fixed_mode)
1712e1daf0ecSJonathan Lemon 		return -EOPNOTSUPP;
1713e1daf0ecSJonathan Lemon 
1714e1daf0ecSJonathan Lemon 	if (mode != sma->mode) {
1715e1daf0ecSJonathan Lemon 		pr_err("Mode changes not supported yet.\n");
1716e1daf0ecSJonathan Lemon 		return -EOPNOTSUPP;
1717e1daf0ecSJonathan Lemon 	}
1718e1daf0ecSJonathan Lemon 
1719e1daf0ecSJonathan Lemon 	if (sma->mode == SMA_MODE_IN)
1720e1daf0ecSJonathan Lemon 		ptp_ocp_sma_store_inputs(bp, val, shift);
1721e1daf0ecSJonathan Lemon 	else
1722e1daf0ecSJonathan Lemon 		ptp_ocp_sma_store_output(bp, val, shift);
1723e1daf0ecSJonathan Lemon 
1724e1daf0ecSJonathan Lemon 	return 0;
1725e1daf0ecSJonathan Lemon }
1726e1daf0ecSJonathan Lemon 
1727e1daf0ecSJonathan Lemon static ssize_t
1728e1daf0ecSJonathan Lemon sma1_store(struct device *dev, struct device_attribute *attr,
1729e1daf0ecSJonathan Lemon 	   const char *buf, size_t count)
1730e1daf0ecSJonathan Lemon {
1731e1daf0ecSJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
1732e1daf0ecSJonathan Lemon 	int err;
1733e1daf0ecSJonathan Lemon 
1734e1daf0ecSJonathan Lemon 	err = ptp_ocp_sma_store(bp, buf, 1, 0);
1735e1daf0ecSJonathan Lemon 	return err ? err : count;
1736e1daf0ecSJonathan Lemon }
1737e1daf0ecSJonathan Lemon 
1738e1daf0ecSJonathan Lemon static ssize_t
1739e1daf0ecSJonathan Lemon sma2_store(struct device *dev, struct device_attribute *attr,
1740e1daf0ecSJonathan Lemon 	   const char *buf, size_t count)
1741e1daf0ecSJonathan Lemon {
1742e1daf0ecSJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
1743e1daf0ecSJonathan Lemon 	int err;
1744e1daf0ecSJonathan Lemon 
1745e1daf0ecSJonathan Lemon 	err = ptp_ocp_sma_store(bp, buf, 2, 16);
1746e1daf0ecSJonathan Lemon 	return err ? err : count;
1747e1daf0ecSJonathan Lemon }
1748e1daf0ecSJonathan Lemon 
1749e1daf0ecSJonathan Lemon static ssize_t
1750e1daf0ecSJonathan Lemon sma3_store(struct device *dev, struct device_attribute *attr,
1751e1daf0ecSJonathan Lemon 	   const char *buf, size_t count)
1752e1daf0ecSJonathan Lemon {
1753e1daf0ecSJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
1754e1daf0ecSJonathan Lemon 	int err;
1755e1daf0ecSJonathan Lemon 
1756e1daf0ecSJonathan Lemon 	err = ptp_ocp_sma_store(bp, buf, 3, 0);
1757e1daf0ecSJonathan Lemon 	return err ? err : count;
1758e1daf0ecSJonathan Lemon }
1759e1daf0ecSJonathan Lemon 
1760e1daf0ecSJonathan Lemon static ssize_t
1761e1daf0ecSJonathan Lemon sma4_store(struct device *dev, struct device_attribute *attr,
1762e1daf0ecSJonathan Lemon 	   const char *buf, size_t count)
1763e1daf0ecSJonathan Lemon {
1764e1daf0ecSJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
1765e1daf0ecSJonathan Lemon 	int err;
1766e1daf0ecSJonathan Lemon 
1767e1daf0ecSJonathan Lemon 	err = ptp_ocp_sma_store(bp, buf, 4, 16);
1768e1daf0ecSJonathan Lemon 	return err ? err : count;
1769e1daf0ecSJonathan Lemon }
1770e1daf0ecSJonathan Lemon static DEVICE_ATTR_RW(sma1);
1771e1daf0ecSJonathan Lemon static DEVICE_ATTR_RW(sma2);
1772e1daf0ecSJonathan Lemon static DEVICE_ATTR_RW(sma3);
1773e1daf0ecSJonathan Lemon static DEVICE_ATTR_RW(sma4);
1774e1daf0ecSJonathan Lemon 
1775e1daf0ecSJonathan Lemon static ssize_t
1776e1daf0ecSJonathan Lemon available_sma_inputs_show(struct device *dev,
1777e1daf0ecSJonathan Lemon 			  struct device_attribute *attr, char *buf)
1778e1daf0ecSJonathan Lemon {
1779e1daf0ecSJonathan Lemon 	return ptp_ocp_select_table_show(ptp_ocp_sma_in, buf);
1780e1daf0ecSJonathan Lemon }
1781e1daf0ecSJonathan Lemon static DEVICE_ATTR_RO(available_sma_inputs);
1782e1daf0ecSJonathan Lemon 
1783e1daf0ecSJonathan Lemon static ssize_t
1784e1daf0ecSJonathan Lemon available_sma_outputs_show(struct device *dev,
1785e1daf0ecSJonathan Lemon 			   struct device_attribute *attr, char *buf)
1786e1daf0ecSJonathan Lemon {
1787e1daf0ecSJonathan Lemon 	return ptp_ocp_select_table_show(ptp_ocp_sma_out, buf);
1788e1daf0ecSJonathan Lemon }
1789e1daf0ecSJonathan Lemon static DEVICE_ATTR_RO(available_sma_outputs);
1790e1daf0ecSJonathan Lemon 
1791773bda96SJonathan Lemon static ssize_t
1792773bda96SJonathan Lemon serialnum_show(struct device *dev, struct device_attribute *attr, char *buf)
1793773bda96SJonathan Lemon {
1794773bda96SJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
1795773bda96SJonathan Lemon 
1796773bda96SJonathan Lemon 	if (!bp->has_serial)
1797773bda96SJonathan Lemon 		ptp_ocp_get_serial_number(bp);
1798773bda96SJonathan Lemon 
1799773bda96SJonathan Lemon 	return sysfs_emit(buf, "%pM\n", bp->serial);
1800773bda96SJonathan Lemon }
1801773bda96SJonathan Lemon static DEVICE_ATTR_RO(serialnum);
1802773bda96SJonathan Lemon 
1803773bda96SJonathan Lemon static ssize_t
1804ef0cfb34SJonathan Lemon gnss_sync_show(struct device *dev, struct device_attribute *attr, char *buf)
1805773bda96SJonathan Lemon {
1806773bda96SJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
1807773bda96SJonathan Lemon 	ssize_t ret;
1808773bda96SJonathan Lemon 
1809ef0cfb34SJonathan Lemon 	if (bp->gnss_lost)
1810ef0cfb34SJonathan Lemon 		ret = sysfs_emit(buf, "LOST @ %ptT\n", &bp->gnss_lost);
1811773bda96SJonathan Lemon 	else
1812773bda96SJonathan Lemon 		ret = sysfs_emit(buf, "SYNC\n");
1813773bda96SJonathan Lemon 
1814773bda96SJonathan Lemon 	return ret;
1815773bda96SJonathan Lemon }
1816ef0cfb34SJonathan Lemon static DEVICE_ATTR_RO(gnss_sync);
1817773bda96SJonathan Lemon 
1818773bda96SJonathan Lemon static ssize_t
181989260d87SJonathan Lemon utc_tai_offset_show(struct device *dev,
182089260d87SJonathan Lemon 		    struct device_attribute *attr, char *buf)
182189260d87SJonathan Lemon {
182289260d87SJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
182389260d87SJonathan Lemon 
182489260d87SJonathan Lemon 	return sysfs_emit(buf, "%d\n", bp->utc_tai_offset);
182589260d87SJonathan Lemon }
182689260d87SJonathan Lemon 
182789260d87SJonathan Lemon static ssize_t
182889260d87SJonathan Lemon utc_tai_offset_store(struct device *dev,
182989260d87SJonathan Lemon 		     struct device_attribute *attr,
183089260d87SJonathan Lemon 		     const char *buf, size_t count)
183189260d87SJonathan Lemon {
183289260d87SJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
183389260d87SJonathan Lemon 	int err;
183489260d87SJonathan Lemon 	u32 val;
183589260d87SJonathan Lemon 
183689260d87SJonathan Lemon 	err = kstrtou32(buf, 0, &val);
183789260d87SJonathan Lemon 	if (err)
183889260d87SJonathan Lemon 		return err;
183989260d87SJonathan Lemon 
184089260d87SJonathan Lemon 	ptp_ocp_utc_distribute(bp, val);
184189260d87SJonathan Lemon 
184289260d87SJonathan Lemon 	return count;
184389260d87SJonathan Lemon }
184489260d87SJonathan Lemon static DEVICE_ATTR_RW(utc_tai_offset);
184589260d87SJonathan Lemon 
184689260d87SJonathan Lemon static ssize_t
18471acffc6eSJonathan Lemon ts_window_adjust_show(struct device *dev,
18481acffc6eSJonathan Lemon 		      struct device_attribute *attr, char *buf)
18491acffc6eSJonathan Lemon {
18501acffc6eSJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
18511acffc6eSJonathan Lemon 
18521acffc6eSJonathan Lemon 	return sysfs_emit(buf, "%d\n", bp->ts_window_adjust);
18531acffc6eSJonathan Lemon }
18541acffc6eSJonathan Lemon 
18551acffc6eSJonathan Lemon static ssize_t
18561acffc6eSJonathan Lemon ts_window_adjust_store(struct device *dev,
18571acffc6eSJonathan Lemon 		       struct device_attribute *attr,
18581acffc6eSJonathan Lemon 		       const char *buf, size_t count)
18591acffc6eSJonathan Lemon {
18601acffc6eSJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
18611acffc6eSJonathan Lemon 	int err;
18621acffc6eSJonathan Lemon 	u32 val;
18631acffc6eSJonathan Lemon 
18641acffc6eSJonathan Lemon 	err = kstrtou32(buf, 0, &val);
18651acffc6eSJonathan Lemon 	if (err)
18661acffc6eSJonathan Lemon 		return err;
18671acffc6eSJonathan Lemon 
18681acffc6eSJonathan Lemon 	bp->ts_window_adjust = val;
18691acffc6eSJonathan Lemon 
18701acffc6eSJonathan Lemon 	return count;
18711acffc6eSJonathan Lemon }
18721acffc6eSJonathan Lemon static DEVICE_ATTR_RW(ts_window_adjust);
18731acffc6eSJonathan Lemon 
18741acffc6eSJonathan Lemon static ssize_t
1875d14ee252SJonathan Lemon irig_b_mode_show(struct device *dev, struct device_attribute *attr, char *buf)
1876d14ee252SJonathan Lemon {
1877d14ee252SJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
1878d14ee252SJonathan Lemon 	u32 val;
1879d14ee252SJonathan Lemon 
1880d14ee252SJonathan Lemon 	val = ioread32(&bp->irig_out->ctrl);
1881d14ee252SJonathan Lemon 	val = (val >> 16) & 0x07;
1882d14ee252SJonathan Lemon 	return sysfs_emit(buf, "%d\n", val);
1883d14ee252SJonathan Lemon }
1884d14ee252SJonathan Lemon 
1885d14ee252SJonathan Lemon static ssize_t
1886d14ee252SJonathan Lemon irig_b_mode_store(struct device *dev,
1887d14ee252SJonathan Lemon 		  struct device_attribute *attr,
1888d14ee252SJonathan Lemon 		  const char *buf, size_t count)
1889d14ee252SJonathan Lemon {
1890d14ee252SJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
1891d14ee252SJonathan Lemon 	unsigned long flags;
1892d14ee252SJonathan Lemon 	int err;
1893d14ee252SJonathan Lemon 	u32 reg;
1894d14ee252SJonathan Lemon 	u8 val;
1895d14ee252SJonathan Lemon 
1896d14ee252SJonathan Lemon 	err = kstrtou8(buf, 0, &val);
1897d14ee252SJonathan Lemon 	if (err)
1898d14ee252SJonathan Lemon 		return err;
1899d14ee252SJonathan Lemon 	if (val > 7)
1900d14ee252SJonathan Lemon 		return -EINVAL;
1901d14ee252SJonathan Lemon 
1902d14ee252SJonathan Lemon 	reg = ((val & 0x7) << 16);
1903d14ee252SJonathan Lemon 
1904d14ee252SJonathan Lemon 	spin_lock_irqsave(&bp->lock, flags);
1905d14ee252SJonathan Lemon 	iowrite32(0, &bp->irig_out->ctrl);		/* disable */
1906d14ee252SJonathan Lemon 	iowrite32(reg, &bp->irig_out->ctrl);		/* change mode */
1907d14ee252SJonathan Lemon 	iowrite32(reg | IRIG_M_CTRL_ENABLE, &bp->irig_out->ctrl);
1908d14ee252SJonathan Lemon 	spin_unlock_irqrestore(&bp->lock, flags);
1909d14ee252SJonathan Lemon 
1910d14ee252SJonathan Lemon 	return count;
1911d14ee252SJonathan Lemon }
1912d14ee252SJonathan Lemon static DEVICE_ATTR_RW(irig_b_mode);
1913d14ee252SJonathan Lemon 
1914d14ee252SJonathan Lemon static ssize_t
1915773bda96SJonathan Lemon clock_source_show(struct device *dev, struct device_attribute *attr, char *buf)
1916773bda96SJonathan Lemon {
1917773bda96SJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
1918773bda96SJonathan Lemon 	const char *p;
1919773bda96SJonathan Lemon 	u32 select;
1920773bda96SJonathan Lemon 
1921773bda96SJonathan Lemon 	select = ioread32(&bp->reg->select);
1922e1daf0ecSJonathan Lemon 	p = ptp_ocp_select_name_from_val(ptp_ocp_clock, select >> 16);
1923773bda96SJonathan Lemon 
1924773bda96SJonathan Lemon 	return sysfs_emit(buf, "%s\n", p);
1925773bda96SJonathan Lemon }
1926773bda96SJonathan Lemon 
1927773bda96SJonathan Lemon static ssize_t
1928773bda96SJonathan Lemon clock_source_store(struct device *dev, struct device_attribute *attr,
1929773bda96SJonathan Lemon 		   const char *buf, size_t count)
1930773bda96SJonathan Lemon {
1931773bda96SJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
1932773bda96SJonathan Lemon 	unsigned long flags;
1933773bda96SJonathan Lemon 	int val;
1934773bda96SJonathan Lemon 
1935e1daf0ecSJonathan Lemon 	val = ptp_ocp_select_val_from_name(ptp_ocp_clock, buf);
1936773bda96SJonathan Lemon 	if (val < 0)
1937773bda96SJonathan Lemon 		return val;
1938773bda96SJonathan Lemon 
1939773bda96SJonathan Lemon 	spin_lock_irqsave(&bp->lock, flags);
1940773bda96SJonathan Lemon 	iowrite32(val, &bp->reg->select);
1941773bda96SJonathan Lemon 	spin_unlock_irqrestore(&bp->lock, flags);
1942773bda96SJonathan Lemon 
1943773bda96SJonathan Lemon 	return count;
1944773bda96SJonathan Lemon }
1945773bda96SJonathan Lemon static DEVICE_ATTR_RW(clock_source);
1946773bda96SJonathan Lemon 
1947773bda96SJonathan Lemon static ssize_t
1948773bda96SJonathan Lemon available_clock_sources_show(struct device *dev,
1949773bda96SJonathan Lemon 			     struct device_attribute *attr, char *buf)
1950773bda96SJonathan Lemon {
1951e1daf0ecSJonathan Lemon 	return ptp_ocp_select_table_show(ptp_ocp_clock, buf);
1952773bda96SJonathan Lemon }
1953773bda96SJonathan Lemon static DEVICE_ATTR_RO(available_clock_sources);
1954773bda96SJonathan Lemon 
1955773bda96SJonathan Lemon static struct attribute *timecard_attrs[] = {
1956773bda96SJonathan Lemon 	&dev_attr_serialnum.attr,
1957ef0cfb34SJonathan Lemon 	&dev_attr_gnss_sync.attr,
1958773bda96SJonathan Lemon 	&dev_attr_clock_source.attr,
1959773bda96SJonathan Lemon 	&dev_attr_available_clock_sources.attr,
1960e1daf0ecSJonathan Lemon 	&dev_attr_sma1.attr,
1961e1daf0ecSJonathan Lemon 	&dev_attr_sma2.attr,
1962e1daf0ecSJonathan Lemon 	&dev_attr_sma3.attr,
1963e1daf0ecSJonathan Lemon 	&dev_attr_sma4.attr,
1964e1daf0ecSJonathan Lemon 	&dev_attr_available_sma_inputs.attr,
1965e1daf0ecSJonathan Lemon 	&dev_attr_available_sma_outputs.attr,
1966d14ee252SJonathan Lemon 	&dev_attr_irig_b_mode.attr,
196789260d87SJonathan Lemon 	&dev_attr_utc_tai_offset.attr,
19681acffc6eSJonathan Lemon 	&dev_attr_ts_window_adjust.attr,
1969773bda96SJonathan Lemon 	NULL,
1970773bda96SJonathan Lemon };
1971773bda96SJonathan Lemon ATTRIBUTE_GROUPS(timecard);
1972773bda96SJonathan Lemon 
1973f67bf662SJonathan Lemon static const char *
1974f67bf662SJonathan Lemon gpio_map(u32 gpio, u32 bit, const char *pri, const char *sec, const char *def)
1975f67bf662SJonathan Lemon {
1976f67bf662SJonathan Lemon 	const char *ans;
1977f67bf662SJonathan Lemon 
1978f67bf662SJonathan Lemon 	if (gpio & (1 << bit))
1979f67bf662SJonathan Lemon 		ans = pri;
1980f67bf662SJonathan Lemon 	else if (gpio & (1 << (bit + 16)))
1981f67bf662SJonathan Lemon 		ans = sec;
1982f67bf662SJonathan Lemon 	else
1983f67bf662SJonathan Lemon 		ans = def;
1984f67bf662SJonathan Lemon 	return ans;
1985f67bf662SJonathan Lemon }
1986f67bf662SJonathan Lemon 
1987f67bf662SJonathan Lemon static void
1988f67bf662SJonathan Lemon gpio_multi_map(char *buf, u32 gpio, u32 bit,
1989f67bf662SJonathan Lemon 	       const char *pri, const char *sec, const char *def)
1990f67bf662SJonathan Lemon {
1991f67bf662SJonathan Lemon 	char *ans = buf;
1992f67bf662SJonathan Lemon 
1993f67bf662SJonathan Lemon 	strcpy(ans, def);
1994f67bf662SJonathan Lemon 	if (gpio & (1 << bit))
1995f67bf662SJonathan Lemon 		ans += sprintf(ans, "%s ", pri);
1996f67bf662SJonathan Lemon 	if (gpio & (1 << (bit + 16)))
1997f67bf662SJonathan Lemon 		ans += sprintf(ans, "%s ", sec);
1998f67bf662SJonathan Lemon }
1999f67bf662SJonathan Lemon 
2000f67bf662SJonathan Lemon static int
2001f67bf662SJonathan Lemon ptp_ocp_summary_show(struct seq_file *s, void *data)
2002f67bf662SJonathan Lemon {
2003f67bf662SJonathan Lemon 	struct device *dev = s->private;
2004f67bf662SJonathan Lemon 	struct ptp_system_timestamp sts;
2005f67bf662SJonathan Lemon 	u32 sma_in, sma_out, ctrl, val;
2006f67bf662SJonathan Lemon 	struct ts_reg __iomem *ts_reg;
2007f67bf662SJonathan Lemon 	struct timespec64 ts;
2008f67bf662SJonathan Lemon 	struct ptp_ocp *bp;
2009f67bf662SJonathan Lemon 	const char *src;
2010a62a56d0SJonathan Lemon 	bool on, map;
2011f67bf662SJonathan Lemon 	char *buf;
2012f67bf662SJonathan Lemon 
2013f67bf662SJonathan Lemon 	buf = (char *)__get_free_page(GFP_KERNEL);
2014f67bf662SJonathan Lemon 	if (!buf)
2015f67bf662SJonathan Lemon 		return -ENOMEM;
2016f67bf662SJonathan Lemon 
2017f67bf662SJonathan Lemon 	bp = dev_get_drvdata(dev);
2018f67bf662SJonathan Lemon 	sma_in = ioread32(&bp->sma->gpio1);
2019f67bf662SJonathan Lemon 	sma_out = ioread32(&bp->sma->gpio2);
2020f67bf662SJonathan Lemon 
2021f67bf662SJonathan Lemon 	seq_printf(s, "%7s: /dev/ptp%d\n", "PTP", ptp_clock_index(bp->ptp));
2022f67bf662SJonathan Lemon 
2023f67bf662SJonathan Lemon 	sma1_show(dev, NULL, buf);
2024f67bf662SJonathan Lemon 	seq_printf(s, "   sma1: %s", buf);
2025f67bf662SJonathan Lemon 
2026f67bf662SJonathan Lemon 	sma2_show(dev, NULL, buf);
2027f67bf662SJonathan Lemon 	seq_printf(s, "   sma2: %s", buf);
2028f67bf662SJonathan Lemon 
2029f67bf662SJonathan Lemon 	sma3_show(dev, NULL, buf);
2030f67bf662SJonathan Lemon 	seq_printf(s, "   sma3: %s", buf);
2031f67bf662SJonathan Lemon 
2032f67bf662SJonathan Lemon 	sma4_show(dev, NULL, buf);
2033f67bf662SJonathan Lemon 	seq_printf(s, "   sma4: %s", buf);
2034f67bf662SJonathan Lemon 
2035f67bf662SJonathan Lemon 	if (bp->ts0) {
2036f67bf662SJonathan Lemon 		ts_reg = bp->ts0->mem;
2037f67bf662SJonathan Lemon 		on = ioread32(&ts_reg->enable);
2038f67bf662SJonathan Lemon 		src = "GNSS";
2039f67bf662SJonathan Lemon 		seq_printf(s, "%7s: %s, src: %s\n", "TS0",
2040f67bf662SJonathan Lemon 			   on ? " ON" : "OFF", src);
2041f67bf662SJonathan Lemon 	}
2042f67bf662SJonathan Lemon 
2043f67bf662SJonathan Lemon 	if (bp->ts1) {
2044f67bf662SJonathan Lemon 		ts_reg = bp->ts1->mem;
2045f67bf662SJonathan Lemon 		on = ioread32(&ts_reg->enable);
2046f67bf662SJonathan Lemon 		src = gpio_map(sma_in, 2, "sma1", "sma2", "----");
2047f67bf662SJonathan Lemon 		seq_printf(s, "%7s: %s, src: %s\n", "TS1",
2048f67bf662SJonathan Lemon 			   on ? " ON" : "OFF", src);
2049f67bf662SJonathan Lemon 	}
2050f67bf662SJonathan Lemon 
2051f67bf662SJonathan Lemon 	if (bp->ts2) {
2052f67bf662SJonathan Lemon 		ts_reg = bp->ts2->mem;
2053f67bf662SJonathan Lemon 		on = ioread32(&ts_reg->enable);
2054f67bf662SJonathan Lemon 		src = gpio_map(sma_in, 3, "sma1", "sma2", "----");
2055f67bf662SJonathan Lemon 		seq_printf(s, "%7s: %s, src: %s\n", "TS2",
2056f67bf662SJonathan Lemon 			   on ? " ON" : "OFF", src);
2057f67bf662SJonathan Lemon 	}
2058f67bf662SJonathan Lemon 
2059a62a56d0SJonathan Lemon 	if (bp->pps) {
2060a62a56d0SJonathan Lemon 		ts_reg = bp->pps->mem;
2061a62a56d0SJonathan Lemon 		src = "PHC";
2062a62a56d0SJonathan Lemon 		on = ioread32(&ts_reg->enable);
2063a62a56d0SJonathan Lemon 		map = !!(bp->pps_req_map & OCP_REQ_TIMESTAMP);
2064a62a56d0SJonathan Lemon 		seq_printf(s, "%7s: %s, src: %s\n", "TS3",
2065*1a575cdeSNathan Chancellor 			   on && map ? " ON" : "OFF", src);
2066a62a56d0SJonathan Lemon 
2067a62a56d0SJonathan Lemon 		map = !!(bp->pps_req_map & OCP_REQ_PPS);
2068a62a56d0SJonathan Lemon 		seq_printf(s, "%7s: %s, src: %s\n", "PPS",
2069*1a575cdeSNathan Chancellor 			   on && map ? " ON" : "OFF", src);
2070a62a56d0SJonathan Lemon 	}
2071a62a56d0SJonathan Lemon 
2072f67bf662SJonathan Lemon 	if (bp->irig_out) {
2073f67bf662SJonathan Lemon 		ctrl = ioread32(&bp->irig_out->ctrl);
2074f67bf662SJonathan Lemon 		on = ctrl & IRIG_M_CTRL_ENABLE;
2075f67bf662SJonathan Lemon 		val = ioread32(&bp->irig_out->status);
2076f67bf662SJonathan Lemon 		gpio_multi_map(buf, sma_out, 4, "sma3", "sma4", "----");
2077f67bf662SJonathan Lemon 		seq_printf(s, "%7s: %s, error: %d, mode %d, out: %s\n", "IRIG",
2078f67bf662SJonathan Lemon 			   on ? " ON" : "OFF", val, (ctrl >> 16), buf);
2079f67bf662SJonathan Lemon 	}
2080f67bf662SJonathan Lemon 
2081f67bf662SJonathan Lemon 	if (bp->irig_in) {
2082f67bf662SJonathan Lemon 		on = ioread32(&bp->irig_in->ctrl) & IRIG_S_CTRL_ENABLE;
2083f67bf662SJonathan Lemon 		val = ioread32(&bp->irig_in->status);
2084f67bf662SJonathan Lemon 		src = gpio_map(sma_in, 4, "sma1", "sma2", "----");
2085f67bf662SJonathan Lemon 		seq_printf(s, "%7s: %s, error: %d, src: %s\n", "IRIG in",
2086f67bf662SJonathan Lemon 			   on ? " ON" : "OFF", val, src);
2087f67bf662SJonathan Lemon 	}
2088f67bf662SJonathan Lemon 
2089f67bf662SJonathan Lemon 	if (bp->dcf_out) {
2090f67bf662SJonathan Lemon 		on = ioread32(&bp->dcf_out->ctrl) & DCF_M_CTRL_ENABLE;
2091f67bf662SJonathan Lemon 		val = ioread32(&bp->dcf_out->status);
2092f67bf662SJonathan Lemon 		gpio_multi_map(buf, sma_out, 5, "sma3", "sma4", "----");
2093f67bf662SJonathan Lemon 		seq_printf(s, "%7s: %s, error: %d, out: %s\n", "DCF",
2094f67bf662SJonathan Lemon 			   on ? " ON" : "OFF", val, buf);
2095f67bf662SJonathan Lemon 	}
2096f67bf662SJonathan Lemon 
2097f67bf662SJonathan Lemon 	if (bp->dcf_in) {
2098f67bf662SJonathan Lemon 		on = ioread32(&bp->dcf_in->ctrl) & DCF_S_CTRL_ENABLE;
2099f67bf662SJonathan Lemon 		val = ioread32(&bp->dcf_in->status);
2100f67bf662SJonathan Lemon 		src = gpio_map(sma_in, 5, "sma1", "sma2", "----");
2101f67bf662SJonathan Lemon 		seq_printf(s, "%7s: %s, error: %d, src: %s\n", "DCF in",
2102f67bf662SJonathan Lemon 			   on ? " ON" : "OFF", val, src);
2103f67bf662SJonathan Lemon 	}
2104f67bf662SJonathan Lemon 
2105e3516bb4SJonathan Lemon 	if (bp->nmea_out) {
2106e3516bb4SJonathan Lemon 		on = ioread32(&bp->nmea_out->ctrl) & 1;
2107e3516bb4SJonathan Lemon 		val = ioread32(&bp->nmea_out->status);
2108e3516bb4SJonathan Lemon 		seq_printf(s, "%7s: %s, error: %d\n", "NMEA",
2109e3516bb4SJonathan Lemon 			   on ? " ON" : "OFF", val);
2110e3516bb4SJonathan Lemon 	}
2111e3516bb4SJonathan Lemon 
2112f67bf662SJonathan Lemon 	/* compute src for PPS1, used below. */
2113f67bf662SJonathan Lemon 	if (bp->pps_select) {
2114f67bf662SJonathan Lemon 		val = ioread32(&bp->pps_select->gpio1);
2115f67bf662SJonathan Lemon 		if (val & 0x01)
2116f67bf662SJonathan Lemon 			src = gpio_map(sma_in, 0, "sma1", "sma2", "----");
2117f67bf662SJonathan Lemon 		else if (val & 0x02)
2118f67bf662SJonathan Lemon 			src = "MAC";
2119f67bf662SJonathan Lemon 		else if (val & 0x04)
2120f67bf662SJonathan Lemon 			src = "GNSS";
2121f67bf662SJonathan Lemon 		else
2122f67bf662SJonathan Lemon 			src = "----";
2123f67bf662SJonathan Lemon 	} else {
2124f67bf662SJonathan Lemon 		src = "?";
2125f67bf662SJonathan Lemon 	}
2126f67bf662SJonathan Lemon 
2127f67bf662SJonathan Lemon 	/* assumes automatic switchover/selection */
2128f67bf662SJonathan Lemon 	val = ioread32(&bp->reg->select);
2129f67bf662SJonathan Lemon 	switch (val >> 16) {
2130f67bf662SJonathan Lemon 	case 0:
2131f67bf662SJonathan Lemon 		sprintf(buf, "----");
2132f67bf662SJonathan Lemon 		break;
2133f67bf662SJonathan Lemon 	case 2:
2134f67bf662SJonathan Lemon 		sprintf(buf, "IRIG");
2135f67bf662SJonathan Lemon 		break;
2136f67bf662SJonathan Lemon 	case 3:
2137f67bf662SJonathan Lemon 		sprintf(buf, "%s via PPS1", src);
2138f67bf662SJonathan Lemon 		break;
2139f67bf662SJonathan Lemon 	case 6:
2140f67bf662SJonathan Lemon 		sprintf(buf, "DCF");
2141f67bf662SJonathan Lemon 		break;
2142f67bf662SJonathan Lemon 	default:
2143f67bf662SJonathan Lemon 		strcpy(buf, "unknown");
2144f67bf662SJonathan Lemon 		break;
2145f67bf662SJonathan Lemon 	}
2146f67bf662SJonathan Lemon 	val = ioread32(&bp->reg->status);
2147f67bf662SJonathan Lemon 	seq_printf(s, "%7s: %s, state: %s\n", "PHC src", buf,
2148f67bf662SJonathan Lemon 		   val & OCP_STATUS_IN_SYNC ? "sync" : "unsynced");
2149f67bf662SJonathan Lemon 
2150f67bf662SJonathan Lemon 	/* reuses PPS1 src from earlier */
2151f67bf662SJonathan Lemon 	seq_printf(s, "MAC PPS1 src: %s\n", src);
2152f67bf662SJonathan Lemon 
2153f67bf662SJonathan Lemon 	src = gpio_map(sma_in, 1, "sma1", "sma2", "GNSS2");
2154f67bf662SJonathan Lemon 	seq_printf(s, "MAC PPS2 src: %s\n", src);
2155f67bf662SJonathan Lemon 
2156f67bf662SJonathan Lemon 	if (!ptp_ocp_gettimex(&bp->ptp_info, &ts, &sts)) {
2157f67bf662SJonathan Lemon 		struct timespec64 sys_ts;
2158f67bf662SJonathan Lemon 		s64 pre_ns, post_ns, ns;
2159f67bf662SJonathan Lemon 
2160f67bf662SJonathan Lemon 		pre_ns = timespec64_to_ns(&sts.pre_ts);
2161f67bf662SJonathan Lemon 		post_ns = timespec64_to_ns(&sts.post_ts);
2162f67bf662SJonathan Lemon 		ns = (pre_ns + post_ns) / 2;
2163f67bf662SJonathan Lemon 		ns += (s64)bp->utc_tai_offset * NSEC_PER_SEC;
2164f67bf662SJonathan Lemon 		sys_ts = ns_to_timespec64(ns);
2165f67bf662SJonathan Lemon 
2166f67bf662SJonathan Lemon 		seq_printf(s, "%7s: %lld.%ld == %ptT TAI\n", "PHC",
2167f67bf662SJonathan Lemon 			   ts.tv_sec, ts.tv_nsec, &ts);
2168f67bf662SJonathan Lemon 		seq_printf(s, "%7s: %lld.%ld == %ptT UTC offset %d\n", "SYS",
2169f67bf662SJonathan Lemon 			   sys_ts.tv_sec, sys_ts.tv_nsec, &sys_ts,
2170f67bf662SJonathan Lemon 			   bp->utc_tai_offset);
2171f67bf662SJonathan Lemon 		seq_printf(s, "%7s: PHC:SYS offset: %lld  window: %lld\n", "",
2172f67bf662SJonathan Lemon 			   timespec64_to_ns(&ts) - ns,
2173f67bf662SJonathan Lemon 			   post_ns - pre_ns);
2174f67bf662SJonathan Lemon 	}
2175f67bf662SJonathan Lemon 
2176f67bf662SJonathan Lemon 	free_page((unsigned long)buf);
2177f67bf662SJonathan Lemon 	return 0;
2178f67bf662SJonathan Lemon }
2179f67bf662SJonathan Lemon DEFINE_SHOW_ATTRIBUTE(ptp_ocp_summary);
2180f67bf662SJonathan Lemon 
2181f67bf662SJonathan Lemon static struct dentry *ptp_ocp_debugfs_root;
2182f67bf662SJonathan Lemon 
2183f67bf662SJonathan Lemon static void
2184f67bf662SJonathan Lemon ptp_ocp_debugfs_add_device(struct ptp_ocp *bp)
2185f67bf662SJonathan Lemon {
2186f67bf662SJonathan Lemon 	struct dentry *d;
2187f67bf662SJonathan Lemon 
2188f67bf662SJonathan Lemon 	d = debugfs_create_dir(dev_name(&bp->dev), ptp_ocp_debugfs_root);
2189f67bf662SJonathan Lemon 	bp->debug_root = d;
2190f67bf662SJonathan Lemon 	debugfs_create_file("summary", 0444, bp->debug_root,
2191f67bf662SJonathan Lemon 			    &bp->dev, &ptp_ocp_summary_fops);
2192f67bf662SJonathan Lemon }
2193f67bf662SJonathan Lemon 
2194f67bf662SJonathan Lemon static void
2195f67bf662SJonathan Lemon ptp_ocp_debugfs_remove_device(struct ptp_ocp *bp)
2196f67bf662SJonathan Lemon {
2197f67bf662SJonathan Lemon 	debugfs_remove_recursive(bp->debug_root);
2198f67bf662SJonathan Lemon }
2199f67bf662SJonathan Lemon 
2200f67bf662SJonathan Lemon static void
2201f67bf662SJonathan Lemon ptp_ocp_debugfs_init(void)
2202f67bf662SJonathan Lemon {
2203f67bf662SJonathan Lemon 	ptp_ocp_debugfs_root = debugfs_create_dir("timecard", NULL);
2204f67bf662SJonathan Lemon }
2205f67bf662SJonathan Lemon 
2206f67bf662SJonathan Lemon static void
2207f67bf662SJonathan Lemon ptp_ocp_debugfs_fini(void)
2208f67bf662SJonathan Lemon {
2209f67bf662SJonathan Lemon 	debugfs_remove_recursive(ptp_ocp_debugfs_root);
2210f67bf662SJonathan Lemon }
2211f67bf662SJonathan Lemon 
2212773bda96SJonathan Lemon static void
2213773bda96SJonathan Lemon ptp_ocp_dev_release(struct device *dev)
2214773bda96SJonathan Lemon {
2215773bda96SJonathan Lemon 	struct ptp_ocp *bp = dev_get_drvdata(dev);
2216773bda96SJonathan Lemon 
2217773bda96SJonathan Lemon 	mutex_lock(&ptp_ocp_lock);
2218773bda96SJonathan Lemon 	idr_remove(&ptp_ocp_idr, bp->id);
2219773bda96SJonathan Lemon 	mutex_unlock(&ptp_ocp_lock);
2220773bda96SJonathan Lemon }
2221773bda96SJonathan Lemon 
2222773bda96SJonathan Lemon static int
2223773bda96SJonathan Lemon ptp_ocp_device_init(struct ptp_ocp *bp, struct pci_dev *pdev)
2224773bda96SJonathan Lemon {
2225773bda96SJonathan Lemon 	int err;
2226773bda96SJonathan Lemon 
2227773bda96SJonathan Lemon 	mutex_lock(&ptp_ocp_lock);
2228773bda96SJonathan Lemon 	err = idr_alloc(&ptp_ocp_idr, bp, 0, 0, GFP_KERNEL);
2229773bda96SJonathan Lemon 	mutex_unlock(&ptp_ocp_lock);
2230773bda96SJonathan Lemon 	if (err < 0) {
2231773bda96SJonathan Lemon 		dev_err(&pdev->dev, "idr_alloc failed: %d\n", err);
2232773bda96SJonathan Lemon 		return err;
2233773bda96SJonathan Lemon 	}
2234773bda96SJonathan Lemon 	bp->id = err;
2235773bda96SJonathan Lemon 
2236773bda96SJonathan Lemon 	bp->ptp_info = ptp_ocp_clock_info;
2237773bda96SJonathan Lemon 	spin_lock_init(&bp->lock);
2238ef0cfb34SJonathan Lemon 	bp->gnss_port = -1;
223971d7e085SJonathan Lemon 	bp->gnss2_port = -1;
2240773bda96SJonathan Lemon 	bp->mac_port = -1;
2241e3516bb4SJonathan Lemon 	bp->nmea_port = -1;
2242773bda96SJonathan Lemon 	bp->pdev = pdev;
2243773bda96SJonathan Lemon 
2244773bda96SJonathan Lemon 	device_initialize(&bp->dev);
2245773bda96SJonathan Lemon 	dev_set_name(&bp->dev, "ocp%d", bp->id);
2246773bda96SJonathan Lemon 	bp->dev.class = &timecard_class;
2247773bda96SJonathan Lemon 	bp->dev.parent = &pdev->dev;
2248773bda96SJonathan Lemon 	bp->dev.release = ptp_ocp_dev_release;
2249773bda96SJonathan Lemon 	dev_set_drvdata(&bp->dev, bp);
2250773bda96SJonathan Lemon 
2251773bda96SJonathan Lemon 	err = device_add(&bp->dev);
2252773bda96SJonathan Lemon 	if (err) {
2253773bda96SJonathan Lemon 		dev_err(&bp->dev, "device add failed: %d\n", err);
2254773bda96SJonathan Lemon 		goto out;
2255773bda96SJonathan Lemon 	}
2256773bda96SJonathan Lemon 
2257773bda96SJonathan Lemon 	pci_set_drvdata(pdev, bp);
2258773bda96SJonathan Lemon 
2259773bda96SJonathan Lemon 	return 0;
2260773bda96SJonathan Lemon 
2261773bda96SJonathan Lemon out:
2262773bda96SJonathan Lemon 	ptp_ocp_dev_release(&bp->dev);
2263d12f23faSJonathan Lemon 	put_device(&bp->dev);
2264773bda96SJonathan Lemon 	return err;
2265773bda96SJonathan Lemon }
2266773bda96SJonathan Lemon 
2267773bda96SJonathan Lemon static void
2268773bda96SJonathan Lemon ptp_ocp_symlink(struct ptp_ocp *bp, struct device *child, const char *link)
2269773bda96SJonathan Lemon {
2270773bda96SJonathan Lemon 	struct device *dev = &bp->dev;
2271773bda96SJonathan Lemon 
2272773bda96SJonathan Lemon 	if (sysfs_create_link(&dev->kobj, &child->kobj, link))
2273773bda96SJonathan Lemon 		dev_err(dev, "%s symlink failed\n", link);
2274773bda96SJonathan Lemon }
2275773bda96SJonathan Lemon 
2276773bda96SJonathan Lemon static void
2277773bda96SJonathan Lemon ptp_ocp_link_child(struct ptp_ocp *bp, const char *name, const char *link)
2278773bda96SJonathan Lemon {
2279773bda96SJonathan Lemon 	struct device *dev, *child;
2280773bda96SJonathan Lemon 
2281773bda96SJonathan Lemon 	dev = &bp->pdev->dev;
2282773bda96SJonathan Lemon 
2283773bda96SJonathan Lemon 	child = device_find_child_by_name(dev, name);
2284773bda96SJonathan Lemon 	if (!child) {
2285773bda96SJonathan Lemon 		dev_err(dev, "Could not find device %s\n", name);
2286773bda96SJonathan Lemon 		return;
2287773bda96SJonathan Lemon 	}
2288773bda96SJonathan Lemon 
2289773bda96SJonathan Lemon 	ptp_ocp_symlink(bp, child, link);
2290773bda96SJonathan Lemon 	put_device(child);
2291773bda96SJonathan Lemon }
2292773bda96SJonathan Lemon 
2293773bda96SJonathan Lemon static int
2294773bda96SJonathan Lemon ptp_ocp_complete(struct ptp_ocp *bp)
2295773bda96SJonathan Lemon {
2296773bda96SJonathan Lemon 	struct pps_device *pps;
2297773bda96SJonathan Lemon 	char buf[32];
2298773bda96SJonathan Lemon 
2299ef0cfb34SJonathan Lemon 	if (bp->gnss_port != -1) {
2300ef0cfb34SJonathan Lemon 		sprintf(buf, "ttyS%d", bp->gnss_port);
2301ef0cfb34SJonathan Lemon 		ptp_ocp_link_child(bp, buf, "ttyGNSS");
2302773bda96SJonathan Lemon 	}
230371d7e085SJonathan Lemon 	if (bp->gnss2_port != -1) {
230471d7e085SJonathan Lemon 		sprintf(buf, "ttyS%d", bp->gnss2_port);
230571d7e085SJonathan Lemon 		ptp_ocp_link_child(bp, buf, "ttyGNSS2");
230671d7e085SJonathan Lemon 	}
2307773bda96SJonathan Lemon 	if (bp->mac_port != -1) {
2308773bda96SJonathan Lemon 		sprintf(buf, "ttyS%d", bp->mac_port);
2309773bda96SJonathan Lemon 		ptp_ocp_link_child(bp, buf, "ttyMAC");
2310773bda96SJonathan Lemon 	}
2311e3516bb4SJonathan Lemon 	if (bp->nmea_port != -1) {
2312e3516bb4SJonathan Lemon 		sprintf(buf, "ttyS%d", bp->nmea_port);
2313e3516bb4SJonathan Lemon 		ptp_ocp_link_child(bp, buf, "ttyNMEA");
2314e3516bb4SJonathan Lemon 	}
2315773bda96SJonathan Lemon 	sprintf(buf, "ptp%d", ptp_clock_index(bp->ptp));
2316773bda96SJonathan Lemon 	ptp_ocp_link_child(bp, buf, "ptp");
2317773bda96SJonathan Lemon 
2318773bda96SJonathan Lemon 	pps = pps_lookup_dev(bp->ptp);
2319773bda96SJonathan Lemon 	if (pps)
2320773bda96SJonathan Lemon 		ptp_ocp_symlink(bp, pps->dev, "pps");
2321773bda96SJonathan Lemon 
2322773bda96SJonathan Lemon 	if (device_add_groups(&bp->dev, timecard_groups))
2323773bda96SJonathan Lemon 		pr_err("device add groups failed\n");
2324773bda96SJonathan Lemon 
2325f67bf662SJonathan Lemon 	ptp_ocp_debugfs_add_device(bp);
2326f67bf662SJonathan Lemon 
2327773bda96SJonathan Lemon 	return 0;
2328773bda96SJonathan Lemon }
2329773bda96SJonathan Lemon 
2330773bda96SJonathan Lemon static void
2331065efcc5SJonathan Lemon ptp_ocp_phc_info(struct ptp_ocp *bp)
2332065efcc5SJonathan Lemon {
2333065efcc5SJonathan Lemon 	struct timespec64 ts;
2334065efcc5SJonathan Lemon 	u32 version, select;
2335065efcc5SJonathan Lemon 	bool sync;
2336065efcc5SJonathan Lemon 
2337065efcc5SJonathan Lemon 	version = ioread32(&bp->reg->version);
2338065efcc5SJonathan Lemon 	select = ioread32(&bp->reg->select);
2339065efcc5SJonathan Lemon 	dev_info(&bp->pdev->dev, "Version %d.%d.%d, clock %s, device ptp%d\n",
2340065efcc5SJonathan Lemon 		 version >> 24, (version >> 16) & 0xff, version & 0xffff,
2341065efcc5SJonathan Lemon 		 ptp_ocp_select_name_from_val(ptp_ocp_clock, select >> 16),
2342065efcc5SJonathan Lemon 		 ptp_clock_index(bp->ptp));
2343065efcc5SJonathan Lemon 
2344065efcc5SJonathan Lemon 	sync = ioread32(&bp->reg->status) & OCP_STATUS_IN_SYNC;
2345065efcc5SJonathan Lemon 	if (!ptp_ocp_gettimex(&bp->ptp_info, &ts, NULL))
2346065efcc5SJonathan Lemon 		dev_info(&bp->pdev->dev, "Time: %lld.%ld, %s\n",
2347065efcc5SJonathan Lemon 			 ts.tv_sec, ts.tv_nsec,
2348065efcc5SJonathan Lemon 			 sync ? "in-sync" : "UNSYNCED");
2349065efcc5SJonathan Lemon }
2350065efcc5SJonathan Lemon 
2351065efcc5SJonathan Lemon static void
2352065efcc5SJonathan Lemon ptp_ocp_serial_info(struct device *dev, const char *name, int port, int baud)
2353065efcc5SJonathan Lemon {
2354065efcc5SJonathan Lemon 	if (port != -1)
2355065efcc5SJonathan Lemon 		dev_info(dev, "%5s: /dev/ttyS%-2d @ %6d\n", name, port, baud);
2356065efcc5SJonathan Lemon }
2357065efcc5SJonathan Lemon 
2358065efcc5SJonathan Lemon static void
2359065efcc5SJonathan Lemon ptp_ocp_info(struct ptp_ocp *bp)
2360773bda96SJonathan Lemon {
2361e3516bb4SJonathan Lemon 	static int nmea_baud[] = {
2362e3516bb4SJonathan Lemon 		1200, 2400, 4800, 9600, 19200, 38400,
2363e3516bb4SJonathan Lemon 		57600, 115200, 230400, 460800, 921600,
2364e3516bb4SJonathan Lemon 		1000000, 2000000
2365e3516bb4SJonathan Lemon 	};
2366773bda96SJonathan Lemon 	struct device *dev = &bp->pdev->dev;
2367e3516bb4SJonathan Lemon 	u32 reg;
2368773bda96SJonathan Lemon 
2369065efcc5SJonathan Lemon 	ptp_ocp_phc_info(bp);
2370065efcc5SJonathan Lemon 	if (bp->tod)
2371065efcc5SJonathan Lemon 		ptp_ocp_tod_info(bp);
2372065efcc5SJonathan Lemon 
2373773bda96SJonathan Lemon 	if (bp->image) {
2374773bda96SJonathan Lemon 		u32 ver = ioread32(&bp->image->version);
2375773bda96SJonathan Lemon 
2376773bda96SJonathan Lemon 		dev_info(dev, "version %x\n", ver);
2377773bda96SJonathan Lemon 		if (ver & 0xffff)
2378773bda96SJonathan Lemon 			dev_info(dev, "regular image, version %d\n",
2379773bda96SJonathan Lemon 				 ver & 0xffff);
2380773bda96SJonathan Lemon 		else
2381773bda96SJonathan Lemon 			dev_info(dev, "golden image, version %d\n",
2382773bda96SJonathan Lemon 				 ver >> 16);
2383773bda96SJonathan Lemon 	}
2384065efcc5SJonathan Lemon 	ptp_ocp_serial_info(dev, "GNSS", bp->gnss_port, 115200);
238571d7e085SJonathan Lemon 	ptp_ocp_serial_info(dev, "GNSS2", bp->gnss2_port, 115200);
2386065efcc5SJonathan Lemon 	ptp_ocp_serial_info(dev, "MAC", bp->mac_port, 57600);
2387e3516bb4SJonathan Lemon 	if (bp->nmea_out && bp->nmea_port != -1) {
2388e3516bb4SJonathan Lemon 		int baud = -1;
2389e3516bb4SJonathan Lemon 
2390e3516bb4SJonathan Lemon 		reg = ioread32(&bp->nmea_out->uart_baud);
2391e3516bb4SJonathan Lemon 		if (reg < ARRAY_SIZE(nmea_baud))
2392e3516bb4SJonathan Lemon 			baud = nmea_baud[reg];
2393e3516bb4SJonathan Lemon 		ptp_ocp_serial_info(dev, "NMEA", bp->nmea_port, baud);
2394e3516bb4SJonathan Lemon 	}
2395773bda96SJonathan Lemon }
2396773bda96SJonathan Lemon 
2397773bda96SJonathan Lemon static void
2398773bda96SJonathan Lemon ptp_ocp_detach_sysfs(struct ptp_ocp *bp)
2399773bda96SJonathan Lemon {
2400773bda96SJonathan Lemon 	struct device *dev = &bp->dev;
2401773bda96SJonathan Lemon 
2402ef0cfb34SJonathan Lemon 	sysfs_remove_link(&dev->kobj, "ttyGNSS");
2403773bda96SJonathan Lemon 	sysfs_remove_link(&dev->kobj, "ttyMAC");
2404773bda96SJonathan Lemon 	sysfs_remove_link(&dev->kobj, "ptp");
2405773bda96SJonathan Lemon 	sysfs_remove_link(&dev->kobj, "pps");
2406773bda96SJonathan Lemon 	device_remove_groups(dev, timecard_groups);
2407773bda96SJonathan Lemon }
2408773bda96SJonathan Lemon 
2409773bda96SJonathan Lemon static void
2410773bda96SJonathan Lemon ptp_ocp_detach(struct ptp_ocp *bp)
2411773bda96SJonathan Lemon {
2412f67bf662SJonathan Lemon 	ptp_ocp_debugfs_remove_device(bp);
2413773bda96SJonathan Lemon 	ptp_ocp_detach_sysfs(bp);
2414773bda96SJonathan Lemon 	if (timer_pending(&bp->watchdog))
2415773bda96SJonathan Lemon 		del_timer_sync(&bp->watchdog);
2416773bda96SJonathan Lemon 	if (bp->ts0)
2417773bda96SJonathan Lemon 		ptp_ocp_unregister_ext(bp->ts0);
2418773bda96SJonathan Lemon 	if (bp->ts1)
2419773bda96SJonathan Lemon 		ptp_ocp_unregister_ext(bp->ts1);
2420dcf61469SJonathan Lemon 	if (bp->ts2)
2421dcf61469SJonathan Lemon 		ptp_ocp_unregister_ext(bp->ts2);
2422773bda96SJonathan Lemon 	if (bp->pps)
2423773bda96SJonathan Lemon 		ptp_ocp_unregister_ext(bp->pps);
2424ef0cfb34SJonathan Lemon 	if (bp->gnss_port != -1)
2425ef0cfb34SJonathan Lemon 		serial8250_unregister_port(bp->gnss_port);
242671d7e085SJonathan Lemon 	if (bp->gnss2_port != -1)
242771d7e085SJonathan Lemon 		serial8250_unregister_port(bp->gnss2_port);
2428773bda96SJonathan Lemon 	if (bp->mac_port != -1)
2429773bda96SJonathan Lemon 		serial8250_unregister_port(bp->mac_port);
2430e3516bb4SJonathan Lemon 	if (bp->nmea_port != -1)
2431e3516bb4SJonathan Lemon 		serial8250_unregister_port(bp->nmea_port);
2432773bda96SJonathan Lemon 	if (bp->spi_flash)
2433773bda96SJonathan Lemon 		platform_device_unregister(bp->spi_flash);
2434773bda96SJonathan Lemon 	if (bp->i2c_ctrl)
2435773bda96SJonathan Lemon 		platform_device_unregister(bp->i2c_ctrl);
2436773bda96SJonathan Lemon 	if (bp->i2c_clk)
2437773bda96SJonathan Lemon 		clk_hw_unregister_fixed_rate(bp->i2c_clk);
2438773bda96SJonathan Lemon 	if (bp->n_irqs)
2439773bda96SJonathan Lemon 		pci_free_irq_vectors(bp->pdev);
2440773bda96SJonathan Lemon 	if (bp->ptp)
2441773bda96SJonathan Lemon 		ptp_clock_unregister(bp->ptp);
2442773bda96SJonathan Lemon 	device_unregister(&bp->dev);
2443773bda96SJonathan Lemon }
2444773bda96SJonathan Lemon 
2445a7e1abadSJonathan Lemon static int
2446a7e1abadSJonathan Lemon ptp_ocp_probe(struct pci_dev *pdev, const struct pci_device_id *id)
2447a7e1abadSJonathan Lemon {
2448773bda96SJonathan Lemon 	struct devlink *devlink;
2449a7e1abadSJonathan Lemon 	struct ptp_ocp *bp;
2450a7e1abadSJonathan Lemon 	int err;
2451a7e1abadSJonathan Lemon 
2452919d13a7SLeon Romanovsky 	devlink = devlink_alloc(&ptp_ocp_devlink_ops, sizeof(*bp), &pdev->dev);
2453773bda96SJonathan Lemon 	if (!devlink) {
2454773bda96SJonathan Lemon 		dev_err(&pdev->dev, "devlink_alloc failed\n");
2455a7e1abadSJonathan Lemon 		return -ENOMEM;
2456773bda96SJonathan Lemon 	}
2457773bda96SJonathan Lemon 
2458919d13a7SLeon Romanovsky 	err = devlink_register(devlink);
2459773bda96SJonathan Lemon 	if (err)
2460773bda96SJonathan Lemon 		goto out_free;
2461a7e1abadSJonathan Lemon 
2462a7e1abadSJonathan Lemon 	err = pci_enable_device(pdev);
2463a7e1abadSJonathan Lemon 	if (err) {
2464a7e1abadSJonathan Lemon 		dev_err(&pdev->dev, "pci_enable_device\n");
2465773bda96SJonathan Lemon 		goto out_unregister;
2466a7e1abadSJonathan Lemon 	}
2467a7e1abadSJonathan Lemon 
2468773bda96SJonathan Lemon 	bp = devlink_priv(devlink);
2469773bda96SJonathan Lemon 	err = ptp_ocp_device_init(bp, pdev);
2470773bda96SJonathan Lemon 	if (err)
2471d9fdbf13SJonathan Lemon 		goto out_disable;
2472a7e1abadSJonathan Lemon 
2473773bda96SJonathan Lemon 	/* compat mode.
2474773bda96SJonathan Lemon 	 * Older FPGA firmware only returns 2 irq's.
2475773bda96SJonathan Lemon 	 * allow this - if not all of the IRQ's are returned, skip the
2476773bda96SJonathan Lemon 	 * extra devices and just register the clock.
2477773bda96SJonathan Lemon 	 */
2478e3516bb4SJonathan Lemon 	err = pci_alloc_irq_vectors(pdev, 1, 11, PCI_IRQ_MSI | PCI_IRQ_MSIX);
2479773bda96SJonathan Lemon 	if (err < 0) {
2480773bda96SJonathan Lemon 		dev_err(&pdev->dev, "alloc_irq_vectors err: %d\n", err);
2481773bda96SJonathan Lemon 		goto out;
2482a7e1abadSJonathan Lemon 	}
2483773bda96SJonathan Lemon 	bp->n_irqs = err;
2484773bda96SJonathan Lemon 	pci_set_master(pdev);
2485a7e1abadSJonathan Lemon 
2486773bda96SJonathan Lemon 	err = ptp_ocp_register_resources(bp, id->driver_data);
2487a7e1abadSJonathan Lemon 	if (err)
2488a7e1abadSJonathan Lemon 		goto out;
2489a7e1abadSJonathan Lemon 
2490a7e1abadSJonathan Lemon 	bp->ptp = ptp_clock_register(&bp->ptp_info, &pdev->dev);
2491a7e1abadSJonathan Lemon 	if (IS_ERR(bp->ptp)) {
2492a7e1abadSJonathan Lemon 		err = PTR_ERR(bp->ptp);
2493773bda96SJonathan Lemon 		dev_err(&pdev->dev, "ptp_clock_register: %d\n", err);
2494773bda96SJonathan Lemon 		bp->ptp = NULL;
2495a7e1abadSJonathan Lemon 		goto out;
2496a7e1abadSJonathan Lemon 	}
2497a7e1abadSJonathan Lemon 
2498773bda96SJonathan Lemon 	err = ptp_ocp_complete(bp);
2499773bda96SJonathan Lemon 	if (err)
2500773bda96SJonathan Lemon 		goto out;
2501773bda96SJonathan Lemon 
2502a7e1abadSJonathan Lemon 	ptp_ocp_info(bp);
2503a7e1abadSJonathan Lemon 
2504a7e1abadSJonathan Lemon 	return 0;
2505a7e1abadSJonathan Lemon 
2506a7e1abadSJonathan Lemon out:
2507773bda96SJonathan Lemon 	ptp_ocp_detach(bp);
2508773bda96SJonathan Lemon 	pci_set_drvdata(pdev, NULL);
2509d9fdbf13SJonathan Lemon out_disable:
2510d9fdbf13SJonathan Lemon 	pci_disable_device(pdev);
2511773bda96SJonathan Lemon out_unregister:
2512919d13a7SLeon Romanovsky 	devlink_unregister(devlink);
2513a7e1abadSJonathan Lemon out_free:
2514773bda96SJonathan Lemon 	devlink_free(devlink);
2515a7e1abadSJonathan Lemon 
2516a7e1abadSJonathan Lemon 	return err;
2517a7e1abadSJonathan Lemon }
2518a7e1abadSJonathan Lemon 
2519a7e1abadSJonathan Lemon static void
2520a7e1abadSJonathan Lemon ptp_ocp_remove(struct pci_dev *pdev)
2521a7e1abadSJonathan Lemon {
2522a7e1abadSJonathan Lemon 	struct ptp_ocp *bp = pci_get_drvdata(pdev);
2523773bda96SJonathan Lemon 	struct devlink *devlink = priv_to_devlink(bp);
2524a7e1abadSJonathan Lemon 
2525773bda96SJonathan Lemon 	ptp_ocp_detach(bp);
2526a7e1abadSJonathan Lemon 	pci_set_drvdata(pdev, NULL);
2527d9fdbf13SJonathan Lemon 	pci_disable_device(pdev);
2528773bda96SJonathan Lemon 
2529919d13a7SLeon Romanovsky 	devlink_unregister(devlink);
2530773bda96SJonathan Lemon 	devlink_free(devlink);
2531a7e1abadSJonathan Lemon }
2532a7e1abadSJonathan Lemon 
2533a7e1abadSJonathan Lemon static struct pci_driver ptp_ocp_driver = {
2534a7e1abadSJonathan Lemon 	.name		= KBUILD_MODNAME,
2535a7e1abadSJonathan Lemon 	.id_table	= ptp_ocp_pcidev_id,
2536a7e1abadSJonathan Lemon 	.probe		= ptp_ocp_probe,
2537a7e1abadSJonathan Lemon 	.remove		= ptp_ocp_remove,
2538a7e1abadSJonathan Lemon };
2539a7e1abadSJonathan Lemon 
2540773bda96SJonathan Lemon static int
2541773bda96SJonathan Lemon ptp_ocp_i2c_notifier_call(struct notifier_block *nb,
2542773bda96SJonathan Lemon 			  unsigned long action, void *data)
2543773bda96SJonathan Lemon {
2544773bda96SJonathan Lemon 	struct device *dev, *child = data;
2545773bda96SJonathan Lemon 	struct ptp_ocp *bp;
2546773bda96SJonathan Lemon 	bool add;
2547773bda96SJonathan Lemon 
2548773bda96SJonathan Lemon 	switch (action) {
2549773bda96SJonathan Lemon 	case BUS_NOTIFY_ADD_DEVICE:
2550773bda96SJonathan Lemon 	case BUS_NOTIFY_DEL_DEVICE:
2551773bda96SJonathan Lemon 		add = action == BUS_NOTIFY_ADD_DEVICE;
2552773bda96SJonathan Lemon 		break;
2553773bda96SJonathan Lemon 	default:
2554773bda96SJonathan Lemon 		return 0;
2555773bda96SJonathan Lemon 	}
2556773bda96SJonathan Lemon 
2557773bda96SJonathan Lemon 	if (!i2c_verify_adapter(child))
2558773bda96SJonathan Lemon 		return 0;
2559773bda96SJonathan Lemon 
2560773bda96SJonathan Lemon 	dev = child;
2561773bda96SJonathan Lemon 	while ((dev = dev->parent))
2562773bda96SJonathan Lemon 		if (dev->driver && !strcmp(dev->driver->name, KBUILD_MODNAME))
2563773bda96SJonathan Lemon 			goto found;
2564773bda96SJonathan Lemon 	return 0;
2565773bda96SJonathan Lemon 
2566773bda96SJonathan Lemon found:
2567773bda96SJonathan Lemon 	bp = dev_get_drvdata(dev);
2568773bda96SJonathan Lemon 	if (add)
2569773bda96SJonathan Lemon 		ptp_ocp_symlink(bp, child, "i2c");
2570773bda96SJonathan Lemon 	else
2571773bda96SJonathan Lemon 		sysfs_remove_link(&bp->dev.kobj, "i2c");
2572773bda96SJonathan Lemon 
2573773bda96SJonathan Lemon 	return 0;
2574773bda96SJonathan Lemon }
2575773bda96SJonathan Lemon 
2576773bda96SJonathan Lemon static struct notifier_block ptp_ocp_i2c_notifier = {
2577773bda96SJonathan Lemon 	.notifier_call = ptp_ocp_i2c_notifier_call,
2578773bda96SJonathan Lemon };
2579773bda96SJonathan Lemon 
2580a7e1abadSJonathan Lemon static int __init
2581a7e1abadSJonathan Lemon ptp_ocp_init(void)
2582a7e1abadSJonathan Lemon {
2583773bda96SJonathan Lemon 	const char *what;
2584a7e1abadSJonathan Lemon 	int err;
2585a7e1abadSJonathan Lemon 
2586f67bf662SJonathan Lemon 	ptp_ocp_debugfs_init();
2587f67bf662SJonathan Lemon 
2588773bda96SJonathan Lemon 	what = "timecard class";
2589773bda96SJonathan Lemon 	err = class_register(&timecard_class);
2590773bda96SJonathan Lemon 	if (err)
2591773bda96SJonathan Lemon 		goto out;
2592773bda96SJonathan Lemon 
2593773bda96SJonathan Lemon 	what = "i2c notifier";
2594773bda96SJonathan Lemon 	err = bus_register_notifier(&i2c_bus_type, &ptp_ocp_i2c_notifier);
2595773bda96SJonathan Lemon 	if (err)
2596773bda96SJonathan Lemon 		goto out_notifier;
2597773bda96SJonathan Lemon 
2598773bda96SJonathan Lemon 	what = "ptp_ocp driver";
2599a7e1abadSJonathan Lemon 	err = pci_register_driver(&ptp_ocp_driver);
2600773bda96SJonathan Lemon 	if (err)
2601773bda96SJonathan Lemon 		goto out_register;
2602773bda96SJonathan Lemon 
2603773bda96SJonathan Lemon 	return 0;
2604773bda96SJonathan Lemon 
2605773bda96SJonathan Lemon out_register:
2606773bda96SJonathan Lemon 	bus_unregister_notifier(&i2c_bus_type, &ptp_ocp_i2c_notifier);
2607773bda96SJonathan Lemon out_notifier:
2608773bda96SJonathan Lemon 	class_unregister(&timecard_class);
2609773bda96SJonathan Lemon out:
2610f67bf662SJonathan Lemon 	ptp_ocp_debugfs_fini();
2611773bda96SJonathan Lemon 	pr_err(KBUILD_MODNAME ": failed to register %s: %d\n", what, err);
2612a7e1abadSJonathan Lemon 	return err;
2613a7e1abadSJonathan Lemon }
2614a7e1abadSJonathan Lemon 
2615a7e1abadSJonathan Lemon static void __exit
2616a7e1abadSJonathan Lemon ptp_ocp_fini(void)
2617a7e1abadSJonathan Lemon {
2618773bda96SJonathan Lemon 	bus_unregister_notifier(&i2c_bus_type, &ptp_ocp_i2c_notifier);
2619a7e1abadSJonathan Lemon 	pci_unregister_driver(&ptp_ocp_driver);
2620773bda96SJonathan Lemon 	class_unregister(&timecard_class);
2621f67bf662SJonathan Lemon 	ptp_ocp_debugfs_fini();
2622a7e1abadSJonathan Lemon }
2623a7e1abadSJonathan Lemon 
2624a7e1abadSJonathan Lemon module_init(ptp_ocp_init);
2625a7e1abadSJonathan Lemon module_exit(ptp_ocp_fini);
2626a7e1abadSJonathan Lemon 
2627a7e1abadSJonathan Lemon MODULE_DESCRIPTION("OpenCompute TimeCard driver");
2628a7e1abadSJonathan Lemon MODULE_LICENSE("GPL v2");
2629