android_kernel_xiaomi_sdm845/drivers/media/video/pvrusb2/pvrusb2-fx2-cmd.h
Michael Krufky 8d3643637e V4L/DVB (5169): Pvrusb2: Use macro names for FX2 commands
This is a maintainability cleanup; use nice names for all the FX2
commands instead of raw bytes.  This way we can easily find where we
issue FX commands.

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mike Isely <isely@pobox.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2007-02-21 13:35:11 -02:00

29 lines
654 B
C

#ifndef _PVRUSB2_FX2_CMD_H_
#define _PVRUSB2_FX2_CMD_H_
#define FX2CMD_MEM_WRITE_DWORD 0x01
#define FX2CMD_MEM_READ_DWORD 0x02
#define FX2CMD_MEM_READ_64BYTES 0x28
#define FX2CMD_REG_WRITE 0x04
#define FX2CMD_REG_READ 0x05
#define FX2CMD_I2C_WRITE 0x08
#define FX2CMD_I2C_READ 0x09
#define FX2CMD_GET_USB_SPEED 0x0b
#define FX2CMD_STREAMING_ON 0x36
#define FX2CMD_STREAMING_OFF 0x37
#define FX2CMD_POWER_OFF 0xdc
#define FX2CMD_POWER_ON 0xde
#define FX2CMD_DEEP_RESET 0xdd
#define FX2CMD_GET_EEPROM_ADDR 0xeb
#define FX2CMD_GET_IR_CODE 0xec
#endif /* _PVRUSB2_FX2_CMD_H_ */