| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * CAN bus driver for Bosch C_CAN controller | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2010 ST Microelectronics | 
					
						
							|  |  |  |  * Bhupesh Sharma <bhupesh.sharma@st.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Borrowed heavily from the C_CAN driver originally written by: | 
					
						
							|  |  |  |  * Copyright (C) 2007 | 
					
						
							|  |  |  |  * - Sascha Hauer, Marc Kleine-Budde, Pengutronix <s.hauer@pengutronix.de> | 
					
						
							|  |  |  |  * - Simon Kallweit, intefo AG <simon.kallweit@intefo.ch> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * TX and RX NAPI implementation has been borrowed from at91 CAN driver | 
					
						
							|  |  |  |  * written by: | 
					
						
							|  |  |  |  * Copyright | 
					
						
							|  |  |  |  * (C) 2007 by Hans J. Koch <hjk@hansjkoch.de> | 
					
						
							|  |  |  |  * (C) 2008, 2009 by Marc Kleine-Budde <kernel@pengutronix.de> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Bosch C_CAN controller is compliant to CAN protocol version 2.0 part A and B. | 
					
						
							|  |  |  |  * Bosch C_CAN user manual can be obtained from: | 
					
						
							|  |  |  |  * http://www.semiconductors.bosch.de/media/en/pdf/ipmodules_1/c_can/
 | 
					
						
							|  |  |  |  * users_manual_c_can.pdf | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is licensed under the terms of the GNU General Public | 
					
						
							|  |  |  |  * License version 2. This program is licensed "as is" without any | 
					
						
							|  |  |  |  * warranty of any kind, whether express or implied. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							|  |  |  | #include <linux/delay.h>
 | 
					
						
							|  |  |  | #include <linux/netdevice.h>
 | 
					
						
							|  |  |  | #include <linux/if_arp.h>
 | 
					
						
							|  |  |  | #include <linux/if_ether.h>
 | 
					
						
							|  |  |  | #include <linux/list.h>
 | 
					
						
							|  |  |  | #include <linux/io.h>
 | 
					
						
							| 
									
										
										
										
											2012-08-20 16:50:54 +05:30
										 |  |  | #include <linux/pm_runtime.h>
 | 
					
						
							| 
									
										
										
										
											2014-11-14 17:40:13 +02:00
										 |  |  | #include <linux/pinctrl/consumer.h>
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <linux/can.h>
 | 
					
						
							|  |  |  | #include <linux/can/dev.h>
 | 
					
						
							|  |  |  | #include <linux/can/error.h>
 | 
					
						
							| 
									
										
										
										
											2012-12-18 18:51:01 +01:00
										 |  |  | #include <linux/can/led.h>
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "c_can.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-29 11:13:15 +05:30
										 |  |  | /* Number of interface registers */ | 
					
						
							|  |  |  | #define IF_ENUM_REG_LEN		11
 | 
					
						
							|  |  |  | #define C_CAN_IFACE(reg, iface)	(C_CAN_IF1_##reg + (iface) * IF_ENUM_REG_LEN)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-21 15:29:01 +05:30
										 |  |  | /* control extension register D_CAN specific */ | 
					
						
							|  |  |  | #define CONTROL_EX_PDR		BIT(8)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | /* control register */ | 
					
						
							|  |  |  | #define CONTROL_TEST		BIT(7)
 | 
					
						
							|  |  |  | #define CONTROL_CCE		BIT(6)
 | 
					
						
							|  |  |  | #define CONTROL_DISABLE_AR	BIT(5)
 | 
					
						
							|  |  |  | #define CONTROL_ENABLE_AR	(0 << 5)
 | 
					
						
							|  |  |  | #define CONTROL_EIE		BIT(3)
 | 
					
						
							|  |  |  | #define CONTROL_SIE		BIT(2)
 | 
					
						
							|  |  |  | #define CONTROL_IE		BIT(1)
 | 
					
						
							|  |  |  | #define CONTROL_INIT		BIT(0)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | #define CONTROL_IRQMSK		(CONTROL_EIE | CONTROL_IE | CONTROL_SIE)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | /* test register */ | 
					
						
							|  |  |  | #define TEST_RX			BIT(7)
 | 
					
						
							|  |  |  | #define TEST_TX1		BIT(6)
 | 
					
						
							|  |  |  | #define TEST_TX2		BIT(5)
 | 
					
						
							|  |  |  | #define TEST_LBACK		BIT(4)
 | 
					
						
							|  |  |  | #define TEST_SILENT		BIT(3)
 | 
					
						
							|  |  |  | #define TEST_BASIC		BIT(2)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* status register */ | 
					
						
							| 
									
										
										
										
											2012-09-21 15:29:01 +05:30
										 |  |  | #define STATUS_PDA		BIT(10)
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | #define STATUS_BOFF		BIT(7)
 | 
					
						
							|  |  |  | #define STATUS_EWARN		BIT(6)
 | 
					
						
							|  |  |  | #define STATUS_EPASS		BIT(5)
 | 
					
						
							|  |  |  | #define STATUS_RXOK		BIT(4)
 | 
					
						
							|  |  |  | #define STATUS_TXOK		BIT(3)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* error counter register */ | 
					
						
							|  |  |  | #define ERR_CNT_TEC_MASK	0xff
 | 
					
						
							|  |  |  | #define ERR_CNT_TEC_SHIFT	0
 | 
					
						
							|  |  |  | #define ERR_CNT_REC_SHIFT	8
 | 
					
						
							|  |  |  | #define ERR_CNT_REC_MASK	(0x7f << ERR_CNT_REC_SHIFT)
 | 
					
						
							|  |  |  | #define ERR_CNT_RP_SHIFT	15
 | 
					
						
							|  |  |  | #define ERR_CNT_RP_MASK		(0x1 << ERR_CNT_RP_SHIFT)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* bit-timing register */ | 
					
						
							|  |  |  | #define BTR_BRP_MASK		0x3f
 | 
					
						
							|  |  |  | #define BTR_BRP_SHIFT		0
 | 
					
						
							|  |  |  | #define BTR_SJW_SHIFT		6
 | 
					
						
							|  |  |  | #define BTR_SJW_MASK		(0x3 << BTR_SJW_SHIFT)
 | 
					
						
							|  |  |  | #define BTR_TSEG1_SHIFT		8
 | 
					
						
							|  |  |  | #define BTR_TSEG1_MASK		(0xf << BTR_TSEG1_SHIFT)
 | 
					
						
							|  |  |  | #define BTR_TSEG2_SHIFT		12
 | 
					
						
							|  |  |  | #define BTR_TSEG2_MASK		(0x7 << BTR_TSEG2_SHIFT)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* brp extension register */ | 
					
						
							|  |  |  | #define BRP_EXT_BRPE_MASK	0x0f
 | 
					
						
							|  |  |  | #define BRP_EXT_BRPE_SHIFT	0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* IFx command request */ | 
					
						
							|  |  |  | #define IF_COMR_BUSY		BIT(15)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* IFx command mask */ | 
					
						
							|  |  |  | #define IF_COMM_WR		BIT(7)
 | 
					
						
							|  |  |  | #define IF_COMM_MASK		BIT(6)
 | 
					
						
							|  |  |  | #define IF_COMM_ARB		BIT(5)
 | 
					
						
							|  |  |  | #define IF_COMM_CONTROL		BIT(4)
 | 
					
						
							|  |  |  | #define IF_COMM_CLR_INT_PND	BIT(3)
 | 
					
						
							|  |  |  | #define IF_COMM_TXRQST		BIT(2)
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:14 +00:00
										 |  |  | #define IF_COMM_CLR_NEWDAT	IF_COMM_TXRQST
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | #define IF_COMM_DATAA		BIT(1)
 | 
					
						
							|  |  |  | #define IF_COMM_DATAB		BIT(0)
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* TX buffer setup */ | 
					
						
							|  |  |  | #define IF_COMM_TX		(IF_COMM_ARB | IF_COMM_CONTROL | \
 | 
					
						
							|  |  |  | 				 IF_COMM_TXRQST |		 \ | 
					
						
							|  |  |  | 				 IF_COMM_DATAA | IF_COMM_DATAB) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:13 +00:00
										 |  |  | /* For the low buffers we clear the interrupt bit, but keep newdat */ | 
					
						
							|  |  |  | #define IF_COMM_RCV_LOW		(IF_COMM_MASK | IF_COMM_ARB | \
 | 
					
						
							|  |  |  | 				 IF_COMM_CONTROL | IF_COMM_CLR_INT_PND | \ | 
					
						
							|  |  |  | 				 IF_COMM_DATAA | IF_COMM_DATAB) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* For the high buffers we clear the interrupt bit and newdat */ | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:14 +00:00
										 |  |  | #define IF_COMM_RCV_HIGH	(IF_COMM_RCV_LOW | IF_COMM_CLR_NEWDAT)
 | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Receive setup of message objects */ | 
					
						
							|  |  |  | #define IF_COMM_RCV_SETUP	(IF_COMM_MASK | IF_COMM_ARB | IF_COMM_CONTROL)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:19 +00:00
										 |  |  | /* Invalidation of message objects */ | 
					
						
							|  |  |  | #define IF_COMM_INVAL		(IF_COMM_ARB | IF_COMM_CONTROL)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | /* IFx arbitration */ | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:21 +00:00
										 |  |  | #define IF_ARB_MSGVAL		BIT(31)
 | 
					
						
							|  |  |  | #define IF_ARB_MSGXTD		BIT(30)
 | 
					
						
							|  |  |  | #define IF_ARB_TRANSMIT		BIT(29)
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* IFx message control */ | 
					
						
							|  |  |  | #define IF_MCONT_NEWDAT		BIT(15)
 | 
					
						
							|  |  |  | #define IF_MCONT_MSGLST		BIT(14)
 | 
					
						
							|  |  |  | #define IF_MCONT_INTPND		BIT(13)
 | 
					
						
							|  |  |  | #define IF_MCONT_UMASK		BIT(12)
 | 
					
						
							|  |  |  | #define IF_MCONT_TXIE		BIT(11)
 | 
					
						
							|  |  |  | #define IF_MCONT_RXIE		BIT(10)
 | 
					
						
							|  |  |  | #define IF_MCONT_RMTEN		BIT(9)
 | 
					
						
							|  |  |  | #define IF_MCONT_TXRQST		BIT(8)
 | 
					
						
							|  |  |  | #define IF_MCONT_EOB		BIT(7)
 | 
					
						
							|  |  |  | #define IF_MCONT_DLC_MASK	0xf
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:18 +00:00
										 |  |  | #define IF_MCONT_RCV		(IF_MCONT_RXIE | IF_MCONT_UMASK)
 | 
					
						
							|  |  |  | #define IF_MCONT_RCV_EOB	(IF_MCONT_RCV | IF_MCONT_EOB)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:21 +00:00
										 |  |  | #define IF_MCONT_TX		(IF_MCONT_TXIE | IF_MCONT_EOB)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:09 +00:00
										 |  |  |  * Use IF1 for RX and IF2 for TX | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:09 +00:00
										 |  |  | #define IF_RX			0
 | 
					
						
							|  |  |  | #define IF_TX			1
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* minimum timeout for checking BUSY status */ | 
					
						
							|  |  |  | #define MIN_TIMEOUT_VALUE	6
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-21 15:29:01 +05:30
										 |  |  | /* Wait for ~1 sec for INIT bit */ | 
					
						
							|  |  |  | #define INIT_WAIT_MS		1000
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | /* napi related */ | 
					
						
							|  |  |  | #define C_CAN_NAPI_WEIGHT	C_CAN_MSG_OBJ_RX_NUM
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* c_can lec values */ | 
					
						
							|  |  |  | enum c_can_lec_type { | 
					
						
							|  |  |  | 	LEC_NO_ERROR = 0, | 
					
						
							|  |  |  | 	LEC_STUFF_ERROR, | 
					
						
							|  |  |  | 	LEC_FORM_ERROR, | 
					
						
							|  |  |  | 	LEC_ACK_ERROR, | 
					
						
							|  |  |  | 	LEC_BIT1_ERROR, | 
					
						
							|  |  |  | 	LEC_BIT0_ERROR, | 
					
						
							|  |  |  | 	LEC_CRC_ERROR, | 
					
						
							|  |  |  | 	LEC_UNUSED, | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:13 +00:00
										 |  |  | 	LEC_MASK = LEC_UNUSED, | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * c_can error types: | 
					
						
							|  |  |  |  * Bus errors (BUS_OFF, ERROR_WARNING, ERROR_PASSIVE) are supported | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | enum c_can_bus_error_types { | 
					
						
							|  |  |  | 	C_CAN_NO_ERROR = 0, | 
					
						
							|  |  |  | 	C_CAN_BUS_OFF, | 
					
						
							|  |  |  | 	C_CAN_ERROR_WARNING, | 
					
						
							|  |  |  | 	C_CAN_ERROR_PASSIVE, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-16 12:58:31 +02:00
										 |  |  | static const struct can_bittiming_const c_can_bittiming_const = { | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	.name = KBUILD_MODNAME, | 
					
						
							|  |  |  | 	.tseg1_min = 2,		/* Time segment 1 = prop_seg + phase_seg1 */ | 
					
						
							|  |  |  | 	.tseg1_max = 16, | 
					
						
							|  |  |  | 	.tseg2_min = 1,		/* Time segment 2 = phase_seg2 */ | 
					
						
							|  |  |  | 	.tseg2_max = 8, | 
					
						
							|  |  |  | 	.sjw_max = 4, | 
					
						
							|  |  |  | 	.brp_min = 1, | 
					
						
							|  |  |  | 	.brp_max = 1024,	/* 6-bit BRP field + 4-bit BRPE field*/ | 
					
						
							|  |  |  | 	.brp_inc = 1, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-20 16:50:54 +05:30
										 |  |  | static inline void c_can_pm_runtime_enable(const struct c_can_priv *priv) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (priv->device) | 
					
						
							|  |  |  | 		pm_runtime_enable(priv->device); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void c_can_pm_runtime_disable(const struct c_can_priv *priv) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (priv->device) | 
					
						
							|  |  |  | 		pm_runtime_disable(priv->device); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void c_can_pm_runtime_get_sync(const struct c_can_priv *priv) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (priv->device) | 
					
						
							|  |  |  | 		pm_runtime_get_sync(priv->device); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void c_can_pm_runtime_put_sync(const struct c_can_priv *priv) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (priv->device) | 
					
						
							|  |  |  | 		pm_runtime_put_sync(priv->device); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-21 11:14:10 +05:30
										 |  |  | static inline void c_can_reset_ram(const struct c_can_priv *priv, bool enable) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (priv->raminit) | 
					
						
							|  |  |  | 		priv->raminit(priv, enable); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | static void c_can_irq_control(struct c_can_priv *priv, bool enable) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | 	u32 ctrl = priv->read_reg(priv,	C_CAN_CTRL_REG) & ~CONTROL_IRQMSK; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (enable) | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | 		ctrl |= CONTROL_IRQMSK; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | 	priv->write_reg(priv, C_CAN_CTRL_REG, ctrl); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:20 +00:00
										 |  |  | static void c_can_obj_update(struct net_device *dev, int iface, u32 cmd, u32 obj) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:20 +00:00
										 |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	int cnt, reg = C_CAN_IFACE(COMREQ_REG, iface); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-06 15:57:02 +02:00
										 |  |  | 	priv->write_reg32(priv, reg, (cmd << 16) | obj); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:20 +00:00
										 |  |  | 	for (cnt = MIN_TIMEOUT_VALUE; cnt; cnt--) { | 
					
						
							|  |  |  | 		if (!(priv->read_reg(priv, reg) & IF_COMR_BUSY)) | 
					
						
							|  |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 		udelay(1); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:20 +00:00
										 |  |  | 	netdev_err(dev, "Updating object timed out\n"); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:20 +00:00
										 |  |  | static inline void c_can_object_get(struct net_device *dev, int iface, | 
					
						
							|  |  |  | 				    u32 obj, u32 cmd) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:20 +00:00
										 |  |  | 	c_can_obj_update(dev, iface, cmd, obj); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:20 +00:00
										 |  |  | static inline void c_can_object_put(struct net_device *dev, int iface, | 
					
						
							|  |  |  | 				    u32 obj, u32 cmd) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:20 +00:00
										 |  |  | 	c_can_obj_update(dev, iface, cmd | IF_COMM_WR, obj); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Note: According to documentation clearing TXIE while MSGVAL is set | 
					
						
							|  |  |  |  * is not allowed, but works nicely on C/DCAN. And that lowers the I/O | 
					
						
							|  |  |  |  * load significantly. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void c_can_inval_tx_object(struct net_device *dev, int iface, int obj) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv->write_reg(priv, C_CAN_IFACE(MSGCTRL_REG, iface), 0); | 
					
						
							|  |  |  | 	c_can_object_put(dev, iface, obj, IF_COMM_INVAL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void c_can_inval_msg_object(struct net_device *dev, int iface, int obj) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv->write_reg(priv, C_CAN_IFACE(ARB1_REG, iface), 0); | 
					
						
							|  |  |  | 	priv->write_reg(priv, C_CAN_IFACE(ARB2_REG, iface), 0); | 
					
						
							|  |  |  | 	c_can_inval_tx_object(dev, iface, obj); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | static void c_can_setup_tx_object(struct net_device *dev, int iface, | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 				  struct can_frame *frame, int idx) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:21 +00:00
										 |  |  | 	u16 ctrl = IF_MCONT_TX | frame->can_dlc; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	bool rtr = frame->can_id & CAN_RTR_FLAG; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:21 +00:00
										 |  |  | 	u32 arb = IF_ARB_MSGVAL; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:21 +00:00
										 |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (frame->can_id & CAN_EFF_FLAG) { | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:21 +00:00
										 |  |  | 		arb |= frame->can_id & CAN_EFF_MASK; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:21 +00:00
										 |  |  | 		arb |= IF_ARB_MSGXTD; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:21 +00:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		arb |= (frame->can_id & CAN_SFF_MASK) << 18; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	if (!rtr) | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:21 +00:00
										 |  |  | 		arb |= IF_ARB_TRANSMIT; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * If we change the DIR bit, we need to invalidate the buffer | 
					
						
							|  |  |  | 	 * first, i.e. clear the MSGVAL flag in the arbiter. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (rtr != (bool)test_bit(idx, &priv->tx_dir)) { | 
					
						
							|  |  |  | 		u32 obj = idx + C_CAN_MSG_OBJ_TX_FIRST; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		c_can_inval_msg_object(dev, iface, obj); | 
					
						
							|  |  |  | 		change_bit(idx, &priv->tx_dir); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-06 15:57:02 +02:00
										 |  |  | 	priv->write_reg32(priv, C_CAN_IFACE(ARB1_REG, iface), arb); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:21 +00:00
										 |  |  | 	priv->write_reg(priv, C_CAN_IFACE(MSGCTRL_REG, iface), ctrl); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < frame->can_dlc; i += 2) { | 
					
						
							| 
									
										
										
										
											2012-05-29 11:13:15 +05:30
										 |  |  | 		priv->write_reg(priv, C_CAN_IFACE(DATA1_REG, iface) + i / 2, | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 				frame->data[i] | (frame->data[i + 1] << 8)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void c_can_activate_all_lower_rx_msg_obj(struct net_device *dev, | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:14 +00:00
										 |  |  | 						       int iface) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:14 +00:00
										 |  |  | 	for (i = C_CAN_MSG_OBJ_RX_FIRST; i <= C_CAN_MSG_RX_LOW_LAST; i++) | 
					
						
							|  |  |  | 		c_can_object_get(dev, iface, i, IF_COMM_CLR_NEWDAT); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:10 +00:00
										 |  |  | static int c_can_handle_lost_msg_obj(struct net_device *dev, | 
					
						
							|  |  |  | 				     int iface, int objno, u32 ctrl) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct net_device_stats *stats = &dev->stats; | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:10 +00:00
										 |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	struct can_frame *frame; | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:10 +00:00
										 |  |  | 	struct sk_buff *skb; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:10 +00:00
										 |  |  | 	ctrl &= ~(IF_MCONT_MSGLST | IF_MCONT_INTPND | IF_MCONT_NEWDAT); | 
					
						
							|  |  |  | 	priv->write_reg(priv, C_CAN_IFACE(MSGCTRL_REG, iface), ctrl); | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:09 +00:00
										 |  |  | 	c_can_object_put(dev, iface, objno, IF_COMM_CONTROL); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:13 +00:00
										 |  |  | 	stats->rx_errors++; | 
					
						
							|  |  |  | 	stats->rx_over_errors++; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	/* create an error msg */ | 
					
						
							|  |  |  | 	skb = alloc_can_err_skb(dev, &frame); | 
					
						
							|  |  |  | 	if (unlikely(!skb)) | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:10 +00:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	frame->can_id |= CAN_ERR_CRTL; | 
					
						
							|  |  |  | 	frame->data[1] = CAN_ERR_CRTL_RX_OVERFLOW; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netif_receive_skb(skb); | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:10 +00:00
										 |  |  | 	return 1; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:18 +00:00
										 |  |  | static int c_can_read_msg_object(struct net_device *dev, int iface, u32 ctrl) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct net_device_stats *stats = &dev->stats; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:18 +00:00
										 |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	struct can_frame *frame; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:18 +00:00
										 |  |  | 	struct sk_buff *skb; | 
					
						
							|  |  |  | 	u32 arb, data; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	skb = alloc_can_skb(dev, &frame); | 
					
						
							|  |  |  | 	if (!skb) { | 
					
						
							|  |  |  | 		stats->rx_dropped++; | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	frame->can_dlc = get_can_dlc(ctrl & 0x0F); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-06 15:57:02 +02:00
										 |  |  | 	arb = priv->read_reg32(priv, C_CAN_IFACE(ARB1_REG, iface)); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:21 +00:00
										 |  |  | 	if (arb & IF_ARB_MSGXTD) | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:18 +00:00
										 |  |  | 		frame->can_id = (arb & CAN_EFF_MASK) | CAN_EFF_FLAG; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:18 +00:00
										 |  |  | 		frame->can_id = (arb >> 18) & CAN_SFF_MASK; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:21 +00:00
										 |  |  | 	if (arb & IF_ARB_TRANSMIT) { | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 		frame->can_id |= CAN_RTR_FLAG; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:18 +00:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		int i, dreg = C_CAN_IFACE(DATA1_REG, iface); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (i = 0; i < frame->can_dlc; i += 2, dreg ++) { | 
					
						
							|  |  |  | 			data = priv->read_reg(priv, dreg); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 			frame->data[i] = data; | 
					
						
							|  |  |  | 			frame->data[i + 1] = data >> 8; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	stats->rx_packets++; | 
					
						
							|  |  |  | 	stats->rx_bytes += frame->can_dlc; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	netif_receive_skb(skb); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void c_can_setup_receive_object(struct net_device *dev, int iface, | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:18 +00:00
										 |  |  | 				       u32 obj, u32 mask, u32 id, u32 mcont) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:18 +00:00
										 |  |  | 	mask |= BIT(29); | 
					
						
							| 
									
										
										
										
											2014-05-06 15:57:02 +02:00
										 |  |  | 	priv->write_reg32(priv, C_CAN_IFACE(MASK1_REG, iface), mask); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:21 +00:00
										 |  |  | 	id |= IF_ARB_MSGVAL; | 
					
						
							| 
									
										
										
										
											2014-05-06 15:57:02 +02:00
										 |  |  | 	priv->write_reg32(priv, C_CAN_IFACE(ARB1_REG, iface), id); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-29 11:13:15 +05:30
										 |  |  | 	priv->write_reg(priv, C_CAN_IFACE(MSGCTRL_REG, iface), mcont); | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:18 +00:00
										 |  |  | 	c_can_object_put(dev, iface, obj, IF_COMM_RCV_SETUP); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static netdev_tx_t c_can_start_xmit(struct sk_buff *skb, | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 				    struct net_device *dev) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct can_frame *frame = (struct can_frame *)skb->data; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	u32 idx, obj; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (can_dropped_invalid_skb(dev, skb)) | 
					
						
							|  |  |  | 		return NETDEV_TX_OK; | 
					
						
							|  |  |  | 	/*
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	 * This is not a FIFO. C/D_CAN sends out the buffers | 
					
						
							|  |  |  | 	 * prioritized. The lowest buffer number wins. | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	idx = fls(atomic_read(&priv->tx_active)); | 
					
						
							|  |  |  | 	obj = idx + C_CAN_MSG_OBJ_TX_FIRST; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If this is the last buffer, stop the xmit queue */ | 
					
						
							|  |  |  | 	if (idx == C_CAN_MSG_OBJ_TX_NUM - 1) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 		netif_stop_queue(dev); | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Store the message in the interface so we can call | 
					
						
							|  |  |  | 	 * can_put_echo_skb(). We must do this before we enable | 
					
						
							|  |  |  | 	 * transmit as we might race against do_tx(). | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	c_can_setup_tx_object(dev, IF_TX, frame, idx); | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	priv->dlc[idx] = frame->can_dlc; | 
					
						
							|  |  |  | 	can_put_echo_skb(skb, dev, idx); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Update the active bits */ | 
					
						
							|  |  |  | 	atomic_add((1 << idx), &priv->tx_active); | 
					
						
							|  |  |  | 	/* Start transmission */ | 
					
						
							|  |  |  | 	c_can_object_put(dev, IF_TX, obj, IF_COMM_TX); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return NETDEV_TX_OK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:08 +00:00
										 |  |  | static int c_can_wait_for_ctrl_init(struct net_device *dev, | 
					
						
							|  |  |  | 				    struct c_can_priv *priv, u32 init) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int retry = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (init != (priv->read_reg(priv, C_CAN_CTRL_REG) & CONTROL_INIT)) { | 
					
						
							|  |  |  | 		udelay(10); | 
					
						
							|  |  |  | 		if (retry++ > 1000) { | 
					
						
							|  |  |  | 			netdev_err(dev, "CCTRL: set CONTROL_INIT failed\n"); | 
					
						
							|  |  |  | 			return -EIO; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | static int c_can_set_bittiming(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned int reg_btr, reg_brpe, ctrl_save; | 
					
						
							|  |  |  | 	u8 brp, brpe, sjw, tseg1, tseg2; | 
					
						
							|  |  |  | 	u32 ten_bit_brp; | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	const struct can_bittiming *bt = &priv->can.bittiming; | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:08 +00:00
										 |  |  | 	int res; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* c_can provides a 6-bit brp and 4-bit brpe fields */ | 
					
						
							|  |  |  | 	ten_bit_brp = bt->brp - 1; | 
					
						
							|  |  |  | 	brp = ten_bit_brp & BTR_BRP_MASK; | 
					
						
							|  |  |  | 	brpe = ten_bit_brp >> 6; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sjw = bt->sjw - 1; | 
					
						
							|  |  |  | 	tseg1 = bt->prop_seg + bt->phase_seg1 - 1; | 
					
						
							|  |  |  | 	tseg2 = bt->phase_seg2 - 1; | 
					
						
							|  |  |  | 	reg_btr = brp | (sjw << BTR_SJW_SHIFT) | (tseg1 << BTR_TSEG1_SHIFT) | | 
					
						
							|  |  |  | 			(tseg2 << BTR_TSEG2_SHIFT); | 
					
						
							|  |  |  | 	reg_brpe = brpe & BRP_EXT_BRPE_MASK; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netdev_info(dev, | 
					
						
							|  |  |  | 		"setting BTR=%04x BRPE=%04x\n", reg_btr, reg_brpe); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-29 11:13:15 +05:30
										 |  |  | 	ctrl_save = priv->read_reg(priv, C_CAN_CTRL_REG); | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:08 +00:00
										 |  |  | 	ctrl_save &= ~CONTROL_INIT; | 
					
						
							|  |  |  | 	priv->write_reg(priv, C_CAN_CTRL_REG, CONTROL_CCE | CONTROL_INIT); | 
					
						
							|  |  |  | 	res = c_can_wait_for_ctrl_init(dev, priv, CONTROL_INIT); | 
					
						
							|  |  |  | 	if (res) | 
					
						
							|  |  |  | 		return res; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-29 11:13:15 +05:30
										 |  |  | 	priv->write_reg(priv, C_CAN_BTR_REG, reg_btr); | 
					
						
							|  |  |  | 	priv->write_reg(priv, C_CAN_BRPEXT_REG, reg_brpe); | 
					
						
							|  |  |  | 	priv->write_reg(priv, C_CAN_CTRL_REG, ctrl_save); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:08 +00:00
										 |  |  | 	return c_can_wait_for_ctrl_init(dev, priv, 0); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Configure C_CAN message objects for Tx and Rx purposes: | 
					
						
							|  |  |  |  * C_CAN provides a total of 32 message objects that can be configured | 
					
						
							|  |  |  |  * either for Tx or Rx purposes. Here the first 16 message objects are used as | 
					
						
							|  |  |  |  * a reception FIFO. The end of reception FIFO is signified by the EoB bit | 
					
						
							|  |  |  |  * being SET. The remaining 16 message objects are kept aside for Tx purposes. | 
					
						
							|  |  |  |  * See user guide document for further details on configuring message | 
					
						
							|  |  |  |  * objects. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void c_can_configure_msg_objects(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* first invalidate all message objects */ | 
					
						
							|  |  |  | 	for (i = C_CAN_MSG_OBJ_RX_FIRST; i <= C_CAN_NO_OF_OBJECTS; i++) | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:09 +00:00
										 |  |  | 		c_can_inval_msg_object(dev, IF_RX, i); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* setup receive message objects */ | 
					
						
							|  |  |  | 	for (i = C_CAN_MSG_OBJ_RX_FIRST; i < C_CAN_MSG_OBJ_RX_LAST; i++) | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:18 +00:00
										 |  |  | 		c_can_setup_receive_object(dev, IF_RX, i, 0, 0, IF_MCONT_RCV); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:09 +00:00
										 |  |  | 	c_can_setup_receive_object(dev, IF_RX, C_CAN_MSG_OBJ_RX_LAST, 0, 0, | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:18 +00:00
										 |  |  | 				   IF_MCONT_RCV_EOB); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Configure C_CAN chip: | 
					
						
							|  |  |  |  * - enable/disable auto-retransmission | 
					
						
							|  |  |  |  * - set operating mode | 
					
						
							|  |  |  |  * - configure message objects | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-03-18 19:06:01 +01:00
										 |  |  | static int c_can_chip_config(struct net_device *dev) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-24 02:34:32 +00:00
										 |  |  | 	/* enable automatic retransmission */ | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:10 +00:00
										 |  |  | 	priv->write_reg(priv, C_CAN_CTRL_REG, CONTROL_ENABLE_AR); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-15 00:20:44 +00:00
										 |  |  | 	if ((priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY) && | 
					
						
							|  |  |  | 	    (priv->can.ctrlmode & CAN_CTRLMODE_LOOPBACK)) { | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 		/* loopback + silent mode : useful for hot self-test */ | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:10 +00:00
										 |  |  | 		priv->write_reg(priv, C_CAN_CTRL_REG, CONTROL_TEST); | 
					
						
							|  |  |  | 		priv->write_reg(priv, C_CAN_TEST_REG, TEST_LBACK | TEST_SILENT); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	} else if (priv->can.ctrlmode & CAN_CTRLMODE_LOOPBACK) { | 
					
						
							|  |  |  | 		/* loopback mode : useful for self-test function */ | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:10 +00:00
										 |  |  | 		priv->write_reg(priv, C_CAN_CTRL_REG, CONTROL_TEST); | 
					
						
							| 
									
										
										
										
											2012-05-29 11:13:15 +05:30
										 |  |  | 		priv->write_reg(priv, C_CAN_TEST_REG, TEST_LBACK); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	} else if (priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY) { | 
					
						
							|  |  |  | 		/* silent mode : bus-monitoring mode */ | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:10 +00:00
										 |  |  | 		priv->write_reg(priv, C_CAN_CTRL_REG, CONTROL_TEST); | 
					
						
							| 
									
										
										
										
											2012-05-29 11:13:15 +05:30
										 |  |  | 		priv->write_reg(priv, C_CAN_TEST_REG, TEST_SILENT); | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:10 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* configure message objects */ | 
					
						
							|  |  |  | 	c_can_configure_msg_objects(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* set a `lec` value so that we can check for updates later */ | 
					
						
							| 
									
										
										
										
											2012-05-29 11:13:15 +05:30
										 |  |  | 	priv->write_reg(priv, C_CAN_STS_REG, LEC_UNUSED); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	/* Clear all internal status */ | 
					
						
							|  |  |  | 	atomic_set(&priv->tx_active, 0); | 
					
						
							|  |  |  | 	priv->rxmasked = 0; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	priv->tx_dir = 0; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	/* set bittiming params */ | 
					
						
							| 
									
										
										
										
											2014-03-18 19:06:01 +01:00
										 |  |  | 	return c_can_set_bittiming(dev); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 19:06:01 +01:00
										 |  |  | static int c_can_start(struct net_device *dev) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2014-03-18 19:06:01 +01:00
										 |  |  | 	int err; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* basic c_can configuration */ | 
					
						
							| 
									
										
										
										
											2014-03-18 19:06:01 +01:00
										 |  |  | 	err = c_can_chip_config(dev); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | 	/* Setup the command for new messages */ | 
					
						
							|  |  |  | 	priv->comm_rcv_high = priv->type != BOSCH_D_CAN ? | 
					
						
							|  |  |  | 		IF_COMM_RCV_LOW : IF_COMM_RCV_HIGH; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	priv->can.state = CAN_STATE_ERROR_ACTIVE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 17:40:13 +02:00
										 |  |  | 	/* activate pins */ | 
					
						
							|  |  |  | 	pinctrl_pm_select_default_state(dev->dev.parent); | 
					
						
							| 
									
										
										
										
											2014-03-18 19:06:01 +01:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void c_can_stop(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | 	c_can_irq_control(priv, false); | 
					
						
							| 
									
										
										
										
											2014-11-14 17:40:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-18 20:01:40 +01:00
										 |  |  | 	/* put ctrl to init on stop to end ongoing transmission */ | 
					
						
							|  |  |  | 	priv->write_reg(priv, C_CAN_CTRL_REG, CONTROL_INIT); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 17:40:13 +02:00
										 |  |  | 	/* deactivate pins */ | 
					
						
							|  |  |  | 	pinctrl_pm_select_sleep_state(dev->dev.parent); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	priv->can.state = CAN_STATE_STOPPED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int c_can_set_mode(struct net_device *dev, enum can_mode mode) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:10 +00:00
										 |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2014-03-18 19:06:01 +01:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	switch (mode) { | 
					
						
							|  |  |  | 	case CAN_MODE_START: | 
					
						
							| 
									
										
										
										
											2014-03-18 19:06:01 +01:00
										 |  |  | 		err = c_can_start(dev); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			return err; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 		netif_wake_queue(dev); | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | 		c_can_irq_control(priv, true); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-24 23:31:24 +01:00
										 |  |  | static int __c_can_get_berr_counter(const struct net_device *dev, | 
					
						
							|  |  |  | 				    struct can_berr_counter *bec) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned int reg_err_counter; | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-29 11:13:15 +05:30
										 |  |  | 	reg_err_counter = priv->read_reg(priv, C_CAN_ERR_CNT_REG); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	bec->rxerr = (reg_err_counter & ERR_CNT_REC_MASK) >> | 
					
						
							|  |  |  | 				ERR_CNT_REC_SHIFT; | 
					
						
							|  |  |  | 	bec->txerr = reg_err_counter & ERR_CNT_TEC_MASK; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-24 23:31:24 +01:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int c_can_get_berr_counter(const struct net_device *dev, | 
					
						
							|  |  |  | 				  struct can_berr_counter *bec) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	c_can_pm_runtime_get_sync(priv); | 
					
						
							|  |  |  | 	err = __c_can_get_berr_counter(dev, bec); | 
					
						
							| 
									
										
										
										
											2012-08-20 16:50:54 +05:30
										 |  |  | 	c_can_pm_runtime_put_sync(priv); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-24 23:31:24 +01:00
										 |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void c_can_do_tx(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct net_device_stats *stats = &dev->stats; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	u32 idx, obj, pkts = 0, bytes = 0, pend, clr; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	clr = pend = priv->read_reg(priv, C_CAN_INTPND2_REG); | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	while ((idx = ffs(pend))) { | 
					
						
							|  |  |  | 		idx--; | 
					
						
							|  |  |  | 		pend &= ~(1 << idx); | 
					
						
							|  |  |  | 		obj = idx + C_CAN_MSG_OBJ_TX_FIRST; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 		c_can_inval_tx_object(dev, IF_RX, obj); | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 		can_get_echo_skb(dev, idx); | 
					
						
							|  |  |  | 		bytes += priv->dlc[idx]; | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:14 +00:00
										 |  |  | 		pkts++; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	/* Clear the bits in the tx_active mask */ | 
					
						
							|  |  |  | 	atomic_sub(clr, &priv->tx_active); | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:22 +00:00
										 |  |  | 	if (clr & (1 << (C_CAN_MSG_OBJ_TX_NUM - 1))) | 
					
						
							|  |  |  | 		netif_wake_queue(dev); | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (pkts) { | 
					
						
							|  |  |  | 		stats->tx_bytes += bytes; | 
					
						
							|  |  |  | 		stats->tx_packets += pkts; | 
					
						
							|  |  |  | 		can_led_event(dev, CAN_LED_EVENT_TX); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:10 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * If we have a gap in the pending bits, that means we either | 
					
						
							|  |  |  |  * raced with the hardware or failed to readout all upper | 
					
						
							|  |  |  |  * objects in the last run due to quota limit. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static u32 c_can_adjust_pending(u32 pend) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 weight, lasts; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (pend == RECEIVE_OBJECT_BITS) | 
					
						
							|  |  |  | 		return pend; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * If the last set bit is larger than the number of pending | 
					
						
							|  |  |  | 	 * bits we have a gap. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	weight = hweight32(pend); | 
					
						
							|  |  |  | 	lasts = fls(pend); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If the bits are linear, nothing to do */ | 
					
						
							|  |  |  | 	if (lasts == weight) | 
					
						
							|  |  |  | 		return pend; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Find the first set bit after the gap. We walk backwards | 
					
						
							|  |  |  | 	 * from the last set bit. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	for (lasts--; pend & (1 << (lasts - 1)); lasts--); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return pend & ~((1 << lasts) - 1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | static inline void c_can_rx_object_get(struct net_device *dev, | 
					
						
							|  |  |  | 				       struct c_can_priv *priv, u32 obj) | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:16 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | 		c_can_object_get(dev, IF_RX, obj, priv->comm_rcv_high); | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:16 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline void c_can_rx_finalize(struct net_device *dev, | 
					
						
							|  |  |  | 				     struct c_can_priv *priv, u32 obj) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | 	if (priv->type != BOSCH_D_CAN) | 
					
						
							|  |  |  | 		c_can_object_get(dev, IF_RX, obj, IF_COMM_CLR_NEWDAT); | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:16 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 19:27:42 +01:00
										 |  |  | static int c_can_read_objects(struct net_device *dev, struct c_can_priv *priv, | 
					
						
							|  |  |  | 			      u32 pend, int quota) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:16 +00:00
										 |  |  | 	u32 pkts = 0, ctrl, obj; | 
					
						
							| 
									
										
										
										
											2014-03-18 19:27:42 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	while ((obj = ffs(pend)) && quota > 0) { | 
					
						
							|  |  |  | 		pend &= ~BIT(obj - 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | 		c_can_rx_object_get(dev, priv, obj); | 
					
						
							| 
									
										
										
										
											2014-03-18 19:27:42 +01:00
										 |  |  | 		ctrl = priv->read_reg(priv, C_CAN_IFACE(MSGCTRL_REG, IF_RX)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (ctrl & IF_MCONT_MSGLST) { | 
					
						
							|  |  |  | 			int n = c_can_handle_lost_msg_obj(dev, IF_RX, obj, ctrl); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			pkts += n; | 
					
						
							|  |  |  | 			quota -= n; | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * This really should not happen, but this covers some | 
					
						
							|  |  |  | 		 * odd HW behaviour. Do not remove that unless you | 
					
						
							|  |  |  | 		 * want to brick your machine. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (!(ctrl & IF_MCONT_NEWDAT)) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* read the data from the message object */ | 
					
						
							|  |  |  | 		c_can_read_msg_object(dev, IF_RX, ctrl); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:16 +00:00
										 |  |  | 		c_can_rx_finalize(dev, priv, obj); | 
					
						
							| 
									
										
										
										
											2014-03-18 19:27:42 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		pkts++; | 
					
						
							|  |  |  | 		quota--; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return pkts; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:16 +00:00
										 |  |  | static inline u32 c_can_get_pending(struct c_can_priv *priv) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 pend = priv->read_reg(priv, C_CAN_NEWDAT1_REG); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return pend; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * theory of operation: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * c_can core saves a received CAN message into the first free message | 
					
						
							|  |  |  |  * object it finds free (starting with the lowest). Bits NEWDAT and | 
					
						
							|  |  |  |  * INTPND are set for this message object indicating that a new message | 
					
						
							|  |  |  |  * has arrived. To work-around this issue, we keep two groups of message | 
					
						
							|  |  |  |  * objects whose partitioning is defined by C_CAN_MSG_OBJ_RX_SPLIT. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:16 +00:00
										 |  |  |  * We clear the newdat bit right away. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This can result in packet reordering when the readout is slow. | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  |  */ | 
					
						
							|  |  |  | static int c_can_do_rx_poll(struct net_device *dev, int quota) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2014-03-18 19:27:42 +01:00
										 |  |  | 	u32 pkts = 0, pend = 0, toread, n; | 
					
						
							| 
									
										
										
										
											2013-11-01 10:36:36 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * It is faster to read only one 16bit register. This is only possible | 
					
						
							|  |  |  | 	 * for a maximum number of 16 objects. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	BUILD_BUG_ON_MSG(C_CAN_MSG_OBJ_RX_LAST > 16, | 
					
						
							|  |  |  | 			"Implementation does not support more message objects than 16"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:10 +00:00
										 |  |  | 	while (quota > 0) { | 
					
						
							|  |  |  | 		if (!pend) { | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:16 +00:00
										 |  |  | 			pend = c_can_get_pending(priv); | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:10 +00:00
										 |  |  | 			if (!pend) | 
					
						
							| 
									
										
										
										
											2014-03-18 19:27:42 +01:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:10 +00:00
										 |  |  | 			/*
 | 
					
						
							|  |  |  | 			 * If the pending field has a gap, handle the | 
					
						
							|  |  |  | 			 * bits above the gap first. | 
					
						
							|  |  |  | 			 */ | 
					
						
							| 
									
										
										
										
											2014-03-18 19:27:42 +01:00
										 |  |  | 			toread = c_can_adjust_pending(pend); | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:10 +00:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2014-03-18 19:27:42 +01:00
										 |  |  | 			toread = pend; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:10 +00:00
										 |  |  | 		/* Remove the bits from pend */ | 
					
						
							| 
									
										
										
										
											2014-03-18 19:27:42 +01:00
										 |  |  | 		pend &= ~toread; | 
					
						
							|  |  |  | 		/* Read the objects */ | 
					
						
							|  |  |  | 		n = c_can_read_objects(dev, priv, toread, quota); | 
					
						
							|  |  |  | 		pkts += n; | 
					
						
							|  |  |  | 		quota -= n; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 17:19:15 +00:00
										 |  |  | 	if (pkts) | 
					
						
							|  |  |  | 		can_led_event(dev, CAN_LED_EVENT_RX); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 19:27:42 +01:00
										 |  |  | 	return pkts; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int c_can_handle_state_change(struct net_device *dev, | 
					
						
							|  |  |  | 				enum c_can_bus_error_types error_type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned int reg_err_counter; | 
					
						
							|  |  |  | 	unsigned int rx_err_passive; | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct net_device_stats *stats = &dev->stats; | 
					
						
							|  |  |  | 	struct can_frame *cf; | 
					
						
							|  |  |  | 	struct sk_buff *skb; | 
					
						
							|  |  |  | 	struct can_berr_counter bec; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:12 +00:00
										 |  |  | 	switch (error_type) { | 
					
						
							|  |  |  | 	case C_CAN_ERROR_WARNING: | 
					
						
							|  |  |  | 		/* error warning state */ | 
					
						
							|  |  |  | 		priv->can.can_stats.error_warning++; | 
					
						
							|  |  |  | 		priv->can.state = CAN_STATE_ERROR_WARNING; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case C_CAN_ERROR_PASSIVE: | 
					
						
							|  |  |  | 		/* error passive state */ | 
					
						
							|  |  |  | 		priv->can.can_stats.error_passive++; | 
					
						
							|  |  |  | 		priv->can.state = CAN_STATE_ERROR_PASSIVE; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case C_CAN_BUS_OFF: | 
					
						
							|  |  |  | 		/* bus-off state */ | 
					
						
							|  |  |  | 		priv->can.state = CAN_STATE_BUS_OFF; | 
					
						
							| 
									
										
										
										
											2015-01-16 14:30:28 +00:00
										 |  |  | 		priv->can.can_stats.bus_off++; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:12 +00:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-30 22:57:33 -03:00
										 |  |  | 	/* propagate the error condition to the CAN stack */ | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	skb = alloc_can_err_skb(dev, &cf); | 
					
						
							|  |  |  | 	if (unlikely(!skb)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-24 23:31:24 +01:00
										 |  |  | 	__c_can_get_berr_counter(dev, &bec); | 
					
						
							| 
									
										
										
										
											2012-05-29 11:13:15 +05:30
										 |  |  | 	reg_err_counter = priv->read_reg(priv, C_CAN_ERR_CNT_REG); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	rx_err_passive = (reg_err_counter & ERR_CNT_RP_MASK) >> | 
					
						
							|  |  |  | 				ERR_CNT_RP_SHIFT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (error_type) { | 
					
						
							|  |  |  | 	case C_CAN_ERROR_WARNING: | 
					
						
							|  |  |  | 		/* error warning state */ | 
					
						
							|  |  |  | 		cf->can_id |= CAN_ERR_CRTL; | 
					
						
							|  |  |  | 		cf->data[1] = (bec.txerr > bec.rxerr) ? | 
					
						
							|  |  |  | 			CAN_ERR_CRTL_TX_WARNING : | 
					
						
							|  |  |  | 			CAN_ERR_CRTL_RX_WARNING; | 
					
						
							|  |  |  | 		cf->data[6] = bec.txerr; | 
					
						
							|  |  |  | 		cf->data[7] = bec.rxerr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case C_CAN_ERROR_PASSIVE: | 
					
						
							|  |  |  | 		/* error passive state */ | 
					
						
							|  |  |  | 		cf->can_id |= CAN_ERR_CRTL; | 
					
						
							|  |  |  | 		if (rx_err_passive) | 
					
						
							|  |  |  | 			cf->data[1] |= CAN_ERR_CRTL_RX_PASSIVE; | 
					
						
							|  |  |  | 		if (bec.txerr > 127) | 
					
						
							|  |  |  | 			cf->data[1] |= CAN_ERR_CRTL_TX_PASSIVE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		cf->data[6] = bec.txerr; | 
					
						
							|  |  |  | 		cf->data[7] = bec.rxerr; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case C_CAN_BUS_OFF: | 
					
						
							|  |  |  | 		/* bus-off state */ | 
					
						
							|  |  |  | 		cf->can_id |= CAN_ERR_BUSOFF; | 
					
						
							|  |  |  | 		can_bus_off(dev); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	stats->rx_packets++; | 
					
						
							|  |  |  | 	stats->rx_bytes += cf->can_dlc; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:12 +00:00
										 |  |  | 	netif_receive_skb(skb); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int c_can_handle_bus_err(struct net_device *dev, | 
					
						
							|  |  |  | 				enum c_can_lec_type lec_type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct net_device_stats *stats = &dev->stats; | 
					
						
							|  |  |  | 	struct can_frame *cf; | 
					
						
							|  |  |  | 	struct sk_buff *skb; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * early exit if no lec update or no error. | 
					
						
							|  |  |  | 	 * no lec update means that no CAN bus event has been detected | 
					
						
							|  |  |  | 	 * since CPU wrote 0x7 value to status reg. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (lec_type == LEC_UNUSED || lec_type == LEC_NO_ERROR) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:13 +00:00
										 |  |  | 	if (!(priv->can.ctrlmode & CAN_CTRLMODE_BERR_REPORTING)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:13 +00:00
										 |  |  | 	/* common for all type of bus errors */ | 
					
						
							|  |  |  | 	priv->can.can_stats.bus_error++; | 
					
						
							|  |  |  | 	stats->rx_errors++; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-30 22:57:33 -03:00
										 |  |  | 	/* propagate the error condition to the CAN stack */ | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	skb = alloc_can_err_skb(dev, &cf); | 
					
						
							|  |  |  | 	if (unlikely(!skb)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * check for 'last error code' which tells us the | 
					
						
							|  |  |  | 	 * type of the last error to occur on the CAN bus | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR; | 
					
						
							|  |  |  | 	cf->data[2] |= CAN_ERR_PROT_UNSPEC; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (lec_type) { | 
					
						
							|  |  |  | 	case LEC_STUFF_ERROR: | 
					
						
							|  |  |  | 		netdev_dbg(dev, "stuff error\n"); | 
					
						
							|  |  |  | 		cf->data[2] |= CAN_ERR_PROT_STUFF; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case LEC_FORM_ERROR: | 
					
						
							|  |  |  | 		netdev_dbg(dev, "form error\n"); | 
					
						
							|  |  |  | 		cf->data[2] |= CAN_ERR_PROT_FORM; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case LEC_ACK_ERROR: | 
					
						
							|  |  |  | 		netdev_dbg(dev, "ack error\n"); | 
					
						
							| 
									
										
										
										
											2013-01-18 09:32:39 +01:00
										 |  |  | 		cf->data[3] |= (CAN_ERR_PROT_LOC_ACK | | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 				CAN_ERR_PROT_LOC_ACK_DEL); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case LEC_BIT1_ERROR: | 
					
						
							|  |  |  | 		netdev_dbg(dev, "bit1 error\n"); | 
					
						
							|  |  |  | 		cf->data[2] |= CAN_ERR_PROT_BIT1; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case LEC_BIT0_ERROR: | 
					
						
							|  |  |  | 		netdev_dbg(dev, "bit0 error\n"); | 
					
						
							|  |  |  | 		cf->data[2] |= CAN_ERR_PROT_BIT0; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case LEC_CRC_ERROR: | 
					
						
							|  |  |  | 		netdev_dbg(dev, "CRC error\n"); | 
					
						
							| 
									
										
										
										
											2013-01-18 09:32:39 +01:00
										 |  |  | 		cf->data[3] |= (CAN_ERR_PROT_LOC_CRC_SEQ | | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 				CAN_ERR_PROT_LOC_CRC_DEL); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	stats->rx_packets++; | 
					
						
							|  |  |  | 	stats->rx_bytes += cf->can_dlc; | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:12 +00:00
										 |  |  | 	netif_receive_skb(skb); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int c_can_poll(struct napi_struct *napi, int quota) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct net_device *dev = napi->dev; | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:15 +00:00
										 |  |  | 	u16 curr, last = priv->last_status; | 
					
						
							|  |  |  | 	int work_done = 0; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:15 +00:00
										 |  |  | 	priv->last_status = curr = priv->read_reg(priv, C_CAN_STS_REG); | 
					
						
							|  |  |  | 	/* Ack status on C_CAN. D_CAN is self clearing */ | 
					
						
							|  |  |  | 	if (priv->type != BOSCH_D_CAN) | 
					
						
							|  |  |  | 		priv->write_reg(priv, C_CAN_STS_REG, LEC_UNUSED); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:15 +00:00
										 |  |  | 	/* handle state changes */ | 
					
						
							|  |  |  | 	if ((curr & STATUS_EWARN) && (!(last & STATUS_EWARN))) { | 
					
						
							|  |  |  | 		netdev_dbg(dev, "entered error warning state\n"); | 
					
						
							|  |  |  | 		work_done += c_can_handle_state_change(dev, C_CAN_ERROR_WARNING); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:15 +00:00
										 |  |  | 	if ((curr & STATUS_EPASS) && (!(last & STATUS_EPASS))) { | 
					
						
							|  |  |  | 		netdev_dbg(dev, "entered error passive state\n"); | 
					
						
							|  |  |  | 		work_done += c_can_handle_state_change(dev, C_CAN_ERROR_PASSIVE); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:15 +00:00
										 |  |  | 	if ((curr & STATUS_BOFF) && (!(last & STATUS_BOFF))) { | 
					
						
							|  |  |  | 		netdev_dbg(dev, "entered bus off state\n"); | 
					
						
							|  |  |  | 		work_done += c_can_handle_state_change(dev, C_CAN_BUS_OFF); | 
					
						
							|  |  |  | 		goto end; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:15 +00:00
										 |  |  | 	/* handle bus recovery events */ | 
					
						
							|  |  |  | 	if ((!(curr & STATUS_BOFF)) && (last & STATUS_BOFF)) { | 
					
						
							|  |  |  | 		netdev_dbg(dev, "left bus off state\n"); | 
					
						
							|  |  |  | 		priv->can.state = CAN_STATE_ERROR_ACTIVE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if ((!(curr & STATUS_EPASS)) && (last & STATUS_EPASS)) { | 
					
						
							|  |  |  | 		netdev_dbg(dev, "left error passive state\n"); | 
					
						
							|  |  |  | 		priv->can.state = CAN_STATE_ERROR_ACTIVE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* handle lec errors on the bus */ | 
					
						
							|  |  |  | 	work_done += c_can_handle_bus_err(dev, curr & LEC_MASK); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Handle Tx/Rx events. We do this unconditionally */ | 
					
						
							|  |  |  | 	work_done += c_can_do_rx_poll(dev, (quota - work_done)); | 
					
						
							|  |  |  | 	c_can_do_tx(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | end: | 
					
						
							|  |  |  | 	if (work_done < quota) { | 
					
						
							|  |  |  | 		napi_complete(napi); | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:11 +00:00
										 |  |  | 		/* enable all IRQs if we are not in bus off state */ | 
					
						
							|  |  |  | 		if (priv->can.state != CAN_STATE_BUS_OFF) | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | 			c_can_irq_control(priv, true); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return work_done; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static irqreturn_t c_can_isr(int irq, void *dev_id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct net_device *dev = (struct net_device *)dev_id; | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:15 +00:00
										 |  |  | 	if (!priv->read_reg(priv, C_CAN_INT_REG)) | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 		return IRQ_NONE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* disable all interrupts and schedule the NAPI */ | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | 	c_can_irq_control(priv, false); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	napi_schedule(&priv->napi); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return IRQ_HANDLED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int c_can_open(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-20 16:50:54 +05:30
										 |  |  | 	c_can_pm_runtime_get_sync(priv); | 
					
						
							| 
									
										
										
										
											2012-11-21 11:14:10 +05:30
										 |  |  | 	c_can_reset_ram(priv, true); | 
					
						
							| 
									
										
										
										
											2012-08-20 16:50:54 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	/* open the can device */ | 
					
						
							|  |  |  | 	err = open_candev(dev); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		netdev_err(dev, "failed to open can device\n"); | 
					
						
							| 
									
										
										
										
											2012-08-20 16:50:54 +05:30
										 |  |  | 		goto exit_open_fail; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* register interrupt handler */ | 
					
						
							|  |  |  | 	err = request_irq(dev->irq, &c_can_isr, IRQF_SHARED, dev->name, | 
					
						
							|  |  |  | 				dev); | 
					
						
							|  |  |  | 	if (err < 0) { | 
					
						
							|  |  |  | 		netdev_err(dev, "failed to request interrupt\n"); | 
					
						
							|  |  |  | 		goto exit_irq_fail; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 19:06:01 +01:00
										 |  |  | 	/* start the c_can controller */ | 
					
						
							|  |  |  | 	err = c_can_start(dev); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto exit_start_fail; | 
					
						
							| 
									
										
										
										
											2012-05-23 17:45:11 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-18 18:51:01 +01:00
										 |  |  | 	can_led_event(dev, CAN_LED_EVENT_OPEN); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 19:06:01 +01:00
										 |  |  | 	napi_enable(&priv->napi); | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:10 +00:00
										 |  |  | 	/* enable status change, error and module interrupts */ | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | 	c_can_irq_control(priv, true); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	netif_start_queue(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-18 19:06:01 +01:00
										 |  |  | exit_start_fail: | 
					
						
							|  |  |  | 	free_irq(dev->irq, dev); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | exit_irq_fail: | 
					
						
							|  |  |  | 	close_candev(dev); | 
					
						
							| 
									
										
										
										
											2012-08-20 16:50:54 +05:30
										 |  |  | exit_open_fail: | 
					
						
							| 
									
										
										
										
											2012-11-21 11:14:10 +05:30
										 |  |  | 	c_can_reset_ram(priv, false); | 
					
						
							| 
									
										
										
										
											2012-08-20 16:50:54 +05:30
										 |  |  | 	c_can_pm_runtime_put_sync(priv); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int c_can_close(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netif_stop_queue(dev); | 
					
						
							|  |  |  | 	napi_disable(&priv->napi); | 
					
						
							|  |  |  | 	c_can_stop(dev); | 
					
						
							|  |  |  | 	free_irq(dev->irq, dev); | 
					
						
							|  |  |  | 	close_candev(dev); | 
					
						
							| 
									
										
										
										
											2012-11-21 11:14:10 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	c_can_reset_ram(priv, false); | 
					
						
							| 
									
										
										
										
											2012-08-20 16:50:54 +05:30
										 |  |  | 	c_can_pm_runtime_put_sync(priv); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-18 18:51:01 +01:00
										 |  |  | 	can_led_event(dev, CAN_LED_EVENT_STOP); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct net_device *alloc_c_can_dev(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct net_device *dev; | 
					
						
							|  |  |  | 	struct c_can_priv *priv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev = alloc_candev(sizeof(struct c_can_priv), C_CAN_MSG_OBJ_TX_NUM); | 
					
						
							|  |  |  | 	if (!dev) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	netif_napi_add(dev, &priv->napi, c_can_poll, C_CAN_NAPI_WEIGHT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv->dev = dev; | 
					
						
							|  |  |  | 	priv->can.bittiming_const = &c_can_bittiming_const; | 
					
						
							|  |  |  | 	priv->can.do_set_mode = c_can_set_mode; | 
					
						
							|  |  |  | 	priv->can.do_get_berr_counter = c_can_get_berr_counter; | 
					
						
							| 
									
										
										
										
											2011-03-24 02:34:32 +00:00
										 |  |  | 	priv->can.ctrlmode_supported = CAN_CTRLMODE_LOOPBACK | | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 					CAN_CTRLMODE_LISTENONLY | | 
					
						
							|  |  |  | 					CAN_CTRLMODE_BERR_REPORTING; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return dev; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL_GPL(alloc_c_can_dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-21 15:29:01 +05:30
										 |  |  | #ifdef CONFIG_PM
 | 
					
						
							|  |  |  | int c_can_power_down(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 val; | 
					
						
							|  |  |  | 	unsigned long time_out; | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!(dev->flags & IFF_UP)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	WARN_ON(priv->type != BOSCH_D_CAN); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* set PDR value so the device goes to power down mode */ | 
					
						
							|  |  |  | 	val = priv->read_reg(priv, C_CAN_CTRL_EX_REG); | 
					
						
							|  |  |  | 	val |= CONTROL_EX_PDR; | 
					
						
							|  |  |  | 	priv->write_reg(priv, C_CAN_CTRL_EX_REG, val); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Wait for the PDA bit to get set */ | 
					
						
							|  |  |  | 	time_out = jiffies + msecs_to_jiffies(INIT_WAIT_MS); | 
					
						
							|  |  |  | 	while (!(priv->read_reg(priv, C_CAN_STS_REG) & STATUS_PDA) && | 
					
						
							|  |  |  | 				time_after(time_out, jiffies)) | 
					
						
							|  |  |  | 		cpu_relax(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (time_after(jiffies, time_out)) | 
					
						
							|  |  |  | 		return -ETIMEDOUT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	c_can_stop(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-21 11:14:10 +05:30
										 |  |  | 	c_can_reset_ram(priv, false); | 
					
						
							| 
									
										
										
										
											2012-09-21 15:29:01 +05:30
										 |  |  | 	c_can_pm_runtime_put_sync(priv); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL_GPL(c_can_power_down); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int c_can_power_up(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 val; | 
					
						
							|  |  |  | 	unsigned long time_out; | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:10 +00:00
										 |  |  | 	int ret; | 
					
						
							| 
									
										
										
										
											2012-09-21 15:29:01 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!(dev->flags & IFF_UP)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	WARN_ON(priv->type != BOSCH_D_CAN); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	c_can_pm_runtime_get_sync(priv); | 
					
						
							| 
									
										
										
										
											2012-11-21 11:14:10 +05:30
										 |  |  | 	c_can_reset_ram(priv, true); | 
					
						
							| 
									
										
										
										
											2012-09-21 15:29:01 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Clear PDR and INIT bits */ | 
					
						
							|  |  |  | 	val = priv->read_reg(priv, C_CAN_CTRL_EX_REG); | 
					
						
							|  |  |  | 	val &= ~CONTROL_EX_PDR; | 
					
						
							|  |  |  | 	priv->write_reg(priv, C_CAN_CTRL_EX_REG, val); | 
					
						
							|  |  |  | 	val = priv->read_reg(priv, C_CAN_CTRL_REG); | 
					
						
							|  |  |  | 	val &= ~CONTROL_INIT; | 
					
						
							|  |  |  | 	priv->write_reg(priv, C_CAN_CTRL_REG, val); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Wait for the PDA bit to get clear */ | 
					
						
							|  |  |  | 	time_out = jiffies + msecs_to_jiffies(INIT_WAIT_MS); | 
					
						
							|  |  |  | 	while ((priv->read_reg(priv, C_CAN_STS_REG) & STATUS_PDA) && | 
					
						
							|  |  |  | 				time_after(time_out, jiffies)) | 
					
						
							|  |  |  | 		cpu_relax(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (time_after(jiffies, time_out)) | 
					
						
							|  |  |  | 		return -ETIMEDOUT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:10 +00:00
										 |  |  | 	ret = c_can_start(dev); | 
					
						
							|  |  |  | 	if (!ret) | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:17 +00:00
										 |  |  | 		c_can_irq_control(priv, true); | 
					
						
							| 
									
										
										
										
											2014-04-11 08:13:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											2012-09-21 15:29:01 +05:30
										 |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL_GPL(c_can_power_up); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | void free_c_can_dev(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-03-18 19:13:59 +01:00
										 |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netif_napi_del(&priv->napi); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	free_candev(dev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL_GPL(free_c_can_dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct net_device_ops c_can_netdev_ops = { | 
					
						
							|  |  |  | 	.ndo_open = c_can_open, | 
					
						
							|  |  |  | 	.ndo_stop = c_can_close, | 
					
						
							|  |  |  | 	.ndo_start_xmit = c_can_start_xmit, | 
					
						
							| 
									
										
										
										
											2014-03-07 09:23:41 +01:00
										 |  |  | 	.ndo_change_mtu = can_change_mtu, | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int register_c_can_dev(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-08-20 16:50:54 +05:30
										 |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 17:40:13 +02:00
										 |  |  | 	/* Deactivate pins to prevent DRA7 DCAN IP from being
 | 
					
						
							|  |  |  | 	 * stuck in transition when module is disabled. | 
					
						
							|  |  |  | 	 * Pins are activated in c_can_start() and deactivated | 
					
						
							|  |  |  | 	 * in c_can_stop() | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	pinctrl_pm_select_sleep_state(dev->dev.parent); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-20 16:50:54 +05:30
										 |  |  | 	c_can_pm_runtime_enable(priv); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | 	dev->flags |= IFF_ECHO;	/* we support local echo */ | 
					
						
							|  |  |  | 	dev->netdev_ops = &c_can_netdev_ops; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-20 16:50:54 +05:30
										 |  |  | 	err = register_candev(dev); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		c_can_pm_runtime_disable(priv); | 
					
						
							| 
									
										
										
										
											2012-12-18 18:51:01 +01:00
										 |  |  | 	else | 
					
						
							|  |  |  | 		devm_can_led_init(dev); | 
					
						
							| 
									
										
										
										
											2012-08-20 16:50:54 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL_GPL(register_c_can_dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void unregister_c_can_dev(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct c_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	unregister_candev(dev); | 
					
						
							| 
									
										
										
										
											2012-08-20 16:50:54 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	c_can_pm_runtime_disable(priv); | 
					
						
							| 
									
										
										
										
											2011-02-13 22:51:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | EXPORT_SYMBOL_GPL(unregister_c_can_dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MODULE_AUTHOR("Bhupesh Sharma <bhupesh.sharma@st.com>"); | 
					
						
							|  |  |  | MODULE_LICENSE("GPL v2"); | 
					
						
							|  |  |  | MODULE_DESCRIPTION("CAN bus driver for Bosch C_CAN controller"); |