FS#8961 - Anti-Aliased Fonts.
[kugel-rb.git] / firmware / target / arm / wmcodec-pp.c
blobbd3d4e6579b8af167462a44178428e8694b0b540
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Portalplayer specific code for Wolfson audio codecs
12 * Based on code from the ipodlinux project - http://ipodlinux.org/
13 * Adapted for Rockbox in December 2005
15 * Original file: linux/arch/armnommu/mach-ipod/audio.c
17 * Copyright (c) 2003-2005 Bernard Leach (leachbj@bouncycastle.org)
19 * This program is free software; you can redistribute it and/or
20 * modify it under the terms of the GNU General Public License
21 * as published by the Free Software Foundation; either version 2
22 * of the License, or (at your option) any later version.
24 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
25 * KIND, either express or implied.
27 ****************************************************************************/
29 #include "system.h"
30 #include "audiohw.h"
31 #include "i2c-pp.h"
32 #include "i2s.h"
33 #include "wmcodec.h"
35 #if defined(IRIVER_H10) || defined(IRIVER_H10_5GB) || \
36 defined(MROBE_100) || defined(PHILIPS_HDD1630)
37 /* The H10's audio codec uses an I2C address of 0x1b */
38 #define I2C_AUDIO_ADDRESS 0x1b
39 #else
40 /* The iPod's audio codecs use an I2C address of 0x1a */
41 #define I2C_AUDIO_ADDRESS 0x1a
42 #endif
46 * Initialise the PP I2C and I2S.
48 void audiohw_init(void)
50 #ifdef CPU_PP502x
51 /* normal outputs for CDI and I2S pin groups */
52 DEV_INIT2 &= ~0x300;
54 /*mini2?*/
55 DEV_INIT1 &=~0x3000000;
56 /*mini2?*/
58 /* I2S device reset */
59 DEV_RS |= DEV_I2S;
60 DEV_RS &=~DEV_I2S;
62 /* I2S device enable */
63 DEV_EN |= DEV_I2S;
65 /* enable external dev clock clocks */
66 DEV_EN |= DEV_EXTCLOCKS;
68 /* external dev clock to 24MHz */
69 outl(inl(0x70000018) & ~0xc, 0x70000018);
70 #else
71 /* device reset */
72 outl(inl(0xcf005030) | 0x80, 0xcf005030);
73 outl(inl(0xcf005030) & ~0x80, 0xcf005030);
75 /* device enable */
76 outl(inl(0xcf005000) | 0x80, 0xcf005000);
78 /* GPIO D06 enable for output */
79 outl(inl(0xcf00000c) | 0x40, 0xcf00000c);
80 outl(inl(0xcf00001c) & ~0x40, 0xcf00001c);
81 #ifdef IPOD_1G2G
82 /* bits 11,10 == 10 */
83 outl(inl(0xcf004040) & ~0x400, 0xcf004040);
84 outl(inl(0xcf004040) | 0x800, 0xcf004040);
85 #else /* IPOD_3G */
86 /* bits 11,10 == 01 */
87 outl(inl(0xcf004040) | 0x400, 0xcf004040);
88 outl(inl(0xcf004040) & ~0x800, 0xcf004040);
90 outl(inl(0xcf004048) & ~0x1, 0xcf004048);
92 outl(inl(0xcf000004) & ~0xf, 0xcf000004);
93 outl(inl(0xcf004044) & ~0xf, 0xcf004044);
95 /* C03 = 0 */
96 outl(inl(0xcf000008) | 0x8, 0xcf000008);
97 outl(inl(0xcf000018) | 0x8, 0xcf000018);
98 outl(inl(0xcf000028) & ~0x8, 0xcf000028);
99 #endif /* IPOD_1G2G/3G */
100 #endif
102 /* reset the I2S controller into known state */
103 i2s_reset();
105 audiohw_preinit();
108 void wmcodec_write(int reg, int data)
110 pp_i2c_send(I2C_AUDIO_ADDRESS, (reg<<1) | ((data&0x100)>>8),data&0xff);