From: J Freyensee <[email protected]>

This gives the ability to capture modem trace data on multiple MID
platforms that do not necessarily have PTI HW on the platform.
It allows the ability to route modem trace data from one tty
(where the modem trace debug data is coming) to another tty
(output port) for later analysis in lab or on a product in the field.
Since these are line discipline drivers, it relies on a userspace
application to configure the drivers to the desired tty ports.

Signed-off-by: J Freyensee <[email protected]>
---
 drivers/char/Kconfig         |   36 +++++--
 drivers/char/Makefile        |    1 +
 drivers/char/n_tracerouter.c |  176 ++++++++++++++++++++++++++--
 drivers/char/n_tracesink.c   |  261 ++++++++++++++++++++++++++++++++++++++++++
 include/linux/pti.h          |    5 +-
 include/linux/tty.h          |    2 +-
 6 files changed, 458 insertions(+), 23 deletions(-)
 create mode 100644 drivers/char/n_tracesink.c

diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig
index 52344ce..526b517 100644
--- a/drivers/char/Kconfig
+++ b/drivers/char/Kconfig
@@ -112,16 +112,34 @@ config BFIN_JTAG_COMM_CONSOLE
 
 config TRACE_ROUTER
         tristate "Trace data router for MIPI P1149.7 cJTAG standard"
-        depends on INTEL_MID_PTI
+
+        ---help---
+          The trace router uses the Linux tty line discipline framework to 
route
+          trace data coming from a HW Modem to a PTI (Parallel Trace Inferface)
+          port. This is part of a solution for the MIPI P1149.7, compact JTAG,
+          standard, which is for debugging mobile devices.  A PTI
+          driver is also needed for this solution.
+
+          You should select this driver if the target kernel is meant for
+          a mobile device containing a modem.  Then you will need to select
+          "Trace data sink for MIPI P1149.7 cJTAG standard" line discipline
+          driver and/or "Parallel Trace Interface for MIPI P1149.7 cJTAG 
standard"
+          HW driver implementation.
+
+config TRACE_SINK
+        tristate "Trace data sink for MIPI P1149.7 cJTAG standard"
+
         ---help---
-         The trace router uses the Linux tty line discipline framework to route
-         trace data coming from a HW Modem to a PTI (Parallel Trace Inferface)
-         port. This is part of a solution for the MIPI P1149.7, compact JTAG,
-         standard, which is for debugging mobile devices.  A PTI
-         driver is also needed for this solution.
-
-         You should select this driver if the target kernel is meant for
-         a mobile device containing a MIPI P1149.7 standard implementation.
+          The trace sink uses the Linux line discipline framework to receive
+          trace data coming from the trace router line discipline driver
+          to a user-defined tty port target, like USB.
+          This is to provide a way to extract modem trace data on
+          devices that do not have a PTI HW module, or just need modem
+          trace data to come out of a different HW output port.
+          This is part of a solution for the P1149.7, compact JTAG, standard.
+
+          If you select this option, you need to select
+          "Trace data router for MIPI P1149.7 cJTAG standard".
 
 config SERIAL_NONSTANDARD
        bool "Non-standard serial port support"
diff --git a/drivers/char/Makefile b/drivers/char/Makefile
index 734eddb..f294b06 100644
--- a/drivers/char/Makefile
+++ b/drivers/char/Makefile
@@ -15,6 +15,7 @@ obj-y                         += misc.o
 obj-$(CONFIG_VT)               += vt_ioctl.o vc_screen.o selection.o keyboard.o
 obj-$(CONFIG_BFIN_JTAG_COMM)   += bfin_jtag_comm.o
 obj-$(CONFIG_TRACE_ROUTER)     += n_tracerouter.o
+obj-$(CONFIG_TRACE_SINK)        += n_tracesink.o
 obj-$(CONFIG_CONSOLE_TRANSLATIONS) += consolemap.o consolemap_deftbl.o
 obj-$(CONFIG_HW_CONSOLE)       += vt.o defkeymap.o
 obj-$(CONFIG_AUDIT)            += tty_audit.o
