serial.h 4.99 KB
Newer Older
1 2 3
/* serial.h - serial device interface */
/*
 *  GRUB  --  GRand Unified Bootloader
4
 *  Copyright (C) 2010  Free Software Foundation, Inc.
5
 *
6
 *  GRUB is free software: you can redistribute it and/or modify
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation, either version 3 of the License, or
9 10
 *  (at your option) any later version.
 *
11
 *  GRUB is distributed in the hope that it will be useful,
12 13 14 15 16
 *  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
17
 *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
18 19
 */

phcoder's avatar
phcoder committed
20 21
#ifndef GRUB_SERIAL_HEADER
#define GRUB_SERIAL_HEADER	1
22

23
#include <grub/types.h>
24
#if defined(__mips__) || defined (__i386__) || defined (__x86_64__)
25
#include <grub/cpu/io.h>
26
#endif
27 28
#include <grub/usb.h>
#include <grub/list.h>
29
#include <grub/term.h>
30 31 32
#ifdef GRUB_MACHINE_IEEE1275
#include <grub/ieee1275/ieee1275.h>
#endif
33 34 35
#ifdef GRUB_MACHINE_ARC
#include <grub/arc/arc.h>
#endif
36

37
struct grub_serial_port;
38
struct grub_serial_config;
39

40 41 42
struct grub_serial_driver
{
  grub_err_t (*configure) (struct grub_serial_port *port,
43
			   struct grub_serial_config *config);
44 45
  int (*fetch) (struct grub_serial_port *port);
  void (*put) (struct grub_serial_port *port, const int c);
46
  void (*fini) (struct grub_serial_port *port);
47
};
48

49 50 51 52 53 54 55 56 57 58 59
/* The type of parity.  */
typedef enum
  {
    GRUB_SERIAL_PARITY_NONE,
    GRUB_SERIAL_PARITY_ODD,
    GRUB_SERIAL_PARITY_EVEN,
  } grub_serial_parity_t;

typedef enum
  {
    GRUB_SERIAL_STOP_BITS_1,
60
    GRUB_SERIAL_STOP_BITS_1_5,
61 62 63
    GRUB_SERIAL_STOP_BITS_2,
  } grub_serial_stop_bits_t;

64
struct grub_serial_config
65 66
{
  unsigned speed;
67
  int word_len;
68 69
  grub_serial_parity_t parity;
  grub_serial_stop_bits_t stop_bits;
70
  grub_uint64_t base_clock;
71
  int rtscts;
72 73 74 75 76
};

struct grub_serial_port
{
  struct grub_serial_port *next;
77
  struct grub_serial_port **prev;
78
  char *name;
79
  struct grub_serial_driver *driver;
80
  struct grub_serial_config config;
81
  int configured;
82 83
  int broken;

84 85 86 87 88
  /* This should be void *data but since serial is useful as an early console
     when malloc isn't available it's a union.
   */
  union
  {
89 90 91
#if defined(__mips__) || defined (__i386__) || defined (__x86_64__)
    grub_port_t port;
#endif
92 93
    struct
    {
94
      grub_usb_device_t usbdev;
95 96
      int configno;
      int interfno;
97 98
      char buf[64];
      int bufstart, bufend;
99 100
      struct grub_usb_desc_endp *in_endp;
      struct grub_usb_desc_endp *out_endp;
101
    };
102
    struct grub_escc_descriptor *escc_desc;
103 104 105 106 107 108 109 110 111
#ifdef GRUB_MACHINE_IEEE1275
    struct
    {
      grub_ieee1275_ihandle_t handle;
      struct ofserial_hash_ent *elem;
    };
#endif
#ifdef GRUB_MACHINE_EFI
    struct grub_efi_serial_io_interface *interface;
112 113 114 115 116 117 118
#endif
#ifdef GRUB_MACHINE_ARC
    struct
    {
      grub_arc_fileno_t handle;
      int handle_valid;
    };
119
#endif
120
  };
121 122
  grub_term_output_t term_out;
  grub_term_input_t term_in;
123 124
};

125
grub_err_t EXPORT_FUNC(grub_serial_register) (struct grub_serial_port *port);
126

127
void EXPORT_FUNC(grub_serial_unregister) (struct grub_serial_port *port);
128

129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
  /* Convenience functions to perform primitive operations on a port.  */
static inline grub_err_t
grub_serial_port_configure (struct grub_serial_port *port,
			    struct grub_serial_config *config)
{
  return port->driver->configure (port, config);
}

static inline int
grub_serial_port_fetch (struct grub_serial_port *port)
{
  return port->driver->fetch (port);
}

static inline void
grub_serial_port_put (struct grub_serial_port *port, const int c)
{
  port->driver->put (port, c);
}

static inline void
grub_serial_port_fini (struct grub_serial_port *port)
{
  port->driver->fini (port);
}

155
  /* Set default settings.  */
156 157 158
static inline grub_err_t
grub_serial_config_defaults (struct grub_serial_port *port)
{
159 160
  struct grub_serial_config config =
    {
161
#ifdef GRUB_MACHINE_MIPS_LOONGSON
162
      .speed = 115200,
163 164
      /* On Loongson machines serial port has only 3 wires.  */
      .rtscts = 0,
165
#else
166
      .speed = 9600,
167
      .rtscts = 1,
168
#endif
169
      .word_len = 8,
170
      .parity = GRUB_SERIAL_PARITY_NONE,
171 172
      .stop_bits = GRUB_SERIAL_STOP_BITS_1,
      .base_clock = 0
173 174 175
    };

  return port->driver->configure (port, &config);
176
}
177

178
#if defined(__mips__) || defined (__i386__) || defined (__x86_64__)
179 180
void grub_ns8250_init (void);
char *grub_serial_ns8250_add_port (grub_port_t port);
181 182 183 184 185 186 187 188
#endif
#ifdef GRUB_MACHINE_IEEE1275
void grub_ofserial_init (void);
#endif
#ifdef GRUB_MACHINE_EFI
void
grub_efiserial_init (void);
#endif
189 190 191 192 193 194
#ifdef GRUB_MACHINE_ARC
void
grub_arcserial_init (void);
const char *
grub_arcserial_add_port (const char *path);
#endif
195

196
struct grub_serial_port *grub_serial_find (const char *name);
197
extern struct grub_serial_driver grub_ns8250_driver;
198
void EXPORT_FUNC(grub_serial_unregister_driver) (struct grub_serial_driver *driver);
199

200 201 202 203 204
#ifndef GRUB_MACHINE_EMU
extern void grub_serial_init (void);
extern void grub_serial_fini (void);
#endif

205
#endif