提交 17a50ee4 编写于 作者: Y Yoann DI RUZZA 提交者: Marc Kleine-Budde

can: at91_can: add listen only mode

This patch adds listen only mode support to the at91_can driver.
Signed-off-by: NYoann DI-RUZZA <ydiruzza@gmail.com>
Signed-off-by: NMarc Kleine-Budde <mkl@pengutronix.de>
上级 b18ec27c
...@@ -420,7 +420,11 @@ static void at91_chip_start(struct net_device *dev) ...@@ -420,7 +420,11 @@ static void at91_chip_start(struct net_device *dev)
at91_transceiver_switch(priv, 1); at91_transceiver_switch(priv, 1);
/* enable chip */ /* enable chip */
at91_write(priv, AT91_MR, AT91_MR_CANEN); if (priv->can.ctrlmode & CAN_CTRLMODE_LISTENONLY)
reg_mr = AT91_MR_CANEN | AT91_MR_ABM;
else
reg_mr = AT91_MR_CANEN;
at91_write(priv, AT91_MR, reg_mr);
priv->can.state = CAN_STATE_ERROR_ACTIVE; priv->can.state = CAN_STATE_ERROR_ACTIVE;
...@@ -1341,7 +1345,8 @@ static int at91_can_probe(struct platform_device *pdev) ...@@ -1341,7 +1345,8 @@ static int at91_can_probe(struct platform_device *pdev)
priv->can.bittiming_const = &at91_bittiming_const; priv->can.bittiming_const = &at91_bittiming_const;
priv->can.do_set_mode = at91_set_mode; priv->can.do_set_mode = at91_set_mode;
priv->can.do_get_berr_counter = at91_get_berr_counter; priv->can.do_get_berr_counter = at91_get_berr_counter;
priv->can.ctrlmode_supported = CAN_CTRLMODE_3_SAMPLES; priv->can.ctrlmode_supported = CAN_CTRLMODE_3_SAMPLES |
CAN_CTRLMODE_LISTENONLY;
priv->dev = dev; priv->dev = dev;
priv->reg_base = addr; priv->reg_base = addr;
priv->devtype_data = *devtype_data; priv->devtype_data = *devtype_data;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册