Blame view

drivers/tty/n_tracesink.h 1.31 KB
ee4f6b4b8   J Freyensee   n_tracerouter and...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  /*
   *  n_tracesink.h - Kernel driver API to route trace data in kernel space.
   *
   *  Copyright (C) Intel 2011
   *
   * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   *
   *  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.
   *
   * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   *
   * The PTI (Parallel Trace Interface) driver directs trace data routed from
   * various parts in the system out through the Intel Penwell PTI port and
   * out of the mobile device for analysis with a debugging tool
   * (Lauterbach, Fido). This is part of a solution for the MIPI P1149.7,
   * compact JTAG, standard.
   *
   * This header file is used by n_tracerouter to be able to send the
   * data of it's tty port to the tty port this module sits.  This
   * mechanism can also be used independent of the PTI module.
   *
   */
  
  #ifndef N_TRACESINK_H_
  #define N_TRACESINK_H_
  
  void n_tracesink_datadrain(u8 *buf, int count);
  
  #endif