checkpatch.pl style fixes
[elmcan.git] / module / elmcan.c
index 1ac12913d78b5f1466bbb8ff18e3ef827c87ec84..7707c4d4c04fdae1cfc8173e84b77cc2df46c84a 100644 (file)
@@ -2,8 +2,7 @@
 /* ELM327 based CAN interface driver (tty line discipline)
  *
  * This driver started as a derivative of linux/drivers/net/can/slcan.c
- * and my thanks go to the original authors for their inspiration, even
- * after almost none of their code is left.
+ * and my thanks go to the original authors for their inspiration.
  *
  * elmcan.c Author : Max Staudt <max-linux@enpas.org>
  * slcan.c Author  : Oliver Hartkopp <socketcan@hartkopp.net>
@@ -44,8 +43,8 @@
 #include <linux/can/rx-offload.h>
 
 /* Line discipline ID number.
- * N_DEVELOPMENT will likely be defined from Linux 5.18 onwards:
- * https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git/commit/?h=tty-next&id=c2faf737abfb10f88f2d2612d573e9edc3c42c37
+ * Starting with Linux v5.18-rc1, N_DEVELOPMENT is defined as 29:
+ * https://github.com/torvalds/linux/commit/c2faf737abfb10f88f2d2612d573e9edc3c42c37
  */
 #ifndef N_DEVELOPMENT
 #define N_DEVELOPMENT 29
@@ -58,7 +57,7 @@
 
 #define ELM327_NAPI_WEIGHT 4
 
-#define ELM327_SIZE_RXBUF 256
+#define ELM327_SIZE_RXBUF 224
 #define ELM327_SIZE_TXBUF 32
 
 #define ELM327_CAN_CONFIG_SEND_SFF           0x8000
