| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Blackfin On-Chip CAN Driver | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright 2004-2009 Analog Devices Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Enter bugs at http://blackfin.uclinux.org/
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the GPL-2 or later. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/bitops.h>
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							|  |  |  | #include <linux/errno.h>
 | 
					
						
							|  |  |  | #include <linux/netdevice.h>
 | 
					
						
							|  |  |  | #include <linux/skbuff.h>
 | 
					
						
							|  |  |  | #include <linux/platform_device.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/can/dev.h>
 | 
					
						
							|  |  |  | #include <linux/can/error.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-21 21:06:01 +00:00
										 |  |  | #include <asm/bfin_can.h>
 | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | #include <asm/portmux.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define DRV_NAME "bfin_can"
 | 
					
						
							|  |  |  | #define BFIN_CAN_TIMEOUT 100
 | 
					
						
							| 
									
										
										
										
											2010-03-08 12:13:57 -08:00
										 |  |  | #define TX_ECHO_SKB_MAX  1
 | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * bfin can private data | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | struct bfin_can_priv { | 
					
						
							|  |  |  | 	struct can_priv can;	/* must be the first member */ | 
					
						
							|  |  |  | 	struct net_device *dev; | 
					
						
							|  |  |  | 	void __iomem *membase; | 
					
						
							|  |  |  | 	int rx_irq; | 
					
						
							|  |  |  | 	int tx_irq; | 
					
						
							|  |  |  | 	int err_irq; | 
					
						
							|  |  |  | 	unsigned short *pin_list; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * bfin can timing parameters | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-07-16 12:58:31 +02:00
										 |  |  | static const struct can_bittiming_const bfin_can_bittiming_const = { | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	.name = DRV_NAME, | 
					
						
							|  |  |  | 	.tseg1_min = 1, | 
					
						
							|  |  |  | 	.tseg1_max = 16, | 
					
						
							|  |  |  | 	.tseg2_min = 1, | 
					
						
							|  |  |  | 	.tseg2_max = 8, | 
					
						
							|  |  |  | 	.sjw_max = 4, | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Although the BRP field can be set to any value, it is recommended | 
					
						
							|  |  |  | 	 * that the value be greater than or equal to 4, as restrictions | 
					
						
							|  |  |  | 	 * apply to the bit timing configuration when BRP is less than 4. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	.brp_min = 4, | 
					
						
							|  |  |  | 	.brp_max = 1024, | 
					
						
							|  |  |  | 	.brp_inc = 1, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int bfin_can_set_bittiming(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct bfin_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct bfin_can_regs __iomem *reg = priv->membase; | 
					
						
							|  |  |  | 	struct can_bittiming *bt = &priv->can.bittiming; | 
					
						
							|  |  |  | 	u16 clk, timing; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	clk = bt->brp - 1; | 
					
						
							|  |  |  | 	timing = ((bt->sjw - 1) << 8) | (bt->prop_seg + bt->phase_seg1 - 1) | | 
					
						
							|  |  |  | 		((bt->phase_seg2 - 1) << 4); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * If the SAM bit is set, the input signal is oversampled three times | 
					
						
							|  |  |  | 	 * at the SCLK rate. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (priv->can.ctrlmode & CAN_CTRLMODE_3_SAMPLES) | 
					
						
							|  |  |  | 		timing |= SAM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->clock, clk); | 
					
						
							|  |  |  | 	bfin_write(®->timing, timing); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 11:02:05 +01:00
										 |  |  | 	netdev_info(dev, "setting CLOCK=0x%04x TIMING=0x%04x\n", clk, timing); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void bfin_can_set_reset_mode(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct bfin_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct bfin_can_regs __iomem *reg = priv->membase; | 
					
						
							|  |  |  | 	int timeout = BFIN_CAN_TIMEOUT; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* disable interrupts */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->mbim1, 0); | 
					
						
							|  |  |  | 	bfin_write(®->mbim2, 0); | 
					
						
							|  |  |  | 	bfin_write(®->gim, 0); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* reset can and enter configuration mode */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->control, SRS | CCR); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	SSYNC(); | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->control, CCR); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	SSYNC(); | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	while (!(bfin_read(®->control) & CCA)) { | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		udelay(10); | 
					
						
							|  |  |  | 		if (--timeout == 0) { | 
					
						
							| 
									
										
										
										
											2012-02-01 11:02:05 +01:00
										 |  |  | 			netdev_err(dev, "fail to enter configuration mode\n"); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 			BUG(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * All mailbox configurations are marked as inactive | 
					
						
							|  |  |  | 	 * by writing to CAN Mailbox Configuration Registers 1 and 2 | 
					
						
							|  |  |  | 	 * For all bits: 0 - Mailbox disabled, 1 - Mailbox enabled | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->mc1, 0); | 
					
						
							|  |  |  | 	bfin_write(®->mc2, 0); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Set Mailbox Direction */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->md1, 0xFFFF);   /* mailbox 1-16 are RX */ | 
					
						
							|  |  |  | 	bfin_write(®->md2, 0);   /* mailbox 17-32 are TX */ | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* RECEIVE_STD_CHL */ | 
					
						
							|  |  |  | 	for (i = 0; i < 2; i++) { | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		bfin_write(®->chl[RECEIVE_STD_CHL + i].id0, 0); | 
					
						
							|  |  |  | 		bfin_write(®->chl[RECEIVE_STD_CHL + i].id1, AME); | 
					
						
							|  |  |  | 		bfin_write(®->chl[RECEIVE_STD_CHL + i].dlc, 0); | 
					
						
							|  |  |  | 		bfin_write(®->msk[RECEIVE_STD_CHL + i].amh, 0x1FFF); | 
					
						
							|  |  |  | 		bfin_write(®->msk[RECEIVE_STD_CHL + i].aml, 0xFFFF); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* RECEIVE_EXT_CHL */ | 
					
						
							|  |  |  | 	for (i = 0; i < 2; i++) { | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		bfin_write(®->chl[RECEIVE_EXT_CHL + i].id0, 0); | 
					
						
							|  |  |  | 		bfin_write(®->chl[RECEIVE_EXT_CHL + i].id1, AME | IDE); | 
					
						
							|  |  |  | 		bfin_write(®->chl[RECEIVE_EXT_CHL + i].dlc, 0); | 
					
						
							|  |  |  | 		bfin_write(®->msk[RECEIVE_EXT_CHL + i].amh, 0x1FFF); | 
					
						
							|  |  |  | 		bfin_write(®->msk[RECEIVE_EXT_CHL + i].aml, 0xFFFF); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->mc2, BIT(TRANSMIT_CHL - 16)); | 
					
						
							|  |  |  | 	bfin_write(®->mc1, BIT(RECEIVE_STD_CHL) + BIT(RECEIVE_EXT_CHL)); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	SSYNC(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv->can.state = CAN_STATE_STOPPED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void bfin_can_set_normal_mode(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct bfin_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct bfin_can_regs __iomem *reg = priv->membase; | 
					
						
							|  |  |  | 	int timeout = BFIN_CAN_TIMEOUT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * leave configuration mode | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->control, bfin_read(®->control) & ~CCR); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	while (bfin_read(®->status) & CCA) { | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		udelay(10); | 
					
						
							|  |  |  | 		if (--timeout == 0) { | 
					
						
							| 
									
										
										
										
											2012-02-01 11:02:05 +01:00
										 |  |  | 			netdev_err(dev, "fail to leave configuration mode\n"); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 			BUG(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * clear _All_  tx and rx interrupts | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->mbtif1, 0xFFFF); | 
					
						
							|  |  |  | 	bfin_write(®->mbtif2, 0xFFFF); | 
					
						
							|  |  |  | 	bfin_write(®->mbrif1, 0xFFFF); | 
					
						
							|  |  |  | 	bfin_write(®->mbrif2, 0xFFFF); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * clear global interrupt status register | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->gis, 0x7FF); /* overwrites with '1' */ | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Initialize Interrupts | 
					
						
							|  |  |  | 	 * - set bits in the mailbox interrupt mask register | 
					
						
							|  |  |  | 	 * - global interrupt mask | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->mbim1, BIT(RECEIVE_STD_CHL) + BIT(RECEIVE_EXT_CHL)); | 
					
						
							|  |  |  | 	bfin_write(®->mbim2, BIT(TRANSMIT_CHL - 16)); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->gim, EPIM | BOIM | RMLIM); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	SSYNC(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void bfin_can_start(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct bfin_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* enter reset mode */ | 
					
						
							|  |  |  | 	if (priv->can.state != CAN_STATE_STOPPED) | 
					
						
							|  |  |  | 		bfin_can_set_reset_mode(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* leave reset mode */ | 
					
						
							|  |  |  | 	bfin_can_set_normal_mode(dev); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int bfin_can_set_mode(struct net_device *dev, enum can_mode mode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	switch (mode) { | 
					
						
							|  |  |  | 	case CAN_MODE_START: | 
					
						
							|  |  |  | 		bfin_can_start(dev); | 
					
						
							|  |  |  | 		if (netif_queue_stopped(dev)) | 
					
						
							|  |  |  | 			netif_wake_queue(dev); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return -EOPNOTSUPP; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 11:14:13 +01:00
										 |  |  | static int bfin_can_get_berr_counter(const struct net_device *dev, | 
					
						
							|  |  |  | 				     struct can_berr_counter *bec) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct bfin_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct bfin_can_regs __iomem *reg = priv->membase; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	u16 cec = bfin_read(®->cec); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bec->txerr = cec >> 8; | 
					
						
							|  |  |  | 	bec->rxerr = cec; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | static int bfin_can_start_xmit(struct sk_buff *skb, struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct bfin_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct bfin_can_regs __iomem *reg = priv->membase; | 
					
						
							|  |  |  | 	struct can_frame *cf = (struct can_frame *)skb->data; | 
					
						
							|  |  |  | 	u8 dlc = cf->can_dlc; | 
					
						
							|  |  |  | 	canid_t id = cf->can_id; | 
					
						
							|  |  |  | 	u8 *data = cf->data; | 
					
						
							|  |  |  | 	u16 val; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-12 02:00:46 -08:00
										 |  |  | 	if (can_dropped_invalid_skb(dev, skb)) | 
					
						
							|  |  |  | 		return NETDEV_TX_OK; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	netif_stop_queue(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* fill id */ | 
					
						
							|  |  |  | 	if (id & CAN_EFF_FLAG) { | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		bfin_write(®->chl[TRANSMIT_CHL].id0, id); | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:01 +00:00
										 |  |  | 		val = ((id & 0x1FFF0000) >> 16) | IDE; | 
					
						
							|  |  |  | 	} else | 
					
						
							|  |  |  | 		val = (id << 2); | 
					
						
							|  |  |  | 	if (id & CAN_RTR_FLAG) | 
					
						
							|  |  |  | 		val |= RTR; | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->chl[TRANSMIT_CHL].id1, val | AME); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* fill payload */ | 
					
						
							|  |  |  | 	for (i = 0; i < 8; i += 2) { | 
					
						
							|  |  |  | 		val = ((7 - i) < dlc ? (data[7 - i]) : 0) + | 
					
						
							|  |  |  | 			((6 - i) < dlc ? (data[6 - i] << 8) : 0); | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		bfin_write(®->chl[TRANSMIT_CHL].data[i], val); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* fill data length code */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->chl[TRANSMIT_CHL].dlc, dlc); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	can_put_echo_skb(skb, dev, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* set transmit request */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	bfin_write(®->trs2, BIT(TRANSMIT_CHL - 16)); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void bfin_can_rx(struct net_device *dev, u16 isrc) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct bfin_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct net_device_stats *stats = &dev->stats; | 
					
						
							|  |  |  | 	struct bfin_can_regs __iomem *reg = priv->membase; | 
					
						
							|  |  |  | 	struct can_frame *cf; | 
					
						
							|  |  |  | 	struct sk_buff *skb; | 
					
						
							|  |  |  | 	int obj; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 	u16 val; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	skb = alloc_can_skb(dev, &cf); | 
					
						
							|  |  |  | 	if (skb == NULL) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* get id */ | 
					
						
							|  |  |  | 	if (isrc & BIT(RECEIVE_EXT_CHL)) { | 
					
						
							|  |  |  | 		/* extended frame format (EFF) */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		cf->can_id = ((bfin_read(®->chl[RECEIVE_EXT_CHL].id1) | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 			     & 0x1FFF) << 16) | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 			     + bfin_read(®->chl[RECEIVE_EXT_CHL].id0); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		cf->can_id |= CAN_EFF_FLAG; | 
					
						
							|  |  |  | 		obj = RECEIVE_EXT_CHL; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		/* standard frame format (SFF) */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		cf->can_id = (bfin_read(®->chl[RECEIVE_STD_CHL].id1) | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 			     & 0x1ffc) >> 2; | 
					
						
							|  |  |  | 		obj = RECEIVE_STD_CHL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	if (bfin_read(®->chl[obj].id1) & RTR) | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		cf->can_id |= CAN_RTR_FLAG; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* get data length code */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	cf->can_dlc = get_can_dlc(bfin_read(®->chl[obj].dlc) & 0xF); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* get payload */ | 
					
						
							|  |  |  | 	for (i = 0; i < 8; i += 2) { | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		val = bfin_read(®->chl[obj].data[i]); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		cf->data[7 - i] = (7 - i) < cf->can_dlc ? val : 0; | 
					
						
							|  |  |  | 		cf->data[6 - i] = (6 - i) < cf->can_dlc ? (val >> 8) : 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netif_rx(skb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	stats->rx_packets++; | 
					
						
							|  |  |  | 	stats->rx_bytes += cf->can_dlc; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int bfin_can_err(struct net_device *dev, u16 isrc, u16 status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct bfin_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct bfin_can_regs __iomem *reg = priv->membase; | 
					
						
							|  |  |  | 	struct net_device_stats *stats = &dev->stats; | 
					
						
							|  |  |  | 	struct can_frame *cf; | 
					
						
							|  |  |  | 	struct sk_buff *skb; | 
					
						
							|  |  |  | 	enum can_state state = priv->can.state; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	skb = alloc_can_err_skb(dev, &cf); | 
					
						
							|  |  |  | 	if (skb == NULL) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (isrc & RMLIS) { | 
					
						
							|  |  |  | 		/* data overrun interrupt */ | 
					
						
							| 
									
										
										
										
											2012-02-01 11:02:05 +01:00
										 |  |  | 		netdev_dbg(dev, "data overrun interrupt\n"); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		cf->can_id |= CAN_ERR_CRTL; | 
					
						
							|  |  |  | 		cf->data[1] = CAN_ERR_CRTL_RX_OVERFLOW; | 
					
						
							|  |  |  | 		stats->rx_over_errors++; | 
					
						
							|  |  |  | 		stats->rx_errors++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (isrc & BOIS) { | 
					
						
							| 
									
										
										
										
											2012-02-01 11:02:05 +01:00
										 |  |  | 		netdev_dbg(dev, "bus-off mode interrupt\n"); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		state = CAN_STATE_BUS_OFF; | 
					
						
							|  |  |  | 		cf->can_id |= CAN_ERR_BUSOFF; | 
					
						
							|  |  |  | 		can_bus_off(dev); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (isrc & EPIS) { | 
					
						
							|  |  |  | 		/* error passive interrupt */ | 
					
						
							| 
									
										
										
										
											2012-02-01 11:02:05 +01:00
										 |  |  | 		netdev_dbg(dev, "error passive interrupt\n"); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		state = CAN_STATE_ERROR_PASSIVE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ((isrc & EWTIS) || (isrc & EWRIS)) { | 
					
						
							| 
									
										
										
										
											2012-02-01 11:02:05 +01:00
										 |  |  | 		netdev_dbg(dev, "Error Warning Transmit/Receive Interrupt\n"); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		state = CAN_STATE_ERROR_WARNING; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (state != priv->can.state && (state == CAN_STATE_ERROR_WARNING || | 
					
						
							|  |  |  | 				state == CAN_STATE_ERROR_PASSIVE)) { | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		u16 cec = bfin_read(®->cec); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		u8 rxerr = cec; | 
					
						
							|  |  |  | 		u8 txerr = cec >> 8; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		cf->can_id |= CAN_ERR_CRTL; | 
					
						
							|  |  |  | 		if (state == CAN_STATE_ERROR_WARNING) { | 
					
						
							|  |  |  | 			priv->can.can_stats.error_warning++; | 
					
						
							|  |  |  | 			cf->data[1] = (txerr > rxerr) ? | 
					
						
							|  |  |  | 				CAN_ERR_CRTL_TX_WARNING : | 
					
						
							|  |  |  | 				CAN_ERR_CRTL_RX_WARNING; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			priv->can.can_stats.error_passive++; | 
					
						
							|  |  |  | 			cf->data[1] = (txerr > rxerr) ? | 
					
						
							|  |  |  | 				CAN_ERR_CRTL_TX_PASSIVE : | 
					
						
							|  |  |  | 				CAN_ERR_CRTL_RX_PASSIVE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (status) { | 
					
						
							|  |  |  | 		priv->can.can_stats.bus_error++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (status & BEF) | 
					
						
							|  |  |  | 			cf->data[2] |= CAN_ERR_PROT_BIT; | 
					
						
							|  |  |  | 		else if (status & FER) | 
					
						
							|  |  |  | 			cf->data[2] |= CAN_ERR_PROT_FORM; | 
					
						
							|  |  |  | 		else if (status & SER) | 
					
						
							|  |  |  | 			cf->data[2] |= CAN_ERR_PROT_STUFF; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			cf->data[2] |= CAN_ERR_PROT_UNSPEC; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv->can.state = state; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netif_rx(skb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	stats->rx_packets++; | 
					
						
							|  |  |  | 	stats->rx_bytes += cf->can_dlc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-11 23:20:27 +02:00
										 |  |  | static irqreturn_t bfin_can_interrupt(int irq, void *dev_id) | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct net_device *dev = dev_id; | 
					
						
							|  |  |  | 	struct bfin_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct bfin_can_regs __iomem *reg = priv->membase; | 
					
						
							|  |  |  | 	struct net_device_stats *stats = &dev->stats; | 
					
						
							|  |  |  | 	u16 status, isrc; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	if ((irq == priv->tx_irq) && bfin_read(®->mbtif2)) { | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		/* transmission complete interrupt */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		bfin_write(®->mbtif2, 0xFFFF); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		stats->tx_packets++; | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		stats->tx_bytes += bfin_read(®->chl[TRANSMIT_CHL].dlc); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		can_get_echo_skb(dev, 0); | 
					
						
							|  |  |  | 		netif_wake_queue(dev); | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	} else if ((irq == priv->rx_irq) && bfin_read(®->mbrif1)) { | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		/* receive interrupt */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		isrc = bfin_read(®->mbrif1); | 
					
						
							|  |  |  | 		bfin_write(®->mbrif1, 0xFFFF); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		bfin_can_rx(dev, isrc); | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 	} else if ((irq == priv->err_irq) && bfin_read(®->gis)) { | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		/* error interrupt */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		isrc = bfin_read(®->gis); | 
					
						
							|  |  |  | 		status = bfin_read(®->esr); | 
					
						
							|  |  |  | 		bfin_write(®->gis, 0x7FF); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		bfin_can_err(dev, isrc, status); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		return IRQ_NONE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return IRQ_HANDLED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int bfin_can_open(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct bfin_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* set chip into reset mode */ | 
					
						
							|  |  |  | 	bfin_can_set_reset_mode(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* common open */ | 
					
						
							|  |  |  | 	err = open_candev(dev); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto exit_open; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* register interrupt handler */ | 
					
						
							|  |  |  | 	err = request_irq(priv->rx_irq, &bfin_can_interrupt, 0, | 
					
						
							|  |  |  | 			"bfin-can-rx", dev); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto exit_rx_irq; | 
					
						
							|  |  |  | 	err = request_irq(priv->tx_irq, &bfin_can_interrupt, 0, | 
					
						
							|  |  |  | 			"bfin-can-tx", dev); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto exit_tx_irq; | 
					
						
							|  |  |  | 	err = request_irq(priv->err_irq, &bfin_can_interrupt, 0, | 
					
						
							|  |  |  | 			"bfin-can-err", dev); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto exit_err_irq; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bfin_can_start(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netif_start_queue(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit_err_irq: | 
					
						
							|  |  |  | 	free_irq(priv->tx_irq, dev); | 
					
						
							|  |  |  | exit_tx_irq: | 
					
						
							|  |  |  | 	free_irq(priv->rx_irq, dev); | 
					
						
							|  |  |  | exit_rx_irq: | 
					
						
							|  |  |  | 	close_candev(dev); | 
					
						
							|  |  |  | exit_open: | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int bfin_can_close(struct net_device *dev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct bfin_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	netif_stop_queue(dev); | 
					
						
							|  |  |  | 	bfin_can_set_reset_mode(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	close_candev(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	free_irq(priv->rx_irq, dev); | 
					
						
							|  |  |  | 	free_irq(priv->tx_irq, dev); | 
					
						
							|  |  |  | 	free_irq(priv->err_irq, dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-11 23:20:27 +02:00
										 |  |  | static struct net_device *alloc_bfin_candev(void) | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct net_device *dev; | 
					
						
							|  |  |  | 	struct bfin_can_priv *priv; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-08 12:13:57 -08:00
										 |  |  | 	dev = alloc_candev(sizeof(*priv), TX_ECHO_SKB_MAX); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	if (!dev) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv = netdev_priv(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv->dev = dev; | 
					
						
							|  |  |  | 	priv->can.bittiming_const = &bfin_can_bittiming_const; | 
					
						
							|  |  |  | 	priv->can.do_set_bittiming = bfin_can_set_bittiming; | 
					
						
							|  |  |  | 	priv->can.do_set_mode = bfin_can_set_mode; | 
					
						
							| 
									
										
										
										
											2012-02-01 11:14:13 +01:00
										 |  |  | 	priv->can.do_get_berr_counter = bfin_can_get_berr_counter; | 
					
						
							| 
									
										
										
										
											2010-01-14 07:08:34 +00:00
										 |  |  | 	priv->can.ctrlmode_supported = CAN_CTRLMODE_3_SAMPLES; | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return dev; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct net_device_ops bfin_can_netdev_ops = { | 
					
						
							|  |  |  | 	.ndo_open               = bfin_can_open, | 
					
						
							|  |  |  | 	.ndo_stop               = bfin_can_close, | 
					
						
							|  |  |  | 	.ndo_start_xmit         = bfin_can_start_xmit, | 
					
						
							| 
									
										
										
										
											2014-03-07 09:23:41 +01:00
										 |  |  | 	.ndo_change_mtu         = can_change_mtu, | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-03 09:22:44 -05:00
										 |  |  | static int bfin_can_probe(struct platform_device *pdev) | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 	struct net_device *dev; | 
					
						
							|  |  |  | 	struct bfin_can_priv *priv; | 
					
						
							|  |  |  | 	struct resource *res_mem, *rx_irq, *tx_irq, *err_irq; | 
					
						
							|  |  |  | 	unsigned short *pdata; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-10 17:40:42 +09:00
										 |  |  | 	pdata = dev_get_platdata(&pdev->dev); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	if (!pdata) { | 
					
						
							|  |  |  | 		dev_err(&pdev->dev, "No platform data provided!\n"); | 
					
						
							|  |  |  | 		err = -EINVAL; | 
					
						
							|  |  |  | 		goto exit; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	res_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 
					
						
							|  |  |  | 	rx_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0); | 
					
						
							|  |  |  | 	tx_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 1); | 
					
						
							|  |  |  | 	err_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 2); | 
					
						
							|  |  |  | 	if (!res_mem || !rx_irq || !tx_irq || !err_irq) { | 
					
						
							|  |  |  | 		err = -EINVAL; | 
					
						
							|  |  |  | 		goto exit; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!request_mem_region(res_mem->start, resource_size(res_mem), | 
					
						
							|  |  |  | 				dev_name(&pdev->dev))) { | 
					
						
							|  |  |  | 		err = -EBUSY; | 
					
						
							|  |  |  | 		goto exit; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* request peripheral pins */ | 
					
						
							|  |  |  | 	err = peripheral_request_list(pdata, dev_name(&pdev->dev)); | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto exit_mem_release; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev = alloc_bfin_candev(); | 
					
						
							|  |  |  | 	if (!dev) { | 
					
						
							|  |  |  | 		err = -ENOMEM; | 
					
						
							|  |  |  | 		goto exit_peri_pin_free; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	priv->membase = (void __iomem *)res_mem->start; | 
					
						
							|  |  |  | 	priv->rx_irq = rx_irq->start; | 
					
						
							|  |  |  | 	priv->tx_irq = tx_irq->start; | 
					
						
							|  |  |  | 	priv->err_irq = err_irq->start; | 
					
						
							|  |  |  | 	priv->pin_list = pdata; | 
					
						
							|  |  |  | 	priv->can.clock.freq = get_sclk(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-23 19:47:58 +09:00
										 |  |  | 	platform_set_drvdata(pdev, dev); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	SET_NETDEV_DEV(dev, &pdev->dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev->flags |= IFF_ECHO;	/* we support local echo */ | 
					
						
							|  |  |  | 	dev->netdev_ops = &bfin_can_netdev_ops; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bfin_can_set_reset_mode(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = register_candev(dev); | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		dev_err(&pdev->dev, "registering failed (err=%d)\n", err); | 
					
						
							|  |  |  | 		goto exit_candev_free; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev_info(&pdev->dev, | 
					
						
							|  |  |  | 		"%s device registered" | 
					
						
							|  |  |  | 		"(®_base=%p, rx_irq=%d, tx_irq=%d, err_irq=%d, sclk=%d)\n", | 
					
						
							| 
									
										
										
										
											2012-06-04 12:44:18 +00:00
										 |  |  | 		DRV_NAME, priv->membase, priv->rx_irq, | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		priv->tx_irq, priv->err_irq, priv->can.clock.freq); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit_candev_free: | 
					
						
							|  |  |  | 	free_candev(dev); | 
					
						
							|  |  |  | exit_peri_pin_free: | 
					
						
							|  |  |  | 	peripheral_free_list(pdata); | 
					
						
							|  |  |  | exit_mem_release: | 
					
						
							|  |  |  | 	release_mem_region(res_mem->start, resource_size(res_mem)); | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-03 09:22:44 -05:00
										 |  |  | static int bfin_can_remove(struct platform_device *pdev) | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-05-23 19:47:58 +09:00
										 |  |  | 	struct net_device *dev = platform_get_drvdata(pdev); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	struct bfin_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct resource *res; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bfin_can_set_reset_mode(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	unregister_candev(dev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 
					
						
							|  |  |  | 	release_mem_region(res->start, resource_size(res)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	peripheral_free_list(priv->pin_list); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	free_candev(dev); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_PM
 | 
					
						
							|  |  |  | static int bfin_can_suspend(struct platform_device *pdev, pm_message_t mesg) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-05-23 19:47:58 +09:00
										 |  |  | 	struct net_device *dev = platform_get_drvdata(pdev); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	struct bfin_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct bfin_can_regs __iomem *reg = priv->membase; | 
					
						
							|  |  |  | 	int timeout = BFIN_CAN_TIMEOUT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (netif_running(dev)) { | 
					
						
							|  |  |  | 		/* enter sleep mode */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		bfin_write(®->control, bfin_read(®->control) | SMR); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		SSYNC(); | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		while (!(bfin_read(®->intr) & SMACK)) { | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 			udelay(10); | 
					
						
							|  |  |  | 			if (--timeout == 0) { | 
					
						
							| 
									
										
										
										
											2012-02-01 11:02:05 +01:00
										 |  |  | 				netdev_err(dev, "fail to enter sleep mode\n"); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 				BUG(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int bfin_can_resume(struct platform_device *pdev) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-05-23 19:47:58 +09:00
										 |  |  | 	struct net_device *dev = platform_get_drvdata(pdev); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	struct bfin_can_priv *priv = netdev_priv(dev); | 
					
						
							|  |  |  | 	struct bfin_can_regs __iomem *reg = priv->membase; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (netif_running(dev)) { | 
					
						
							|  |  |  | 		/* leave sleep mode */ | 
					
						
							| 
									
										
										
										
											2011-06-24 04:33:02 +00:00
										 |  |  | 		bfin_write(®->intr, 0); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 		SSYNC(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define bfin_can_suspend NULL
 | 
					
						
							|  |  |  | #define bfin_can_resume NULL
 | 
					
						
							|  |  |  | #endif	/* CONFIG_PM */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_driver bfin_can_driver = { | 
					
						
							|  |  |  | 	.probe = bfin_can_probe, | 
					
						
							| 
									
										
										
										
											2012-12-03 09:22:44 -05:00
										 |  |  | 	.remove = bfin_can_remove, | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 	.suspend = bfin_can_suspend, | 
					
						
							|  |  |  | 	.resume = bfin_can_resume, | 
					
						
							|  |  |  | 	.driver = { | 
					
						
							|  |  |  | 		.name = DRV_NAME, | 
					
						
							|  |  |  | 		.owner = THIS_MODULE, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-27 15:42:31 +00:00
										 |  |  | module_platform_driver(bfin_can_driver); | 
					
						
							| 
									
										
										
										
											2009-12-10 23:46:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | MODULE_AUTHOR("Barry Song <21cnbao@gmail.com>"); | 
					
						
							|  |  |  | MODULE_LICENSE("GPL"); | 
					
						
							|  |  |  | MODULE_DESCRIPTION("Blackfin on-chip CAN netdevice driver"); | 
					
						
							| 
									
										
										
										
											2012-10-12 09:45:14 +02:00
										 |  |  | MODULE_ALIAS("platform:" DRV_NAME); |