2019-05-27 13:55:06 +07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2009-09-13 21:30:11 +07:00
|
|
|
/*
|
|
|
|
* Driver for the Conexant CX25821 PCIe bridge
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Conexant Systems Inc.
|
|
|
|
* Authors <shu.lin@conexant.com>, <hiep.huynh@conexant.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MEDUSA_DEF_H_
|
2009-09-15 21:33:54 +07:00
|
|
|
#define _MEDUSA_DEF_H_
|
2009-09-13 21:30:11 +07:00
|
|
|
|
2011-10-22 11:43:35 +07:00
|
|
|
/* Video decoder that we supported */
|
2009-09-13 21:30:11 +07:00
|
|
|
#define VDEC_A 0
|
|
|
|
#define VDEC_B 1
|
|
|
|
#define VDEC_C 2
|
|
|
|
#define VDEC_D 3
|
|
|
|
#define VDEC_E 4
|
|
|
|
#define VDEC_F 5
|
|
|
|
#define VDEC_G 6
|
|
|
|
#define VDEC_H 7
|
|
|
|
|
2010-07-05 00:15:38 +07:00
|
|
|
/* end of display sequence */
|
2011-10-22 11:43:36 +07:00
|
|
|
#define END_OF_SEQ 0xF;
|
2009-09-13 21:30:11 +07:00
|
|
|
|
2010-07-05 00:15:38 +07:00
|
|
|
/* registry string size */
|
2011-10-22 11:43:36 +07:00
|
|
|
#define MAX_REGISTRY_SZ 40;
|
2009-09-13 21:30:11 +07:00
|
|
|
|
2009-09-15 21:33:54 +07:00
|
|
|
#endif
|