Path: blob/master/drivers/media/dvb/bt8xx/dst_ca.h
15112 views
/*1CA-driver for TwinHan DST Frontend/Card23Copyright (C) 2004, 2005 Manu Abraham ([email protected])45This program is free software; you can redistribute it and/or modify6it under the terms of the GNU General Public License as published by7the Free Software Foundation; either version 2 of the License, or8(at your option) any later version.910This program is distributed in the hope that it will be useful,11but WITHOUT ANY WARRANTY; without even the implied warranty of12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13GNU General Public License for more details.1415You should have received a copy of the GNU General Public License16along with this program; if not, write to the Free Software17Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.18*/1920#ifndef _DST_CA_H_21#define _DST_CA_H_2223#define RETRIES 5242526#define CA_APP_INFO_ENQUIRY 0x9f802027#define CA_APP_INFO 0x9f802128#define CA_ENTER_MENU 0x9f802229#define CA_INFO_ENQUIRY 0x9f803030#define CA_INFO 0x9f803131#define CA_PMT 0x9f803232#define CA_PMT_REPLY 0x9f80333334#define CA_CLOSE_MMI 0x9f880035#define CA_DISPLAY_CONTROL 0x9f880136#define CA_DISPLAY_REPLY 0x9f880237#define CA_TEXT_LAST 0x9f880338#define CA_TEXT_MORE 0x9f880439#define CA_KEYPAD_CONTROL 0x9f880540#define CA_KEYPRESS 0x9f88064142#define CA_ENQUIRY 0x9f880743#define CA_ANSWER 0x9f880844#define CA_MENU_LAST 0x9f880945#define CA_MENU_MORE 0x9f880a46#define CA_MENU_ANSWER 0x9f880b47#define CA_LIST_LAST 0x9f880c48#define CA_LIST_MORE 0x9f880d495051struct dst_ca_private {52struct dst_state *dst;53struct dvb_device *dvbdev;54};555657#endif585960