@@ -89,6 +88,16 @@ struct elmcan {
 
        struct can_rx_offload offload;
 
+       /* TTY buffers */
+       u8 rxbuf[ELM327_SIZE_RXBUF];
+       u8 txbuf[ELM327_SIZE_TXBUF] ____cacheline_aligned;
+
+       /* TTY buffer accounting */
+       struct work_struct tx_work;     /* Flushes TTY TX buffer */
+       u8 *txhead;                     /* Next TX byte */
+       unsigned txleft;                /* Bytes left to TX */
+       int rxfill;                     /* Bytes already RX'd in buffer */
+
        /* TTY and netdev devices that we're bridging */
        struct tty_struct *tty;
        struct net_device *dev;
@@ -96,23 +105,6 @@ struct elmcan {
        /* Per-channel lock */
        spinlock_t lock;
 
-       /* Stop the channel on UART side hardware failure, e.g. stray
-        * characters or neverending lines. This may be caused by bad
-        * UART wiring, a bad ELM327, a bad UART bridge...
-        * Once this is true, nothing will be sent to the TTY.
-        */
-       bool uart_side_failure;
-
-       /* TTY TX helpers */
-       struct work_struct tx_work;     /* Flushes TTY TX buffer   */
-       u8 *txbuf;                      /* Pointer to our TX buffer */
-       u8 *txhead;                     /* Pointer to next TX byte */
-       unsigned txleft;                /* Bytes left to TX */
-
-       /* TTY RX helpers */
-       u8 rxbuf[ELM327_SIZE_RXBUF];
-       int rxfill;
-
        /* State machine */
        enum {
                ELM327_STATE_NOTINIT = 0,
@@ -121,7 +113,9 @@ struct elmcan {
                ELM327_STATE_RECEIVING,
        } state;
 
-       bool drop_next_line;
+       /* Things we have yet to send */
+       char **next_init_cmd;
+       unsigned long cmds_todo;
 
        /* The CAN frame and config the ELM327 is sending/using,
         * or will send/use after finishing all cmds_todo
@@ -130,9 +124,15 @@ struct elmcan {
        u16 can_config;
        u8 can_bitrate_divisor;
 
-       /* Things we have yet to send */
-       char **next_init_cmd;
-       unsigned long cmds_todo;
+       /* Parser state */
+       bool drop_next_line;
+
+       /* Stop the channel on UART side hardware failure, e.g. stray
+        * characters or neverending lines. This may be caused by bad
+        * UART wiring, a bad ELM327, a bad UART bridge...
+        * Once this is true, nothing will be sent to the TTY.
+        */
+       bool uart_side_failure;
 };
 
 static inline void elm327_uart_side_failure(struct elmcan *elm);
@@ -141,7 +141,7 @@ static void elm327_send(struct elmcan *elm, const void *buf, size_t len)
 {
        int written;
 
-       lockdep_assert_held(elm->lock);
+       lockdep_assert_held(&elm->lock);
 
        if (elm->uart_side_failure)
                return;
@@ -160,9 +160,7 @@ static void elm327_send(struct elmcan *elm, const void *buf, size_t len)
        elm->txleft = len - written;
        elm->txhead = elm->txbuf + written;
 
-       if (!elm->txleft)
-               netif_wake_queue(elm->dev);
-       else
+       if (elm->txleft)
                set_bit(TTY_DO_WRITE_WAKEUP, &elm->tty->flags);
 }
 
@@ -173,7 +171,7 @@ static void elm327_send(struct elmcan *elm, const void *buf, size_t len)
  */
 static void elm327_kick_into_cmd_mode(struct elmcan *elm)
 {
-       lockdep_assert_held(elm->lock);
+       lockdep_assert_held(&elm->lock);
 
        if (elm->state != ELM327_STATE_GETDUMMYCHAR &&
            elm->state != ELM327_STATE_GETPROMPT) {
@@ -186,7 +184,7 @@ static void elm327_kick_into_cmd_mode(struct elmcan *elm)
 /* Schedule a CAN frame and necessary config changes to be sent to the TTY. */
 static void elm327_send_frame(struct elmcan *elm, struct can_frame *frame)
 {
-       lockdep_assert_held(elm->lock);
+       lockdep_assert_held(&elm->lock);
 
        /* Schedule any necessary changes in ELM327's CAN configuration */
        if (elm->can_frame_to_send.can_id != frame->can_id) {
@@ -248,7 +246,7 @@ static char *elm327_init_script[] = {
 
 static void elm327_init(struct elmcan *elm)
 {
-       lockdep_assert_held(elm->lock);
+       lockdep_assert_held(&elm->lock);
 
        elm->state = ELM327_STATE_NOTINIT;
        elm->can_frame_to_send.can_id = 0x7df; /* ELM327 HW default */
@@ -278,7 +276,7 @@ static void elm327_init(struct elmcan *elm)
 static void elm327_feed_frame_to_netdev(struct elmcan *elm,
                                        struct sk_buff *skb)
 {
-       lockdep_assert_held(elm->lock);
+       lockdep_assert_held(&elm->lock);
 
        if (!netif_running(elm->dev))
                return;
@@ -301,7 +299,7 @@ static inline void elm327_uart_side_failure(struct elmcan *elm)
        struct can_frame *frame;
        struct sk_buff *skb;
 
-       lockdep_assert_held(elm->lock);
+       lockdep_assert_held(&elm->lock);
 
        elm->uart_side_failure = true;
 
@@ -342,7 +340,7 @@ static void elm327_parse_error(struct elmcan *elm, size_t len)
        struct can_frame *frame;
        struct sk_buff *skb;
 
-       lockdep_assert_held(elm->lock);
+       lockdep_assert_held(&elm->lock);
 
        skb = alloc_can_err_skb(elm->dev, &frame);
        if (!skb)
@@ -409,7 +407,7 @@ static int elm327_parse_frame(struct elmcan *elm, size_t len)
        int datastart;
        int i;
 
-       lockdep_assert_held(elm->lock);
+       lockdep_assert_held(&elm->lock);
 
        skb = alloc_can_skb(elm->dev, &frame);
        if (!skb)
@@ -531,7 +529,7 @@ static int elm327_parse_frame(struct elmcan *elm, size_t len)
 
 static void elm327_parse_line(struct elmcan *elm, size_t len)
 {
-       lockdep_assert_held(elm->lock);
+       lockdep_assert_held(&elm->lock);
 
        /* Skip empty lines */
        if (!len)
@@ -546,8 +544,8 @@ static void elm327_parse_line(struct elmcan *elm, size_t len)
        }
 
        /* Regular parsing */
-       if (elm->state == ELM327_STATE_RECEIVING
-           && elm327_parse_frame(elm, len)) {
+       if (elm->state == ELM327_STATE_RECEIVING &&
+           elm327_parse_frame(elm, len)) {
                /* Parse an error line. */
                elm327_parse_error(elm, len);
 
@@ -565,21 +563,26 @@ static void elm327_handle_prompt(struct elmcan *elm)
         */
        char local_txbuf[sizeof("0102030405060708\r")];
 
-       lockdep_assert_held(elm->lock);
+       lockdep_assert_held(&elm->lock);
 
        if (!elm->cmds_todo) {
                /* Enter CAN monitor mode */
                elm327_send(elm, "ATMA\r", 5);
                elm->state = ELM327_STATE_RECEIVING;
 
+               /* We will be in the default state once this command is
+                * send, so enable the TX packet queue.
+                */
+               netif_wake_queue(elm->dev);
+
                return;
        }
 
        /* Reconfigure ELM327 step by step as indicated by elm->cmds_todo */
        if (test_bit(ELM327_TX_DO_INIT, &elm->cmds_todo)) {
                snprintf(local_txbuf, sizeof(local_txbuf),
-                       "%s",
-                       *elm->next_init_cmd);
+                        "%s",
+                        *elm->next_init_cmd);
 
                elm->next_init_cmd++;
                if (!(*elm->next_init_cmd)) {
@@ -589,38 +592,38 @@ static void elm327_handle_prompt(struct elmcan *elm)
 
        } else if (test_and_clear_bit(ELM327_TX_DO_SILENT_MONITOR, &elm->cmds_todo)) {
                snprintf(local_txbuf, sizeof(local_txbuf),
-                       "ATCSM%i\r",
-                       !(!(elm->can.ctrlmode & CAN_CTRLMODE_LISTENONLY)));
+                        "ATCSM%i\r",
+                        !(!(elm->can.ctrlmode & CAN_CTRLMODE_LISTENONLY)));
 
        } else if (test_and_clear_bit(ELM327_TX_DO_RESPONSES, &elm->cmds_todo)) {
                snprintf(local_txbuf, sizeof(local_txbuf),
-                       "ATR%i\r",
-                       !(elm->can.ctrlmode & CAN_CTRLMODE_LISTENONLY));
+                        "ATR%i\r",
+                        !(elm->can.ctrlmode & CAN_CTRLMODE_LISTENONLY));
 
        } else if (test_and_clear_bit(ELM327_TX_DO_CAN_CONFIG, &elm->cmds_todo)) {
                snprintf(local_txbuf, sizeof(local_txbuf),
-                       "ATPC\r");
+                        "ATPC\r");
                set_bit(ELM327_TX_DO_CAN_CONFIG_PART2, &elm->cmds_todo);
 
        } else if (test_and_clear_bit(ELM327_TX_DO_CAN_CONFIG_PART2, &elm->cmds_todo)) {
                snprintf(local_txbuf, sizeof(local_txbuf),
-                       "ATPB%04X\r",
-                       elm->can_config);
+                        "ATPB%04X\r",
+                        elm->can_config);
 
        } else if (test_and_clear_bit(ELM327_TX_DO_CANID_29BIT_HIGH, &elm->cmds_todo)) {
                snprintf(local_txbuf, sizeof(local_txbuf),
-                       "ATCP%02X\r",
-                       (frame->can_id & CAN_EFF_MASK) >> 24);
+                        "ATCP%02X\r",
+                        (frame->can_id & CAN_EFF_MASK) >> 24);
 
        } else if (test_and_clear_bit(ELM327_TX_DO_CANID_29BIT_LOW, &elm->cmds_todo)) {
                snprintf(local_txbuf, sizeof(local_txbuf),
-                       "ATSH%06X\r",
-                       frame->can_id & CAN_EFF_MASK & ((1 << 24) - 1));
+                        "ATSH%06X\r",
+                        frame->can_id & CAN_EFF_MASK & ((1 << 24) - 1));
 
        } else if (test_and_clear_bit(ELM327_TX_DO_CANID_11BIT, &elm->cmds_todo)) {
                snprintf(local_txbuf, sizeof(local_txbuf),
-                       "ATSH%03X\r",
-                       frame->can_id & CAN_SFF_MASK);
+                        "ATSH%03X\r",
+                        frame->can_id & CAN_SFF_MASK);
 
        } else if (test_and_clear_bit(ELM327_TX_DO_CAN_DATA, &elm->cmds_todo)) {
                if (frame->can_id & CAN_RTR_FLAG) {
@@ -628,23 +631,28 @@ static void elm327_handle_prompt(struct elmcan *elm)
                         * Some chips don't send them at all.
                         */
                        snprintf(local_txbuf, sizeof(local_txbuf),
-                               "ATRTR\r");
+                                "ATRTR\r");
                } else {
                        /* Send a regular CAN data frame */
                        int i;
 
                        for (i = 0; i < frame->len; i++) {
                                snprintf(&local_txbuf[2 * i], sizeof(local_txbuf),
-                                       "%02X",
-                                       frame->data[i]);
+                                        "%02X",
+                                        frame->data[i]);
                        }
 
                        snprintf(&local_txbuf[2 * i], sizeof(local_txbuf),
-                               "\r");
+                                "\r");
                }
 
                elm->drop_next_line = 1;
                elm->state = ELM327_STATE_RECEIVING;
+
+               /* We will be in the default state once this command is
+                * send, so enable the TX packet queue.
+                */
+               netif_wake_queue(elm->dev);
        }
 
        elm327_send(elm, local_txbuf, strlen(local_txbuf));
@@ -660,7 +668,7 @@ static bool elm327_is_ready_char(char c)
 
 static void elm327_drop_bytes(struct elmcan *elm, size_t i)
 {
-       lockdep_assert_held(elm->lock);
+       lockdep_assert_held(&elm->lock);
 
        memmove(&elm->rxbuf[0], &elm->rxbuf[i], ELM327_SIZE_RXBUF - i);
        elm->rxfill -= i;
@@ -671,7 +679,7 @@ static void elm327_parse_rxbuf(struct elmcan *elm)
        size_t len;
        int i;
 
-       lockdep_assert_held(elm->lock);
+       lockdep_assert_held(&elm->lock);
 
        switch (elm->state) {
        case ELM327_STATE_NOTINIT:
@@ -771,17 +779,19 @@ static int elmcan_netdev_open(struct net_device *dev)
        int err;
 
        spin_lock_bh(&elm->lock);
-       if (elm->uart_side_failure) {
-               netdev_err(elm->dev, "Refusing to open interface after a hardware fault has been detected.\n");
-               spin_unlock_bh(&elm->lock);
-               return -EIO;
-       }
 
        if (!elm->tty) {
                spin_unlock_bh(&elm->lock);
                return -ENODEV;
        }
 
+       if (elm->uart_side_failure)
+               netdev_warn(elm->dev, "Reopening netdev after a UART side fault has been detected.\n");
+
+       /* Clear TTY buffers */
+       elm->rxfill = 0;
+       elm->txleft = 0;
+
        /* open_candev() checks for elm->can.bittiming.bitrate != 0 */
        err = open_candev(dev);
        if (err) {
@@ -816,24 +826,16 @@ static int elmcan_netdev_close(struct net_device *dev)
 {
        struct elmcan *elm = netdev_priv(dev);
 
-       netif_stop_queue(dev);
-
+       /* Interrupt whatever the ELM327 is doing right now */
        spin_lock_bh(&elm->lock);
-       if (elm->tty) {
-               /* Interrupt whatever we're doing right now */
-               elm327_send(elm, ELM327_DUMMY_STRING, 1);
-
-               /* Clear the wakeup bit, as the netdev will be down and thus
-                * the wakeup handler won't clear it
-                */
-               clear_bit(TTY_DO_WRITE_WAKEUP, &elm->tty->flags);
+       elm327_send(elm, ELM327_DUMMY_STRING, 1);
+       spin_unlock_bh(&elm->lock);
 
-               spin_unlock_bh(&elm->lock);
+       netif_stop_queue(dev);
 
-               flush_work(&elm->tx_work);
-       } else {
-               spin_unlock_bh(&elm->lock);
-       }
+       /* Give UART one final chance to flush. */
+       clear_bit(TTY_DO_WRITE_WAKEUP, &elm->tty->flags);
+       flush_work(&elm->tx_work);
 
        can_rx_offload_disable(&elm->offload);
        elm->can.state = CAN_STATE_STOPPED;
@@ -997,16 +999,15 @@ static void elmcan_ldisc_tx_worker(struct work_struct *work)
                        elm327_uart_side_failure(elm);
                        spin_unlock_bh(&elm->lock);
                        return;
-               } else {
-                       elm->txleft -= written;
-                       elm->txhead += written;
                }
+
+               elm->txleft -= written;
+               elm->txhead += written;
        }
 
        if (!elm->txleft)  {
                clear_bit(TTY_DO_WRITE_WAKEUP, &elm->tty->flags);
                spin_unlock_bh(&elm->lock);
-               netif_wake_queue(elm->dev);
        } else {
                spin_unlock_bh(&elm->lock);
        }
@@ -1058,15 +1059,8 @@ static int elmcan_ldisc_open(struct tty_struct *tty)
                return -ENFILE;
        elm = netdev_priv(dev);
 
-       elm->txbuf = kmalloc(ELM327_SIZE_TXBUF, GFP_KERNEL);
-       if (!elm->txbuf) {
-               err = -ENOMEM;
-               goto out_err;
-       }
-
        /* Configure TTY interface */
        tty->receive_room = 65536; /* We don't flow control */
-       elm->txleft = 0; /* Clear TTY TX buffer */
        spin_lock_init(&elm->lock);
        INIT_WORK(&elm->tx_work, elmcan_ldisc_tx_worker);
 
@@ -1096,7 +1090,6 @@ static int elmcan_ldisc_open(struct tty_struct *tty)
        return 0;
 
 out_err:
-       kfree(elm->txbuf);
        free_candev(elm->dev);
        return err;
 }
@@ -1112,13 +1105,12 @@ static void elmcan_ldisc_close(struct tty_struct *tty)
 {
        struct elmcan *elm = (struct elmcan *)tty->disc_data;
 
-       /* unregister_netdev() calls .ndo_stop() so we don't have to. */
+       /* unregister_netdev() calls .ndo_stop() so we don't have to.
+        * Our .ndo_stop() also flushes the TTY write wakeup handler,
+        * so we can safely set elm->tty = NULL after this.
+        */
        unregister_candev(elm->dev);
 
-       /* Ensure that our worker won't be rescheduled */
-       clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
-       flush_work(&elm->tx_work);
-
        /* Mark channel as dead */
        spin_lock_bh(&elm->lock);
        tty->disc_data = NULL;
@@ -1127,7 +1119,6 @@ static void elmcan_ldisc_close(struct tty_struct *tty)
 
        netdev_info(elm->dev, "elmcan off %s.\n", tty->name);
 
-       kfree(elm->txbuf);
        free_candev(elm->dev);
 }