47 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 CA-driver for TwinHan DST Frontend/Card4 5 Copyright (C) 2004, 2005 Manu Abraham (manu@kromtek.com)6 7*/8 9#ifndef _DST_CA_H_10#define _DST_CA_H_11 12#define RETRIES 513 14 15#define CA_APP_INFO_ENQUIRY 0x9f802016#define CA_APP_INFO 0x9f802117#define CA_ENTER_MENU 0x9f802218#define CA_INFO_ENQUIRY 0x9f803019#define CA_INFO 0x9f803120#define CA_PMT 0x9f803221#define CA_PMT_REPLY 0x9f803322 23#define CA_CLOSE_MMI 0x9f880024#define CA_DISPLAY_CONTROL 0x9f880125#define CA_DISPLAY_REPLY 0x9f880226#define CA_TEXT_LAST 0x9f880327#define CA_TEXT_MORE 0x9f880428#define CA_KEYPAD_CONTROL 0x9f880529#define CA_KEYPRESS 0x9f880630 31#define CA_ENQUIRY 0x9f880732#define CA_ANSWER 0x9f880833#define CA_MENU_LAST 0x9f880934#define CA_MENU_MORE 0x9f880a35#define CA_MENU_ANSWER 0x9f880b36#define CA_LIST_LAST 0x9f880c37#define CA_LIST_MORE 0x9f880d38 39 40struct dst_ca_private {41 struct dst_state *dst;42 struct dvb_device *dvbdev;43};44 45 46#endif47