summaryrefslogtreecommitdiff
path: root/firmware/export/mascodec.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/mascodec.h')
-rw-r--r--firmware/export/mascodec.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/firmware/export/mascodec.h b/firmware/export/mascodec.h
deleted file mode 100644
index 00690ae7dd..0000000000
--- a/firmware/export/mascodec.h
+++ /dev/null
@@ -1,45 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
11 *
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.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#ifndef _MASCODEC_H_
22#define _MASCODEC_H_
23
24/* unused: int mas_default_read(unsigned short *buf); */
25#if CONFIG_CODEC == MAS3507D
26int mas_run(unsigned short address);
27#endif
28int mas_readmem(int bank, int addr, unsigned long* dest, int len);
29int mas_writemem(int bank, int addr, const unsigned long* src, int len);
30int mas_readreg(int reg);
31int mas_writereg(int reg, unsigned int val);
32void mas_reset(void);
33/* unused: int mas_direct_config_read(unsigned char reg); */
34int mas_direct_config_write(unsigned char reg, unsigned int val);
35int mas_codec_writereg(int reg, unsigned int val);
36int mas_codec_readreg(int reg);
37unsigned long mas_readver(void);
38
39#endif
40
41#if CONFIG_TUNER & S1A0903X01
42void mas_store_pllfreq(int freq);
43int mas_get_pllfreq(void);
44#endif
45