18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci *  Driver for the Conexant CX25821 PCIe bridge
48c2ecf20Sopenharmony_ci *
58c2ecf20Sopenharmony_ci *  Copyright (C) 2009 Conexant Systems Inc.
68c2ecf20Sopenharmony_ci *  Authors  <shu.lin@conexant.com>, <hiep.huynh@conexant.com>
78c2ecf20Sopenharmony_ci */
88c2ecf20Sopenharmony_ci
98c2ecf20Sopenharmony_ci#ifndef _MEDUSA_DEF_H_
108c2ecf20Sopenharmony_ci#define _MEDUSA_DEF_H_
118c2ecf20Sopenharmony_ci
128c2ecf20Sopenharmony_ci/* Video decoder that we supported */
138c2ecf20Sopenharmony_ci#define VDEC_A		0
148c2ecf20Sopenharmony_ci#define VDEC_B		1
158c2ecf20Sopenharmony_ci#define VDEC_C		2
168c2ecf20Sopenharmony_ci#define VDEC_D		3
178c2ecf20Sopenharmony_ci#define VDEC_E		4
188c2ecf20Sopenharmony_ci#define VDEC_F		5
198c2ecf20Sopenharmony_ci#define VDEC_G		6
208c2ecf20Sopenharmony_ci#define VDEC_H		7
218c2ecf20Sopenharmony_ci
228c2ecf20Sopenharmony_ci/* end of display sequence */
238c2ecf20Sopenharmony_ci#define END_OF_SEQ	0xF;
248c2ecf20Sopenharmony_ci
258c2ecf20Sopenharmony_ci/* registry string size */
268c2ecf20Sopenharmony_ci#define MAX_REGISTRY_SZ	40;
278c2ecf20Sopenharmony_ci
288c2ecf20Sopenharmony_ci#endif
29