Commit 3a65f63f authored by David S. Miller's avatar David S. Miller

Merge tag 'linux-can-next-for-4.1-20150304' of...

Merge tag 'linux-can-next-for-4.1-20150304' of git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next

Marc Kleine-Budde says:

====================
pull-request: can-next 2015-03-04

this is a pull request of 3 patches for net-next/master.

Aaron Wu contributes three patches for the blackfin can driver, which
cleans up the driver and makes use of more platform independent code.
====================
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents f0126539 400aff5d
...@@ -20,13 +20,121 @@ ...@@ -20,13 +20,121 @@
#include <linux/can/dev.h> #include <linux/can/dev.h>
#include <linux/can/error.h> #include <linux/can/error.h>
#include <asm/bfin_can.h>
#include <asm/portmux.h> #include <asm/portmux.h>
#define DRV_NAME "bfin_can" #define DRV_NAME "bfin_can"
#define BFIN_CAN_TIMEOUT 100 #define BFIN_CAN_TIMEOUT 100
#define TX_ECHO_SKB_MAX 1 #define TX_ECHO_SKB_MAX 1
/* transmit and receive channels */
#define TRANSMIT_CHL 24
#define RECEIVE_STD_CHL 0
#define RECEIVE_EXT_CHL 4
#define RECEIVE_RTR_CHL 8
#define RECEIVE_EXT_RTR_CHL 12
#define MAX_CHL_NUMBER 32
/* All Blackfin system MMRs are padded to 32bits even if the register
* itself is only 16bits. So use a helper macro to streamline this
*/
#define __BFP(m) u16 m; u16 __pad_##m
/* bfin can registers layout */
struct bfin_can_mask_regs {
__BFP(aml);
__BFP(amh);
};
struct bfin_can_channel_regs {
/* data[0,2,4,6] -> data{0,1,2,3} while data[1,3,5,7] is padding */
u16 data[8];
__BFP(dlc);
__BFP(tsv);
__BFP(id0);
__BFP(id1);
};
struct bfin_can_regs {
/* global control and status registers */
__BFP(mc1); /* offset 0x00 */
__BFP(md1); /* offset 0x04 */
__BFP(trs1); /* offset 0x08 */
__BFP(trr1); /* offset 0x0c */
__BFP(ta1); /* offset 0x10 */
__BFP(aa1); /* offset 0x14 */
__BFP(rmp1); /* offset 0x18 */
__BFP(rml1); /* offset 0x1c */
__BFP(mbtif1); /* offset 0x20 */
__BFP(mbrif1); /* offset 0x24 */
__BFP(mbim1); /* offset 0x28 */
__BFP(rfh1); /* offset 0x2c */
__BFP(opss1); /* offset 0x30 */
u32 __pad1[3];
__BFP(mc2); /* offset 0x40 */
__BFP(md2); /* offset 0x44 */
__BFP(trs2); /* offset 0x48 */
__BFP(trr2); /* offset 0x4c */
__BFP(ta2); /* offset 0x50 */
__BFP(aa2); /* offset 0x54 */
__BFP(rmp2); /* offset 0x58 */
__BFP(rml2); /* offset 0x5c */
__BFP(mbtif2); /* offset 0x60 */
__BFP(mbrif2); /* offset 0x64 */
__BFP(mbim2); /* offset 0x68 */
__BFP(rfh2); /* offset 0x6c */
__BFP(opss2); /* offset 0x70 */
u32 __pad2[3];
__BFP(clock); /* offset 0x80 */
__BFP(timing); /* offset 0x84 */
__BFP(debug); /* offset 0x88 */
__BFP(status); /* offset 0x8c */
__BFP(cec); /* offset 0x90 */
__BFP(gis); /* offset 0x94 */
__BFP(gim); /* offset 0x98 */
__BFP(gif); /* offset 0x9c */
__BFP(control); /* offset 0xa0 */
__BFP(intr); /* offset 0xa4 */
__BFP(version); /* offset 0xa8 */
__BFP(mbtd); /* offset 0xac */
__BFP(ewr); /* offset 0xb0 */
__BFP(esr); /* offset 0xb4 */
u32 __pad3[2];
__BFP(ucreg); /* offset 0xc0 */
__BFP(uccnt); /* offset 0xc4 */
__BFP(ucrc); /* offset 0xc8 */
__BFP(uccnf); /* offset 0xcc */
u32 __pad4[1];
__BFP(version2); /* offset 0xd4 */
u32 __pad5[10];
/* channel(mailbox) mask and message registers */
struct bfin_can_mask_regs msk[MAX_CHL_NUMBER]; /* offset 0x100 */
struct bfin_can_channel_regs chl[MAX_CHL_NUMBER]; /* offset 0x200 */
};
#undef __BFP
#define SRS 0x0001 /* Software Reset */
#define SER 0x0008 /* Stuff Error */
#define BOIM 0x0008 /* Enable Bus Off Interrupt */
#define CCR 0x0080 /* CAN Configuration Mode Request */
#define CCA 0x0080 /* Configuration Mode Acknowledge */
#define SAM 0x0080 /* Sampling */
#define AME 0x8000 /* Acceptance Mask Enable */
#define RMLIM 0x0080 /* Enable RX Message Lost Interrupt */
#define RMLIS 0x0080 /* RX Message Lost IRQ Status */
#define RTR 0x4000 /* Remote Frame Transmission Request */
#define BOIS 0x0008 /* Bus Off IRQ Status */
#define IDE 0x2000 /* Identifier Extension */
#define EPIS 0x0004 /* Error-Passive Mode IRQ Status */
#define EPIM 0x0004 /* Enable Error-Passive Mode Interrupt */
#define EWTIS 0x0001 /* TX Error Count IRQ Status */
#define EWRIS 0x0002 /* RX Error Count IRQ Status */
#define BEF 0x0040 /* Bit Error Flag */
#define FER 0x0080 /* Form Error Flag */
#define SMR 0x0020 /* Sleep Mode Request */
#define SMACK 0x0008 /* Sleep Mode Acknowledge */
/* /*
* bfin can private data * bfin can private data
*/ */
...@@ -78,8 +186,8 @@ static int bfin_can_set_bittiming(struct net_device *dev) ...@@ -78,8 +186,8 @@ static int bfin_can_set_bittiming(struct net_device *dev)
if (priv->can.ctrlmode & CAN_CTRLMODE_3_SAMPLES) if (priv->can.ctrlmode & CAN_CTRLMODE_3_SAMPLES)
timing |= SAM; timing |= SAM;
bfin_write(&reg->clock, clk); writew(clk, &reg->clock);
bfin_write(&reg->timing, timing); writew(timing, &reg->timing);
netdev_info(dev, "setting CLOCK=0x%04x TIMING=0x%04x\n", clk, timing); netdev_info(dev, "setting CLOCK=0x%04x TIMING=0x%04x\n", clk, timing);
...@@ -94,16 +202,14 @@ static void bfin_can_set_reset_mode(struct net_device *dev) ...@@ -94,16 +202,14 @@ static void bfin_can_set_reset_mode(struct net_device *dev)
int i; int i;
/* disable interrupts */ /* disable interrupts */
bfin_write(&reg->mbim1, 0); writew(0, &reg->mbim1);
bfin_write(&reg->mbim2, 0); writew(0, &reg->mbim2);
bfin_write(&reg->gim, 0); writew(0, &reg->gim);
/* reset can and enter configuration mode */ /* reset can and enter configuration mode */
bfin_write(&reg->control, SRS | CCR); writew(SRS | CCR, &reg->control);
SSYNC(); writew(CCR, &reg->control);
bfin_write(&reg->control, CCR); while (!(readw(&reg->control) & CCA)) {
SSYNC();
while (!(bfin_read(&reg->control) & CCA)) {
udelay(10); udelay(10);
if (--timeout == 0) { if (--timeout == 0) {
netdev_err(dev, "fail to enter configuration mode\n"); netdev_err(dev, "fail to enter configuration mode\n");
...@@ -116,34 +222,33 @@ static void bfin_can_set_reset_mode(struct net_device *dev) ...@@ -116,34 +222,33 @@ static void bfin_can_set_reset_mode(struct net_device *dev)
* by writing to CAN Mailbox Configuration Registers 1 and 2 * by writing to CAN Mailbox Configuration Registers 1 and 2
* For all bits: 0 - Mailbox disabled, 1 - Mailbox enabled * For all bits: 0 - Mailbox disabled, 1 - Mailbox enabled
*/ */
bfin_write(&reg->mc1, 0); writew(0, &reg->mc1);
bfin_write(&reg->mc2, 0); writew(0, &reg->mc2);
/* Set Mailbox Direction */ /* Set Mailbox Direction */
bfin_write(&reg->md1, 0xFFFF); /* mailbox 1-16 are RX */ writew(0xFFFF, &reg->md1); /* mailbox 1-16 are RX */
bfin_write(&reg->md2, 0); /* mailbox 17-32 are TX */ writew(0, &reg->md2); /* mailbox 17-32 are TX */
/* RECEIVE_STD_CHL */ /* RECEIVE_STD_CHL */
for (i = 0; i < 2; i++) { for (i = 0; i < 2; i++) {
bfin_write(&reg->chl[RECEIVE_STD_CHL + i].id0, 0); writew(0, &reg->chl[RECEIVE_STD_CHL + i].id0);
bfin_write(&reg->chl[RECEIVE_STD_CHL + i].id1, AME); writew(AME, &reg->chl[RECEIVE_STD_CHL + i].id1);
bfin_write(&reg->chl[RECEIVE_STD_CHL + i].dlc, 0); writew(0, &reg->chl[RECEIVE_STD_CHL + i].dlc);
bfin_write(&reg->msk[RECEIVE_STD_CHL + i].amh, 0x1FFF); writew(0x1FFF, &reg->msk[RECEIVE_STD_CHL + i].amh);
bfin_write(&reg->msk[RECEIVE_STD_CHL + i].aml, 0xFFFF); writew(0xFFFF, &reg->msk[RECEIVE_STD_CHL + i].aml);
} }
/* RECEIVE_EXT_CHL */ /* RECEIVE_EXT_CHL */
for (i = 0; i < 2; i++) { for (i = 0; i < 2; i++) {
bfin_write(&reg->chl[RECEIVE_EXT_CHL + i].id0, 0); writew(0, &reg->chl[RECEIVE_EXT_CHL + i].id0);
bfin_write(&reg->chl[RECEIVE_EXT_CHL + i].id1, AME | IDE); writew(AME | IDE, &reg->chl[RECEIVE_EXT_CHL + i].id1);
bfin_write(&reg->chl[RECEIVE_EXT_CHL + i].dlc, 0); writew(0, &reg->chl[RECEIVE_EXT_CHL + i].dlc);
bfin_write(&reg->msk[RECEIVE_EXT_CHL + i].amh, 0x1FFF); writew(0x1FFF, &reg->msk[RECEIVE_EXT_CHL + i].amh);
bfin_write(&reg->msk[RECEIVE_EXT_CHL + i].aml, 0xFFFF); writew(0xFFFF, &reg->msk[RECEIVE_EXT_CHL + i].aml);
} }
bfin_write(&reg->mc2, BIT(TRANSMIT_CHL - 16)); writew(BIT(TRANSMIT_CHL - 16), &reg->mc2);
bfin_write(&reg->mc1, BIT(RECEIVE_STD_CHL) + BIT(RECEIVE_EXT_CHL)); writew(BIT(RECEIVE_STD_CHL) + BIT(RECEIVE_EXT_CHL), &reg->mc1);
SSYNC();
priv->can.state = CAN_STATE_STOPPED; priv->can.state = CAN_STATE_STOPPED;
} }
...@@ -157,9 +262,9 @@ static void bfin_can_set_normal_mode(struct net_device *dev) ...@@ -157,9 +262,9 @@ static void bfin_can_set_normal_mode(struct net_device *dev)
/* /*
* leave configuration mode * leave configuration mode
*/ */
bfin_write(&reg->control, bfin_read(&reg->control) & ~CCR); writew(readw(&reg->control) & ~CCR, &reg->control);
while (bfin_read(&reg->status) & CCA) { while (readw(&reg->status) & CCA) {
udelay(10); udelay(10);
if (--timeout == 0) { if (--timeout == 0) {
netdev_err(dev, "fail to leave configuration mode\n"); netdev_err(dev, "fail to leave configuration mode\n");
...@@ -170,26 +275,25 @@ static void bfin_can_set_normal_mode(struct net_device *dev) ...@@ -170,26 +275,25 @@ static void bfin_can_set_normal_mode(struct net_device *dev)
/* /*
* clear _All_ tx and rx interrupts * clear _All_ tx and rx interrupts
*/ */
bfin_write(&reg->mbtif1, 0xFFFF); writew(0xFFFF, &reg->mbtif1);
bfin_write(&reg->mbtif2, 0xFFFF); writew(0xFFFF, &reg->mbtif2);
bfin_write(&reg->mbrif1, 0xFFFF); writew(0xFFFF, &reg->mbrif1);
bfin_write(&reg->mbrif2, 0xFFFF); writew(0xFFFF, &reg->mbrif2);
/* /*
* clear global interrupt status register * clear global interrupt status register
*/ */
bfin_write(&reg->gis, 0x7FF); /* overwrites with '1' */ writew(0x7FF, &reg->gis); /* overwrites with '1' */
/* /*
* Initialize Interrupts * Initialize Interrupts
* - set bits in the mailbox interrupt mask register * - set bits in the mailbox interrupt mask register
* - global interrupt mask * - global interrupt mask
*/ */
bfin_write(&reg->mbim1, BIT(RECEIVE_STD_CHL) + BIT(RECEIVE_EXT_CHL)); writew(BIT(RECEIVE_STD_CHL) + BIT(RECEIVE_EXT_CHL), &reg->mbim1);
bfin_write(&reg->mbim2, BIT(TRANSMIT_CHL - 16)); writew(BIT(TRANSMIT_CHL - 16), &reg->mbim2);
bfin_write(&reg->gim, EPIM | BOIM | RMLIM); writew(EPIM | BOIM | RMLIM, &reg->gim);
SSYNC();
} }
static void bfin_can_start(struct net_device *dev) static void bfin_can_start(struct net_device *dev)
...@@ -226,7 +330,7 @@ static int bfin_can_get_berr_counter(const struct net_device *dev, ...@@ -226,7 +330,7 @@ static int bfin_can_get_berr_counter(const struct net_device *dev,
struct bfin_can_priv *priv = netdev_priv(dev); struct bfin_can_priv *priv = netdev_priv(dev);
struct bfin_can_regs __iomem *reg = priv->membase; struct bfin_can_regs __iomem *reg = priv->membase;
u16 cec = bfin_read(&reg->cec); u16 cec = readw(&reg->cec);
bec->txerr = cec >> 8; bec->txerr = cec >> 8;
bec->rxerr = cec; bec->rxerr = cec;
...@@ -252,28 +356,28 @@ static int bfin_can_start_xmit(struct sk_buff *skb, struct net_device *dev) ...@@ -252,28 +356,28 @@ static int bfin_can_start_xmit(struct sk_buff *skb, struct net_device *dev)
/* fill id */ /* fill id */
if (id & CAN_EFF_FLAG) { if (id & CAN_EFF_FLAG) {
bfin_write(&reg->chl[TRANSMIT_CHL].id0, id); writew(id, &reg->chl[TRANSMIT_CHL].id0);
val = ((id & 0x1FFF0000) >> 16) | IDE; val = ((id & 0x1FFF0000) >> 16) | IDE;
} else } else
val = (id << 2); val = (id << 2);
if (id & CAN_RTR_FLAG) if (id & CAN_RTR_FLAG)
val |= RTR; val |= RTR;
bfin_write(&reg->chl[TRANSMIT_CHL].id1, val | AME); writew(val | AME, &reg->chl[TRANSMIT_CHL].id1);
/* fill payload */ /* fill payload */
for (i = 0; i < 8; i += 2) { for (i = 0; i < 8; i += 2) {
val = ((7 - i) < dlc ? (data[7 - i]) : 0) + val = ((7 - i) < dlc ? (data[7 - i]) : 0) +
((6 - i) < dlc ? (data[6 - i] << 8) : 0); ((6 - i) < dlc ? (data[6 - i] << 8) : 0);
bfin_write(&reg->chl[TRANSMIT_CHL].data[i], val); writew(val, &reg->chl[TRANSMIT_CHL].data[i]);
} }
/* fill data length code */ /* fill data length code */
bfin_write(&reg->chl[TRANSMIT_CHL].dlc, dlc); writew(dlc, &reg->chl[TRANSMIT_CHL].dlc);
can_put_echo_skb(skb, dev, 0); can_put_echo_skb(skb, dev, 0);
/* set transmit request */ /* set transmit request */
bfin_write(&reg->trs2, BIT(TRANSMIT_CHL - 16)); writew(BIT(TRANSMIT_CHL - 16), &reg->trs2);
return 0; return 0;
} }
...@@ -296,26 +400,26 @@ static void bfin_can_rx(struct net_device *dev, u16 isrc) ...@@ -296,26 +400,26 @@ static void bfin_can_rx(struct net_device *dev, u16 isrc)
/* get id */ /* get id */
if (isrc & BIT(RECEIVE_EXT_CHL)) { if (isrc & BIT(RECEIVE_EXT_CHL)) {
/* extended frame format (EFF) */ /* extended frame format (EFF) */
cf->can_id = ((bfin_read(&reg->chl[RECEIVE_EXT_CHL].id1) cf->can_id = ((readw(&reg->chl[RECEIVE_EXT_CHL].id1)
& 0x1FFF) << 16) & 0x1FFF) << 16)
+ bfin_read(&reg->chl[RECEIVE_EXT_CHL].id0); + readw(&reg->chl[RECEIVE_EXT_CHL].id0);
cf->can_id |= CAN_EFF_FLAG; cf->can_id |= CAN_EFF_FLAG;
obj = RECEIVE_EXT_CHL; obj = RECEIVE_EXT_CHL;
} else { } else {
/* standard frame format (SFF) */ /* standard frame format (SFF) */
cf->can_id = (bfin_read(&reg->chl[RECEIVE_STD_CHL].id1) cf->can_id = (readw(&reg->chl[RECEIVE_STD_CHL].id1)
& 0x1ffc) >> 2; & 0x1ffc) >> 2;
obj = RECEIVE_STD_CHL; obj = RECEIVE_STD_CHL;
} }
if (bfin_read(&reg->chl[obj].id1) & RTR) if (readw(&reg->chl[obj].id1) & RTR)
cf->can_id |= CAN_RTR_FLAG; cf->can_id |= CAN_RTR_FLAG;
/* get data length code */ /* get data length code */
cf->can_dlc = get_can_dlc(bfin_read(&reg->chl[obj].dlc) & 0xF); cf->can_dlc = get_can_dlc(readw(&reg->chl[obj].dlc) & 0xF);
/* get payload */ /* get payload */
for (i = 0; i < 8; i += 2) { for (i = 0; i < 8; i += 2) {
val = bfin_read(&reg->chl[obj].data[i]); val = readw(&reg->chl[obj].data[i]);
cf->data[7 - i] = (7 - i) < cf->can_dlc ? val : 0; cf->data[7 - i] = (7 - i) < cf->can_dlc ? val : 0;
cf->data[6 - i] = (6 - i) < cf->can_dlc ? (val >> 8) : 0; cf->data[6 - i] = (6 - i) < cf->can_dlc ? (val >> 8) : 0;
} }
...@@ -369,7 +473,7 @@ static int bfin_can_err(struct net_device *dev, u16 isrc, u16 status) ...@@ -369,7 +473,7 @@ static int bfin_can_err(struct net_device *dev, u16 isrc, u16 status)
if (state != priv->can.state && (state == CAN_STATE_ERROR_WARNING || if (state != priv->can.state && (state == CAN_STATE_ERROR_WARNING ||
state == CAN_STATE_ERROR_PASSIVE)) { state == CAN_STATE_ERROR_PASSIVE)) {
u16 cec = bfin_read(&reg->cec); u16 cec = readw(&reg->cec);
u8 rxerr = cec; u8 rxerr = cec;
u8 txerr = cec >> 8; u8 txerr = cec >> 8;
...@@ -420,23 +524,23 @@ static irqreturn_t bfin_can_interrupt(int irq, void *dev_id) ...@@ -420,23 +524,23 @@ static irqreturn_t bfin_can_interrupt(int irq, void *dev_id)
struct net_device_stats *stats = &dev->stats; struct net_device_stats *stats = &dev->stats;
u16 status, isrc; u16 status, isrc;
if ((irq == priv->tx_irq) && bfin_read(&reg->mbtif2)) { if ((irq == priv->tx_irq) && readw(&reg->mbtif2)) {
/* transmission complete interrupt */ /* transmission complete interrupt */
bfin_write(&reg->mbtif2, 0xFFFF); writew(0xFFFF, &reg->mbtif2);
stats->tx_packets++; stats->tx_packets++;
stats->tx_bytes += bfin_read(&reg->chl[TRANSMIT_CHL].dlc); stats->tx_bytes += readw(&reg->chl[TRANSMIT_CHL].dlc);
can_get_echo_skb(dev, 0); can_get_echo_skb(dev, 0);
netif_wake_queue(dev); netif_wake_queue(dev);
} else if ((irq == priv->rx_irq) && bfin_read(&reg->mbrif1)) { } else if ((irq == priv->rx_irq) && readw(&reg->mbrif1)) {
/* receive interrupt */ /* receive interrupt */
isrc = bfin_read(&reg->mbrif1); isrc = readw(&reg->mbrif1);
bfin_write(&reg->mbrif1, 0xFFFF); writew(0xFFFF, &reg->mbrif1);
bfin_can_rx(dev, isrc); bfin_can_rx(dev, isrc);
} else if ((irq == priv->err_irq) && bfin_read(&reg->gis)) { } else if ((irq == priv->err_irq) && readw(&reg->gis)) {
/* error interrupt */ /* error interrupt */
isrc = bfin_read(&reg->gis); isrc = readw(&reg->gis);
status = bfin_read(&reg->esr); status = readw(&reg->esr);
bfin_write(&reg->gis, 0x7FF); writew(0x7FF, &reg->gis);
bfin_can_err(dev, isrc, status); bfin_can_err(dev, isrc, status);
} else { } else {
return IRQ_NONE; return IRQ_NONE;
...@@ -556,16 +660,10 @@ static int bfin_can_probe(struct platform_device *pdev) ...@@ -556,16 +660,10 @@ static int bfin_can_probe(struct platform_device *pdev)
goto exit; goto exit;
} }
if (!request_mem_region(res_mem->start, resource_size(res_mem),
dev_name(&pdev->dev))) {
err = -EBUSY;
goto exit;
}
/* request peripheral pins */ /* request peripheral pins */
err = peripheral_request_list(pdata, dev_name(&pdev->dev)); err = peripheral_request_list(pdata, dev_name(&pdev->dev));
if (err) if (err)
goto exit_mem_release; goto exit;
dev = alloc_bfin_candev(); dev = alloc_bfin_candev();
if (!dev) { if (!dev) {
...@@ -574,7 +672,13 @@ static int bfin_can_probe(struct platform_device *pdev) ...@@ -574,7 +672,13 @@ static int bfin_can_probe(struct platform_device *pdev)
} }
priv = netdev_priv(dev); priv = netdev_priv(dev);
priv->membase = (void __iomem *)res_mem->start;
priv->membase = devm_ioremap_resource(&pdev->dev, res_mem);
if (IS_ERR(priv->membase)) {
err = PTR_ERR(priv->membase);
goto exit_peri_pin_free;
}
priv->rx_irq = rx_irq->start; priv->rx_irq = rx_irq->start;
priv->tx_irq = tx_irq->start; priv->tx_irq = tx_irq->start;
priv->err_irq = err_irq->start; priv->err_irq = err_irq->start;
...@@ -606,8 +710,6 @@ static int bfin_can_probe(struct platform_device *pdev) ...@@ -606,8 +710,6 @@ static int bfin_can_probe(struct platform_device *pdev)
free_candev(dev); free_candev(dev);
exit_peri_pin_free: exit_peri_pin_free:
peripheral_free_list(pdata); peripheral_free_list(pdata);
exit_mem_release:
release_mem_region(res_mem->start, resource_size(res_mem));
exit: exit:
return err; return err;
} }
...@@ -616,15 +718,11 @@ static int bfin_can_remove(struct platform_device *pdev) ...@@ -616,15 +718,11 @@ static int bfin_can_remove(struct platform_device *pdev)
{ {
struct net_device *dev = platform_get_drvdata(pdev); struct net_device *dev = platform_get_drvdata(pdev);
struct bfin_can_priv *priv = netdev_priv(dev); struct bfin_can_priv *priv = netdev_priv(dev);
struct resource *res;
bfin_can_set_reset_mode(dev); bfin_can_set_reset_mode(dev);
unregister_candev(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); peripheral_free_list(priv->pin_list);
free_candev(dev); free_candev(dev);
...@@ -641,9 +739,8 @@ static int bfin_can_suspend(struct platform_device *pdev, pm_message_t mesg) ...@@ -641,9 +739,8 @@ static int bfin_can_suspend(struct platform_device *pdev, pm_message_t mesg)
if (netif_running(dev)) { if (netif_running(dev)) {
/* enter sleep mode */ /* enter sleep mode */
bfin_write(&reg->control, bfin_read(&reg->control) | SMR); writew(readw(&reg->control) | SMR, &reg->control);
SSYNC(); while (!(readw(&reg->intr) & SMACK)) {
while (!(bfin_read(&reg->intr) & SMACK)) {
udelay(10); udelay(10);
if (--timeout == 0) { if (--timeout == 0) {
netdev_err(dev, "fail to enter sleep mode\n"); netdev_err(dev, "fail to enter sleep mode\n");
...@@ -663,8 +760,7 @@ static int bfin_can_resume(struct platform_device *pdev) ...@@ -663,8 +760,7 @@ static int bfin_can_resume(struct platform_device *pdev)
if (netif_running(dev)) { if (netif_running(dev)) {
/* leave sleep mode */ /* leave sleep mode */
bfin_write(&reg->intr, 0); writew(0, &reg->intr);
SSYNC();
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment