summaryrefslogtreecommitdiff
path: root/firmware/export/mascodec.h
diff options
context:
space:
mode:
authorMarcin Bukat <marcin.bukat@gmail.com>2010-10-31 21:09:34 +0000
committerMarcin Bukat <marcin.bukat@gmail.com>2010-10-31 21:09:34 +0000
commit56c4e9fa600557242d8b78f5fd8e32c2245b76fc (patch)
treef8558778a302f89c3e819e66e86577a5e37c3660 /firmware/export/mascodec.h
parent40ed5f57d9be61f1200026e9b0f944a9718111c1 (diff)
downloadrockbox-56c4e9fa600557242d8b78f5fd8e32c2245b76fc.tar.gz
rockbox-56c4e9fa600557242d8b78f5fd8e32c2245b76fc.zip
Separate mas35xx lowlevel stuff. Move SH specific bits to target tree. FS#11189 by me.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28425 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/mascodec.h')
-rw-r--r--firmware/export/mascodec.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/firmware/export/mascodec.h b/firmware/export/mascodec.h
new file mode 100644
index 0000000000..82a71e30c8
--- /dev/null
+++ b/firmware/export/mascodec.h
@@ -0,0 +1,43 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id: mas.h 24154 2010-01-03 10:27:43Z Buschel $
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
24int mas_default_read(unsigned short *buf);
25int mas_run(unsigned short address);
26int mas_readmem(int bank, int addr, unsigned long* dest, int len);
27int mas_writemem(int bank, int addr, const unsigned long* src, int len);
28int mas_readreg(int reg);
29int mas_writereg(int reg, unsigned int val);
30void mas_reset(void);
31int mas_direct_config_read(unsigned char reg);
32int mas_direct_config_write(unsigned char reg, unsigned int val);
33int mas_codec_writereg(int reg, unsigned int val);
34int mas_codec_readreg(int reg);
35unsigned long mas_readver(void);
36
37#endif
38
39#if CONFIG_TUNER & S1A0903X01
40void mas_store_pllfreq(int freq);
41int mas_get_pllfreq(void);
42#endif
43