Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Mar 24-27, 2025, special US time zones
Register
Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/* -------------------------------------------------------------------------
  3 * Copyright (C) 2014-2016, Intel Corporation
  4 *
 
 
 
 
 
 
 
 
 
  5 * -------------------------------------------------------------------------
  6 */
  7
  8#include <linux/module.h>
  9#include <linux/acpi.h>
 10#include <linux/i2c.h>
 11#include <linux/interrupt.h>
 12#include <linux/nfc.h>
 13#include <linux/delay.h>
 14#include <linux/gpio/consumer.h>
 15#include <net/nfc/nfc.h>
 16#include <net/nfc/nci_core.h>
 17
 18#include "fdp.h"
 19
 20#define FDP_I2C_DRIVER_NAME	"fdp_nci_i2c"
 21
 22#define FDP_DP_CLOCK_TYPE_NAME	"clock-type"
 23#define FDP_DP_CLOCK_FREQ_NAME	"clock-freq"
 24#define FDP_DP_FW_VSC_CFG_NAME	"fw-vsc-cfg"
 25
 26#define FDP_FRAME_HEADROOM	2
 27#define FDP_FRAME_TAILROOM	1
 28
 29#define FDP_NCI_I2C_MIN_PAYLOAD	5
 30#define FDP_NCI_I2C_MAX_PAYLOAD	261
 31
 32#define FDP_POWER_OFF		0
 33#define FDP_POWER_ON		1
 34
 35#define fdp_nci_i2c_dump_skb(dev, prefix, skb)				\
 36	print_hex_dump(KERN_DEBUG, prefix": ", DUMP_PREFIX_OFFSET,	\
 37		       16, 1, (skb)->data, (skb)->len, 0)
 38
 39static void fdp_nci_i2c_reset(const struct fdp_i2c_phy *phy)
 40{
 41	/* Reset RST/WakeUP for at least 100 micro-second */
 42	gpiod_set_value_cansleep(phy->power_gpio, FDP_POWER_OFF);
 43	usleep_range(1000, 4000);
 44	gpiod_set_value_cansleep(phy->power_gpio, FDP_POWER_ON);
 45	usleep_range(10000, 14000);
 46}
 47
 48static int fdp_nci_i2c_enable(void *phy_id)
 49{
 50	const struct fdp_i2c_phy *phy = phy_id;
 51
 
 52	fdp_nci_i2c_reset(phy);
 53
 54	return 0;
 55}
 56
 57static void fdp_nci_i2c_disable(void *phy_id)
 58{
 59	const struct fdp_i2c_phy *phy = phy_id;
 60
 
 61	fdp_nci_i2c_reset(phy);
 62}
 63
 64static void fdp_nci_i2c_add_len_lrc(struct sk_buff *skb)
 65{
 66	u8 lrc = 0;
 67	u16 len, i;
 68
 69	/* Add length header */
 70	len = skb->len;
 71	*(u8 *)skb_push(skb, 1) = len & 0xff;
 72	*(u8 *)skb_push(skb, 1) = len >> 8;
 73
 74	/* Compute and add lrc */
 75	for (i = 0; i < len + 2; i++)
 76		lrc ^= skb->data[i];
 77
 78	skb_put_u8(skb, lrc);
 79}
 80
 81static void fdp_nci_i2c_remove_len_lrc(struct sk_buff *skb)
 82{
 83	skb_pull(skb, FDP_FRAME_HEADROOM);
 84	skb_trim(skb, skb->len - FDP_FRAME_TAILROOM);
 85}
 86
 87static int fdp_nci_i2c_write(void *phy_id, struct sk_buff *skb)
 88{
 89	struct fdp_i2c_phy *phy = phy_id;
 90	struct i2c_client *client = phy->i2c_dev;
 91	int r;
 92
 93	if (phy->hard_fault != 0)
 94		return phy->hard_fault;
 95
 96	fdp_nci_i2c_add_len_lrc(skb);
 97	fdp_nci_i2c_dump_skb(&client->dev, "fdp_wr", skb);
 98
 99	r = i2c_master_send(client, skb->data, skb->len);
100	if (r == -EREMOTEIO) {  /* Retry, chip was in standby */
101		usleep_range(1000, 4000);
102		r = i2c_master_send(client, skb->data, skb->len);
103	}
104
105	if (r < 0 || r != skb->len)
106		dev_dbg(&client->dev, "%s: error err=%d len=%d\n",
107			__func__, r, skb->len);
108
109	if (r >= 0) {
110		if (r != skb->len) {
111			phy->hard_fault = r;
112			r = -EREMOTEIO;
113		} else {
114			r = 0;
115		}
116	}
117
118	fdp_nci_i2c_remove_len_lrc(skb);
119
120	return r;
121}
122
123static const struct nfc_phy_ops i2c_phy_ops = {
124	.write = fdp_nci_i2c_write,
125	.enable = fdp_nci_i2c_enable,
126	.disable = fdp_nci_i2c_disable,
127};
128
129static int fdp_nci_i2c_read(struct fdp_i2c_phy *phy, struct sk_buff **skb)
130{
131	int r, len;
132	u8 tmp[FDP_NCI_I2C_MAX_PAYLOAD], lrc, k;
133	u16 i;
134	struct i2c_client *client = phy->i2c_dev;
135
136	*skb = NULL;
137
138	/* Read the length packet and the data packet */
139	for (k = 0; k < 2; k++) {
140
141		len = phy->next_read_size;
142
143		r = i2c_master_recv(client, tmp, len);
144		if (r != len) {
145			dev_dbg(&client->dev, "%s: i2c recv err: %d\n",
146				__func__, r);
147			goto flush;
148		}
149
150		/* Check packet integruty */
151		for (lrc = i = 0; i < r; i++)
152			lrc ^= tmp[i];
153
154		/*
155		 * LRC check failed. This may due to transmission error or
156		 * desynchronization between driver and FDP. Drop the packet
157		 * and force resynchronization
158		 */
159		if (lrc) {
160			dev_dbg(&client->dev, "%s: corrupted packet\n",
161				__func__);
162			phy->next_read_size = 5;
163			goto flush;
164		}
165
166		/* Packet that contains a length */
167		if (tmp[0] == 0 && tmp[1] == 0) {
168			phy->next_read_size = (tmp[2] << 8) + tmp[3] + 3;
169		} else {
170			phy->next_read_size = FDP_NCI_I2C_MIN_PAYLOAD;
171
172			*skb = alloc_skb(len, GFP_KERNEL);
173			if (*skb == NULL) {
174				r = -ENOMEM;
175				goto flush;
176			}
177
178			skb_put_data(*skb, tmp, len);
179			fdp_nci_i2c_dump_skb(&client->dev, "fdp_rd", *skb);
180
181			fdp_nci_i2c_remove_len_lrc(*skb);
182		}
183	}
184
185	return 0;
186
187flush:
188	/* Flush the remaining data */
189	if (i2c_master_recv(client, tmp, sizeof(tmp)) < 0)
190		r = -EREMOTEIO;
191
192	return r;
193}
194
195static irqreturn_t fdp_nci_i2c_irq_thread_fn(int irq, void *phy_id)
196{
197	struct fdp_i2c_phy *phy = phy_id;
 
198	struct sk_buff *skb;
199	int r;
200
201	if (!phy || irq != phy->i2c_dev->irq) {
202		WARN_ON_ONCE(1);
203		return IRQ_NONE;
204	}
205
 
 
 
206	r = fdp_nci_i2c_read(phy, &skb);
207
208	if (r == -EREMOTEIO || r == -ENOMEM || r == -EBADMSG)
 
 
209		return IRQ_HANDLED;
210
211	if (skb != NULL)
212		nci_recv_frame(phy->ndev, skb);
213
214	return IRQ_HANDLED;
215}
216
217static void fdp_nci_i2c_read_device_properties(struct device *dev,
218					       u8 *clock_type, u32 *clock_freq,
219					       u8 **fw_vsc_cfg)
220{
221	int r;
222	u8 len;
223
224	r = device_property_read_u8(dev, FDP_DP_CLOCK_TYPE_NAME, clock_type);
225	if (r) {
226		dev_dbg(dev, "Using default clock type");
227		*clock_type = 0;
228	}
229
230	r = device_property_read_u32(dev, FDP_DP_CLOCK_FREQ_NAME, clock_freq);
231	if (r) {
232		dev_dbg(dev, "Using default clock frequency\n");
233		*clock_freq = 26000;
234	}
235
236	if (device_property_present(dev, FDP_DP_FW_VSC_CFG_NAME)) {
237		r = device_property_read_u8(dev, FDP_DP_FW_VSC_CFG_NAME,
238					    &len);
239
240		if (r || len <= 0)
241			goto vsc_read_err;
242
243		/* Add 1 to the length to inclue the length byte itself */
244		len++;
245
246		*fw_vsc_cfg = devm_kmalloc_array(dev,
247					   len, sizeof(**fw_vsc_cfg),
248					   GFP_KERNEL);
249
250		if (!*fw_vsc_cfg)
251			goto alloc_err;
252
253		r = device_property_read_u8_array(dev, FDP_DP_FW_VSC_CFG_NAME,
254						  *fw_vsc_cfg, len);
255
256		if (r) {
257			devm_kfree(dev, *fw_vsc_cfg);
258			goto vsc_read_err;
259		}
260	} else {
261vsc_read_err:
262		dev_dbg(dev, "FW vendor specific commands not present\n");
263		*fw_vsc_cfg = NULL;
264	}
265
266alloc_err:
267	dev_dbg(dev, "Clock type: %d, clock frequency: %d, VSC: %s",
268		*clock_type, *clock_freq, *fw_vsc_cfg != NULL ? "yes" : "no");
269}
270
271static const struct acpi_gpio_params power_gpios = { 0, 0, false };
272
273static const struct acpi_gpio_mapping acpi_fdp_gpios[] = {
274	{ "power-gpios", &power_gpios, 1 },
275	{},
276};
277
278static int fdp_nci_i2c_probe(struct i2c_client *client)
279{
280	struct fdp_i2c_phy *phy;
281	struct device *dev = &client->dev;
282	u8 *fw_vsc_cfg;
283	u8 clock_type;
284	u32 clock_freq;
285	int r = 0;
286
 
 
287	if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
288		nfc_err(dev, "No I2C_FUNC_I2C support\n");
289		return -ENODEV;
290	}
291
292	/* Checking if we have an irq */
293	if (client->irq <= 0) {
294		nfc_err(dev, "IRQ not present\n");
295		return -ENODEV;
296	}
297
298	phy = devm_kzalloc(dev, sizeof(struct fdp_i2c_phy), GFP_KERNEL);
299	if (!phy)
300		return -ENOMEM;
301
302	phy->i2c_dev = client;
303	phy->next_read_size = FDP_NCI_I2C_MIN_PAYLOAD;
304	i2c_set_clientdata(client, phy);
305
306	r = devm_request_threaded_irq(dev, client->irq,
307				      NULL, fdp_nci_i2c_irq_thread_fn,
308				      IRQF_TRIGGER_RISING | IRQF_ONESHOT,
309				      FDP_I2C_DRIVER_NAME, phy);
310
311	if (r < 0) {
312		nfc_err(&client->dev, "Unable to register IRQ handler\n");
313		return r;
314	}
315
316	r = devm_acpi_dev_add_driver_gpios(dev, acpi_fdp_gpios);
317	if (r)
318		dev_dbg(dev, "Unable to add GPIO mapping table\n");
319
320	/* Requesting the power gpio */
321	phy->power_gpio = devm_gpiod_get(dev, "power", GPIOD_OUT_LOW);
322	if (IS_ERR(phy->power_gpio)) {
323		nfc_err(dev, "Power GPIO request failed\n");
324		return PTR_ERR(phy->power_gpio);
325	}
326
327	/* read device properties to get the clock and production settings */
328	fdp_nci_i2c_read_device_properties(dev, &clock_type, &clock_freq,
329					   &fw_vsc_cfg);
330
331	/* Call the NFC specific probe function */
332	r = fdp_nci_probe(phy, &i2c_phy_ops, &phy->ndev,
333			  FDP_FRAME_HEADROOM, FDP_FRAME_TAILROOM,
334			  clock_type, clock_freq, fw_vsc_cfg);
335	if (r < 0) {
336		nfc_err(dev, "NCI probing error\n");
337		return r;
338	}
339
 
