fc8080_bb.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*****************************************************************************
  2. Copyright(c) 2013 FCI Inc. All Rights Reserved
  3. File name : fc8080_bb.h
  4. Description : baseband header file
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. History :
  17. ----------------------------------------------------------------------
  18. *******************************************************************************/
  19. #ifndef __FC8080_BB_H__
  20. #define __FC8080_BB_H__
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. extern s32 fc8080_reset(HANDLE handle);
  25. extern s32 fc8080_probe(HANDLE handle);
  26. extern s32 fc8080_init(HANDLE handle);
  27. extern s32 fc8080_deinit(HANDLE handle);
  28. extern s32 fc8080_scan_status(HANDLE handle);
  29. extern s32 fc8080_channel_select(HANDLE handle, u8 subch_id, u8 buf_id);
  30. extern s32 fc8080_video_select(HANDLE handle, u8 subch_id, u8 buf_id,
  31. u8 cdi_id);
  32. extern s32 fc8080_audio_select(HANDLE handle, u8 subch_id, u8 buf_id);
  33. extern s32 fc8080_data_select(HANDLE handle, u8 subch_id, u8 buf_id);
  34. extern s32 fc8080_channel_deselect(HANDLE handle, u8 subch_id, u8 buf_id);
  35. extern s32 fc8080_video_deselect(HANDLE handle, u8 subch_id, u8 buf_id,
  36. u8 cdi_id);
  37. extern s32 fc8080_audio_deselect(HANDLE handle, u8 subch_id, u8 buf_id);
  38. extern s32 fc8080_data_deselect(HANDLE handle, u8 subch_id, u8 buf_id);
  39. #ifdef __cplusplus
  40. }
  41. #endif
  42. #endif /* __FC8080_BB_H__ */