2010-06-15 20:57:48 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*
|
2010-06-16 20:29:08 +00:00
|
|
|
* Tuner header for the RDA Microelectronics RDA5802 FM tuner chip
|
2010-06-15 20:57:48 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Bertrik Sikken
|
|
|
|
*
|
|
|
|
* 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 software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2010-06-16 20:29:08 +00:00
|
|
|
#ifndef _RDA5802_H_
|
|
|
|
#define _RDA5802_H_
|
2010-06-15 20:57:48 +00:00
|
|
|
|
|
|
|
#define HAVE_RADIO_REGION
|
2010-11-11 21:13:29 +00:00
|
|
|
#define HAVE_RADIO_RSSI
|
2010-06-15 20:57:48 +00:00
|
|
|
|
2010-06-16 20:29:08 +00:00
|
|
|
struct rda5802_dbg_info
|
2010-06-15 20:57:48 +00:00
|
|
|
{
|
2010-06-16 20:29:08 +00:00
|
|
|
uint16_t regs[16]; /* Read registers */
|
2010-06-15 20:57:48 +00:00
|
|
|
};
|
|
|
|
|
2010-06-16 20:29:08 +00:00
|
|
|
bool rda5802_detect(void);
|
|
|
|
void rda5802_init(void);
|
|
|
|
int rda5802_set(int setting, int value);
|
|
|
|
int rda5802_get(int setting);
|
|
|
|
void rda5802_dbg_info(struct rda5802_dbg_info *nfo);
|
2010-06-15 20:57:48 +00:00
|
|
|
|
|
|
|
#ifndef CONFIG_TUNER_MULTI
|
2010-06-16 20:29:08 +00:00
|
|
|
#define tuner_set rda5802_set
|
|
|
|
#define tuner_get rda5802_get
|
2010-06-15 20:57:48 +00:00
|
|
|
#endif
|
|
|
|
|
2010-06-16 20:29:08 +00:00
|
|
|
#endif /* _RDA5802_H_ */
|