340	return 0;
341}
342
343static void fdp_nci_i2c_remove(struct i2c_client *client)
344{
345	struct fdp_i2c_phy *phy = i2c_get_clientdata(client);
346
 
 
347	fdp_nci_remove(phy->ndev);
348	fdp_nci_i2c_disable(phy);
 
 
349}
350
351static const struct acpi_device_id fdp_nci_i2c_acpi_match[] = {
352	{"INT339A", 0},
353	{}
354};
355MODULE_DEVICE_TABLE(acpi, fdp_nci_i2c_acpi_match);
356
357static struct i2c_driver fdp_nci_i2c_driver = {
358	.driver = {
359		   .name = FDP_I2C_DRIVER_NAME,
360		   .acpi_match_table = fdp_nci_i2c_acpi_match,
361		  },
362	.probe = fdp_nci_i2c_probe,
363	.remove = fdp_nci_i2c_remove,
364};
365module_i2c_driver(fdp_nci_i2c_driver);
366
367MODULE_LICENSE("GPL");
368MODULE_DESCRIPTION("I2C driver for Intel Fields Peak NFC controller");
369MODULE_AUTHOR("Robert Dolca <robert.dolca@intel.com>");
v4.17
 
  1/* -------------------------------------------------------------------------
  2 * Copyright (C) 2014-2016, Intel Corporation
  3 *
  4 *  This program is free software; you can redistribute it and/or modify
  5 *  it under the terms of the GNU General Public License as published by
  6 *  the Free Software Foundation; either version 2 of the License, or
  7 *  (at your option) any later version.
  8 *
  9 *  This program is distributed in the hope that it will be useful,
 10 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 11 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 12 *  GNU General Public License for more details.
 13 * -------------------------------------------------------------------------
 14 */
 15
 16#include <linux/module.h>
 17#include <linux/acpi.h>
 18#include <linux/i2c.h>
 19#include <linux/interrupt.h>
 20#include <linux/nfc.h>
 21#include <linux/delay.h>
 22#include <linux/gpio/consumer.h>
 23#include <net/nfc/nfc.h>
 24#include <net/nfc/nci_core.h>
 25
 26#include "fdp.h"
 27
 28#define FDP_I2C_DRIVER_NAME	"fdp_nci_i2c"
 29
 30#define FDP_DP_CLOCK_TYPE_NAME	"clock-type"
 31#define FDP_DP_CLOCK_FREQ_NAME	"clock-freq"
 32#define FDP_DP_FW_VSC_CFG_NAME	"fw-vsc-cfg"
 33
 34#define FDP_FRAME_HEADROOM	2
 35#define FDP_FRAME_TAILROOM	1
 36
 37#define FDP_NCI_I2C_MIN_PAYLOAD	5
 38#define FDP_NCI_I2C_MAX_PAYLOAD	261
 39
 40#define FDP_POWER_OFF		0
 41#define FDP_POWER_ON		1
 42
 43#define fdp_nci_i2c_dump_skb(dev, prefix, skb)				\
 44	print_hex_dump(KERN_DEBUG, prefix": ", DUMP_PREFIX_OFFSET,	\
 45		       16, 1, (skb)->data, (skb)->len, 0)
 46
 47static void fdp_nci_i2c_reset(struct fdp_i2c_phy *phy)
 48{
 49	/* Reset RST/WakeUP for at least 100 micro-second */
 50	gpiod_set_value_cansleep(phy->power_gpio, FDP_POWER_OFF);
 51	usleep_range(1000, 4000);
 52	gpiod_set_value_cansleep(phy->power_gpio, FDP_POWER_ON);
 53	usleep_range(10000, 14000);
 54}
 55
 56static int fdp_nci_i2c_enable(void *phy_id)
 57{
 58	struct fdp_i2c_phy *phy = phy_id;
 59
 60	dev_dbg(&phy->i2c_dev->dev, "%s\n", __func__);
 61	fdp_nci_i2c_reset(phy);
 62
 63	return 0;
 64}
 65
 66static void fdp_nci_i2c_disable(void *phy_id)
 67{
 68	struct fdp_i2c_phy *phy = phy_id;
 69
 70	dev_dbg(&phy->i2c_dev->dev, "%s\n", __func__);
 71	fdp_nci_i2c_reset(phy);
 72}
 73
 74static void fdp_nci_i2c_add_len_lrc(struct sk_buff *skb)
 75{
 76	u8 lrc = 0;
 77	u16 len, i;
 78
 79	/* Add length header */
 80	len = skb->len;
 81	*(u8 *)skb_push(skb, 1) = len & 0xff;
 82	*(u8 *)skb_push(skb, 1) = len >> 8;
 83
 84	/* Compute and add lrc */
 85	for (i = 0; i < len + 2; i++)
 86		lrc ^= skb->data[i];
 87
 88	skb_put_u8(skb, lrc);
 89}
 90
 91static void fdp_nci_i2c_remove_len_lrc(struct sk_buff *skb)
 92{
 93	skb_pull(skb, FDP_FRAME_HEADROOM);
 94	skb_trim(skb, skb->len - FDP_FRAME_TAILROOM);
 95}
 96
 97static int fdp_nci_i2c_write(void *phy_id, struct sk_buff *skb)
 98{
 99	struct fdp_i2c_phy *phy = phy_id;
100	struct i2c_client *client = phy->i2c_dev;
101	int r;
102
103	if (phy->hard_fault != 0)
104		return phy->hard_fault;
105
106	fdp_nci_i2c_add_len_lrc(skb);
107	fdp_nci_i2c_dump_skb(&client->dev, "fdp_wr", skb);
108
109	r = i2c_master_send(client, skb->data, skb->len);
110	if (r == -EREMOTEIO) {  /* Retry, chip was in standby */
111		usleep_range(1000, 4000);
112		r = i2c_master_send(client, skb->data, skb->len);
113	}
114
115	if (r < 0 || r != skb->len)
116		dev_dbg(&client->dev, "%s: error err=%d len=%d\n",
117			__func__, r, skb->len);
118
119	if (r >= 0) {
120		if (r != skb->len) {
121			phy->hard_fault = r;
122			r = -EREMOTEIO;
123		} else {
124			r = 0;
125		}
126	}
127
128	fdp_nci_i2c_remove_len_lrc(skb);
129
130	return r;
131}
132
133static struct nfc_phy_ops i2c_phy_ops = {
134	.write = fdp_nci_i2c_write,
135	.enable = fdp_nci_i2c_enable,
136	.disable = fdp_nci_i2c_disable,
137};
138
139static int fdp_nci_i2c_read(struct fdp_i2c_phy *phy, struct sk_buff **skb)
140{
141	int r, len;
142	u8 tmp[FDP_NCI_I2C_MAX_PAYLOAD], lrc, k;
143	u16 i;
144	struct i2c_client *client = phy->i2c_dev;
145
146	*skb = NULL;
147
148	/* Read the length packet and the data packet */
149	for (k = 0; k < 2; k++) {
150
151		len = phy->next_read_size;
152
153		r = i2c_master_recv(client, tmp, len);
154		if (r != len) {
155			dev_dbg(&client->dev, "%s: i2c recv err: %d\n",
156				__func__, r);
157			goto flush;
158		}
159
160		/* Check packet integruty */
161		for (lrc = i = 0; i < r; i++)
162			lrc ^= tmp[i];
163
164		/*
165		 * LRC check failed. This may due to transmission error or
166		 * desynchronization between driver and FDP. Drop the paquet
167		 * and force resynchronization
168		 */
169		if (lrc) {
170			dev_dbg(&client->dev, "%s: corrupted packet\n",
171				__func__);
172			phy->next_read_size = 5;
173			goto flush;
174		}
175
176		/* Packet that contains a length */
177		if (tmp[0] == 0 && tmp[1] == 0) {
178			phy->next_read_size = (tmp[2] << 8) + tmp[3] + 3;
179		} else {
180			phy->next_read_size = FDP_NCI_I2C_MIN_PAYLOAD;
181
182			*skb = alloc_skb(len, GFP_KERNEL);
183			if (*skb == NULL) {
184				r = -ENOMEM;
185				goto flush;
186			}
187
188			skb_put_data(*skb, tmp, len);
189			fdp_nci_i2c_dump_skb(&client->dev, "fdp_rd", *skb);
190
191			fdp_nci_i2c_remove_len_lrc(*skb);
192		}
193	}
194
195	return 0;
196
197flush:
198	/* Flush the remaining data */
199	if (i2c_master_recv(client, tmp, sizeof(tmp)) < 0)
200		r = -EREMOTEIO;
201
202	return r;
203}
204
205static irqreturn_t fdp_nci_i2c_irq_thread_fn(int irq, void *phy_id)
206{
207	struct fdp_i2c_phy *phy = phy_id;
208	struct i2c_client *client;
209	struct sk_buff *skb;
210	int r;
211
212	if (!phy || irq != phy->i2c_dev->irq) {
213		WARN_ON_ONCE(1);
214		return IRQ_NONE;
215	}
216
217	client = phy->i2c_dev;
218	dev_dbg(&client->dev, "%s\n", __func__);
219
220	r = fdp_nci_i2c_read(phy, &skb);
221
222	if (r == -EREMOTEIO)
223		return IRQ_HANDLED;
224	else if (r == -ENOMEM || r == -EBADMSG)
225		return IRQ_HANDLED;
226
227	if (skb != NULL)
228		fdp_nci_recv_frame(phy->ndev, skb);
229
230	return IRQ_HANDLED;
231}
232
233static void fdp_nci_i2c_read_device_properties(struct device *dev,
234					       u8 *clock_type, u32 *clock_freq,
235					       u8 **fw_vsc_cfg)
236{
237	int r;
238	u8 len;
239
240	r = device_property_read_u8(dev, FDP_DP_CLOCK_TYPE_NAME, clock_type);
241	if (r) {
242		dev_dbg(dev, "Using default clock type");
243		*clock_type = 0;
244	}
245
246	r = device_property_read_u32(dev, FDP_DP_CLOCK_FREQ_NAME, clock_freq);
247	if (r) {
248		dev_dbg(dev, "Using default clock frequency\n");
249		*clock_freq = 26000;
250	}
251
252	if (device_property_present(dev, FDP_DP_FW_VSC_CFG_NAME)) {
253		r = device_property_read_u8(dev, FDP_DP_FW_VSC_CFG_NAME,
254					    &len);
255
256		if (r || len <= 0)
257			goto vsc_read_err;
258
259		/* Add 1 to the length to inclue the length byte itself */
260		len++;
261
262		*fw_vsc_cfg = devm_kmalloc(dev,
263					   len * sizeof(**fw_vsc_cfg),
264					   GFP_KERNEL);
265
 
 
 
266		r = device_property_read_u8_array(dev, FDP_DP_FW_VSC_CFG_NAME,
267						  *fw_vsc_cfg, len);
268
269		if (r) {
270			devm_kfree(dev, fw_vsc_cfg);
271			goto vsc_read_err;
272		}
273	} else {
274vsc_read_err:
275		dev_dbg(dev, "FW vendor specific commands not present\n");
276		*fw_vsc_cfg = NULL;
277	}
278
 
279	dev_dbg(dev, "Clock type: %d, clock frequency: %d, VSC: %s",
280		*clock_type, *clock_freq, *fw_vsc_cfg != NULL ? "yes" : "no");
281}
282
283static const struct acpi_gpio_params power_gpios = { 0, 0, false };
284
285static const struct acpi_gpio_mapping acpi_fdp_gpios[] = {
286	{ "power-gpios", &power_gpios, 1 },
287	{},
288};
289
290static int fdp_nci_i2c_probe(struct i2c_client *client)
291{
292	struct fdp_i2c_phy *phy;
293	struct device *dev = &client->dev;
294	u8 *fw_vsc_cfg;
295	u8 clock_type;
296	u32 clock_freq;
297	int r = 0;
298
299	dev_dbg(dev, "%s\n", __func__);
300
301	if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
302		nfc_err(dev, "No I2C_FUNC_I2C support\n");
303		return -ENODEV;
304	}
305
306	/* Checking if we have an irq */
307	if (client->irq <= 0) {
308		nfc_err(dev, "IRQ not present\n");
309		return -ENODEV;
310	}
311
312	phy = devm_kzalloc(dev, sizeof(struct fdp_i2c_phy), GFP_KERNEL);
313	if (!phy)
314		return -ENOMEM;
315
316	phy->i2c_dev = client;
317	phy->next_read_size = FDP_NCI_I2C_MIN_PAYLOAD;
318	i2c_set_clientdata(client, phy);
319
320	r = devm_request_threaded_irq(dev, client->irq,
321				      NULL, fdp_nci_i2c_irq_thread_fn,
322				      IRQF_TRIGGER_RISING | IRQF_ONESHOT,
323				      FDP_I2C_DRIVER_NAME, phy);
324
325	if (r < 0) {
326		nfc_err(&client->dev, "Unable to register IRQ handler\n");
327		return r;
328	}
329
330	r = devm_acpi_dev_add_driver_gpios(dev, acpi_fdp_gpios);
331	if (r)
332		dev_dbg(dev, "Unable to add GPIO mapping table\n");
333
334	/* Requesting the power gpio */
335	phy->power_gpio = devm_gpiod_get(dev, "power", GPIOD_OUT_LOW);
336	if (IS_ERR(phy->power_gpio)) {
337		nfc_err(dev, "Power GPIO request failed\n");
338		return PTR_ERR(phy->power_gpio);
339	}
340
341	/* read device properties to get the clock and production settings */
342	fdp_nci_i2c_read_device_properties(dev, &clock_type, &clock_freq,
343					   &fw_vsc_cfg);
344
345	/* Call the NFC specific probe function */
346	r = fdp_nci_probe(phy, &i2c_phy_ops, &phy->ndev,
347			  FDP_FRAME_HEADROOM, FDP_FRAME_TAILROOM,
348			  clock_type, clock_freq, fw_vsc_cfg);
349	if (r < 0) {
350		nfc_err(dev, "NCI probing error\n");
351		return r;
352	}
353
354	dev_dbg(dev, "I2C driver loaded\n");
355	return 0;
356}
357
358static int fdp_nci_i2c_remove(struct i2c_client *client)
359{
360	struct fdp_i2c_phy *phy = i2c_get_clientdata(client);
361
362	dev_dbg(&client->dev, "%s\n", __func__);
363
364	fdp_nci_remove(phy->ndev);
365	fdp_nci_i2c_disable(phy);
366
367	return 0;
368}
369
370static const struct acpi_device_id fdp_nci_i2c_acpi_match[] = {
371	{"INT339A", 0},
372	{}
373};
374MODULE_DEVICE_TABLE(acpi, fdp_nci_i2c_acpi_match);
375
376static struct i2c_driver fdp_nci_i2c_driver = {
377	.driver = {
378		   .name = FDP_I2C_DRIVER_NAME,
379		   .acpi_match_table = ACPI_PTR(fdp_nci_i2c_acpi_match),
380		  },
381	.probe_new = fdp_nci_i2c_probe,
382	.remove = fdp_nci_i2c_remove,
383};
384module_i2c_driver(fdp_nci_i2c_driver);
385
386MODULE_LICENSE("GPL");
387MODULE_DESCRIPTION("I2C driver for Intel Fields Peak NFC controller");
388MODULE_AUTHOR("Robert Dolca <robert.dolca@intel.com>");