162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci *
462306a36Sopenharmony_ci *  Copyright (C) 2007 Michael Krufky <mkrufky@linuxtv.org>
562306a36Sopenharmony_ci */
662306a36Sopenharmony_ci
762306a36Sopenharmony_ci#ifndef _PVRUSB2_FX2_CMD_H_
862306a36Sopenharmony_ci#define _PVRUSB2_FX2_CMD_H_
962306a36Sopenharmony_ci
1062306a36Sopenharmony_ci#define FX2CMD_MEM_WRITE_DWORD  0x01u
1162306a36Sopenharmony_ci#define FX2CMD_MEM_READ_DWORD   0x02u
1262306a36Sopenharmony_ci
1362306a36Sopenharmony_ci#define FX2CMD_HCW_ZILOG_RESET  0x10u /* 1=reset 0=release */
1462306a36Sopenharmony_ci
1562306a36Sopenharmony_ci#define FX2CMD_MEM_READ_64BYTES 0x28u
1662306a36Sopenharmony_ci
1762306a36Sopenharmony_ci#define FX2CMD_REG_WRITE        0x04u
1862306a36Sopenharmony_ci#define FX2CMD_REG_READ         0x05u
1962306a36Sopenharmony_ci#define FX2CMD_MEMSEL           0x06u
2062306a36Sopenharmony_ci
2162306a36Sopenharmony_ci#define FX2CMD_I2C_WRITE        0x08u
2262306a36Sopenharmony_ci#define FX2CMD_I2C_READ         0x09u
2362306a36Sopenharmony_ci
2462306a36Sopenharmony_ci#define FX2CMD_GET_USB_SPEED    0x0bu
2562306a36Sopenharmony_ci
2662306a36Sopenharmony_ci#define FX2CMD_STREAMING_ON     0x36u
2762306a36Sopenharmony_ci#define FX2CMD_STREAMING_OFF    0x37u
2862306a36Sopenharmony_ci
2962306a36Sopenharmony_ci#define FX2CMD_FWPOST1          0x52u
3062306a36Sopenharmony_ci
3162306a36Sopenharmony_ci/* These 2 only exist on Model 160xxx */
3262306a36Sopenharmony_ci#define FX2CMD_HCW_DEMOD_RESET_PIN 0xd4u
3362306a36Sopenharmony_ci#define FX2CMD_HCW_MAKO_SLEEP_PIN  0xd5u
3462306a36Sopenharmony_ci
3562306a36Sopenharmony_ci#define FX2CMD_POWER_OFF        0xdcu
3662306a36Sopenharmony_ci#define FX2CMD_POWER_ON         0xdeu
3762306a36Sopenharmony_ci
3862306a36Sopenharmony_ci#define FX2CMD_DEEP_RESET       0xddu
3962306a36Sopenharmony_ci
4062306a36Sopenharmony_ci#define FX2CMD_GET_EEPROM_ADDR  0xebu
4162306a36Sopenharmony_ci#define FX2CMD_GET_IR_CODE      0xecu
4262306a36Sopenharmony_ci
4362306a36Sopenharmony_ci#define FX2CMD_HCW_DEMOD_RESETIN       0xf0u
4462306a36Sopenharmony_ci#define FX2CMD_HCW_DTV_STREAMING_ON    0xf1u
4562306a36Sopenharmony_ci#define FX2CMD_HCW_DTV_STREAMING_OFF   0xf2u
4662306a36Sopenharmony_ci
4762306a36Sopenharmony_ci#define FX2CMD_ONAIR_DTV_STREAMING_ON  0xa0u
4862306a36Sopenharmony_ci#define FX2CMD_ONAIR_DTV_STREAMING_OFF 0xa1u
4962306a36Sopenharmony_ci#define FX2CMD_ONAIR_DTV_POWER_ON      0xa2u
5062306a36Sopenharmony_ci#define FX2CMD_ONAIR_DTV_POWER_OFF     0xa3u
5162306a36Sopenharmony_ci
5262306a36Sopenharmony_ci#endif /* _PVRUSB2_FX2_CMD_H_ */
53