12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*****************************************************************************
- Copyright(c) 2013 FCI Inc. All Rights Reserved
- File name : bbm.h
- Description : API header of ISDB-T baseband module
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- History :
- ----------------------------------------------------------------------
- *******************************************************************************/
- #ifndef __BBM_H__
- #define __BBM_H__
- #include "fci_types.h"
- #define DRIVER_VER "S1.15.0"
- s32 bbm_com_reset(HANDLE handle, DEVICEID devid);
- s32 bbm_com_probe(HANDLE handle, DEVICEID devid);
- s32 bbm_com_init(HANDLE handle, DEVICEID devid);
- s32 bbm_com_deinit(HANDLE handle, DEVICEID devid);
- s32 bbm_com_read(HANDLE handle, DEVICEID devid, u16 addr, u8 *data);
- s32 bbm_com_byte_read(HANDLE handle, DEVICEID devid, u16 addr, u8 *data);
- s32 bbm_com_word_read(HANDLE handle, DEVICEID devid, u16 addr, u16 *data);
- s32 bbm_com_long_read(HANDLE handle, DEVICEID devid, u16 addr, u32 *data);
- s32 bbm_com_bulk_read(HANDLE handle, DEVICEID devid, u16 addr, u8 *data,
- u16 size);
- s32 bbm_com_data(HANDLE handle, DEVICEID devid, u16 addr, u8 *data, u32 size);
- s32 bbm_com_write(HANDLE handle, DEVICEID devid, u16 addr, u8 data);
- s32 bbm_com_byte_write(HANDLE handle, DEVICEID devid, u16 addr, u8 data);
- s32 bbm_com_word_write(HANDLE handle, DEVICEID devid, u16 addr, u16 data);
- s32 bbm_com_long_write(HANDLE handle, DEVICEID devid, u16 addr, u32 data);
- s32 bbm_com_bulk_write(HANDLE handle, DEVICEID devid,
- u16 addr, u8 *data, u16 size);
- s32 bbm_com_i2c_init(HANDLE handle, u32 type);
- s32 bbm_com_i2c_deinit(HANDLE handle);
- s32 bbm_com_tuner_select(HANDLE handle, DEVICEID devid,
- u32 product, u32 brodcast);
- s32 bbm_com_tuner_deselect(HANDLE handle, DEVICEID devid);
- s32 bbm_com_tuner_read(HANDLE handle, DEVICEID devid,
- u8 addr, u8 alen, u8 *buffer, u8 len);
- s32 bbm_com_tuner_write(HANDLE handle, DEVICEID devid,
- u8 addr, u8 alen, u8 *buffer, u8 len);
- s32 bbm_com_tuner_set_freq(HANDLE handle, DEVICEID devid, u32 freq, u8 subch);
- s32 bbm_com_tuner_get_rssi(HANDLE handle, DEVICEID devid, s32 *rssi);
- s32 bbm_com_scan_status(HANDLE handle, DEVICEID devid);
- s32 bbm_com_hostif_select(HANDLE handle, u8 hostif);
- s32 bbm_com_hostif_deselect(HANDLE handle);
- s32 bbm_com_ts_callback_register(u32 userdata,
- s32 (*callback)(u32 userdata, u8 bufid, u8 *data, s32 length));
- s32 bbm_com_ts_callback_deregister(void);
- s32 bbm_com_ac_callback_register(u32 userdata,
- s32 (*callback)(u32 userdata, u8 bufid, u8 *data, s32 length));
- s32 bbm_com_ac_callback_deregister(void);
- void bbm_com_isr(HANDLE handle);
- #endif /* __BBM_H__ */
|