OSDN Git Service

[AKC6955] Add some features.
[openi2cradio/OpenI2CRadio.git] / akc6955.h
1 /*
2  * OpenI2CRADIO
3  * RADIO CHIP AKC6955 Handler(Header)
4  * Copyright (C) 2013-06-10 K.Ohta <whatisthis.sowhat ai gmail.com>
5  * License: GPL2+LE
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2,
10  *  or (at your option) any later version.
11  *  This library / program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  *  See the GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this library; see the file COPYING. If not, write to the
18  *  Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
19  *  MA 02110-1301, USA.
20  *
21  *  As a special exception, if you link this(includeed from sdcc) library
22  *  with other files, some of which are compiled with SDCC,
23  *  to produce an executable, this library does not by itself cause
24  *  the resulting executable to be covered by the GNU General Public License.
25  *  This exception does not however invalidate any other reasons why
26  *  the executable file might be covered by the GNU General Public License.
27  */
28
29 #ifndef AKC6955_H
30 #define AKC6955_H
31
32 #ifdef  __cplusplus
33 extern "C" {
34 #endif
35
36 #define AKC6955_ADDRESS 0x20
37
38 /*
39  * Register definisions.
40  */
41 #define AKC6955_POWER  0
42 #define AKC6955_BAND   1
43 #define AKC6955_CH_HI  2
44 #define AKC6955_CH_LO  3
45 #define AKC6955_UCH_ST 4
46 #define AKC6955_UCH_EN 5
47 #define AKC6955_VOLUME 6
48 #define AKC6955_STEREO 7
49 #define AKC6955_THRESH 8
50 #define AKC6955_ENABLE 9
51 // 10 = RESERVE
52 #define AKC6955_SPACE  11
53 // 12 = RESERVE
54 #define AKC6955_PRE 13
55 // 14-19 = RESERVE
56
57 // Read only registers
58 #define AKC6955_RCH_HI   20
59 #define AKC6955_RCH_LO   21
60 #define AKC6955_CNR_AM   22
61 #define AKC6955_CNR_FM   23
62 #define AKC6955_PGALEVEL 24
63 #define AKC6955_VBAT     25
64 #define AKC6955_FDNUM    26
65 #define AKC6955_RSSI     27
66
67 /*
68  * BAND DEFINES
69  */
70
71     enum {
72         AKC6955_BAND_LW = 0, // 150~285KHz, 3KHz order
73         AKC6955_BAND_MW1,    // 520~1710KHz, 5KHz order
74         AKC6955_BAND_MW2,    // 522~1620KHz, 9KHz order
75         AKC6955_BAND_MW3,    // 520~1710KHz, 10KHz order
76
77         AKC6955_BAND_SW1,    // 4700~10000KHz, 5KHz order
78         AKC6955_BAND_SW2,    // 3200~4100KHz, 5KHz order
79         AKC6955_BAND_SW3,    // 4700~5600KHz, 5KHz order
80         AKC6955_BAND_SW4,    // 5700~6400KHz, 5KHz order
81
82         AKC6955_BAND_SW5,    // 6800~7600KHz, 5KHz order
83         AKC6955_BAND_SW6,    // 9200~10000KHz, 5KHz order
84         AKC6955_BAND_SW7,    // 11400~12200KHz, 5KHz order
85         AKC6955_BAND_SW8,    // 13500~14300KHz, 5KHz order
86
87         AKC6955_BAND_SW9,    // 15000~15900KHz, 5KHz order
88         AKC6955_BAND_SW10,   // 17400~17900KHz, 5KHz order
89         AKC6955_BAND_SW11,   // 18900~19700KHz, 5KHz order
90         AKC6955_BAND_SW12,   // 21400~21900KHz, 5KHz order
91
92         AKC6955_BAND_SW13,   // 11400~17900KHz, 5KHz order
93         AKC6955_BAND_AMUSER, // User Setting
94         AKC6955_BAND_MW4,    // 520~1730KHz, 5KHz order
95     };
96
97
98     enum {
99         AKC6955_BAND_FM1 = 0, // 87.0~108.0MHz
100         AKC6955_BAND_FM2,     // 76.0~108.0MHz
101         AKC6955_BAND_FM3,     // 70.0~93.0MHz
102         AKC6955_BAND_FM4,     // 76.0~90.0MHz
103         AKC6955_BAND_FM5,     // 64.0~88.0MHz
104         AKC6955_BAND_TV1,     // 56.25~91.75MHz
105         AKC6955_BAND_TV2,     // 174.75~222.25MHz
106         AKC6955_BAND_FMUSER,  // User Setting
107     };
108     
109 /*
110  * Resister definitions
111  */
112     typedef union{
113         unsigned char byte;
114         struct {
115             unsigned power_on :1;
116             unsigned fm_en :1;
117             unsigned tune :1;
118             unsigned seek :1;
119             unsigned seekdir :1;
120             unsigned mute :1;
121             unsigned reserve :2;
122         };
123      } AKC6955_Reg0;
124
125 // MCU Clock = 8MHz
126 // Wait 62.5ms
127 #define _AKC6955_WAIT_62_5MS()     delay1ktcy(500)
128 // Wait 12.5ms
129 #define _AKC6955_WAIT_12_5MS()     delay1ktcy(100)
130 // Wait 125.0ms
131 #define _AKC6955_WAIT_125_0MS()     delay10ktcy(100)
132 // Wait 50us
133 #define _AKC6955_WAIT_12_5uS()     delay10tcy(40)
134
135
136 extern void akc6955_writecmd(unsigned char reg, unsigned char data);
137 extern unsigned char akc6955_readcmd(unsigned char reg);
138 extern void akc6955_chg_fm(unsigned char fm);
139      
140 extern void akc6955_set_amband(unsigned char band);
141 extern void akc6955_set_fmband(unsigned char band);
142
143      
144 extern unsigned char akc6955_get_amband(void);
145 extern unsigned char akc6955_get_fmband(void);
146 extern void akc6955_set_power(unsigned char on);
147 extern void akc6955_do_tune(void);
148 extern unsigned char akc6955_tune(void);
149
150 extern unsigned int akc6955_mode3k(unsigned char flag);
151 extern void akc6955_set_tune(unsigned char mode_3k, unsigned int ch);
152 extern void akc6955_do_scan(unsigned char up);
153 extern void akc6955_abort_scan(void);
154 extern unsigned char akc6955_chk_donescan(void);
155
156 extern unsigned int akc6955_get_freq(void);
157 extern void akc6955_set_freq(unsigned int freq);
158 extern unsigned char akc6955_get_cnr(void);
159 extern void akc6955_set_userband(unsigned char start, unsigned char stop, unsigned int ch, unsigned char mode3k);
160
161 extern int akc6955_read_level(void);
162 extern unsigned int akc6955_up_freq(unsigned int step);
163 extern unsigned int akc6955_down_freq(unsigned int step);
164 extern int akc6955_get_diff(void);
165
166 extern void akc6955_setvolume(unsigned char level);
167 extern void akc6955_setvolumemode(unsigned char flag);
168 extern unsigned char akc6955_getvolume(void);
169 extern unsigned char akc6955_get_prevolume(void);
170 extern void akc6955_set_prevolume(unsigned char level);
171
172 extern void akc6955_setphase(unsigned char flag);
173 extern void akc6955_setline(unsigned char flag);
174 extern void akc6955_set_stereomode(unsigned char mode);
175 extern unsigned char akc6955_get_stereo(void);
176 extern void akc6955_set_fm_threash(unsigned char val);
177 extern void akc6955_set_am_threash(unsigned char val);
178 extern void akc6955_set_fd_threash(unsigned char val);
179 extern void akc6955_set_stereo_threash(unsigned char val);
180 extern void akc6955_set_scanrate_fm(unsigned char rate);
181 extern unsigned int akc6955_get_battery(void);
182 extern void akc6955_set_fmbandwidth(unsigned char bw);
183 extern unsigned char akc6955_get_fmbandwidth(void);
184
185 #ifdef  __cplusplus
186 }
187 #endif
188
189 #endif  /* AKC6955_H */
190