summaryrefslogtreecommitdiff
path: root/sys/linsys/include/master.h
blob: 1d005c668a3481204bfef0d6566edfbdedf8c643 (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* master.h
 *
 * Global definitions for Linear Systems Ltd.
 * digital television-related boards.
 *
 * Copyright (C) 2004-2009 Linear Systems Ltd.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *   1. Redistributions of source code must retain the above copyright notice,
 *      this list of conditions and the following disclaimer.
 *
 *   2. Redistributions in binary form must reproduce the above copyright
 *      notice, this list of conditions and the following disclaimer in the
 *      documentation and/or other materials provided with the distribution.
 *
 *   3. Neither the name of Linear Systems Ltd. nor the names of its
 *      contributors may be used to endorse or promote products derived from
 *      this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY LINEAR SYSTEMS LTD. "AS IS" AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL LINEAR SYSTEMS LTD. OR CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * Linear Systems can be contacted at <http://www.linsys.ca/>.
 *
 */

#ifndef _MASTER_H
#define _MASTER_H

#define MASTER_DRIVER_VERSION "2.7.0"
#define MASTER_DRIVER_VERSION_CODE 0x020700
#define MASTER_DRIVER_DATE "2010-01-11"

#define MASTER_PCI_VENDOR_ID_LINSYS 0x1254

/* Device capabilities */
#define MASTER_CAP_BYPASS	0x00000001
#define MASTER_CAP_WATCHDOG	0x00000002
#define MASTER_CAP_GPI		0x00000004
#define MASTER_CAP_GPO		0x00000008
#define MASTER_CAP_UID		0x00000010
#define MASTER_CAP_BLACKBURST	0x00000020

/* Bypass mode settings */
#define MASTER_CTL_BYPASS_ENABLE	0
#define MASTER_CTL_BYPASS_DISABLE	1
#define MASTER_CTL_BYPASS_WATCHDOG	2

/* Black burst type settings */
#define MASTER_CTL_BLACKBURST_NTSC	0
#define MASTER_CTL_BLACKBURST_PAL	1

/* Maximum watchdog timeout in milliseconds.
 * Limited to 32 bits at 40 MHz or 27 MHz */
#define MASTER_WATCHDOG_MAX	100000

#endif