diff --git a/drivers/char/n_tracerouter.c b/drivers/char/n_tracerouter.c
index 30f3d8c..8e65c21 100644
--- a/drivers/char/n_tracerouter.c
+++ b/drivers/char/n_tracerouter.c
@@ -38,7 +38,7 @@
 #include <linux/tty_ldisc.h>
 #include <linux/errno.h>
 #include <linux/string.h>
-#include <linux/signal.h>
+#include <linux/mutex.h>
 #include <linux/slab.h>
 #include <asm-generic/bug.h>
 #include <linux/pti.h>
@@ -51,19 +51,82 @@
 #define RECEIVE_ROOM   65536
 #define DRIVERNAME     "n_tracerouter"
 
+/* FIXME: ioctl stuff to specifically set PTI HW; it's being assumed
+ * the default and more common extraction case is to route
+ * data to an output port like USB.  This feature is needed
+ * now to meet requests; however, once a modification is made in the
+ * PTI driver this can be removed.  This work has been scheduled.
+ */
+#define PTIHW_SETCONF  _IOW('J', 0, int)
+
+/* struct to hold private configuration data for this ldisc.
+ * routedata() used to hold the function to call to route the data.
+ * routedata_ptihw is used as switch a user app tells the ldisc where
+ * to route.
+ */
+struct tracerouter_data {
+       void (*routedata)(struct masterchannel *mc, u8 *cp, int count);
+       u8 routedata_ptihw;
+       struct tty_struct *kref_tty;
+};
+
+/* lock for ioctl() setting of tracerouter_data values */
+static DEFINE_MUTEX(routelock);
+
+/**
+ * tracerouter_alloc
+ *
+ * Allocates the structure needed for this ldisc.
+ */
+struct tracerouter_data *tracerouter_alloc(void)
+{
+       struct tracerouter_data *tptr = kzalloc(
+                                       sizeof(struct tracerouter_data),
+                                       GFP_KERNEL);
+       if (tptr == NULL)
+               return NULL;
+
+       /* default to shifting data out to the USB and specifically configure
+        * it to shift out to PTI.  This is because it will probably be possible
+        * in the field to shift out data to USB, but the PTI HW may not be
+        * available 'in the field'.
+        */
+       tptr->routedata         = mipi_pti_sinkdata;
+       tptr->routedata_ptihw   = 0;
+       return tptr;
+}
+
 /**
  * n_tracerouter_open() - Called when a tty is opened by a SW entity.
  * @tty: terminal device to the ldisc.
  *
  * Return:
- *     0 for success.
+ *      0 for success.
+ *
+ * Caveats: This should only be opened one time per SW entity.
  */
-
 static int n_tracerouter_open(struct tty_struct *tty)
 {
-       tty->receive_room = RECEIVE_ROOM;
-       tty_driver_flush_buffer(tty);
-       return 0;
+       struct tracerouter_data *tptr;
+
+       pr_debug("%s(%s): called.\n", __FILE__, __func__);
+
+       if (tty->disc_data == NULL) {
+
+               tptr = tracerouter_alloc();
+               if (tptr == NULL)
+                       return -ENOMEM;
+
+               tptr->kref_tty = tty_kref_get(tty);
+               if (tptr->kref_tty == NULL)
+                       return -EFAULT;
+
+               tty->disc_data    = tptr;
+               tty->receive_room = RECEIVE_ROOM;
+               tty_driver_flush_buffer(tty);
+               return 0;
+       } else
+               return -EEXIST;
 }
 
 /**
@@ -74,7 +137,14 @@ static int n_tracerouter_open(struct tty_struct *tty)
  */
 static void n_tracerouter_close(struct tty_struct *tty)
 {
-       tty_driver_flush_buffer(tty);
+       struct tracerouter_data *tptr = tty->disc_data;
+       if (tptr != NULL) {
+               tty_driver_flush_buffer(tty);
+               tty_kref_put(tptr->kref_tty);
+               tptr->kref_tty = NULL;
+               kfree(tptr);
+               tty->disc_data = NULL;
+       }
 }
 
 /**
@@ -94,8 +164,8 @@ static void n_tracerouter_close(struct tty_struct *tty)
  * Return:
  *      -EINVAL
  */
