arm/pp : assume CPU_PP
[maemo-rb.git] / firmware / target / arm / pp / ascodec-target.h
blobe7fd1b3b35f3d068fb06904008388c20319d449b
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Driver for AS3514 audio codec
12 * Copyright (c) 2007 Daniel Ankers
13 * Copyright (c) 2007 Christian Gmeiner
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
23 ****************************************************************************/
25 #ifndef _ASCODEC_TARGET_H
26 #define _ASCODEC_TARGET_H
28 #include "config.h"
30 #include "as3514.h"
31 #include "i2c-pp.h"
33 static inline int ascodec_write(unsigned int reg, unsigned int value)
35 return pp_i2c_send(AS3514_I2C_ADDR, reg, value);
38 static inline int ascodec_read(unsigned int reg)
40 return i2c_readbyte(AS3514_I2C_ADDR, reg);
43 static inline int ascodec_readbytes(int addr, int len, unsigned char *data)
45 return i2c_readbytes(AS3514_I2C_ADDR, addr, len, data);
48 static inline void ascodec_lock(void)
50 i2c_lock();
53 static inline void ascodec_unlock(void)
55 i2c_unlock();
58 static inline bool ascodec_chg_status(void)
60 return ascodec_read(AS3514_IRQ_ENRD0) & CHG_STATUS;
63 static inline bool ascodec_endofch(void)
65 return ascodec_read(AS3514_IRQ_ENRD0) & CHG_ENDOFCH;
68 static inline void ascodec_monitor_endofch(void)
70 ascodec_write(AS3514_IRQ_ENRD0, IRQ_ENDOFCH);
73 static inline void ascodec_wait_adc_finished(void)
76 * FIXME: not implemented
78 * If irqs are not available on the target platform,
79 * this should be most likely implemented by polling
80 * AS3514_IRQ_ENRD2 in the same way powermgmt-ascodec.c
81 * is polling IRQ_ENDOFCH.
85 static inline void ascodec_write_charger(int value)
87 ascodec_write(AS3514_CHARGER, value);
90 static inline int ascodec_read_charger(void)
92 return ascodec_read(AS3514_CHARGER);
95 extern void ascodec_suppressor_on(bool on);
97 #endif /* !_ASCODEC_TARGET_H */