aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/isdbt/fc8100/fci_hal.h
blob: 72634cd2e16f9af0ead386fd333d691ee5e38e53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*****************************************************************************
 Copyright(c) 2009 FCI Inc. All Rights Reserved

 File name : fc8000_hal.h

 Description : fc8000 host interface header

 History :
 ----------------------------------------------------------------------
 2009/08/29	jason		initial
*******************************************************************************/

#ifndef __FCI_HAL_H__
#define __FCI_HAL_H__

#ifdef __cplusplus
extern "C" {
#endif

extern int bbm_hostif_select(HANDLE hDevice, u8 hostif);
extern int bbm_hostif_deselect(HANDLE hDevice);
extern int bbm_hostif_get(HANDLE hDevice, u8 *hostif);

extern int bbm_read(HANDLE hDevice, u16 addr, u8 *data);
extern int bbm_byte_read(HANDLE hDevice, u16 addr, u8 *data);
extern int bbm_word_read(HANDLE hDevice, u16 addr, u16 *data);
extern int bbm_long_read(HANDLE hDevice, u16 addr, u32 *data);
extern int bbm_bulk_read(HANDLE hDevice, u16 addr, u8 *data, u16 length);

extern int bbm_write(HANDLE hDevice, u16 addr, u8 data);
extern int bbm_byte_write(HANDLE hDevice, u16 addr, u8 data);
extern int bbm_word_write(HANDLE hDevice, u16 addr, u16 data);
extern int bbm_long_write(HANDLE hDevice, u16 addr, u32 data);
extern int bbm_bulk_write(HANDLE hDevice, u16 addr, u8 *data, u16 length);
extern int bbm_data(HANDLE hDevice, u16 addr, u8 *data, u16 length);

#ifdef __cplusplus
}
#endif

#endif