blob: 28f1c4233154bf625a940a71103d6f42cb0c2615 [file] [log] [blame]
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +02001/**
2 * ipoctal.h
3 *
4 * driver for the IPOCTAL boards
Samuel Iglesias Gonsalvez76859722012-11-16 16:19:58 +01005
6 * Copyright (C) 2009-2012 CERN (www.cern.ch)
7 * Author: Nicolas Serafini, EIC2 SA
8 * Author: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +02009 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
Samuel Iglesias Gonsalvez32254362012-05-11 10:17:15 +020012 * Software Foundation; version 2 of the License.
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020013 */
14
15#ifndef _IPOCTAL_H
16#define _IPOCTAL_H_
17
18#define NR_CHANNELS 8
19#define IPOCTAL_MAX_BOARDS 16
20#define MAX_DEVICES (NR_CHANNELS * IPOCTAL_MAX_BOARDS)
21#define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
22
23/**
Samuel Iglesias Gonsalvezba4dc612012-05-09 15:27:21 +020024 * struct ipoctal_stats -- Stats since last reset
25 *
26 * @tx: Number of transmitted bytes
27 * @rx: Number of received bytes
28 * @overrun: Number of overrun errors
29 * @parity_err: Number of parity errors
30 * @framing_err: Number of framing errors
31 * @rcv_break: Number of break received
32 */
33struct ipoctal_stats {
34 unsigned long tx;
35 unsigned long rx;
36 unsigned long overrun_err;
37 unsigned long parity_err;
38 unsigned long framing_err;
39 unsigned long rcv_break;
40};
41
42#endif /* _IPOCTAL_H_ */