net: qualcomm: rename qca_framing.c to qca_7k_common.c
authorStefan Wahren <stefan.wahren@i2se.com>
Mon, 29 May 2017 11:57:18 +0000 (13:57 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 30 May 2017 17:57:30 +0000 (13:57 -0400)
As preparation for the upcoming UART driver we need a module
which contains common functions for both interfaces. The module
qca_framing is a good candidate but renaming to qca_7k_common would
make it clear.

Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qualcomm/Makefile
drivers/net/ethernet/qualcomm/qca_7k_common.c [new file with mode: 0644]
drivers/net/ethernet/qualcomm/qca_7k_common.h [new file with mode: 0644]
drivers/net/ethernet/qualcomm/qca_framing.c [deleted file]
drivers/net/ethernet/qualcomm/qca_framing.h [deleted file]
drivers/net/ethernet/qualcomm/qca_spi.c
drivers/net/ethernet/qualcomm/qca_spi.h

index aacb0a585c68c7df878fcc7632acb9211c7f0af9..5e17bf116e751f46901bf9526095c87fe2e2a42c 100644 (file)
@@ -3,6 +3,6 @@
 #
 
 obj-$(CONFIG_QCA7000) += qcaspi.o
-qcaspi-objs := qca_spi.o qca_framing.o qca_7k.o qca_debug.o
+qcaspi-objs := qca_spi.o qca_7k_common.o qca_7k.o qca_debug.o
 
 obj-y += emac/
diff --git a/drivers/net/ethernet/qualcomm/qca_7k_common.c b/drivers/net/ethernet/qualcomm/qca_7k_common.c
new file mode 100644 (file)
index 0000000..6d17fbd
--- /dev/null
@@ -0,0 +1,156 @@
+/*
+ *   Copyright (c) 2011, 2012, Atheros Communications Inc.
+ *   Copyright (c) 2014, I2SE GmbH
+ *
+ *   Permission to use, copy, modify, and/or distribute this software
+ *   for any purpose with or without fee is hereby granted, provided
+ *   that the above copyright notice and this permission notice appear
+ *   in all copies.
+ *
+ *   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
+ *   WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
+ *   WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
+ *   THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
+ *   CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+ *   LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+ *   NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+ *   CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+/*   Atheros ethernet framing. Every Ethernet frame is surrounded
+ *   by an atheros frame while transmitted over a serial channel;
+ */
+
+#include <linux/kernel.h>
+
+#include "qca_7k_common.h"
+
+u16
+qcafrm_create_header(u8 *buf, u16 length)
+{
+       __le16 len;
+
+       if (!buf)
+               return 0;
+
+       len = cpu_to_le16(length);
+
+       buf[0] = 0xAA;
+       buf[1] = 0xAA;
+       buf[2] = 0xAA;
+       buf[3] = 0xAA;
+       buf[4] = len & 0xff;
+       buf[5] = (len >> 8) & 0xff;
+       buf[6] = 0;
+       buf[7] = 0;
+
+       return QCAFRM_HEADER_LEN;
+}
+
+u16
+qcafrm_create_footer(u8 *buf)
+{
+       if (!buf)
+               return 0;
+
+       buf[0] = 0x55;
+       buf[1] = 0x55;
+       return QCAFRM_FOOTER_LEN;
+}
+
+/*   Gather received bytes and try to extract a full ethernet frame by
+ *   following a simple state machine.
+ *
+ * Return:   QCAFRM_GATHER       No ethernet frame fully received yet.
+ *           QCAFRM_NOHEAD       Header expected but not found.
+ *           QCAFRM_INVLEN       Atheros frame length is invalid
+ *           QCAFRM_NOTAIL       Footer expected but not found.
+ *           > 0                 Number of byte in the fully received
+ *                               Ethernet frame
+ */
+
+s32
+qcafrm_fsm_decode(struct qcafrm_handle *handle, u8 *buf, u16 buf_len, u8 recv_byte)
+{
+       s32 ret = QCAFRM_GATHER;
+       u16 len;
+
+       switch (handle->state) {
+       case QCAFRM_HW_LEN0:
+       case QCAFRM_HW_LEN1:
+               /* by default, just go to next state */
+               handle->state--;
+
+               if (recv_byte != 0x00) {
+                       /* first two bytes of length must be 0 */
+                       handle->state = QCAFRM_HW_LEN0;
+               }
+               break;
+       case QCAFRM_HW_LEN2:
+       case QCAFRM_HW_LEN3:
+               handle->state--;
+               break;
+       /* 4 bytes header pattern */
+       case QCAFRM_WAIT_AA1:
+       case QCAFRM_WAIT_AA2:
+       case QCAFRM_WAIT_AA3:
+       case QCAFRM_WAIT_AA4:
+               if (recv_byte != 0xAA) {
+                       ret = QCAFRM_NOHEAD;
+                       handle->state = QCAFRM_HW_LEN0;
+               } else {
+                       handle->state--;
+               }
+               break;
+               /* 2 bytes length. */
+               /* Borrow offset field to hold length for now. */
+       case QCAFRM_WAIT_LEN_BYTE0:
+               handle->offset = recv_byte;
+               handle->state = QCAFRM_WAIT_LEN_BYTE1;
+               break;
+       case QCAFRM_WAIT_LEN_BYTE1:
+               handle->offset = handle->offset | (recv_byte << 8);
+               handle->state = QCAFRM_WAIT_RSVD_BYTE1;
+               break;
+       case QCAFRM_WAIT_RSVD_BYTE1:
+               handle->state = QCAFRM_WAIT_RSVD_BYTE2;
+               break;
+       case QCAFRM_WAIT_RSVD_BYTE2:
+               len = handle->offset;
+               if (len > buf_len || len < QCAFRM_MIN_LEN) {
+                       ret = QCAFRM_INVLEN;
+                       handle->state = QCAFRM_HW_LEN0;
+               } else {
+                       handle->state = (enum qcafrm_state)(len + 1);
+                       /* Remaining number of bytes. */
+                       handle->offset = 0;
+               }
+               break;
+       default:
+               /* Receiving Ethernet frame itself. */
+               buf[handle->offset] = recv_byte;
+               handle->offset++;
+               handle->state--;
+               break;
+       case QCAFRM_WAIT_551:
+               if (recv_byte != 0x55) {
+                       ret = QCAFRM_NOTAIL;
+                       handle->state = QCAFRM_HW_LEN0;
+               } else {
+                       handle->state = QCAFRM_WAIT_552;
+               }
+               break;
+       case QCAFRM_WAIT_552:
+               if (recv_byte != 0x55) {
+                       ret = QCAFRM_NOTAIL;
+                       handle->state = QCAFRM_HW_LEN0;
+               } else {
+                       ret = handle->offset;
+                       /* Frame is fully received. */
+                       handle->state = QCAFRM_HW_LEN0;
+               }
+               break;
+       }
+
+       return ret;
+}
diff --git a/drivers/net/ethernet/qualcomm/qca_7k_common.h b/drivers/net/ethernet/qualcomm/qca_7k_common.h
new file mode 100644 (file)
index 0000000..5df7c65
--- /dev/null
@@ -0,0 +1,134 @@
+/*
+ *   Copyright (c) 2011, 2012, Atheros Communications Inc.
+ *   Copyright (c) 2014, I2SE GmbH
+ *
+ *   Permission to use, copy, modify, and/or distribute this software
+ *   for any purpose with or without fee is hereby granted, provided
+ *   that the above copyright notice and this permission notice appear
+ *   in all copies.
+ *
+ *   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
+ *   WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
+ *   WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
+ *   THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
+ *   CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
+ *   LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+ *   NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+ *   CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+/*   Atheros Ethernet framing. Every Ethernet frame is surrounded by an atheros
+ *   frame while transmitted over a serial channel.
+ */
+
+#ifndef _QCA_FRAMING_H
+#define _QCA_FRAMING_H
+
+#include <linux/if_ether.h>
+#include <linux/if_vlan.h>
+#include <linux/types.h>
+
+/* Frame is currently being received */
+#define QCAFRM_GATHER 0
+
+/*  No header byte while expecting it */
+#define QCAFRM_NOHEAD (QCAFRM_ERR_BASE - 1)
+
+/* No tailer byte while expecting it */
+#define QCAFRM_NOTAIL (QCAFRM_ERR_BASE - 2)
+
+/* Frame length is invalid */
+#define QCAFRM_INVLEN (QCAFRM_ERR_BASE - 3)
+
+/* Frame length is invalid */
+#define QCAFRM_INVFRAME (QCAFRM_ERR_BASE - 4)
+
+/* Min/Max Ethernet MTU: 46/1500 */
+#define QCAFRM_MIN_MTU (ETH_ZLEN - ETH_HLEN)
+#define QCAFRM_MAX_MTU ETH_DATA_LEN
+
+/* Min/Max frame lengths */
+#define QCAFRM_MIN_LEN (QCAFRM_MIN_MTU + ETH_HLEN)
+#define QCAFRM_MAX_LEN (QCAFRM_MAX_MTU + VLAN_ETH_HLEN)
+
+/* QCA7K header len */
+#define QCAFRM_HEADER_LEN 8
+
+/* QCA7K footer len */
+#define QCAFRM_FOOTER_LEN 2
+
+/* QCA7K Framing. */
+#define QCAFRM_ERR_BASE -1000
+
+enum qcafrm_state {
+       QCAFRM_HW_LEN0 = 0x8000,
+       QCAFRM_HW_LEN1 = QCAFRM_HW_LEN0 - 1,
+       QCAFRM_HW_LEN2 = QCAFRM_HW_LEN1 - 1,
+       QCAFRM_HW_LEN3 = QCAFRM_HW_LEN2 - 1,
+
+       /*  Waiting first 0xAA of header */
+       QCAFRM_WAIT_AA1 = QCAFRM_HW_LEN3 - 1,
+
+       /*  Waiting second 0xAA of header */
+       QCAFRM_WAIT_AA2 = QCAFRM_WAIT_AA1 - 1,
+
+       /*  Waiting third 0xAA of header */
+       QCAFRM_WAIT_AA3 = QCAFRM_WAIT_AA2 - 1,
+
+       /*  Waiting fourth 0xAA of header */
+       QCAFRM_WAIT_AA4 = QCAFRM_WAIT_AA3 - 1,
+
+       /*  Waiting Byte 0-1 of length (litte endian) */
+       QCAFRM_WAIT_LEN_BYTE0 = QCAFRM_WAIT_AA4 - 1,
+       QCAFRM_WAIT_LEN_BYTE1 = QCAFRM_WAIT_AA4 - 2,
+
+       /* Reserved bytes */
+       QCAFRM_WAIT_RSVD_BYTE1 = QCAFRM_WAIT_AA4 - 3,
+       QCAFRM_WAIT_RSVD_BYTE2 = QCAFRM_WAIT_AA4 - 4,
+
+       /*  The frame length is used as the state until
+        *  the end of the Ethernet frame
+        *  Waiting for first 0x55 of footer
+        */
+       QCAFRM_WAIT_551 = 1,
+
+       /*  Waiting for second 0x55 of footer */
+       QCAFRM_WAIT_552 = QCAFRM_WAIT_551 - 1
+};
+
+/*   Structure to maintain the frame decoding during reception. */
+
+struct qcafrm_handle {
+       /*  Current decoding state */
+       enum qcafrm_state state;
+
+       /* Offset in buffer (borrowed for length too) */
+       u16 offset;
+
+       /* Frame length as kept by this module */
+       u16 len;
+};
+
+u16 qcafrm_create_header(u8 *buf, u16 len);
+
+u16 qcafrm_create_footer(u8 *buf);
+
+static inline void qcafrm_fsm_init(struct qcafrm_handle *handle)
+{
+       handle->state = QCAFRM_HW_LEN0;
+}
+
+/*   Gather received bytes and try to extract a full Ethernet frame
+ *   by following a simple state machine.
+ *
+ * Return:   QCAFRM_GATHER       No Ethernet frame fully received yet.
+ *           QCAFRM_NOHEAD       Header expected but not found.
+ *           QCAFRM_INVLEN       QCA7K frame length is invalid
+ *           QCAFRM_NOTAIL       Footer expected but not found.
+ *           > 0                 Number of byte in the fully received
+ *                               Ethernet frame
+ */
+
+s32 qcafrm_fsm_decode(struct qcafrm_handle *handle, u8 *buf, u16 buf_len, u8 recv_byte);
+
+#endif /* _QCA_FRAMING_H */
diff --git a/drivers/net/ethernet/qualcomm/qca_framing.c b/drivers/net/ethernet/qualcomm/qca_framing.c
deleted file mode 100644 (file)
index 2341f2b..0000000
+++ /dev/null
@@ -1,156 +0,0 @@
-/*
- *   Copyright (c) 2011, 2012, Atheros Communications Inc.
- *   Copyright (c) 2014, I2SE GmbH
- *
- *   Permission to use, copy, modify, and/or distribute this software
- *   for any purpose with or without fee is hereby granted, provided
- *   that the above copyright notice and this permission notice appear
- *   in all copies.
- *
- *   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- *   WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- *   WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
- *   THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
- *   CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- *   LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
- *   NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
- *   CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
-/*   Atheros ethernet framing. Every Ethernet frame is surrounded
- *   by an atheros frame while transmitted over a serial channel;
- */
-
-#include <linux/kernel.h>
-
-#include "qca_framing.h"
-
-u16
-qcafrm_create_header(u8 *buf, u16 length)
-{
-       __le16 len;
-
-       if (!buf)
-               return 0;
-
-       len = cpu_to_le16(length);
-
-       buf[0] = 0xAA;
-       buf[1] = 0xAA;
-       buf[2] = 0xAA;
-       buf[3] = 0xAA;
-       buf[4] = len & 0xff;
-       buf[5] = (len >> 8) & 0xff;
-       buf[6] = 0;
-       buf[7] = 0;
-
-       return QCAFRM_HEADER_LEN;
-}
-
-u16
-qcafrm_create_footer(u8 *buf)
-{
-       if (!buf)
-               return 0;
-
-       buf[0] = 0x55;
-       buf[1] = 0x55;
-       return QCAFRM_FOOTER_LEN;
-}
-
-/*   Gather received bytes and try to extract a full ethernet frame by
- *   following a simple state machine.
- *
- * Return:   QCAFRM_GATHER       No ethernet frame fully received yet.
- *           QCAFRM_NOHEAD       Header expected but not found.
- *           QCAFRM_INVLEN       Atheros frame length is invalid
- *           QCAFRM_NOTAIL       Footer expected but not found.
- *           > 0                 Number of byte in the fully received
- *                               Ethernet frame
- */
-
-s32
-qcafrm_fsm_decode(struct qcafrm_handle *handle, u8 *buf, u16 buf_len, u8 recv_byte)
-{
-       s32 ret = QCAFRM_GATHER;
-       u16 len;
-
-       switch (handle->state) {
-       case QCAFRM_HW_LEN0:
-       case QCAFRM_HW_LEN1:
-               /* by default, just go to next state */
-               handle->state--;
-
-               if (recv_byte != 0x00) {
-                       /* first two bytes of length must be 0 */
-                       handle->state = QCAFRM_HW_LEN0;
-               }
-               break;
-       case QCAFRM_HW_LEN2:
-       case QCAFRM_HW_LEN3:
-               handle->state--;
-               break;
-       /* 4 bytes header pattern */
-       case QCAFRM_WAIT_AA1:
-       case QCAFRM_WAIT_AA2:
-       case QCAFRM_WAIT_AA3:
-       case QCAFRM_WAIT_AA4:
-               if (recv_byte != 0xAA) {
-                       ret = QCAFRM_NOHEAD;
-                       handle->state = QCAFRM_HW_LEN0;
-               } else {
-                       handle->state--;
-               }
-               break;
-               /* 2 bytes length. */
-               /* Borrow offset field to hold length for now. */
-       case QCAFRM_WAIT_LEN_BYTE0:
-               handle->offset = recv_byte;
-               handle->state = QCAFRM_WAIT_LEN_BYTE1;
-               break;
-       case QCAFRM_WAIT_LEN_BYTE1:
-               handle->offset = handle->offset | (recv_byte << 8);
-               handle->state = QCAFRM_WAIT_RSVD_BYTE1;
-               break;
-       case QCAFRM_WAIT_RSVD_BYTE1:
-               handle->state = QCAFRM_WAIT_RSVD_BYTE2;
-               break;
-       case QCAFRM_WAIT_RSVD_BYTE2:
-               len = handle->offset;
-               if (len > buf_len || len < QCAFRM_MIN_LEN) {
-                       ret = QCAFRM_INVLEN;
-                       handle->state = QCAFRM_HW_LEN0;
-               } else {
-                       handle->state = (enum qcafrm_state)(len + 1);
-                       /* Remaining number of bytes. */
-                       handle->offset = 0;
-               }
-               break;
-       default:
-               /* Receiving Ethernet frame itself. */
-               buf[handle->offset] = recv_byte;
-               handle->offset++;
-               handle->state--;
-               break;
-       case QCAFRM_WAIT_551:
-               if (recv_byte != 0x55) {
-                       ret = QCAFRM_NOTAIL;
-                       handle->state = QCAFRM_HW_LEN0;
-               } else {
-                       handle->state = QCAFRM_WAIT_552;
-               }
-               break;
-       case QCAFRM_WAIT_552:
-               if (recv_byte != 0x55) {
-                       ret = QCAFRM_NOTAIL;
-                       handle->state = QCAFRM_HW_LEN0;
-               } else {
-                       ret = handle->offset;
-                       /* Frame is fully received. */
-                       handle->state = QCAFRM_HW_LEN0;
-               }
-               break;
-       }
-
-       return ret;
-}
diff --git a/drivers/net/ethernet/qualcomm/qca_framing.h b/drivers/net/ethernet/qualcomm/qca_framing.h
deleted file mode 100644 (file)
index 5df7c65..0000000
+++ /dev/null
@@ -1,134 +0,0 @@
-/*
- *   Copyright (c) 2011, 2012, Atheros Communications Inc.
- *   Copyright (c) 2014, I2SE GmbH
- *
- *   Permission to use, copy, modify, and/or distribute this software
- *   for any purpose with or without fee is hereby granted, provided
- *   that the above copyright notice and this permission notice appear
- *   in all copies.
- *
- *   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- *   WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- *   WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
- *   THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
- *   CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- *   LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
- *   NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
- *   CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
-/*   Atheros Ethernet framing. Every Ethernet frame is surrounded by an atheros
- *   frame while transmitted over a serial channel.
- */
-
-#ifndef _QCA_FRAMING_H
-#define _QCA_FRAMING_H
-
-#include <linux/if_ether.h>
-#include <linux/if_vlan.h>
-#include <linux/types.h>
-
-/* Frame is currently being received */
-#define QCAFRM_GATHER 0
-
-/*  No header byte while expecting it */
-#define QCAFRM_NOHEAD (QCAFRM_ERR_BASE - 1)
-
-/* No tailer byte while expecting it */
-#define QCAFRM_NOTAIL (QCAFRM_ERR_BASE - 2)
-
-/* Frame length is invalid */
-#define QCAFRM_INVLEN (QCAFRM_ERR_BASE - 3)
-
-/* Frame length is invalid */
-#define QCAFRM_INVFRAME (QCAFRM_ERR_BASE - 4)
-
-/* Min/Max Ethernet MTU: 46/1500 */
-#define QCAFRM_MIN_MTU (ETH_ZLEN - ETH_HLEN)
-#define QCAFRM_MAX_MTU ETH_DATA_LEN
-
-/* Min/Max frame lengths */
-#define QCAFRM_MIN_LEN (QCAFRM_MIN_MTU + ETH_HLEN)
-#define QCAFRM_MAX_LEN (QCAFRM_MAX_MTU + VLAN_ETH_HLEN)
-
-/* QCA7K header len */
-#define QCAFRM_HEADER_LEN 8
-
-/* QCA7K footer len */
-#define QCAFRM_FOOTER_LEN 2
-
-/* QCA7K Framing. */
-#define QCAFRM_ERR_BASE -1000
-
-enum qcafrm_state {
-       QCAFRM_HW_LEN0 = 0x8000,
-       QCAFRM_HW_LEN1 = QCAFRM_HW_LEN0 - 1,
-       QCAFRM_HW_LEN2 = QCAFRM_HW_LEN1 - 1,
-       QCAFRM_HW_LEN3 = QCAFRM_HW_LEN2 - 1,
-
-       /*  Waiting first 0xAA of header */
-       QCAFRM_WAIT_AA1 = QCAFRM_HW_LEN3 - 1,
-
-       /*  Waiting second 0xAA of header */
-       QCAFRM_WAIT_AA2 = QCAFRM_WAIT_AA1 - 1,
-
-       /*  Waiting third 0xAA of header */
-       QCAFRM_WAIT_AA3 = QCAFRM_WAIT_AA2 - 1,
-
-       /*  Waiting fourth 0xAA of header */
-       QCAFRM_WAIT_AA4 = QCAFRM_WAIT_AA3 - 1,
-
-       /*  Waiting Byte 0-1 of length (litte endian) */
-       QCAFRM_WAIT_LEN_BYTE0 = QCAFRM_WAIT_AA4 - 1,
-       QCAFRM_WAIT_LEN_BYTE1 = QCAFRM_WAIT_AA4 - 2,
-
-       /* Reserved bytes */
-       QCAFRM_WAIT_RSVD_BYTE1 = QCAFRM_WAIT_AA4 - 3,
-       QCAFRM_WAIT_RSVD_BYTE2 = QCAFRM_WAIT_AA4 - 4,
-
-       /*  The frame length is used as the state until
-        *  the end of the Ethernet frame
-        *  Waiting for first 0x55 of footer
-        */
-       QCAFRM_WAIT_551 = 1,
-
-       /*  Waiting for second 0x55 of footer */
-       QCAFRM_WAIT_552 = QCAFRM_WAIT_551 - 1
-};
-
-/*   Structure to maintain the frame decoding during reception. */
-
-struct qcafrm_handle {
-       /*  Current decoding state */
-       enum qcafrm_state state;
-
-       /* Offset in buffer (borrowed for length too) */
-       u16 offset;
-
-       /* Frame length as kept by this module */
-       u16 len;
-};
-
-u16 qcafrm_create_header(u8 *buf, u16 len);
-
-u16 qcafrm_create_footer(u8 *buf);
-
-static inline void qcafrm_fsm_init(struct qcafrm_handle *handle)
-{
-       handle->state = QCAFRM_HW_LEN0;
-}
-
-/*   Gather received bytes and try to extract a full Ethernet frame
- *   by following a simple state machine.
- *
- * Return:   QCAFRM_GATHER       No Ethernet frame fully received yet.
- *           QCAFRM_NOHEAD       Header expected but not found.
- *           QCAFRM_INVLEN       QCA7K frame length is invalid
- *           QCAFRM_NOTAIL       Footer expected but not found.
- *           > 0                 Number of byte in the fully received
- *                               Ethernet frame
- */
-
-s32 qcafrm_fsm_decode(struct qcafrm_handle *handle, u8 *buf, u16 buf_len, u8 recv_byte);
-
-#endif /* _QCA_FRAMING_H */
index ee90af31bd65facde4fd6bb80202e9122254f4b0..43cc7de0b39587636097d9b6583f5ead9d6f52f9 100644 (file)
@@ -43,8 +43,8 @@
 #include <linux/types.h>
 
 #include "qca_7k.h"
+#include "qca_7k_common.h"
 #include "qca_debug.h"
-#include "qca_framing.h"
 #include "qca_spi.h"
 
 #define MAX_DMA_BURST_LEN 5000
index 064853ddd678703398705c702307f4bafa920a1a..fc4beb1b32d1a070a101b3c48cc092bd14561150 100644 (file)
@@ -32,7 +32,7 @@
 #include <linux/spi/spi.h>
 #include <linux/types.h>
 
-#include "qca_framing.h"
+#include "qca_7k_common.h"
 
 #define QCASPI_DRV_VERSION "0.2.7-i"
 #define QCASPI_DRV_NAME    "qcaspi"