-ssize_t n_tracerouter_read(struct tty_struct *tty, struct file *file,
-                            unsigned char *buf, size_t nr) {
+static ssize_t n_tracerouter_read(struct tty_struct *tty, struct file *file,
+                                 unsigned char *buf, size_t nr) {
        return -EINVAL;
 }
 
@@ -118,12 +188,79 @@ ssize_t n_tracerouter_read(struct tty_struct *tty, struct 
file *file,
  * Return:
  *     -EINVAL
  */
-ssize_t n_tracerouter_write(struct tty_struct *tty, struct file *file,
-                             const unsigned char *buf, size_t nr) {
+static ssize_t n_tracerouter_write(struct tty_struct *tty, struct file *file,
+                                  const unsigned char *buf, size_t nr) {
        return -EINVAL;
 }
 
 /**
+ * n_tracerouter_ioctl() - Defined for custom behavior for the
+ * PTI trace router.
+ *
+ * @tty: the tty device the ldisc sits on top of.
+ * @file: File descriptor
+ * @cmd: The defined ioctl.  The custom ioctl defined is
+ *     PTIHW_SETCONF, which sets if trace data should go
+ *     to the PTI HW that is on the system.
+ * @arg: A pointer to the thing in userspace.  If it's 0, the
+ *     router will route tot he n_ptisink driver.  Otherwise, it
+ *     will send the data to the PTI modem.
+ *
+ * Return:
+ *      0 for success, anything else error
+ *
+ * Caveats:
+ *      This function winds up being a NOP when the PTI device
+ *      driver, misc/pti.c is not compiled with the kernel.
+ */
+static int n_tracerouter_ioctl(struct tty_struct *tty, struct file *file,
+                              unsigned int cmd, unsigned long arg)
+{
+       int retval = 0;
+       struct tracerouter_data *tptr = tty->disc_data;
+
+       pr_debug("%s(%s): called\n", __FILE__, __func__);
+
+       switch (cmd) {
+       case PTIHW_SETCONF:
+
+               mutex_lock(&routelock);
+
+               /* user can pass whatever value they want;
+                * we just care if it's 0 or not.  See function header.
+                */
+               if (copy_from_user(&(tptr->routedata_ptihw), (void *) arg,
+                                  sizeof(tptr->routedata_ptihw)))
+                       retval = -EFAULT;
+
+               if (tptr->routedata_ptihw == 0)
+                       tptr->routedata = mipi_pti_sinkdata;
+
+               /* in case someone does not configure misc/pti.c
+                * into the kernel build (like the build is
+                * targeted for a HW solution without PTI HW),
+                * this will prevent an
+                * 'undefined reference' warning. For this
+                * system, it is perfectly acceptable for a kernel
+                * user to not configure the PTI HW into the
+                * kernel because it may not be on the HW platform, but
+                * to use this trace router and the trace sink
+                * for a given system's trace route needs.
+                */
+#ifdef CONFIG_INTEL_MID_PTI
+               else
+                       tptr->routedata = mipi_pti_writedata;
+#endif
+               mutex_unlock(&routelock);
+               return retval;
+
+       default:
+               retval = n_tty_ioctl_helper(tty, file, cmd, arg);
+               return retval;
+       }
+}
+
+/**
  * n_tracerouter_receivebuf() - Routing function for driver.
  * @tty: terminal device passed into the ldisc.  It's assumed
  *       tty will never be NULL.
@@ -139,10 +276,14 @@ static void n_tracerouter_receivebuf(struct tty_struct 
*tty,
                                        const unsigned char *cp,
                                        char *fp, int count)
 {
+       struct tracerouter_data *tptr = tty->disc_data;
+
        /* 71 is the master ID for modem messages */
        /* Only channel 0 for now */
        static struct masterchannel mc = {.master = 71, .channel = 0 };
-       mipi_pti_writedata((void *) &mc, (u8 *)cp, count);
+
+       pr_debug("%s(%s): calling routedata()\n", __FILE__, __func__);
+       tptr->routedata((void *) &mc, (u8 *)cp, count);
 }
 
 /* Flush buffer is not impelemented as the ldisc has no internal buffering
@@ -157,6 +298,7 @@ static struct tty_ldisc_ops tty_n_tracerouter = {
        .close          = n_tracerouter_close,
        .read           = n_tracerouter_read,
        .write          = n_tracerouter_write,
+       .ioctl          = n_tracerouter_ioctl,
        .receive_buf    = n_tracerouter_receivebuf
 };
 
@@ -172,11 +314,14 @@ static int __init n_tracerouter_init(void)
 {
        int retval;
 
+       pr_debug("%s(%s): called.\n", __FILE__, __func__);
+
        /* Note N_TRACEROUTER is defined in linux/tty.h */
        retval = tty_register_ldisc(N_TRACEROUTER, &tty_n_tracerouter);
        if (retval < 0)
                pr_err("%s: Registration failed: %d\n",
                                        __func__, retval);
+
        return retval;
 }
 
@@ -189,6 +334,13 @@ static void __exit n_tracerouter_exit(void)
 {
        int retval;
 
+       /* If some thead is hanging onto the alloclock, force it to release
+        * it because we are shutting down.
+        */
+       if (mutex_is_locked(&routelock) == 1)
+               mutex_unlock(&routelock);
+       mutex_destroy(&routelock);
+
        retval = tty_unregister_ldisc(N_TRACEROUTER);
        if (retval < 0)
                pr_err("%s: Unregistration failed: %d\n",
diff --git a/drivers/char/n_tracesink.c b/drivers/char/n_tracesink.c
new file mode 100644
index 0000000..887c8f3
--- /dev/null
+++ b/drivers/char/n_tracesink.c
@@ -0,0 +1,261 @@
+/*
+ *  n_tracesink.c - PTI data router for JTAG data extration
+ *
+ *  Copyright (C) Intel 2010
+ *
+ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License version 2
+ *  as published by the Free Software Foundation.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ *  02110-1301, USA
+ *
+ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ *
+ * The trace sink uses the Linux line discipline framework to receive
+ * trace data coming from the PTI source line discipline driver
+ * to a user-desired tty port, like USB.
+ * This is to provide a way to extract modem trace data on
+ * devices that do not have a PTI HW module, or just need modem
+ * trace data to come out of a different HW output port.
+ * This is part of a solution for the P1149.7, compact JTAG, standard.
+ *
+ */
+
+#include <linux/init.h>
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/types.h>
+#include <linux/ioctl.h>
+#include <linux/tty.h>
+#include <linux/tty_ldisc.h>
+#include <linux/errno.h>
+#include <linux/string.h>
+#include <asm-generic/bug.h>
+#include <linux/pti.h>
+
+/* Other ldisc drivers use 65536 which basically means,
+ * 'I can always accept 64k' and flow control is off.
+ * This number is deemed appropriate for this driver.
+ */
+#define RECEIVE_ROOM   65536
+#define DRIVERNAME     "n_tracesink"
+
+/* there is a quirk with this ldisc is he can write data
+ * to a tty from anyone calling his kernel API, to keep
+ * it along the same theme with drivers/misc/pti.c
+ * whose requirements were defined by customers. So he
+ * needs to know when he can and cannot write when the
+ * API is called. In theory, the API can be called
+ * after an init() but before a successful open() which
+ * would crash the system if tty is not checked.
+ */
+static struct tty_struct *this_tty;
+static DEFINE_MUTEX(writelock);
+
+/**
+ * n_tracesink_open() - Called when a tty is opened by a SW entity.
+ * @tty: terminal device to the ldisc.
+ *
+ * Return:
+ *      0 for success.
+ *
+ * Caveats: open() should only be successful the first time a
+ * SW entity calls it.
+ */
+static int n_tracesink_open(struct tty_struct *tty)
+{
+
+       pr_debug("%s(%s): called.\n", __FILE__, __func__);
+
+       if (tty->disc_data == NULL) {
+
+               this_tty = tty_kref_get(tty);
+
+               /* if this_tty winds up NULL, then
+                * it's okay to call open() again per tty.
+                * Otherwise, assigning to disc_data is just
+                * a way to track if for a given tty open() is
+                * called succesfully the first time.
+                */
+               tty->disc_data = this_tty;
+               tty_driver_flush_buffer(tty);
+               return 0;
+       } else
+               return -EEXIST;
+}
+
+/**
+ * n_tracesink_close() - close connection
+ * @tty: terminal device to the ldisc.
+ *
+ * Called when a software entity wants to close a connection.
+ */
+static void n_tracesink_close(struct tty_struct *tty)
+{
+       pr_debug("%s(%s): called\n", __FILE__, __func__);
+
+       tty_driver_flush_buffer(tty);
+       tty_kref_put(this_tty);
+       this_tty = NULL;
+       tty->disc_data = NULL;
+}
+
+/**
+ * n_tracesink_read() - read request from user space
+ * @tty:  terminal device passed into the ldisc.
+ * @file: pointer to open file object.
+ * @buf:  pointer to the data buffer that gets eventually returned.
+ * @nr:   number of bytes of the data buffer that is returned.
+ *
+ * function that allows read() functionality in userspace. By default if this
+ * is not implemented it returns -EIO. This module is functioning like a
+ * router via n_tracesink_receivebuf(), and there is no real requirement
+ * to implement this function. However, an error return value other than
+ * -EIO should be used just to show that there was an intent not to have
+ * this function implemented.  Return value based on read() man pages.
+ *
+ * Return:
+ *      -EINVAL
+ */
+static ssize_t n_tracesink_read(struct tty_struct *tty, struct file *file,
+                               unsigned char *buf, size_t nr) {
+       return -EINVAL;
+}
+
+/**
+ * n_tracesink_write() - Function that allows write() in userspace.
+ * @tty:  terminal device passed into the ldisc.
+ * @file: pointer to open file object.
+ * @buf:  pointer to the data buffer that gets eventually returned.
+ * @nr:   number of bytes of the data buffer that is returned.
+ *
+ * By default if this is not implemented, it returns -EIO.
+ * This should not be implemented, ever, because
+ * 1. this driver is functioning like a router via
+ *    n_tracesink_receivebuf()
+ * 2. No writes to HW will ever go through this line discpline driver.
+ * However, an error return value other than -EIO should be used
+ * just to show that there was an intent not to have this function
+ * implemented.  Return value based on write() man pages.
+ *
+ * Return:
+ *     -EINVAL
+ */
+static ssize_t n_tracesink_write(struct tty_struct *tty, struct file *file,
+                                const unsigned char *buf, size_t nr) {
+       return -EINVAL;
+}
+
+/**
+ *  mipi_pti_sinkdata() - Kernel API function used to route
+ *                       trace debugging data to user-defined
+ *                       port like USB.
+ *
+ * @mc:    Not used.  Null can be passed. Needed to keep
+ *         conformance with mipi_pti_writedata().
+ * @buf:   Trace debuging data to write to the PTI HW.
+ *         Null value will return with no write occurring.
+ * @count: Size of buf. Value of 0 or a negative number will
+ *         return with no write occuring.
+ *
+ * Caveat: If this line discipline does not set the tty it sits
+ * on top of via an open() call, this API function will not
+ * call the tty's write() call because it will have no pointer
+ * to call the write().
+ */
+void mipi_pti_sinkdata(struct masterchannel *mc, u8 *cp, int count)
+{
+       pr_debug("%s(%s): called\n", __FILE__, __func__);
+
+       mutex_lock(&writelock);
+
+       if ((cp != NULL) && (count > 0) && (this_tty != NULL))
+               this_tty->ops->write(this_tty, cp, count);
+
+       mutex_unlock(&writelock);
+}
+EXPORT_SYMBOL(mipi_pti_sinkdata);
+
+/* Flush buffer is not impelemented as the ldisc has no internal buffering
+ * so the tty_driver_flush_buffer() is sufficient for this driver's needs.
+ */
+
+/*
+ * tty_ldisc function operations for this driver.
+ */
+static struct tty_ldisc_ops tty_n_tracesink = {
+       .owner          = THIS_MODULE,
+       .magic          = TTY_LDISC_MAGIC,
+       .name           = DRIVERNAME,
+       .open           = n_tracesink_open,
+       .close          = n_tracesink_close,
+       .read           = n_tracesink_read,
+       .write          = n_tracesink_write
+};
+
+/**
+ * n_tracesink_init-   module initialisation
+ *
+ * Registers this module as a line discipline driver.
+ *
+ * Return:
+ *     0 for success, any other value error.
+ */
+static int __init n_tracesink_init(void)
+{
+       int retval;
+
+       pr_debug("%s(%s): called\n", __FILE__, __func__);
+
+       /* Note N_TRACESINK is defined in linux/tty.h */
+       retval = tty_register_ldisc(N_TRACESINK, &tty_n_tracesink);
+       this_tty = NULL;
+
+       if (retval < 0)
+               pr_err("%s: Registration failed: %d\n",
+                                       __func__, retval);
+
+       return retval;
+}
+
+/**
+ * n_tracesink_exit -  module unload
+ *
+ * Removes this module as a line discipline driver.
+ */
+static void __exit n_tracesink_exit(void)
+{
+       int retval;
+
+       /* If some thead is hanging onto the alloclock, force it to release
+        * it because we are shutting down.
+        */
+       if (mutex_is_locked(&writelock) == 1)
+               mutex_unlock(&writelock);
+       mutex_destroy(&writelock);
+
+       this_tty = NULL;
+       retval = tty_unregister_ldisc(N_TRACESINK);
+
+       if (retval < 0)
+               pr_err("%s: Unregistration failed: %d\n",
+                                       __func__,  retval);
+}
+
+module_init(n_tracesink_init);
+module_exit(n_tracesink_exit);
+
+MODULE_LICENSE("GPL");
+MODULE_AUTHOR("Jay Freyensee");
+MODULE_ALIAS_LDISC(N_TRACESINK);
+MODULE_DESCRIPTION("Trace sink ldisc driver");
diff --git a/include/linux/pti.h b/include/linux/pti.h
index 07c73b7..4170a57 100644
--- a/include/linux/pti.h
+++ b/include/linux/pti.h
@@ -27,11 +27,14 @@ struct masterchannel {
    u8 channel;
 };
 
-
+/* the following functions are defined in misc/pti.c */
 void mipi_pti_writedata(struct masterchannel *mc, u8 *cp, int count);
 struct masterchannel *mipi_request_masterchannel(u8 kerneluser);
 void mipi_release_masterchannel(struct masterchannel *mc);
 
+/* the following function is defined in char/n_tracesink.c */
+void mipi_pti_sinkdata(struct masterchannel *mc, u8 *cp, int count);
+
 #define APERTURE_14 0x3800000
 #define APERTURE_LEN 0x400000
 
diff --git a/include/linux/tty.h b/include/linux/tty.h
index 073cb6a..417e44e 100644
--- a/include/linux/tty.h
+++ b/include/linux/tty.h
@@ -50,7 +50,7 @@
 #define N_CAIF         20      /* CAIF protocol for talking to modems */
 #define N_GSM0710      21      /* GSM 0710 Mux */
 #define N_TRACEROUTER   22      /* Trace data routing for MIPI P1149.7 */
-
+#define N_TRACESINK    23      /* Trace data routing for MIPI P1149.7 */
 #define N_IFX_SPI      29      /* Mux mode for Infineon modems */
 
 /*
-- 
1.6.6.1

_______________________________________________
Meego-kernel mailing list
[email protected]
http://lists.meego.com/listinfo/meego-kernel

Reply via email to