aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/isdbt/fc8150/fc8150_spi.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/isdbt/fc8150/fc8150_spi.h')
-rw-r--r--drivers/media/isdbt/fc8150/fc8150_spi.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/drivers/media/isdbt/fc8150/fc8150_spi.h b/drivers/media/isdbt/fc8150/fc8150_spi.h
new file mode 100644
index 0000000..6fd96d1
--- /dev/null
+++ b/drivers/media/isdbt/fc8150/fc8150_spi.h
@@ -0,0 +1,33 @@
+/*****************************************************************************
+ Copyright(c) 2012 FCI Inc. All Rights Reserved
+
+ File name : fc8150_spi.c
+
+ Description : API of 1-SEG baseband module
+
+*******************************************************************************/
+
+#ifndef __FC8150_SPI__
+#define __FC8150_SPI__
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern int fc8150_spi_init(HANDLE hDevice, u16 param1, u16 param2);
+extern int fc8150_spi_byteread(HANDLE hDevice, u16 addr, u8 *data);
+extern int fc8150_spi_wordread(HANDLE hDevice, u16 addr, u16 *data);
+extern int fc8150_spi_longread(HANDLE hDevice, u16 addr, u32 *data);
+extern int fc8150_spi_bulkread(HANDLE hDevice, u16 addr, u8 *data, u16 length);
+extern int fc8150_spi_bytewrite(HANDLE hDevice, u16 addr, u8 data);
+extern int fc8150_spi_wordwrite(HANDLE hDevice, u16 addr, u16 data);
+extern int fc8150_spi_longwrite(HANDLE hDevice, u16 addr, u32 data);
+extern int fc8150_spi_bulkwrite(HANDLE hDevice, u16 addr, u8 *data, u16 length);
+extern int fc8150_spi_dataread(HANDLE hDevice, u16 addr, u8 *data, u32 length);
+extern int fc8150_spi_deinit(HANDLE hDevice);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif