18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci *
48c2ecf20Sopenharmony_ci *  Copyright (C) 2007 Michael Krufky <mkrufky@linuxtv.org>
58c2ecf20Sopenharmony_ci */
68c2ecf20Sopenharmony_ci
78c2ecf20Sopenharmony_ci#ifndef _PVRUSB2_FX2_CMD_H_
88c2ecf20Sopenharmony_ci#define _PVRUSB2_FX2_CMD_H_
98c2ecf20Sopenharmony_ci
108c2ecf20Sopenharmony_ci#define FX2CMD_MEM_WRITE_DWORD  0x01u
118c2ecf20Sopenharmony_ci#define FX2CMD_MEM_READ_DWORD   0x02u
128c2ecf20Sopenharmony_ci
138c2ecf20Sopenharmony_ci#define FX2CMD_HCW_ZILOG_RESET  0x10u /* 1=reset 0=release */
148c2ecf20Sopenharmony_ci
158c2ecf20Sopenharmony_ci#define FX2CMD_MEM_READ_64BYTES 0x28u
168c2ecf20Sopenharmony_ci
178c2ecf20Sopenharmony_ci#define FX2CMD_REG_WRITE        0x04u
188c2ecf20Sopenharmony_ci#define FX2CMD_REG_READ         0x05u
198c2ecf20Sopenharmony_ci#define FX2CMD_MEMSEL           0x06u
208c2ecf20Sopenharmony_ci
218c2ecf20Sopenharmony_ci#define FX2CMD_I2C_WRITE        0x08u
228c2ecf20Sopenharmony_ci#define FX2CMD_I2C_READ         0x09u
238c2ecf20Sopenharmony_ci
248c2ecf20Sopenharmony_ci#define FX2CMD_GET_USB_SPEED    0x0bu
258c2ecf20Sopenharmony_ci
268c2ecf20Sopenharmony_ci#define FX2CMD_STREAMING_ON     0x36u
278c2ecf20Sopenharmony_ci#define FX2CMD_STREAMING_OFF    0x37u
288c2ecf20Sopenharmony_ci
298c2ecf20Sopenharmony_ci#define FX2CMD_FWPOST1          0x52u
308c2ecf20Sopenharmony_ci
318c2ecf20Sopenharmony_ci/* These 2 only exist on Model 160xxx */
328c2ecf20Sopenharmony_ci#define FX2CMD_HCW_DEMOD_RESET_PIN 0xd4u
338c2ecf20Sopenharmony_ci#define FX2CMD_HCW_MAKO_SLEEP_PIN  0xd5u
348c2ecf20Sopenharmony_ci
358c2ecf20Sopenharmony_ci#define FX2CMD_POWER_OFF        0xdcu
368c2ecf20Sopenharmony_ci#define FX2CMD_POWER_ON         0xdeu
378c2ecf20Sopenharmony_ci
388c2ecf20Sopenharmony_ci#define FX2CMD_DEEP_RESET       0xddu
398c2ecf20Sopenharmony_ci
408c2ecf20Sopenharmony_ci#define FX2CMD_GET_EEPROM_ADDR  0xebu
418c2ecf20Sopenharmony_ci#define FX2CMD_GET_IR_CODE      0xecu
428c2ecf20Sopenharmony_ci
438c2ecf20Sopenharmony_ci#define FX2CMD_HCW_DEMOD_RESETIN       0xf0u
448c2ecf20Sopenharmony_ci#define FX2CMD_HCW_DTV_STREAMING_ON    0xf1u
458c2ecf20Sopenharmony_ci#define FX2CMD_HCW_DTV_STREAMING_OFF   0xf2u
468c2ecf20Sopenharmony_ci
478c2ecf20Sopenharmony_ci#define FX2CMD_ONAIR_DTV_STREAMING_ON  0xa0u
488c2ecf20Sopenharmony_ci#define FX2CMD_ONAIR_DTV_STREAMING_OFF 0xa1u
498c2ecf20Sopenharmony_ci#define FX2CMD_ONAIR_DTV_POWER_ON      0xa2u
508c2ecf20Sopenharmony_ci#define FX2CMD_ONAIR_DTV_POWER_OFF     0xa3u
518c2ecf20Sopenharmony_ci
528c2ecf20Sopenharmony_ci#endif /* _PVRUSB2_FX2_CMD_H_ */
53