Update bulgarian.lang by Zahari Yurukov
[maemo-rb.git] / firmware / export / mascodec.h
blob00690ae7ddb39f6ffa31c632c67f9ac983cddc20
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #ifndef _MASCODEC_H_
22 #define _MASCODEC_H_
24 /* unused: int mas_default_read(unsigned short *buf); */
25 #if CONFIG_CODEC == MAS3507D
26 int mas_run(unsigned short address);
27 #endif
28 int mas_readmem(int bank, int addr, unsigned long* dest, int len);
29 int mas_writemem(int bank, int addr, const unsigned long* src, int len);
30 int mas_readreg(int reg);
31 int mas_writereg(int reg, unsigned int val);
32 void mas_reset(void);
33 /* unused: int mas_direct_config_read(unsigned char reg); */
34 int mas_direct_config_write(unsigned char reg, unsigned int val);
35 int mas_codec_writereg(int reg, unsigned int val);
36 int mas_codec_readreg(int reg);
37 unsigned long mas_readver(void);
39 #endif
41 #if CONFIG_TUNER & S1A0903X01
42 void mas_store_pllfreq(int freq);
43 int mas_get_pllfreq(void);
44 #endif