1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
8 * $Id: mas.h 24154 2010-01-03 10:27:43Z Buschel $
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 ****************************************************************************/
24 int mas_default_read(unsigned short *buf
);
25 int mas_run(unsigned short address
);
26 int mas_readmem(int bank
, int addr
, unsigned long* dest
, int len
);
27 int mas_writemem(int bank
, int addr
, const unsigned long* src
, int len
);
28 int mas_readreg(int reg
);
29 int mas_writereg(int reg
, unsigned int val
);
31 int mas_direct_config_read(unsigned char reg
);
32 int mas_direct_config_write(unsigned char reg
, unsigned int val
);
33 int mas_codec_writereg(int reg
, unsigned int val
);
34 int mas_codec_readreg(int reg
);
35 unsigned long mas_readver(void);
39 #if CONFIG_TUNER & S1A0903X01
40 void mas_store_pllfreq(int freq
);
41 int mas_get_pllfreq(void);