aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/isdbt/fc8150/fci_hal.h
blob: e9d44c44de65b8db604bf6dfbb9b8da9b184aa9d (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
/*****************************************************************************
 Copyright(c) 2012 FCI Inc. All Rights Reserved

 File name : fc8150_hal.h

 Description : fc8150 host interface
*******************************************************************************/

#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_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, u32 length);

#ifdef __cplusplus
}
#endif

#endif