aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/can/at91_can.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/can/at91_can.c')
-rw-r--r--drivers/net/can/at91_can.c237
1 files changed, 170 insertions, 67 deletions
diff --git a/drivers/net/can/at91_can.c b/drivers/net/can/at91_can.c
index 2d8bd86bc5e2..74efb5a2ad41 100644
--- a/drivers/net/can/at91_can.c
+++ b/drivers/net/can/at91_can.c
@@ -1,8 +1,8 @@
1/* 1/*
2 * at91_can.c - CAN network driver for AT91 SoC CAN controller 2 * at91_can.c - CAN network driver for AT91 SoC CAN controller
3 * 3 *
4 * (C) 2007 by Hans J. Koch <hjk@linutronix.de> 4 * (C) 2007 by Hans J. Koch <hjk@hansjkoch.de>
5 * (C) 2008, 2009 by Marc Kleine-Budde <kernel@pengutronix.de> 5 * (C) 2008, 2009, 2010, 2011 by Marc Kleine-Budde <kernel@pengutronix.de>
6 * 6 *
7 * This software may be distributed under the terms of the GNU General 7 * This software may be distributed under the terms of the GNU General
8 * Public License ("GPL") version 2 as distributed in the 'COPYING' 8 * Public License ("GPL") version 2 as distributed in the 'COPYING'
@@ -30,6 +30,7 @@
30#include <linux/module.h> 30#include <linux/module.h>
31#include <linux/netdevice.h> 31#include <linux/netdevice.h>
32#include <linux/platform_device.h> 32#include <linux/platform_device.h>
33#include <linux/rtnetlink.h>
33#include <linux/skbuff.h> 34#include <linux/skbuff.h>
34#include <linux/spinlock.h> 35#include <linux/spinlock.h>
35#include <linux/string.h> 36#include <linux/string.h>
@@ -40,23 +41,23 @@
40 41
41#include <mach/board.h> 42#include <mach/board.h>
42 43
43#define DRV_NAME "at91_can" 44#define AT91_NAPI_WEIGHT 11
44#define AT91_NAPI_WEIGHT 12
45 45
46/* 46/*
47 * RX/TX Mailbox split 47 * RX/TX Mailbox split
48 * don't dare to touch 48 * don't dare to touch
49 */ 49 */
50#define AT91_MB_RX_NUM 12 50#define AT91_MB_RX_NUM 11
51#define AT91_MB_TX_SHIFT 2 51#define AT91_MB_TX_SHIFT 2
52 52
53#define AT91_MB_RX_FIRST 0 53#define AT91_MB_RX_FIRST 1
54#define AT91_MB_RX_LAST (AT91_MB_RX_FIRST + AT91_MB_RX_NUM - 1) 54#define AT91_MB_RX_LAST (AT91_MB_RX_FIRST + AT91_MB_RX_NUM - 1)
55 55
56#define AT91_MB_RX_MASK(i) ((1 << (i)) - 1) 56#define AT91_MB_RX_MASK(i) ((1 << (i)) - 1)
57#define AT91_MB_RX_SPLIT 8 57#define AT91_MB_RX_SPLIT 8
58#define AT91_MB_RX_LOW_LAST (AT91_MB_RX_SPLIT - 1) 58#define AT91_MB_RX_LOW_LAST (AT91_MB_RX_SPLIT - 1)
59#define AT91_MB_RX_LOW_MASK (AT91_MB_RX_MASK(AT91_MB_RX_SPLIT)) 59#define AT91_MB_RX_LOW_MASK (AT91_MB_RX_MASK(AT91_MB_RX_SPLIT) & \
60 ~AT91_MB_RX_MASK(AT91_MB_RX_FIRST))
60 61
61#define AT91_MB_TX_NUM (1 << AT91_MB_TX_SHIFT) 62#define AT91_MB_TX_NUM (1 << AT91_MB_TX_SHIFT)
62#define AT91_MB_TX_FIRST (AT91_MB_RX_LAST + 1) 63#define AT91_MB_TX_FIRST (AT91_MB_RX_LAST + 1)
@@ -169,9 +170,12 @@ struct at91_priv {
169 170
170 struct clk *clk; 171 struct clk *clk;
171 struct at91_can_data *pdata; 172 struct at91_can_data *pdata;
173
174 canid_t mb0_id;
172}; 175};
173 176
174static struct can_bittiming_const at91_bittiming_const = { 177static struct can_bittiming_const at91_bittiming_const = {
178 .name = KBUILD_MODNAME,
175 .tseg1_min = 4, 179 .tseg1_min = 4,
176 .tseg1_max = 16, 180 .tseg1_max = 16,
177 .tseg2_min = 2, 181 .tseg2_min = 2,
@@ -199,13 +203,13 @@ static inline int get_tx_echo_mb(const struct at91_priv *priv)
199 203
200static inline u32 at91_read(const struct at91_priv *priv, enum at91_reg reg) 204static inline u32 at91_read(const struct at91_priv *priv, enum at91_reg reg)
201{ 205{
202 return readl(priv->reg_base + reg); 206 return __raw_readl(priv->reg_base + reg);
203} 207}
204 208
205static inline void at91_write(const struct at91_priv *priv, enum at91_reg reg, 209static inline void at91_write(const struct at91_priv *priv, enum at91_reg reg,
206 u32 value) 210 u32 value)
207{ 211{
208 writel(value, priv->reg_base + reg); 212 __raw_writel(value, priv->reg_base + reg);
209} 213}
210 214
211static inline void set_mb_mode_prio(const struct at91_priv *priv, 215static inline void set_mb_mode_prio(const struct at91_priv *priv,
@@ -220,6 +224,18 @@ static inline void set_mb_mode(const struct at91_priv *priv, unsigned int mb,
220 set_mb_mode_prio(priv, mb, mode, 0); 224 set_mb_mode_prio(priv, mb, mode, 0);
221} 225}
222 226
227static inline u32 at91_can_id_to_reg_mid(canid_t can_id)
228{
229 u32 reg_mid;
230
231 if (can_id & CAN_EFF_FLAG)
232 reg_mid = (can_id & CAN_EFF_MASK) | AT91_MID_MIDE;
233 else
234 reg_mid = (can_id & CAN_SFF_MASK) << 18;
235
236 return reg_mid;
237}
238
223/* 239/*
224 * Swtich transceiver on or off 240 * Swtich transceiver on or off
225 */ 241 */
@@ -233,22 +249,39 @@ static void at91_setup_mailboxes(struct net_device *dev)
233{ 249{
234 struct at91_priv *priv = netdev_priv(dev); 250 struct at91_priv *priv = netdev_priv(dev);
235 unsigned int i; 251 unsigned int i;
252 u32 reg_mid;
236 253
237 /* 254 /*
238 * The first 12 mailboxes are used as a reception FIFO. The 255 * Due to a chip bug (errata 50.2.6.3 & 50.3.5.3) the first
239 * last mailbox is configured with overwrite option. The 256 * mailbox is disabled. The next 11 mailboxes are used as a
240 * overwrite flag indicates a FIFO overflow. 257 * reception FIFO. The last mailbox is configured with
258 * overwrite option. The overwrite flag indicates a FIFO
259 * overflow.
241 */ 260 */
261 reg_mid = at91_can_id_to_reg_mid(priv->mb0_id);
262 for (i = 0; i < AT91_MB_RX_FIRST; i++) {
263 set_mb_mode(priv, i, AT91_MB_MODE_DISABLED);
264 at91_write(priv, AT91_MID(i), reg_mid);
265 at91_write(priv, AT91_MCR(i), 0x0); /* clear dlc */
266 }
267
242 for (i = AT91_MB_RX_FIRST; i < AT91_MB_RX_LAST; i++) 268 for (i = AT91_MB_RX_FIRST; i < AT91_MB_RX_LAST; i++)
243 set_mb_mode(priv, i, AT91_MB_MODE_RX); 269 set_mb_mode(priv, i, AT91_MB_MODE_RX);
244 set_mb_mode(priv, AT91_MB_RX_LAST, AT91_MB_MODE_RX_OVRWR); 270 set_mb_mode(priv, AT91_MB_RX_LAST, AT91_MB_MODE_RX_OVRWR);
245 271
272 /* reset acceptance mask and id register */
273 for (i = AT91_MB_RX_FIRST; i <= AT91_MB_RX_LAST; i++) {
274 at91_write(priv, AT91_MAM(i), 0x0 );
275 at91_write(priv, AT91_MID(i), AT91_MID_MIDE);
276 }
277
246 /* The last 4 mailboxes are used for transmitting. */ 278 /* The last 4 mailboxes are used for transmitting. */
247 for (i = AT91_MB_TX_FIRST; i <= AT91_MB_TX_LAST; i++) 279 for (i = AT91_MB_TX_FIRST; i <= AT91_MB_TX_LAST; i++)
248 set_mb_mode_prio(priv, i, AT91_MB_MODE_TX, 0); 280 set_mb_mode_prio(priv, i, AT91_MB_MODE_TX, 0);
249 281
250 /* Reset tx and rx helper pointers */ 282 /* Reset tx and rx helper pointers */
251 priv->tx_next = priv->tx_echo = priv->rx_next = 0; 283 priv->tx_next = priv->tx_echo = 0;
284 priv->rx_next = AT91_MB_RX_FIRST;
252} 285}
253 286
254static int at91_set_bittiming(struct net_device *dev) 287static int at91_set_bittiming(struct net_device *dev)
@@ -257,18 +290,30 @@ static int at91_set_bittiming(struct net_device *dev)
257 const struct can_bittiming *bt = &priv->can.bittiming; 290 const struct can_bittiming *bt = &priv->can.bittiming;
258 u32 reg_br; 291 u32 reg_br;
259 292
260 reg_br = ((priv->can.ctrlmode & CAN_CTRLMODE_3_SAMPLES) << 24) | 293 reg_br = ((priv->can.ctrlmode & CAN_CTRLMODE_3_SAMPLES) ? 1 << 24 : 0) |
261 ((bt->brp - 1) << 16) | ((bt->sjw - 1) << 12) | 294 ((bt->brp - 1) << 16) | ((bt->sjw - 1) << 12) |
262 ((bt->prop_seg - 1) << 8) | ((bt->phase_seg1 - 1) << 4) | 295 ((bt->prop_seg - 1) << 8) | ((bt->phase_seg1 - 1) << 4) |
263 ((bt->phase_seg2 - 1) << 0); 296 ((bt->phase_seg2 - 1) << 0);
264 297
265 dev_info(dev->dev.parent, "writing AT91_BR: 0x%08x\n", reg_br); 298 netdev_info(dev, "writing AT91_BR: 0x%08x\n", reg_br);
266 299
267 at91_write(priv, AT91_BR, reg_br); 300 at91_write(priv, AT91_BR, reg_br);
268 301
269 return 0; 302 return 0;
270} 303}
271 304
305static int at91_get_berr_counter(const struct net_device *dev,
306 struct can_berr_counter *bec)
307{
308 const struct at91_priv *priv = netdev_priv(dev);
309 u32 reg_ecr = at91_read(priv, AT91_ECR);
310
311 bec->rxerr = reg_ecr & 0xff;
312 bec->txerr = reg_ecr >> 16;
313
314 return 0;
315}
316
272static void at91_chip_start(struct net_device *dev) 317static void at91_chip_start(struct net_device *dev)
273{ 318{
274 struct at91_priv *priv = netdev_priv(dev); 319 struct at91_priv *priv = netdev_priv(dev);
@@ -281,6 +326,7 @@ static void at91_chip_start(struct net_device *dev)
281 reg_mr = at91_read(priv, AT91_MR); 326 reg_mr = at91_read(priv, AT91_MR);
282 at91_write(priv, AT91_MR, reg_mr & ~AT91_MR_CANEN); 327 at91_write(priv, AT91_MR, reg_mr & ~AT91_MR_CANEN);
283 328
329 at91_set_bittiming(dev);
284 at91_setup_mailboxes(dev); 330 at91_setup_mailboxes(dev);
285 at91_transceiver_switch(priv, 1); 331 at91_transceiver_switch(priv, 1);
286 332
@@ -350,16 +396,10 @@ static netdev_tx_t at91_start_xmit(struct sk_buff *skb, struct net_device *dev)
350 if (unlikely(!(at91_read(priv, AT91_MSR(mb)) & AT91_MSR_MRDY))) { 396 if (unlikely(!(at91_read(priv, AT91_MSR(mb)) & AT91_MSR_MRDY))) {
351 netif_stop_queue(dev); 397 netif_stop_queue(dev);
352 398
353 dev_err(dev->dev.parent, 399 netdev_err(dev, "BUG! TX buffer full when queue awake!\n");
354 "BUG! TX buffer full when queue awake!\n");
355 return NETDEV_TX_BUSY; 400 return NETDEV_TX_BUSY;
356 } 401 }
357 402 reg_mid = at91_can_id_to_reg_mid(cf->can_id);
358 if (cf->can_id & CAN_EFF_FLAG)
359 reg_mid = (cf->can_id & CAN_EFF_MASK) | AT91_MID_MIDE;
360 else
361 reg_mid = (cf->can_id & CAN_SFF_MASK) << 18;
362
363 reg_mcr = ((cf->can_id & CAN_RTR_FLAG) ? AT91_MCR_MRTR : 0) | 403 reg_mcr = ((cf->can_id & CAN_RTR_FLAG) ? AT91_MCR_MRTR : 0) |
364 (cf->can_dlc << 16) | AT91_MCR_MTCR; 404 (cf->can_dlc << 16) | AT91_MCR_MTCR;
365 405
@@ -376,7 +416,7 @@ static netdev_tx_t at91_start_xmit(struct sk_buff *skb, struct net_device *dev)
376 416
377 stats->tx_bytes += cf->can_dlc; 417 stats->tx_bytes += cf->can_dlc;
378 418
379 /* _NOTE_: substract AT91_MB_TX_FIRST offset from mb! */ 419 /* _NOTE_: subtract AT91_MB_TX_FIRST offset from mb! */
380 can_put_echo_skb(skb, dev, mb - AT91_MB_TX_FIRST); 420 can_put_echo_skb(skb, dev, mb - AT91_MB_TX_FIRST);
381 421
382 /* 422 /*
@@ -435,7 +475,7 @@ static void at91_rx_overflow_err(struct net_device *dev)
435 struct sk_buff *skb; 475 struct sk_buff *skb;
436 struct can_frame *cf; 476 struct can_frame *cf;
437 477
438 dev_dbg(dev->dev.parent, "RX buffer overflow\n"); 478 netdev_dbg(dev, "RX buffer overflow\n");
439 stats->rx_over_errors++; 479 stats->rx_over_errors++;
440 stats->rx_errors++; 480 stats->rx_errors++;
441 481
@@ -480,6 +520,9 @@ static void at91_read_mb(struct net_device *dev, unsigned int mb,
480 *(u32 *)(cf->data + 0) = at91_read(priv, AT91_MDL(mb)); 520 *(u32 *)(cf->data + 0) = at91_read(priv, AT91_MDL(mb));
481 *(u32 *)(cf->data + 4) = at91_read(priv, AT91_MDH(mb)); 521 *(u32 *)(cf->data + 4) = at91_read(priv, AT91_MDH(mb));
482 522
523 /* allow RX of extended frames */
524 at91_write(priv, AT91_MID(mb), AT91_MID_MIDE);
525
483 if (unlikely(mb == AT91_MB_RX_LAST && reg_msr & AT91_MSR_MMI)) 526 if (unlikely(mb == AT91_MB_RX_LAST && reg_msr & AT91_MSR_MMI))
484 at91_rx_overflow_err(dev); 527 at91_rx_overflow_err(dev);
485} 528}
@@ -518,27 +561,31 @@ static void at91_read_msg(struct net_device *dev, unsigned int mb)
518 * 561 *
519 * Theory of Operation: 562 * Theory of Operation:
520 * 563 *
521 * 12 of the 16 mailboxes on the chip are reserved for RX. we split 564 * 11 of the 16 mailboxes on the chip are reserved for RX. we split
522 * them into 2 groups. The lower group holds 8 and upper 4 mailboxes. 565 * them into 2 groups. The lower group holds 7 and upper 4 mailboxes.
523 * 566 *
524 * Like it or not, but the chip always saves a received CAN message 567 * Like it or not, but the chip always saves a received CAN message
525 * into the first free mailbox it finds (starting with the 568 * into the first free mailbox it finds (starting with the
526 * lowest). This makes it very difficult to read the messages in the 569 * lowest). This makes it very difficult to read the messages in the
527 * right order from the chip. This is how we work around that problem: 570 * right order from the chip. This is how we work around that problem:
528 * 571 *
529 * The first message goes into mb nr. 0 and issues an interrupt. All 572 * The first message goes into mb nr. 1 and issues an interrupt. All
530 * rx ints are disabled in the interrupt handler and a napi poll is 573 * rx ints are disabled in the interrupt handler and a napi poll is
531 * scheduled. We read the mailbox, but do _not_ reenable the mb (to 574 * scheduled. We read the mailbox, but do _not_ reenable the mb (to
532 * receive another message). 575 * receive another message).
533 * 576 *
534 * lower mbxs upper 577 * lower mbxs upper
535 * ______^______ __^__ 578 * ____^______ __^__
536 * / \ / \ 579 * / \ / \
537 * +-+-+-+-+-+-+-+-++-+-+-+-+ 580 * +-+-+-+-+-+-+-+-++-+-+-+-+
538 * |x|x|x|x|x|x|x|x|| | | | | 581 * | |x|x|x|x|x|x|x|| | | | |
539 * +-+-+-+-+-+-+-+-++-+-+-+-+ 582 * +-+-+-+-+-+-+-+-++-+-+-+-+
540 * 0 0 0 0 0 0 0 0 0 0 1 1 \ mail 583 * 0 0 0 0 0 0 0 0 0 0 1 1 \ mail
541 * 0 1 2 3 4 5 6 7 8 9 0 1 / box 584 * 0 1 2 3 4 5 6 7 8 9 0 1 / box
585 * ^
586 * |
587 * \
588 * unused, due to chip bug
542 * 589 *
543 * The variable priv->rx_next points to the next mailbox to read a 590 * The variable priv->rx_next points to the next mailbox to read a
544 * message from. As long we're in the lower mailboxes we just read the 591 * message from. As long we're in the lower mailboxes we just read the
@@ -565,14 +612,14 @@ static int at91_poll_rx(struct net_device *dev, int quota)
565 612
566 if (priv->rx_next > AT91_MB_RX_LOW_LAST && 613 if (priv->rx_next > AT91_MB_RX_LOW_LAST &&
567 reg_sr & AT91_MB_RX_LOW_MASK) 614 reg_sr & AT91_MB_RX_LOW_MASK)
568 dev_info(dev->dev.parent, 615 netdev_info(dev,
569 "order of incoming frames cannot be guaranteed\n"); 616 "order of incoming frames cannot be guaranteed\n");
570 617
571 again: 618 again:
572 for (mb = find_next_bit(addr, AT91_MB_RX_NUM, priv->rx_next); 619 for (mb = find_next_bit(addr, AT91_MB_RX_LAST + 1, priv->rx_next);
573 mb < AT91_MB_RX_NUM && quota > 0; 620 mb < AT91_MB_RX_LAST + 1 && quota > 0;
574 reg_sr = at91_read(priv, AT91_SR), 621 reg_sr = at91_read(priv, AT91_SR),
575 mb = find_next_bit(addr, AT91_MB_RX_NUM, ++priv->rx_next)) { 622 mb = find_next_bit(addr, AT91_MB_RX_LAST + 1, ++priv->rx_next)) {
576 at91_read_msg(dev, mb); 623 at91_read_msg(dev, mb);
577 624
578 /* reactivate mailboxes */ 625 /* reactivate mailboxes */
@@ -589,8 +636,8 @@ static int at91_poll_rx(struct net_device *dev, int quota)
589 636
590 /* upper group completed, look again in lower */ 637 /* upper group completed, look again in lower */
591 if (priv->rx_next > AT91_MB_RX_LOW_LAST && 638 if (priv->rx_next > AT91_MB_RX_LOW_LAST &&
592 quota > 0 && mb >= AT91_MB_RX_NUM) { 639 quota > 0 && mb > AT91_MB_RX_LAST) {
593 priv->rx_next = 0; 640 priv->rx_next = AT91_MB_RX_FIRST;
594 goto again; 641 goto again;
595 } 642 }
596 643
@@ -604,7 +651,7 @@ static void at91_poll_err_frame(struct net_device *dev,
604 651
605 /* CRC error */ 652 /* CRC error */
606 if (reg_sr & AT91_IRQ_CERR) { 653 if (reg_sr & AT91_IRQ_CERR) {
607 dev_dbg(dev->dev.parent, "CERR irq\n"); 654 netdev_dbg(dev, "CERR irq\n");
608 dev->stats.rx_errors++; 655 dev->stats.rx_errors++;
609 priv->can.can_stats.bus_error++; 656 priv->can.can_stats.bus_error++;
610 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR; 657 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR;
@@ -612,7 +659,7 @@ static void at91_poll_err_frame(struct net_device *dev,
612 659
613 /* Stuffing Error */ 660 /* Stuffing Error */
614 if (reg_sr & AT91_IRQ_SERR) { 661 if (reg_sr & AT91_IRQ_SERR) {
615 dev_dbg(dev->dev.parent, "SERR irq\n"); 662 netdev_dbg(dev, "SERR irq\n");
616 dev->stats.rx_errors++; 663 dev->stats.rx_errors++;
617 priv->can.can_stats.bus_error++; 664 priv->can.can_stats.bus_error++;
618 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR; 665 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR;
@@ -621,14 +668,14 @@ static void at91_poll_err_frame(struct net_device *dev,
621 668
622 /* Acknowledgement Error */ 669 /* Acknowledgement Error */
623 if (reg_sr & AT91_IRQ_AERR) { 670 if (reg_sr & AT91_IRQ_AERR) {
624 dev_dbg(dev->dev.parent, "AERR irq\n"); 671 netdev_dbg(dev, "AERR irq\n");
625 dev->stats.tx_errors++; 672 dev->stats.tx_errors++;
626 cf->can_id |= CAN_ERR_ACK; 673 cf->can_id |= CAN_ERR_ACK;
627 } 674 }
628 675
629 /* Form error */ 676 /* Form error */
630 if (reg_sr & AT91_IRQ_FERR) { 677 if (reg_sr & AT91_IRQ_FERR) {
631 dev_dbg(dev->dev.parent, "FERR irq\n"); 678 netdev_dbg(dev, "FERR irq\n");
632 dev->stats.rx_errors++; 679 dev->stats.rx_errors++;
633 priv->can.can_stats.bus_error++; 680 priv->can.can_stats.bus_error++;
634 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR; 681 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR;
@@ -637,7 +684,7 @@ static void at91_poll_err_frame(struct net_device *dev,
637 684
638 /* Bit Error */ 685 /* Bit Error */
639 if (reg_sr & AT91_IRQ_BERR) { 686 if (reg_sr & AT91_IRQ_BERR) {
640 dev_dbg(dev->dev.parent, "BERR irq\n"); 687 netdev_dbg(dev, "BERR irq\n");
641 dev->stats.tx_errors++; 688 dev->stats.tx_errors++;
642 priv->can.can_stats.bus_error++; 689 priv->can.can_stats.bus_error++;
643 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR; 690 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR;
@@ -735,7 +782,7 @@ static void at91_irq_tx(struct net_device *dev, u32 reg_sr)
735 reg_msr = at91_read(priv, AT91_MSR(mb)); 782 reg_msr = at91_read(priv, AT91_MSR(mb));
736 if (likely(reg_msr & AT91_MSR_MRDY && 783 if (likely(reg_msr & AT91_MSR_MRDY &&
737 ~reg_msr & AT91_MSR_MABT)) { 784 ~reg_msr & AT91_MSR_MABT)) {
738 /* _NOTE_: substract AT91_MB_TX_FIRST offset from mb! */ 785 /* _NOTE_: subtract AT91_MB_TX_FIRST offset from mb! */
739 can_get_echo_skb(dev, mb - AT91_MB_TX_FIRST); 786 can_get_echo_skb(dev, mb - AT91_MB_TX_FIRST);
740 dev->stats.tx_packets++; 787 dev->stats.tx_packets++;
741 } 788 }
@@ -755,12 +802,10 @@ static void at91_irq_err_state(struct net_device *dev,
755 struct can_frame *cf, enum can_state new_state) 802 struct can_frame *cf, enum can_state new_state)
756{ 803{
757 struct at91_priv *priv = netdev_priv(dev); 804 struct at91_priv *priv = netdev_priv(dev);
758 u32 reg_idr, reg_ier, reg_ecr; 805 u32 reg_idr = 0, reg_ier = 0;
759 u8 tec, rec; 806 struct can_berr_counter bec;
760 807
761 reg_ecr = at91_read(priv, AT91_ECR); 808 at91_get_berr_counter(dev, &bec);
762 rec = reg_ecr & 0xff;
763 tec = reg_ecr >> 16;
764 809
765 switch (priv->can.state) { 810 switch (priv->can.state) {
766 case CAN_STATE_ERROR_ACTIVE: 811 case CAN_STATE_ERROR_ACTIVE:
@@ -771,11 +816,11 @@ static void at91_irq_err_state(struct net_device *dev,
771 */ 816 */
772 if (new_state >= CAN_STATE_ERROR_WARNING && 817 if (new_state >= CAN_STATE_ERROR_WARNING &&
773 new_state <= CAN_STATE_BUS_OFF) { 818 new_state <= CAN_STATE_BUS_OFF) {
774 dev_dbg(dev->dev.parent, "Error Warning IRQ\n"); 819 netdev_dbg(dev, "Error Warning IRQ\n");
775 priv->can.can_stats.error_warning++; 820 priv->can.can_stats.error_warning++;
776 821
777 cf->can_id |= CAN_ERR_CRTL; 822 cf->can_id |= CAN_ERR_CRTL;
778 cf->data[1] = (tec > rec) ? 823 cf->data[1] = (bec.txerr > bec.rxerr) ?
779 CAN_ERR_CRTL_TX_WARNING : 824 CAN_ERR_CRTL_TX_WARNING :
780 CAN_ERR_CRTL_RX_WARNING; 825 CAN_ERR_CRTL_RX_WARNING;
781 } 826 }
@@ -787,11 +832,11 @@ static void at91_irq_err_state(struct net_device *dev,
787 */ 832 */
788 if (new_state >= CAN_STATE_ERROR_PASSIVE && 833 if (new_state >= CAN_STATE_ERROR_PASSIVE &&
789 new_state <= CAN_STATE_BUS_OFF) { 834 new_state <= CAN_STATE_BUS_OFF) {
790 dev_dbg(dev->dev.parent, "Error Passive IRQ\n"); 835 netdev_dbg(dev, "Error Passive IRQ\n");
791 priv->can.can_stats.error_passive++; 836 priv->can.can_stats.error_passive++;
792 837
793 cf->can_id |= CAN_ERR_CRTL; 838 cf->can_id |= CAN_ERR_CRTL;
794 cf->data[1] = (tec > rec) ? 839 cf->data[1] = (bec.txerr > bec.rxerr) ?
795 CAN_ERR_CRTL_TX_PASSIVE : 840 CAN_ERR_CRTL_TX_PASSIVE :
796 CAN_ERR_CRTL_RX_PASSIVE; 841 CAN_ERR_CRTL_RX_PASSIVE;
797 } 842 }
@@ -804,7 +849,7 @@ static void at91_irq_err_state(struct net_device *dev,
804 if (new_state <= CAN_STATE_ERROR_PASSIVE) { 849 if (new_state <= CAN_STATE_ERROR_PASSIVE) {
805 cf->can_id |= CAN_ERR_RESTARTED; 850 cf->can_id |= CAN_ERR_RESTARTED;
806 851
807 dev_dbg(dev->dev.parent, "restarted\n"); 852 netdev_dbg(dev, "restarted\n");
808 priv->can.can_stats.restarts++; 853 priv->can.can_stats.restarts++;
809 854
810 netif_carrier_on(dev); 855 netif_carrier_on(dev);
@@ -825,7 +870,7 @@ static void at91_irq_err_state(struct net_device *dev,
825 * circumstances. so just enable AT91_IRQ_ERRP, thus 870 * circumstances. so just enable AT91_IRQ_ERRP, thus
826 * the "fallthrough" 871 * the "fallthrough"
827 */ 872 */
828 dev_dbg(dev->dev.parent, "Error Active\n"); 873 netdev_dbg(dev, "Error Active\n");
829 cf->can_id |= CAN_ERR_PROT; 874 cf->can_id |= CAN_ERR_PROT;
830 cf->data[2] = CAN_ERR_PROT_ACTIVE; 875 cf->data[2] = CAN_ERR_PROT_ACTIVE;
831 case CAN_STATE_ERROR_WARNING: /* fallthrough */ 876 case CAN_STATE_ERROR_WARNING: /* fallthrough */
@@ -843,7 +888,7 @@ static void at91_irq_err_state(struct net_device *dev,
843 888
844 cf->can_id |= CAN_ERR_BUSOFF; 889 cf->can_id |= CAN_ERR_BUSOFF;
845 890
846 dev_dbg(dev->dev.parent, "bus-off\n"); 891 netdev_dbg(dev, "bus-off\n");
847 netif_carrier_off(dev); 892 netif_carrier_off(dev);
848 priv->can.can_stats.bus_off++; 893 priv->can.can_stats.bus_off++;
849 894
@@ -881,7 +926,7 @@ static void at91_irq_err(struct net_device *dev)
881 else if (likely(reg_sr & AT91_IRQ_ERRA)) 926 else if (likely(reg_sr & AT91_IRQ_ERRA))
882 new_state = CAN_STATE_ERROR_ACTIVE; 927 new_state = CAN_STATE_ERROR_ACTIVE;
883 else { 928 else {
884 dev_err(dev->dev.parent, "BUG! hardware in undefined state\n"); 929 netdev_err(dev, "BUG! hardware in undefined state\n");
885 return; 930 return;
886 } 931 }
887 932
@@ -1018,7 +1063,65 @@ static const struct net_device_ops at91_netdev_ops = {
1018 .ndo_start_xmit = at91_start_xmit, 1063 .ndo_start_xmit = at91_start_xmit,
1019}; 1064};
1020 1065
1021static int __init at91_can_probe(struct platform_device *pdev) 1066static ssize_t at91_sysfs_show_mb0_id(struct device *dev,
1067 struct device_attribute *attr, char *buf)
1068{
1069 struct at91_priv *priv = netdev_priv(to_net_dev(dev));
1070
1071 if (priv->mb0_id & CAN_EFF_FLAG)
1072 return snprintf(buf, PAGE_SIZE, "0x%08x\n", priv->mb0_id);
1073 else
1074 return snprintf(buf, PAGE_SIZE, "0x%03x\n", priv->mb0_id);
1075}
1076
1077static ssize_t at91_sysfs_set_mb0_id(struct device *dev,
1078 struct device_attribute *attr, const char *buf, size_t count)
1079{
1080 struct net_device *ndev = to_net_dev(dev);
1081 struct at91_priv *priv = netdev_priv(ndev);
1082 unsigned long can_id;
1083 ssize_t ret;
1084 int err;
1085
1086 rtnl_lock();
1087
1088 if (ndev->flags & IFF_UP) {
1089 ret = -EBUSY;
1090 goto out;
1091 }
1092
1093 err = strict_strtoul(buf, 0, &can_id);
1094 if (err) {
1095 ret = err;
1096 goto out;
1097 }
1098
1099 if (can_id & CAN_EFF_FLAG)
1100 can_id &= CAN_EFF_MASK | CAN_EFF_FLAG;
1101 else
1102 can_id &= CAN_SFF_MASK;
1103
1104 priv->mb0_id = can_id;
1105 ret = count;
1106
1107 out:
1108 rtnl_unlock();
1109 return ret;
1110}
1111
1112static DEVICE_ATTR(mb0_id, S_IWUSR | S_IRUGO,
1113 at91_sysfs_show_mb0_id, at91_sysfs_set_mb0_id);
1114
1115static struct attribute *at91_sysfs_attrs[] = {
1116 &dev_attr_mb0_id.attr,
1117 NULL,
1118};
1119
1120static struct attribute_group at91_sysfs_attr_group = {
1121 .attrs = at91_sysfs_attrs,
1122};
1123
1124static int __devinit at91_can_probe(struct platform_device *pdev)
1022{ 1125{
1023 struct net_device *dev; 1126 struct net_device *dev;
1024 struct at91_priv *priv; 1127 struct at91_priv *priv;
@@ -1063,17 +1166,19 @@ static int __init at91_can_probe(struct platform_device *pdev)
1063 dev->netdev_ops = &at91_netdev_ops; 1166 dev->netdev_ops = &at91_netdev_ops;
1064 dev->irq = irq; 1167 dev->irq = irq;
1065 dev->flags |= IFF_ECHO; 1168 dev->flags |= IFF_ECHO;
1169 dev->sysfs_groups[0] = &at91_sysfs_attr_group;
1066 1170
1067 priv = netdev_priv(dev); 1171 priv = netdev_priv(dev);
1068 priv->can.clock.freq = clk_get_rate(clk); 1172 priv->can.clock.freq = clk_get_rate(clk);
1069 priv->can.bittiming_const = &at91_bittiming_const; 1173 priv->can.bittiming_const = &at91_bittiming_const;
1070 priv->can.do_set_bittiming = at91_set_bittiming;
1071 priv->can.do_set_mode = at91_set_mode; 1174 priv->can.do_set_mode = at91_set_mode;
1175 priv->can.do_get_berr_counter = at91_get_berr_counter;
1072 priv->can.ctrlmode_supported = CAN_CTRLMODE_3_SAMPLES; 1176 priv->can.ctrlmode_supported = CAN_CTRLMODE_3_SAMPLES;
1073 priv->reg_base = addr; 1177 priv->reg_base = addr;
1074 priv->dev = dev; 1178 priv->dev = dev;
1075 priv->clk = clk; 1179 priv->clk = clk;
1076 priv->pdata = pdev->dev.platform_data; 1180 priv->pdata = pdev->dev.platform_data;
1181 priv->mb0_id = 0x7ff;
1077 1182
1078 netif_napi_add(dev, &priv->napi, at91_poll, AT91_NAPI_WEIGHT); 1183 netif_napi_add(dev, &priv->napi, at91_poll, AT91_NAPI_WEIGHT);
1079 1184
@@ -1092,7 +1197,7 @@ static int __init at91_can_probe(struct platform_device *pdev)
1092 return 0; 1197 return 0;
1093 1198
1094 exit_free: 1199 exit_free:
1095 free_netdev(dev); 1200 free_candev(dev);
1096 exit_iounmap: 1201 exit_iounmap:
1097 iounmap(addr); 1202 iounmap(addr);
1098 exit_release: 1203 exit_release:
@@ -1113,8 +1218,6 @@ static int __devexit at91_can_remove(struct platform_device *pdev)
1113 1218
1114 platform_set_drvdata(pdev, NULL); 1219 platform_set_drvdata(pdev, NULL);
1115 1220
1116 free_netdev(dev);
1117
1118 iounmap(priv->reg_base); 1221 iounmap(priv->reg_base);
1119 1222
1120 res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 1223 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
@@ -1122,6 +1225,8 @@ static int __devexit at91_can_remove(struct platform_device *pdev)
1122 1225
1123 clk_put(priv->clk); 1226 clk_put(priv->clk);
1124 1227
1228 free_candev(dev);
1229
1125 return 0; 1230 return 0;
1126} 1231}
1127 1232
@@ -1129,21 +1234,19 @@ static struct platform_driver at91_can_driver = {
1129 .probe = at91_can_probe, 1234 .probe = at91_can_probe,
1130 .remove = __devexit_p(at91_can_remove), 1235 .remove = __devexit_p(at91_can_remove),
1131 .driver = { 1236 .driver = {
1132 .name = DRV_NAME, 1237 .name = KBUILD_MODNAME,
1133 .owner = THIS_MODULE, 1238 .owner = THIS_MODULE,
1134 }, 1239 },
1135}; 1240};
1136 1241
1137static int __init at91_can_module_init(void) 1242static int __init at91_can_module_init(void)
1138{ 1243{
1139 printk(KERN_INFO "%s netdevice driver\n", DRV_NAME);
1140 return platform_driver_register(&at91_can_driver); 1244 return platform_driver_register(&at91_can_driver);
1141} 1245}
1142 1246
1143static void __exit at91_can_module_exit(void) 1247static void __exit at91_can_module_exit(void)
1144{ 1248{
1145 platform_driver_unregister(&at91_can_driver); 1249 platform_driver_unregister(&at91_can_driver);
1146 printk(KERN_INFO "%s: driver removed\n", DRV_NAME);
1147} 1250}
1148 1251
1149module_init(at91_can_module_init); 1252module_init(at91_can_module_init);
@@ -1151,4 +1254,4 @@ module_exit(at91_can_module_exit);
1151 1254
1152MODULE_AUTHOR("Marc Kleine-Budde <mkl@pengutronix.de>"); 1255MODULE_AUTHOR("Marc Kleine-Budde <mkl@pengutronix.de>");
1153MODULE_LICENSE("GPL v2"); 1256MODULE_LICENSE("GPL v2");
1154MODULE_DESCRIPTION(DRV_NAME " CAN netdevice driver"); 1257MODULE_DESCRIPTION(KBUILD_MODNAME " CAN netdevice driver");