• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 // SPI to CAN driver for the Texas Instruments TCAN4x5x
3 // Copyright (C) 2018-19 Texas Instruments Incorporated - http://www.ti.com/
4 
5 #include "tcan4x5x.h"
6 
7 #define TCAN4X5X_EXT_CLK_DEF 40000000
8 
9 #define TCAN4X5X_DEV_ID1 0x00
10 #define TCAN4X5X_DEV_ID1_TCAN 0x4e414354 /* ASCII TCAN */
11 #define TCAN4X5X_DEV_ID2 0x04
12 #define TCAN4X5X_REV 0x08
13 #define TCAN4X5X_STATUS 0x0C
14 #define TCAN4X5X_ERROR_STATUS_MASK 0x10
15 #define TCAN4X5X_CONTROL 0x14
16 
17 #define TCAN4X5X_CONFIG 0x800
18 #define TCAN4X5X_TS_PRESCALE 0x804
19 #define TCAN4X5X_TEST_REG 0x808
20 #define TCAN4X5X_INT_FLAGS 0x820
21 #define TCAN4X5X_MCAN_INT_REG 0x824
22 #define TCAN4X5X_INT_EN 0x830
23 
24 /* Interrupt bits */
25 #define TCAN4X5X_CANBUSTERMOPEN_INT_EN BIT(30)
26 #define TCAN4X5X_CANHCANL_INT_EN BIT(29)
27 #define TCAN4X5X_CANHBAT_INT_EN BIT(28)
28 #define TCAN4X5X_CANLGND_INT_EN BIT(27)
29 #define TCAN4X5X_CANBUSOPEN_INT_EN BIT(26)
30 #define TCAN4X5X_CANBUSGND_INT_EN BIT(25)
31 #define TCAN4X5X_CANBUSBAT_INT_EN BIT(24)
32 #define TCAN4X5X_UVSUP_INT_EN BIT(22)
33 #define TCAN4X5X_UVIO_INT_EN BIT(21)
34 #define TCAN4X5X_TSD_INT_EN BIT(19)
35 #define TCAN4X5X_ECCERR_INT_EN BIT(16)
36 #define TCAN4X5X_CANINT_INT_EN BIT(15)
37 #define TCAN4X5X_LWU_INT_EN BIT(14)
38 #define TCAN4X5X_CANSLNT_INT_EN BIT(10)
39 #define TCAN4X5X_CANDOM_INT_EN BIT(8)
40 #define TCAN4X5X_CANBUS_ERR_INT_EN BIT(5)
41 #define TCAN4X5X_BUS_FAULT BIT(4)
42 #define TCAN4X5X_MCAN_INT BIT(1)
43 #define TCAN4X5X_ENABLE_TCAN_INT \
44 	(TCAN4X5X_MCAN_INT | TCAN4X5X_BUS_FAULT | \
45 	 TCAN4X5X_CANBUS_ERR_INT_EN | TCAN4X5X_CANINT_INT_EN)
46 
47 /* MCAN Interrupt bits */
48 #define TCAN4X5X_MCAN_IR_ARA BIT(29)
49 #define TCAN4X5X_MCAN_IR_PED BIT(28)
50 #define TCAN4X5X_MCAN_IR_PEA BIT(27)
51 #define TCAN4X5X_MCAN_IR_WD BIT(26)
52 #define TCAN4X5X_MCAN_IR_BO BIT(25)
53 #define TCAN4X5X_MCAN_IR_EW BIT(24)
54 #define TCAN4X5X_MCAN_IR_EP BIT(23)
55 #define TCAN4X5X_MCAN_IR_ELO BIT(22)
56 #define TCAN4X5X_MCAN_IR_BEU BIT(21)
57 #define TCAN4X5X_MCAN_IR_BEC BIT(20)
58 #define TCAN4X5X_MCAN_IR_DRX BIT(19)
59 #define TCAN4X5X_MCAN_IR_TOO BIT(18)
60 #define TCAN4X5X_MCAN_IR_MRAF BIT(17)
61 #define TCAN4X5X_MCAN_IR_TSW BIT(16)
62 #define TCAN4X5X_MCAN_IR_TEFL BIT(15)
63 #define TCAN4X5X_MCAN_IR_TEFF BIT(14)
64 #define TCAN4X5X_MCAN_IR_TEFW BIT(13)
65 #define TCAN4X5X_MCAN_IR_TEFN BIT(12)
66 #define TCAN4X5X_MCAN_IR_TFE BIT(11)
67 #define TCAN4X5X_MCAN_IR_TCF BIT(10)
68 #define TCAN4X5X_MCAN_IR_TC BIT(9)
69 #define TCAN4X5X_MCAN_IR_HPM BIT(8)
70 #define TCAN4X5X_MCAN_IR_RF1L BIT(7)
71 #define TCAN4X5X_MCAN_IR_RF1F BIT(6)
72 #define TCAN4X5X_MCAN_IR_RF1W BIT(5)
73 #define TCAN4X5X_MCAN_IR_RF1N BIT(4)
74 #define TCAN4X5X_MCAN_IR_RF0L BIT(3)
75 #define TCAN4X5X_MCAN_IR_RF0F BIT(2)
76 #define TCAN4X5X_MCAN_IR_RF0W BIT(1)
77 #define TCAN4X5X_MCAN_IR_RF0N BIT(0)
78 #define TCAN4X5X_ENABLE_MCAN_INT \
79 	(TCAN4X5X_MCAN_IR_TC | TCAN4X5X_MCAN_IR_RF0N | \
80 	 TCAN4X5X_MCAN_IR_RF1N | TCAN4X5X_MCAN_IR_RF0F | \
81 	 TCAN4X5X_MCAN_IR_RF1F)
82 
83 #define TCAN4X5X_MRAM_START 0x8000
84 #define TCAN4X5X_MRAM_SIZE 0x800
85 #define TCAN4X5X_MCAN_OFFSET 0x1000
86 
87 #define TCAN4X5X_CLEAR_ALL_INT 0xffffffff
88 #define TCAN4X5X_SET_ALL_INT 0xffffffff
89 
90 #define TCAN4X5X_MODE_SEL_MASK (BIT(7) | BIT(6))
91 #define TCAN4X5X_MODE_SLEEP 0x00
92 #define TCAN4X5X_MODE_STANDBY BIT(6)
93 #define TCAN4X5X_MODE_NORMAL BIT(7)
94 
95 #define TCAN4X5X_NWKRQ_VOLTAGE_VIO BIT(19)
96 
97 #define TCAN4X5X_DISABLE_WAKE_MSK	(BIT(31) | BIT(30))
98 #define TCAN4X5X_DISABLE_INH_MSK	BIT(9)
99 
100 #define TCAN4X5X_SW_RESET BIT(2)
101 
102 #define TCAN4X5X_MCAN_CONFIGURED BIT(5)
103 #define TCAN4X5X_WATCHDOG_EN BIT(3)
104 #define TCAN4X5X_WD_60_MS_TIMER 0
105 #define TCAN4X5X_WD_600_MS_TIMER BIT(28)
106 #define TCAN4X5X_WD_3_S_TIMER BIT(29)
107 #define TCAN4X5X_WD_6_S_TIMER (BIT(28) | BIT(29))
108 
109 struct tcan4x5x_version_info {
110 	const char *name;
111 	u32 id2_register;
112 
113 	bool has_wake_pin;
114 	bool has_state_pin;
115 };
116 
117 enum {
118 	TCAN4552 = 0,
119 	TCAN4553,
120 	TCAN4X5X,
121 };
122 
123 static const struct tcan4x5x_version_info tcan4x5x_versions[] = {
124 	[TCAN4552] = {
125 		.name = "4552",
126 		.id2_register = 0x32353534,
127 	},
128 	[TCAN4553] = {
129 		.name = "4553",
130 		.id2_register = 0x33353534,
131 	},
132 	/* generic version with no id2_register at the end */
133 	[TCAN4X5X] = {
134 		.name = "generic",
135 		.has_wake_pin = true,
136 		.has_state_pin = true,
137 	},
138 };
139 
cdev_to_priv(struct m_can_classdev * cdev)140 static inline struct tcan4x5x_priv *cdev_to_priv(struct m_can_classdev *cdev)
141 {
142 	return container_of(cdev, struct tcan4x5x_priv, cdev);
143 }
144 
tcan4x5x_check_wake(struct tcan4x5x_priv * priv)145 static void tcan4x5x_check_wake(struct tcan4x5x_priv *priv)
146 {
147 	int wake_state = 0;
148 
149 	if (priv->device_state_gpio)
150 		wake_state = gpiod_get_value(priv->device_state_gpio);
151 
152 	if (priv->device_wake_gpio && wake_state) {
153 		gpiod_set_value(priv->device_wake_gpio, 0);
154 		usleep_range(5, 50);
155 		gpiod_set_value(priv->device_wake_gpio, 1);
156 	}
157 }
158 
tcan4x5x_reset(struct tcan4x5x_priv * priv)159 static int tcan4x5x_reset(struct tcan4x5x_priv *priv)
160 {
161 	int ret = 0;
162 
163 	if (priv->reset_gpio) {
164 		gpiod_set_value(priv->reset_gpio, 1);
165 
166 		/* tpulse_width minimum 30us */
167 		usleep_range(30, 100);
168 		gpiod_set_value(priv->reset_gpio, 0);
169 	} else {
170 		ret = regmap_write(priv->regmap, TCAN4X5X_CONFIG,
171 				   TCAN4X5X_SW_RESET);
172 		if (ret)
173 			return ret;
174 	}
175 
176 	usleep_range(700, 1000);
177 
178 	return ret;
179 }
180 
tcan4x5x_read_reg(struct m_can_classdev * cdev,int reg)181 static u32 tcan4x5x_read_reg(struct m_can_classdev *cdev, int reg)
182 {
183 	struct tcan4x5x_priv *priv = cdev_to_priv(cdev);
184 	u32 val;
185 
186 	regmap_read(priv->regmap, TCAN4X5X_MCAN_OFFSET + reg, &val);
187 
188 	return val;
189 }
190 
tcan4x5x_read_fifo(struct m_can_classdev * cdev,int addr_offset,void * val,size_t val_count)191 static int tcan4x5x_read_fifo(struct m_can_classdev *cdev, int addr_offset,
192 			      void *val, size_t val_count)
193 {
194 	struct tcan4x5x_priv *priv = cdev_to_priv(cdev);
195 
196 	return regmap_bulk_read(priv->regmap, TCAN4X5X_MRAM_START + addr_offset, val, val_count);
197 }
198 
tcan4x5x_write_reg(struct m_can_classdev * cdev,int reg,int val)199 static int tcan4x5x_write_reg(struct m_can_classdev *cdev, int reg, int val)
200 {
201 	struct tcan4x5x_priv *priv = cdev_to_priv(cdev);
202 
203 	return regmap_write(priv->regmap, TCAN4X5X_MCAN_OFFSET + reg, val);
204 }
205 
tcan4x5x_write_fifo(struct m_can_classdev * cdev,int addr_offset,const void * val,size_t val_count)206 static int tcan4x5x_write_fifo(struct m_can_classdev *cdev,
207 			       int addr_offset, const void *val, size_t val_count)
208 {
209 	struct tcan4x5x_priv *priv = cdev_to_priv(cdev);
210 
211 	return regmap_bulk_write(priv->regmap, TCAN4X5X_MRAM_START + addr_offset, val, val_count);
212 }
213 
tcan4x5x_power_enable(struct regulator * reg,int enable)214 static int tcan4x5x_power_enable(struct regulator *reg, int enable)
215 {
216 	if (IS_ERR_OR_NULL(reg))
217 		return 0;
218 
219 	if (enable)
220 		return regulator_enable(reg);
221 	else
222 		return regulator_disable(reg);
223 }
224 
tcan4x5x_write_tcan_reg(struct m_can_classdev * cdev,int reg,int val)225 static int tcan4x5x_write_tcan_reg(struct m_can_classdev *cdev,
226 				   int reg, int val)
227 {
228 	struct tcan4x5x_priv *priv = cdev_to_priv(cdev);
229 
230 	return regmap_write(priv->regmap, reg, val);
231 }
232 
tcan4x5x_clear_interrupts(struct m_can_classdev * cdev)233 static int tcan4x5x_clear_interrupts(struct m_can_classdev *cdev)
234 {
235 	int ret;
236 
237 	ret = tcan4x5x_write_tcan_reg(cdev, TCAN4X5X_STATUS,
238 				      TCAN4X5X_CLEAR_ALL_INT);
239 	if (ret)
240 		return ret;
241 
242 	return tcan4x5x_write_tcan_reg(cdev, TCAN4X5X_INT_FLAGS,
243 				       TCAN4X5X_CLEAR_ALL_INT);
244 }
245 
tcan4x5x_init(struct m_can_classdev * cdev)246 static int tcan4x5x_init(struct m_can_classdev *cdev)
247 {
248 	struct tcan4x5x_priv *tcan4x5x = cdev_to_priv(cdev);
249 	int ret;
250 
251 	tcan4x5x_check_wake(tcan4x5x);
252 
253 	ret = tcan4x5x_clear_interrupts(cdev);
254 	if (ret)
255 		return ret;
256 
257 	ret = tcan4x5x_write_tcan_reg(cdev, TCAN4X5X_INT_EN,
258 				      TCAN4X5X_ENABLE_TCAN_INT);
259 	if (ret)
260 		return ret;
261 
262 	ret = tcan4x5x_write_tcan_reg(cdev, TCAN4X5X_ERROR_STATUS_MASK,
263 				      TCAN4X5X_CLEAR_ALL_INT);
264 	if (ret)
265 		return ret;
266 
267 	ret = regmap_update_bits(tcan4x5x->regmap, TCAN4X5X_CONFIG,
268 				 TCAN4X5X_MODE_SEL_MASK, TCAN4X5X_MODE_NORMAL);
269 	if (ret)
270 		return ret;
271 
272 	if (tcan4x5x->nwkrq_voltage_vio) {
273 		ret = regmap_set_bits(tcan4x5x->regmap, TCAN4X5X_CONFIG,
274 				      TCAN4X5X_NWKRQ_VOLTAGE_VIO);
275 		if (ret)
276 			return ret;
277 	}
278 
279 	return ret;
280 }
281 
tcan4x5x_disable_wake(struct m_can_classdev * cdev)282 static int tcan4x5x_disable_wake(struct m_can_classdev *cdev)
283 {
284 	struct tcan4x5x_priv *tcan4x5x = cdev_to_priv(cdev);
285 
286 	return regmap_update_bits(tcan4x5x->regmap, TCAN4X5X_CONFIG,
287 				  TCAN4X5X_DISABLE_WAKE_MSK, 0x00);
288 }
289 
tcan4x5x_disable_state(struct m_can_classdev * cdev)290 static int tcan4x5x_disable_state(struct m_can_classdev *cdev)
291 {
292 	struct tcan4x5x_priv *tcan4x5x = cdev_to_priv(cdev);
293 
294 	return regmap_update_bits(tcan4x5x->regmap, TCAN4X5X_CONFIG,
295 				  TCAN4X5X_DISABLE_INH_MSK, 0x01);
296 }
297 
298 static const struct tcan4x5x_version_info
tcan4x5x_find_version(struct tcan4x5x_priv * priv)299 *tcan4x5x_find_version(struct tcan4x5x_priv *priv)
300 {
301 	u32 val;
302 	int ret;
303 
304 	ret = regmap_read(priv->regmap, TCAN4X5X_DEV_ID1, &val);
305 	if (ret)
306 		return ERR_PTR(ret);
307 
308 	if (val != TCAN4X5X_DEV_ID1_TCAN) {
309 		dev_err(&priv->spi->dev, "Not a tcan device %x\n", val);
310 		return ERR_PTR(-ENODEV);
311 	}
312 
313 	ret = regmap_read(priv->regmap, TCAN4X5X_DEV_ID2, &val);
314 	if (ret)
315 		return ERR_PTR(ret);
316 
317 	for (int i = 0; i != ARRAY_SIZE(tcan4x5x_versions); ++i) {
318 		const struct tcan4x5x_version_info *vinfo = &tcan4x5x_versions[i];
319 
320 		if (!vinfo->id2_register || val == vinfo->id2_register) {
321 			dev_info(&priv->spi->dev, "Detected TCAN device version %s\n",
322 				 vinfo->name);
323 			return vinfo;
324 		}
325 	}
326 
327 	return &tcan4x5x_versions[TCAN4X5X];
328 }
329 
tcan4x5x_get_dt_data(struct m_can_classdev * cdev)330 static void tcan4x5x_get_dt_data(struct m_can_classdev *cdev)
331 {
332 	struct tcan4x5x_priv *tcan4x5x = cdev_to_priv(cdev);
333 
334 	tcan4x5x->nwkrq_voltage_vio =
335 		of_property_read_bool(cdev->dev->of_node, "ti,nwkrq-voltage-vio");
336 }
337 
tcan4x5x_get_gpios(struct m_can_classdev * cdev)338 static int tcan4x5x_get_gpios(struct m_can_classdev *cdev)
339 {
340 	struct tcan4x5x_priv *tcan4x5x = cdev_to_priv(cdev);
341 	int ret;
342 
343 	tcan4x5x->device_wake_gpio = devm_gpiod_get_optional(cdev->dev,
344 							     "device-wake",
345 							     GPIOD_OUT_HIGH);
346 	if (IS_ERR(tcan4x5x->device_wake_gpio)) {
347 		if (PTR_ERR(tcan4x5x->device_wake_gpio) == -EPROBE_DEFER)
348 			return -EPROBE_DEFER;
349 
350 		tcan4x5x->device_wake_gpio = NULL;
351 	}
352 
353 	tcan4x5x->reset_gpio = devm_gpiod_get_optional(cdev->dev, "reset",
354 						       GPIOD_OUT_LOW);
355 	if (IS_ERR(tcan4x5x->reset_gpio))
356 		tcan4x5x->reset_gpio = NULL;
357 
358 	ret = tcan4x5x_reset(tcan4x5x);
359 	if (ret)
360 		return ret;
361 
362 	tcan4x5x->device_state_gpio = devm_gpiod_get_optional(cdev->dev,
363 							      "device-state",
364 							      GPIOD_IN);
365 	if (IS_ERR(tcan4x5x->device_state_gpio))
366 		tcan4x5x->device_state_gpio = NULL;
367 
368 	return 0;
369 }
370 
tcan4x5x_check_gpios(struct m_can_classdev * cdev,const struct tcan4x5x_version_info * version_info)371 static int tcan4x5x_check_gpios(struct m_can_classdev *cdev,
372 				const struct tcan4x5x_version_info *version_info)
373 {
374 	struct tcan4x5x_priv *tcan4x5x = cdev_to_priv(cdev);
375 	int ret;
376 
377 	if (version_info->has_wake_pin && !tcan4x5x->device_wake_gpio) {
378 		ret = tcan4x5x_disable_wake(cdev);
379 		if (ret)
380 			return ret;
381 	}
382 
383 	if (version_info->has_state_pin && !tcan4x5x->device_state_gpio) {
384 		ret = tcan4x5x_disable_state(cdev);
385 		if (ret)
386 			return ret;
387 	}
388 
389 	return 0;
390 }
391 
392 static const struct m_can_ops tcan4x5x_ops = {
393 	.init = tcan4x5x_init,
394 	.read_reg = tcan4x5x_read_reg,
395 	.write_reg = tcan4x5x_write_reg,
396 	.write_fifo = tcan4x5x_write_fifo,
397 	.read_fifo = tcan4x5x_read_fifo,
398 	.clear_interrupts = tcan4x5x_clear_interrupts,
399 };
400 
tcan4x5x_can_probe(struct spi_device * spi)401 static int tcan4x5x_can_probe(struct spi_device *spi)
402 {
403 	const struct tcan4x5x_version_info *version_info;
404 	struct tcan4x5x_priv *priv;
405 	struct m_can_classdev *mcan_class;
406 	int freq, ret;
407 
408 	mcan_class = m_can_class_allocate_dev(&spi->dev,
409 					      sizeof(struct tcan4x5x_priv));
410 	if (!mcan_class)
411 		return -ENOMEM;
412 
413 	ret = m_can_check_mram_cfg(mcan_class, TCAN4X5X_MRAM_SIZE);
414 	if (ret)
415 		goto out_m_can_class_free_dev;
416 
417 	priv = cdev_to_priv(mcan_class);
418 
419 	priv->power = devm_regulator_get_optional(&spi->dev, "vsup");
420 	if (IS_ERR(priv->power)) {
421 		if (PTR_ERR(priv->power) == -EPROBE_DEFER) {
422 			ret = -EPROBE_DEFER;
423 			goto out_m_can_class_free_dev;
424 		}
425 		priv->power = NULL;
426 	}
427 
428 	m_can_class_get_clocks(mcan_class);
429 	if (IS_ERR(mcan_class->cclk)) {
430 		dev_err(&spi->dev, "no CAN clock source defined\n");
431 		freq = TCAN4X5X_EXT_CLK_DEF;
432 	} else {
433 		freq = clk_get_rate(mcan_class->cclk);
434 	}
435 
436 	/* Sanity check */
437 	if (freq < 20000000 || freq > TCAN4X5X_EXT_CLK_DEF) {
438 		dev_err(&spi->dev, "Clock frequency is out of supported range %d\n",
439 			freq);
440 		ret = -ERANGE;
441 		goto out_m_can_class_free_dev;
442 	}
443 
444 	priv->spi = spi;
445 
446 	mcan_class->pm_clock_support = 0;
447 	mcan_class->pm_wake_source = device_property_read_bool(&spi->dev, "wakeup-source");
448 	mcan_class->can.clock.freq = freq;
449 	mcan_class->dev = &spi->dev;
450 	mcan_class->ops = &tcan4x5x_ops;
451 	mcan_class->is_peripheral = true;
452 	mcan_class->net->irq = spi->irq;
453 
454 	spi_set_drvdata(spi, priv);
455 
456 	/* Configure the SPI bus */
457 	spi->bits_per_word = 8;
458 	ret = spi_setup(spi);
459 	if (ret) {
460 		dev_err(&spi->dev, "SPI setup failed %pe\n", ERR_PTR(ret));
461 		goto out_m_can_class_free_dev;
462 	}
463 
464 	ret = tcan4x5x_regmap_init(priv);
465 	if (ret) {
466 		dev_err(&spi->dev, "regmap init failed %pe\n", ERR_PTR(ret));
467 		goto out_m_can_class_free_dev;
468 	}
469 
470 	ret = tcan4x5x_power_enable(priv->power, 1);
471 	if (ret) {
472 		dev_err(&spi->dev, "Enabling regulator failed %pe\n",
473 			ERR_PTR(ret));
474 		goto out_m_can_class_free_dev;
475 	}
476 
477 	ret = tcan4x5x_get_gpios(mcan_class);
478 	if (ret) {
479 		dev_err(&spi->dev, "Getting gpios failed %pe\n", ERR_PTR(ret));
480 		goto out_power;
481 	}
482 
483 	version_info = tcan4x5x_find_version(priv);
484 	if (IS_ERR(version_info)) {
485 		ret = PTR_ERR(version_info);
486 		goto out_power;
487 	}
488 
489 	ret = tcan4x5x_check_gpios(mcan_class, version_info);
490 	if (ret) {
491 		dev_err(&spi->dev, "Checking gpios failed %pe\n", ERR_PTR(ret));
492 		goto out_power;
493 	}
494 
495 	tcan4x5x_get_dt_data(mcan_class);
496 
497 	tcan4x5x_check_wake(priv);
498 
499 	ret = tcan4x5x_write_tcan_reg(mcan_class, TCAN4X5X_INT_EN, 0);
500 	if (ret) {
501 		dev_err(&spi->dev, "Disabling interrupts failed %pe\n", ERR_PTR(ret));
502 		goto out_power;
503 	}
504 
505 	ret = tcan4x5x_clear_interrupts(mcan_class);
506 	if (ret) {
507 		dev_err(&spi->dev, "Clearing interrupts failed %pe\n", ERR_PTR(ret));
508 		goto out_power;
509 	}
510 
511 	if (mcan_class->pm_wake_source)
512 		device_init_wakeup(&spi->dev, true);
513 
514 	ret = m_can_class_register(mcan_class);
515 	if (ret) {
516 		dev_err(&spi->dev, "Failed registering m_can device %pe\n",
517 			ERR_PTR(ret));
518 		goto out_power;
519 	}
520 
521 	netdev_info(mcan_class->net, "TCAN4X5X successfully initialized.\n");
522 	return 0;
523 
524 out_power:
525 	tcan4x5x_power_enable(priv->power, 0);
526  out_m_can_class_free_dev:
527 	m_can_class_free_dev(mcan_class->net);
528 	return ret;
529 }
530 
tcan4x5x_can_remove(struct spi_device * spi)531 static void tcan4x5x_can_remove(struct spi_device *spi)
532 {
533 	struct tcan4x5x_priv *priv = spi_get_drvdata(spi);
534 
535 	m_can_class_unregister(&priv->cdev);
536 
537 	tcan4x5x_power_enable(priv->power, 0);
538 
539 	m_can_class_free_dev(priv->cdev.net);
540 }
541 
tcan4x5x_suspend(struct device * dev)542 static int __maybe_unused tcan4x5x_suspend(struct device *dev)
543 {
544 	struct m_can_classdev *cdev = dev_get_drvdata(dev);
545 	struct spi_device *spi = to_spi_device(dev);
546 
547 	if (cdev->pm_wake_source)
548 		enable_irq_wake(spi->irq);
549 
550 	return m_can_class_suspend(dev);
551 }
552 
tcan4x5x_resume(struct device * dev)553 static int __maybe_unused tcan4x5x_resume(struct device *dev)
554 {
555 	struct m_can_classdev *cdev = dev_get_drvdata(dev);
556 	struct spi_device *spi = to_spi_device(dev);
557 	int ret = m_can_class_resume(dev);
558 
559 	if (cdev->pm_wake_source)
560 		disable_irq_wake(spi->irq);
561 
562 	return ret;
563 }
564 
565 static const struct of_device_id tcan4x5x_of_match[] = {
566 	{
567 		.compatible = "ti,tcan4x5x",
568 	}, {
569 		/* sentinel */
570 	},
571 };
572 MODULE_DEVICE_TABLE(of, tcan4x5x_of_match);
573 
574 static const struct spi_device_id tcan4x5x_id_table[] = {
575 	{
576 		.name = "tcan4x5x",
577 	}, {
578 		/* sentinel */
579 	},
580 };
581 MODULE_DEVICE_TABLE(spi, tcan4x5x_id_table);
582 
583 static const struct dev_pm_ops tcan4x5x_pm_ops = {
584 	SET_SYSTEM_SLEEP_PM_OPS(tcan4x5x_suspend, tcan4x5x_resume)
585 };
586 
587 static struct spi_driver tcan4x5x_can_driver = {
588 	.driver = {
589 		.name = KBUILD_MODNAME,
590 		.of_match_table = tcan4x5x_of_match,
591 		.pm = &tcan4x5x_pm_ops,
592 	},
593 	.id_table = tcan4x5x_id_table,
594 	.probe = tcan4x5x_can_probe,
595 	.remove = tcan4x5x_can_remove,
596 };
597 module_spi_driver(tcan4x5x_can_driver);
598 
599 MODULE_AUTHOR("Dan Murphy <dmurphy@ti.com>");
600 MODULE_DESCRIPTION("Texas Instruments TCAN4x5x CAN driver");
601 MODULE_LICENSE("GPL v2");
602