2008-10-26 13:28:52 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2008-10-26 21:21:55 +00:00
|
|
|
* $Id$
|
2008-10-26 13:28:52 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2008 by Bertrik Sikken
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
Provides access to the codec/charger/rtc/adc part of the as3525.
|
|
|
|
This part is on address 0x46 of the internal i2c bus in the as3525.
|
|
|
|
Registers in the codec part seem to be nearly identical to the registers
|
|
|
|
in the AS3514 (used in the "v1" versions of the sansa c200 and e200).
|
|
|
|
|
|
|
|
I2C register description:
|
|
|
|
* I2C2_CNTRL needs to be set to 0x51 for transfers to work at all.
|
2009-05-21 18:31:50 +00:00
|
|
|
bit 0: ? possibly related to using ACKs during transfers
|
|
|
|
bit 1: direction of transfer (0 = write, 1 = read)
|
|
|
|
bit 2: use 2-byte slave address
|
|
|
|
* I2C2_IMR, I2C2_RIS, I2C2_MIS, I2C2_INT_CLR interrupt bits:
|
|
|
|
bit 2: byte read interrupt
|
|
|
|
bit 3: byte write interrupt
|
|
|
|
bit 4: ? possibly some kind of error status
|
|
|
|
bit 7: ACK error
|
2008-10-26 13:28:52 +00:00
|
|
|
* I2C2_SR (status register) indicates in bit 0 if a transfer is busy.
|
|
|
|
* I2C2_SLAD0 contains the i2c slave address to read from / write to.
|
|
|
|
* I2C2_CPSR0/1 is the divider from the peripheral clock to the i2c clock.
|
|
|
|
* I2C2_DACNT sets the number of bytes to transfer and actually starts it.
|
|
|
|
|
|
|
|
When a transfer is attempted to a non-existing i2c slave address,
|
|
|
|
interrupt bit 7 is raised and DACNT is not decremented after the transfer.
|
|
|
|
*/
|
|
|
|
|
2008-11-10 19:53:12 +00:00
|
|
|
#include "ascodec-target.h"
|
2008-12-04 20:04:31 +00:00
|
|
|
#include "clock-target.h"
|
2008-11-10 20:55:56 +00:00
|
|
|
#include "kernel.h"
|
2010-03-23 04:40:38 +00:00
|
|
|
#include "system.h"
|
2008-10-26 13:28:52 +00:00
|
|
|
#include "as3525.h"
|
2009-04-07 17:20:31 +00:00
|
|
|
#include "i2c.h"
|
2008-10-26 13:28:52 +00:00
|
|
|
|
2008-10-26 21:21:55 +00:00
|
|
|
#define I2C2_DATA *((volatile unsigned int *)(I2C_AUDIO_BASE + 0x00))
|
|
|
|
#define I2C2_SLAD0 *((volatile unsigned int *)(I2C_AUDIO_BASE + 0x04))
|
|
|
|
#define I2C2_CNTRL *((volatile unsigned int *)(I2C_AUDIO_BASE + 0x0C))
|
|
|
|
#define I2C2_DACNT *((volatile unsigned int *)(I2C_AUDIO_BASE + 0x10))
|
|
|
|
#define I2C2_CPSR0 *((volatile unsigned int *)(I2C_AUDIO_BASE + 0x1C))
|
|
|
|
#define I2C2_CPSR1 *((volatile unsigned int *)(I2C_AUDIO_BASE + 0x20))
|
2008-10-26 13:28:52 +00:00
|
|
|
#define I2C2_IMR *((volatile unsigned int *)(I2C_AUDIO_BASE + 0x24))
|
2008-10-26 21:21:55 +00:00
|
|
|
#define I2C2_RIS *((volatile unsigned int *)(I2C_AUDIO_BASE + 0x28))
|
|
|
|
#define I2C2_MIS *((volatile unsigned int *)(I2C_AUDIO_BASE + 0x2C))
|
|
|
|
#define I2C2_SR *((volatile unsigned int *)(I2C_AUDIO_BASE + 0x30))
|
|
|
|
#define I2C2_INT_CLR *((volatile unsigned int *)(I2C_AUDIO_BASE + 0x40))
|
2008-10-26 13:28:52 +00:00
|
|
|
#define I2C2_SADDR *((volatile unsigned int *)(I2C_AUDIO_BASE + 0x44))
|
|
|
|
|
2010-03-23 04:40:38 +00:00
|
|
|
#define I2C2_CNTRL_MASTER 0x01
|
|
|
|
#define I2C2_CNTRL_READ 0x02
|
|
|
|
#define I2C2_CNTRL_WRITE 0x00
|
|
|
|
#define I2C2_CNTRL_RESET 0x10
|
|
|
|
#define I2C2_CNTRL_REPSTARTEN 0x40
|
|
|
|
|
|
|
|
#define I2C2_CNTRL_DEFAULT (I2C2_CNTRL_MASTER|I2C2_CNTRL_REPSTARTEN|I2C2_CNTRL_RESET)
|
|
|
|
|
|
|
|
#define I2C2_IRQ_TXEMPTY 0x04
|
|
|
|
#define I2C2_IRQ_RXFULL 0x08
|
|
|
|
#define I2C2_IRQ_RXOVER 0x10
|
|
|
|
#define I2C2_IRQ_ACKTIMEO 0x80
|
|
|
|
|
|
|
|
#define REQ_UNFINISHED 0
|
|
|
|
#define REQ_FINISHED 1
|
|
|
|
#define REQ_RETRY 2
|
|
|
|
|
2010-03-23 05:02:37 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
#define IFDEBUG(x) x
|
|
|
|
#else
|
|
|
|
#define IFDEBUG(x)
|
|
|
|
#endif
|
|
|
|
|
2010-06-01 10:16:10 +00:00
|
|
|
#define ASCODEC_REQ_READ 0
|
|
|
|
#define ASCODEC_REQ_WRITE 1
|
|
|
|
|
|
|
|
/*
|
|
|
|
* How many bytes we using in struct ascodec_request for the data buffer.
|
|
|
|
* 4 fits the alignment best right now.
|
|
|
|
* We don't actually use more than 3 at the moment (when reading interrupts)
|
|
|
|
* Upper limit would be 255 since DACNT is 8 bits!
|
|
|
|
*/
|
|
|
|
#define ASCODEC_REQ_MAXLEN 4
|
|
|
|
|
|
|
|
typedef void (ascodec_cb_fn)(unsigned const char *data, unsigned cnt);
|
|
|
|
|
|
|
|
struct ascodec_request {
|
|
|
|
unsigned char type;
|
|
|
|
unsigned char index;
|
|
|
|
unsigned char status;
|
|
|
|
unsigned char cnt;
|
|
|
|
unsigned char data[ASCODEC_REQ_MAXLEN];
|
2011-03-02 08:49:38 +00:00
|
|
|
struct semaphore complete;
|
2010-06-01 10:16:10 +00:00
|
|
|
ascodec_cb_fn *callback;
|
|
|
|
struct ascodec_request *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-06-02 22:45:02 +00:00
|
|
|
static struct mutex as_mtx;
|
2008-10-26 13:28:52 +00:00
|
|
|
|
2011-12-15 03:30:03 +00:00
|
|
|
static unsigned long ascodec_enrd0_shadow = 0;
|
2010-03-23 05:02:37 +00:00
|
|
|
|
2010-03-23 04:40:38 +00:00
|
|
|
static unsigned char *req_data_ptr = NULL;
|
|
|
|
static struct ascodec_request *req_head = NULL;
|
|
|
|
static struct ascodec_request *req_tail = NULL;
|
|
|
|
|
2011-03-02 08:49:38 +00:00
|
|
|
static struct semaphore adc_done_sem;
|
2010-03-23 11:13:17 +00:00
|
|
|
static struct ascodec_request as_audio_req;
|
2010-03-23 05:02:37 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
static int int_audio_ctr = 0;
|
|
|
|
static int int_chg_finished = 0;
|
|
|
|
static int int_chg_insert = 0;
|
|
|
|
static int int_chg_remove = 0;
|
|
|
|
static int int_usb_insert = 0;
|
|
|
|
static int int_usb_remove = 0;
|
|
|
|
static int int_rtc = 0;
|
|
|
|
static int int_adc = 0;
|
2010-03-23 11:13:17 +00:00
|
|
|
#endif /* DEBUG */
|
2010-03-23 05:02:37 +00:00
|
|
|
|
2010-06-01 10:16:10 +00:00
|
|
|
/* returns != 0 when busy */
|
|
|
|
static inline int i2c_busy(void)
|
|
|
|
{
|
|
|
|
return (I2C2_SR & 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ascodec_finish_req(struct ascodec_request *req)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Wait if still busy, unfortunately this happens since
|
|
|
|
* the controller is running at a low divisor, so it's
|
|
|
|
* still busy when we serviced the interrupt.
|
|
|
|
* I tried upping the i2c speed to 4MHz which
|
|
|
|
* made the number of busywait cycles much smaller
|
|
|
|
* (none for reads and only a few for writes),
|
|
|
|
* but who knows if it's reliable at that frequency. ;)
|
|
|
|
* For one thing, 8MHz doesn't work, so 4MHz is likely
|
|
|
|
* borderline.
|
|
|
|
* In general writes need much more wait cycles than reads
|
|
|
|
* for some reason, possibly because we read the data register
|
|
|
|
* for reads, which will likely block the processor while
|
|
|
|
* the i2c controller responds to the register read.
|
|
|
|
*/
|
|
|
|
while (i2c_busy());
|
|
|
|
|
2011-12-15 03:30:03 +00:00
|
|
|
/* disable clock */
|
|
|
|
bitclr32(&CGU_PERI, CGU_I2C_AUDIO_MASTER_CLOCK_ENABLE);
|
2010-03-23 05:02:37 +00:00
|
|
|
|
2010-06-01 10:16:10 +00:00
|
|
|
req->status = 1;
|
2010-03-23 05:02:37 +00:00
|
|
|
|
2010-06-01 10:16:10 +00:00
|
|
|
if (req->callback) {
|
|
|
|
req->callback(req->data, req_data_ptr - req->data);
|
|
|
|
}
|
2011-03-02 08:49:38 +00:00
|
|
|
semaphore_release(&req->complete);
|
2010-06-01 10:16:10 +00:00
|
|
|
|
|
|
|
req_head = req->next;
|
|
|
|
req->next = NULL;
|
|
|
|
if (req_head == NULL)
|
|
|
|
req_tail = NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ascodec_continue_req(struct ascodec_request *req, int irq_status)
|
2010-03-23 05:02:37 +00:00
|
|
|
{
|
2010-06-01 10:16:10 +00:00
|
|
|
if ((irq_status & (I2C2_IRQ_RXOVER|I2C2_IRQ_ACKTIMEO)) > 0) {
|
|
|
|
/* some error occured, restart the request */
|
|
|
|
return REQ_RETRY;
|
|
|
|
}
|
|
|
|
if (req->type == ASCODEC_REQ_READ &&
|
|
|
|
(irq_status & I2C2_IRQ_RXFULL) > 0) {
|
|
|
|
*(req_data_ptr++) = I2C2_DATA;
|
|
|
|
} else {
|
|
|
|
if (req->cnt > 1 &&
|
|
|
|
(irq_status & I2C2_IRQ_TXEMPTY) > 0) {
|
|
|
|
I2C2_DATA = *(req_data_ptr++);
|
|
|
|
}
|
|
|
|
}
|
2010-03-23 05:02:37 +00:00
|
|
|
|
2010-06-01 10:16:10 +00:00
|
|
|
req->index++;
|
|
|
|
if (--req->cnt > 0)
|
|
|
|
return REQ_UNFINISHED;
|
|
|
|
|
|
|
|
return REQ_FINISHED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ascodec_start_req(struct ascodec_request *req)
|
|
|
|
{
|
|
|
|
int unmask = 0;
|
|
|
|
|
|
|
|
/* enable clock */
|
2010-07-02 06:00:00 +00:00
|
|
|
bitset32(&CGU_PERI, CGU_I2C_AUDIO_MASTER_CLOCK_ENABLE);
|
2010-06-01 10:16:10 +00:00
|
|
|
|
|
|
|
/* start transfer */
|
|
|
|
I2C2_SADDR = req->index;
|
|
|
|
if (req->type == ASCODEC_REQ_READ) {
|
|
|
|
req_data_ptr = req->data;
|
|
|
|
/* start transfer */
|
|
|
|
I2C2_CNTRL = I2C2_CNTRL_DEFAULT | I2C2_CNTRL_READ;
|
|
|
|
unmask = I2C2_IRQ_RXFULL|I2C2_IRQ_RXOVER;
|
|
|
|
} else {
|
|
|
|
req_data_ptr = &req->data[1];
|
|
|
|
I2C2_CNTRL = I2C2_CNTRL_DEFAULT | I2C2_CNTRL_WRITE;
|
|
|
|
I2C2_DATA = req->data[0];
|
|
|
|
unmask = I2C2_IRQ_TXEMPTY|I2C2_IRQ_ACKTIMEO;
|
|
|
|
}
|
|
|
|
|
|
|
|
I2C2_DACNT = req->cnt;
|
|
|
|
I2C2_IMR |= unmask; /* enable interrupts */
|
2010-03-23 05:02:37 +00:00
|
|
|
}
|
2010-03-23 04:40:38 +00:00
|
|
|
|
|
|
|
void INT_I2C_AUDIO(void)
|
|
|
|
{
|
|
|
|
int irq_status = I2C2_MIS;
|
|
|
|
int status = REQ_FINISHED;
|
|
|
|
|
|
|
|
if (req_head != NULL)
|
|
|
|
status = ascodec_continue_req(req_head, irq_status);
|
|
|
|
|
|
|
|
I2C2_INT_CLR |= irq_status; /* clear interrupt status */
|
|
|
|
|
|
|
|
if (status != REQ_UNFINISHED) {
|
|
|
|
/* mask rx/tx interrupts */
|
|
|
|
I2C2_IMR &= ~(I2C2_IRQ_TXEMPTY|I2C2_IRQ_RXFULL|
|
|
|
|
I2C2_IRQ_RXOVER|I2C2_IRQ_ACKTIMEO);
|
|
|
|
|
|
|
|
if (status == REQ_FINISHED)
|
|
|
|
ascodec_finish_req(req_head);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If status == REQ_RETRY, this will restart
|
|
|
|
* the request because we didn't remove it from
|
|
|
|
* the request list
|
|
|
|
*/
|
|
|
|
if (req_head)
|
|
|
|
ascodec_start_req(req_head);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-07 17:20:31 +00:00
|
|
|
void i2c_init(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-10-26 21:21:55 +00:00
|
|
|
/* initialises the internal i2c bus and prepares for transfers to the codec */
|
2008-11-09 09:25:53 +00:00
|
|
|
void ascodec_init(void)
|
2008-10-26 21:21:55 +00:00
|
|
|
{
|
2009-05-06 17:33:56 +00:00
|
|
|
int prescaler;
|
|
|
|
|
2010-03-23 04:40:38 +00:00
|
|
|
mutex_init(&as_mtx);
|
2011-03-02 08:49:38 +00:00
|
|
|
semaphore_init(&adc_done_sem, 1, 0);
|
2010-03-23 04:40:38 +00:00
|
|
|
|
2008-10-26 13:28:52 +00:00
|
|
|
/* enable clock */
|
2010-07-02 06:00:00 +00:00
|
|
|
bitset32(&CGU_PERI, CGU_I2C_AUDIO_MASTER_CLOCK_ENABLE);
|
2008-10-26 13:28:52 +00:00
|
|
|
|
|
|
|
/* prescaler for i2c clock */
|
2009-05-26 18:44:02 +00:00
|
|
|
prescaler = AS3525_I2C_PRESCALER;
|
2009-05-14 09:36:56 +00:00
|
|
|
I2C2_CPSR0 = prescaler & 0xFF; /* 8 lsb */
|
|
|
|
I2C2_CPSR1 = (prescaler >> 8) & 0x3; /* 2 msb */
|
2008-10-26 13:28:52 +00:00
|
|
|
|
|
|
|
/* set i2c slave address of codec part */
|
2008-11-10 19:53:12 +00:00
|
|
|
I2C2_SLAD0 = AS3514_I2C_ADDR << 1;
|
2008-10-26 13:28:52 +00:00
|
|
|
|
2010-03-23 04:40:38 +00:00
|
|
|
I2C2_CNTRL = I2C2_CNTRL_DEFAULT;
|
|
|
|
|
|
|
|
I2C2_IMR = 0x00; /* disable interrupts */
|
|
|
|
I2C2_INT_CLR |= I2C2_RIS; /* clear interrupt status */
|
2010-05-17 20:53:25 +00:00
|
|
|
VIC_INT_ENABLE = INTERRUPT_I2C_AUDIO;
|
|
|
|
VIC_INT_ENABLE = INTERRUPT_AUDIO;
|
2008-10-26 21:21:55 +00:00
|
|
|
|
2010-05-17 21:17:46 +00:00
|
|
|
/* detect if USB was connected at startup since there is no transition */
|
2010-06-18 19:47:58 +00:00
|
|
|
ascodec_enrd0_shadow = ascodec_read(AS3514_IRQ_ENRD0);
|
|
|
|
if(ascodec_enrd0_shadow & USB_STATUS)
|
2010-05-17 21:17:46 +00:00
|
|
|
usb_insert_int();
|
|
|
|
else
|
|
|
|
usb_remove_int();
|
|
|
|
|
2010-03-23 05:02:37 +00:00
|
|
|
/* Generate irq for usb+charge status change */
|
2010-05-17 20:53:25 +00:00
|
|
|
ascodec_write(AS3514_IRQ_ENRD0,
|
|
|
|
#ifdef CONFIG_CHARGING /* m200v4 can't charge */
|
|
|
|
IRQ_CHGSTAT | IRQ_ENDOFCH |
|
|
|
|
#endif
|
|
|
|
IRQ_USBSTAT);
|
|
|
|
|
2010-05-21 17:49:04 +00:00
|
|
|
#if CONFIG_CPU == AS3525v2
|
|
|
|
/* XIRQ = IRQ, active low reset signal, 6mA push-pull output */
|
|
|
|
ascodec_write_pmu(0x1a, 3, (1<<2)|3); /* 1A-3 = Out_Cntr3 register */
|
|
|
|
/* Generate irq on (rtc,) adc change */
|
|
|
|
ascodec_write(AS3514_IRQ_ENRD2, /*IRQ_RTC |*/ IRQ_ADC);
|
|
|
|
#else
|
2010-03-23 05:02:37 +00:00
|
|
|
/* Generate irq for push-pull, active high, irq on rtc+adc change */
|
|
|
|
ascodec_write(AS3514_IRQ_ENRD2, IRQ_PUSHPULL | IRQ_HIGHACTIVE |
|
|
|
|
/*IRQ_RTC |*/ IRQ_ADC);
|
2010-05-21 17:49:04 +00:00
|
|
|
#endif
|
2010-03-23 05:02:37 +00:00
|
|
|
}
|
2008-10-26 21:21:55 +00:00
|
|
|
|
2010-06-01 10:16:10 +00:00
|
|
|
static void ascodec_req_init(struct ascodec_request *req, int type,
|
2010-03-23 04:40:38 +00:00
|
|
|
unsigned int index, unsigned int cnt)
|
|
|
|
{
|
2011-03-02 08:49:38 +00:00
|
|
|
semaphore_init(&req->complete, 1, 0);
|
2010-03-23 04:40:38 +00:00
|
|
|
req->next = NULL;
|
|
|
|
req->callback = NULL;
|
|
|
|
req->type = type;
|
|
|
|
req->index = index;
|
|
|
|
req->cnt = cnt;
|
|
|
|
}
|
|
|
|
|
2010-06-01 10:16:10 +00:00
|
|
|
static void ascodec_submit(struct ascodec_request *req)
|
2008-10-26 21:21:55 +00:00
|
|
|
{
|
2010-03-23 04:40:38 +00:00
|
|
|
int oldlevel = disable_irq_save();
|
2008-11-23 12:24:47 +00:00
|
|
|
|
2010-03-23 04:40:38 +00:00
|
|
|
req->status = 0;
|
|
|
|
|
|
|
|
if (req_head == NULL) {
|
|
|
|
req_tail = req_head = req;
|
|
|
|
ascodec_start_req(req);
|
|
|
|
} else {
|
|
|
|
req_tail->next = req;
|
|
|
|
req_tail = req;
|
|
|
|
}
|
|
|
|
|
|
|
|
restore_irq(oldlevel);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ascodec_wait(struct ascodec_request *req)
|
|
|
|
{
|
2011-03-02 08:49:38 +00:00
|
|
|
if (irq_enabled()) {
|
|
|
|
semaphore_wait(&req->complete, TIMEOUT_BLOCK);
|
2010-03-23 04:40:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (req->status == 0) {
|
|
|
|
if (I2C2_MIS) INT_I2C_AUDIO();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The request struct passed in must be allocated statically.
|
|
|
|
* If you call ascodec_async_write from different places, each
|
|
|
|
* call needs it's own request struct.
|
|
|
|
*/
|
2010-06-01 10:16:10 +00:00
|
|
|
static void ascodec_async_write(unsigned int index, unsigned int value,
|
2010-03-23 04:40:38 +00:00
|
|
|
struct ascodec_request *req)
|
|
|
|
{
|
2011-09-21 21:48:19 +00:00
|
|
|
#ifndef HAVE_AS3543
|
2010-05-17 20:53:25 +00:00
|
|
|
if (index == AS3514_CVDD_DCDC3) /* prevent setting of the LREG_CP_not bit */
|
2009-05-31 17:48:19 +00:00
|
|
|
value &= ~(1 << 5);
|
2011-09-21 21:48:19 +00:00
|
|
|
#endif
|
2008-10-26 21:21:55 +00:00
|
|
|
|
2010-03-23 04:40:38 +00:00
|
|
|
ascodec_req_init(req, ASCODEC_REQ_WRITE, index, 1);
|
|
|
|
req->data[0] = value;
|
|
|
|
ascodec_submit(req);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* returns 0 on success, <0 otherwise */
|
|
|
|
int ascodec_write(unsigned int index, unsigned int value)
|
|
|
|
{
|
|
|
|
struct ascodec_request req;
|
|
|
|
|
|
|
|
ascodec_async_write(index, value, &req);
|
|
|
|
ascodec_wait(&req);
|
2008-11-23 12:24:47 +00:00
|
|
|
|
2009-05-31 17:48:19 +00:00
|
|
|
return 0;
|
2008-10-26 21:21:55 +00:00
|
|
|
}
|
2008-10-26 13:28:52 +00:00
|
|
|
|
2010-03-23 04:40:38 +00:00
|
|
|
/*
|
|
|
|
* The request struct passed in must be allocated statically.
|
|
|
|
* If you call ascodec_async_read from different places, each
|
|
|
|
* call needs it's own request struct.
|
|
|
|
* If len is bigger than ASCODEC_REQ_MAXLEN it will be
|
|
|
|
* set to ASCODEC_REQ_MAXLEN.
|
|
|
|
*/
|
2010-06-01 10:16:10 +00:00
|
|
|
static void ascodec_async_read(unsigned int index, unsigned int len,
|
2010-03-23 04:40:38 +00:00
|
|
|
struct ascodec_request *req, ascodec_cb_fn *cb)
|
|
|
|
{
|
|
|
|
if (len > ASCODEC_REQ_MAXLEN)
|
|
|
|
len = ASCODEC_REQ_MAXLEN; /* can't fit more in one request */
|
|
|
|
|
|
|
|
ascodec_req_init(req, ASCODEC_REQ_READ, index, len);
|
|
|
|
req->callback = cb;
|
|
|
|
ascodec_submit(req);
|
|
|
|
}
|
2008-10-26 13:28:52 +00:00
|
|
|
|
|
|
|
/* returns value read on success, <0 otherwise */
|
2008-11-10 20:55:56 +00:00
|
|
|
int ascodec_read(unsigned int index)
|
2008-10-26 13:28:52 +00:00
|
|
|
{
|
2010-03-23 04:40:38 +00:00
|
|
|
struct ascodec_request req;
|
2008-11-23 12:24:47 +00:00
|
|
|
|
2010-03-23 04:40:38 +00:00
|
|
|
ascodec_async_read(index, 1, &req, NULL);
|
|
|
|
ascodec_wait(&req);
|
2009-05-31 17:48:19 +00:00
|
|
|
|
2010-03-23 04:40:38 +00:00
|
|
|
return req.data[0];
|
2008-10-26 21:21:55 +00:00
|
|
|
}
|
2008-10-26 13:28:52 +00:00
|
|
|
|
2010-03-23 04:40:38 +00:00
|
|
|
int ascodec_readbytes(unsigned int index, unsigned int len, unsigned char *data)
|
2008-11-10 20:55:56 +00:00
|
|
|
{
|
2010-03-23 04:40:38 +00:00
|
|
|
int i, j;
|
|
|
|
struct ascodec_request req;
|
2008-11-10 20:55:56 +00:00
|
|
|
|
2010-03-23 04:40:38 +00:00
|
|
|
/* index and cnt will be filled in later, just use 0 */
|
|
|
|
ascodec_req_init(&req, ASCODEC_REQ_READ, 0, 0);
|
2008-11-10 20:55:56 +00:00
|
|
|
|
2010-03-23 04:40:38 +00:00
|
|
|
i = 0;
|
|
|
|
while (len > 0) {
|
|
|
|
int cnt = len > ASCODEC_REQ_MAXLEN ? ASCODEC_REQ_MAXLEN : len;
|
|
|
|
|
|
|
|
req.index = index;
|
|
|
|
req.cnt = cnt;
|
2008-11-10 20:55:56 +00:00
|
|
|
|
2010-03-23 04:40:38 +00:00
|
|
|
ascodec_submit(&req);
|
|
|
|
ascodec_wait(&req);
|
|
|
|
|
|
|
|
for (j=0; j<cnt; j++) data[i++] = req.data[j];
|
|
|
|
|
|
|
|
len -= cnt;
|
|
|
|
index += cnt;
|
|
|
|
}
|
2008-11-10 20:55:56 +00:00
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2011-12-15 03:30:03 +00:00
|
|
|
#if CONFIG_CPU == AS3525v2
|
|
|
|
void ascodec_write_pmu(unsigned int index, unsigned int subreg,
|
|
|
|
unsigned int value)
|
|
|
|
{
|
|
|
|
struct ascodec_request reqs[2];
|
|
|
|
|
|
|
|
int oldstatus = disable_irq_save();
|
|
|
|
/* we submit consecutive requests to make sure no operations happen on the
|
|
|
|
* i2c bus between selecting the sub register and writing to it */
|
|
|
|
ascodec_async_write(AS3543_PMU_ENABLE, 8 | subreg, &reqs[0]);
|
|
|
|
ascodec_async_write(index, value, &reqs[1]);
|
|
|
|
restore_irq(oldstatus);
|
|
|
|
|
|
|
|
/* Wait for second request to finish */
|
|
|
|
ascodec_wait(&reqs[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ascodec_read_pmu(unsigned int index, unsigned int subreg)
|
|
|
|
{
|
|
|
|
struct ascodec_request reqs[2];
|
|
|
|
|
|
|
|
int oldstatus = disable_irq_save();
|
|
|
|
/* we submit consecutive requests to make sure no operations happen on the
|
|
|
|
* i2c bus between selecting the sub register and reading it */
|
|
|
|
ascodec_async_write(AS3543_PMU_ENABLE, subreg, &reqs[0]);
|
|
|
|
ascodec_async_read(index, 1, &reqs[1], NULL);
|
|
|
|
restore_irq(oldstatus);
|
|
|
|
|
|
|
|
/* Wait for second request to finish */
|
|
|
|
ascodec_wait(&reqs[1]);
|
|
|
|
|
|
|
|
return reqs[1].data[0];
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_CPU == AS3525v2 */
|
|
|
|
|
2010-05-21 17:49:04 +00:00
|
|
|
static void ascodec_read_cb(unsigned const char *data, unsigned int len)
|
2010-03-23 05:02:37 +00:00
|
|
|
{
|
2010-06-01 10:16:10 +00:00
|
|
|
if (UNLIKELY(len != 3)) /* some error happened? */
|
|
|
|
panicf("INT_AUDIO callback got %d regs", len);
|
2010-05-21 17:49:04 +00:00
|
|
|
|
|
|
|
if (data[0] & CHG_ENDOFCH) { /* chg finished */
|
2010-05-17 20:53:25 +00:00
|
|
|
ascodec_enrd0_shadow |= CHG_ENDOFCH;
|
2010-03-23 05:02:37 +00:00
|
|
|
IFDEBUG(int_chg_finished++);
|
|
|
|
}
|
2010-05-21 17:49:04 +00:00
|
|
|
if (data[0] & CHG_CHANGED) { /* chg status changed */
|
|
|
|
if (data[0] & CHG_STATUS) {
|
2010-05-17 20:53:25 +00:00
|
|
|
ascodec_enrd0_shadow |= CHG_STATUS;
|
2010-03-23 05:02:37 +00:00
|
|
|
IFDEBUG(int_chg_insert++);
|
|
|
|
} else {
|
2010-05-17 20:53:25 +00:00
|
|
|
ascodec_enrd0_shadow &= ~CHG_STATUS;
|
2010-03-23 05:02:37 +00:00
|
|
|
IFDEBUG(int_chg_remove++);
|
|
|
|
}
|
|
|
|
}
|
2010-05-21 17:49:04 +00:00
|
|
|
if (data[0] & USB_CHANGED) { /* usb status changed */
|
|
|
|
if (data[0] & USB_STATUS) {
|
2010-03-23 05:02:37 +00:00
|
|
|
IFDEBUG(int_usb_insert++);
|
|
|
|
usb_insert_int();
|
|
|
|
} else {
|
|
|
|
IFDEBUG(int_usb_remove++);
|
|
|
|
usb_remove_int();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (data[2] & IRQ_RTC) { /* rtc irq */
|
|
|
|
/*
|
|
|
|
* Can be configured for once per second or once per minute,
|
|
|
|
* default is once per second
|
|
|
|
*/
|
|
|
|
IFDEBUG(int_rtc++);
|
|
|
|
}
|
|
|
|
if (data[2] & IRQ_ADC) { /* adc finished */
|
|
|
|
IFDEBUG(int_adc++);
|
2011-03-02 08:49:38 +00:00
|
|
|
semaphore_release(&adc_done_sem);
|
2010-03-23 05:02:37 +00:00
|
|
|
}
|
|
|
|
VIC_INT_ENABLE = INTERRUPT_AUDIO;
|
|
|
|
}
|
|
|
|
|
2010-06-01 10:16:10 +00:00
|
|
|
void INT_AUDIO(void)
|
|
|
|
{
|
|
|
|
VIC_INT_EN_CLEAR = INTERRUPT_AUDIO;
|
|
|
|
IFDEBUG(int_audio_ctr++);
|
|
|
|
|
|
|
|
ascodec_async_read(AS3514_IRQ_ENRD0, 3, &as_audio_req, ascodec_read_cb);
|
|
|
|
}
|
|
|
|
|
2010-03-23 05:02:37 +00:00
|
|
|
void ascodec_wait_adc_finished(void)
|
|
|
|
{
|
2011-03-02 08:49:38 +00:00
|
|
|
semaphore_wait(&adc_done_sem, TIMEOUT_BLOCK);
|
2010-03-23 05:02:37 +00:00
|
|
|
}
|
|
|
|
|
2010-05-17 20:53:25 +00:00
|
|
|
#ifdef CONFIG_CHARGING
|
|
|
|
bool ascodec_endofch(void)
|
2010-03-23 05:02:37 +00:00
|
|
|
{
|
2010-05-17 20:53:25 +00:00
|
|
|
bool ret = ascodec_enrd0_shadow & CHG_ENDOFCH;
|
2011-12-15 03:30:03 +00:00
|
|
|
bitclr32(&ascodec_enrd0_shadow, CHG_ENDOFCH); /* clear interrupt */
|
2010-05-17 20:53:25 +00:00
|
|
|
return ret;
|
2010-03-23 05:02:37 +00:00
|
|
|
}
|
|
|
|
|
2010-05-17 20:53:25 +00:00
|
|
|
bool ascodec_chg_status(void)
|
2010-03-23 05:02:37 +00:00
|
|
|
{
|
2010-05-17 20:53:25 +00:00
|
|
|
return ascodec_enrd0_shadow & CHG_STATUS;
|
2010-03-23 05:02:37 +00:00
|
|
|
}
|
2010-05-17 20:53:25 +00:00
|
|
|
#endif /* CONFIG_CHARGING */
|
2010-03-23 05:02:37 +00:00
|
|
|
|
2010-03-23 04:40:38 +00:00
|
|
|
/*
|
|
|
|
* NOTE:
|
|
|
|
* After the conversion to interrupts, ascodec_(lock|unlock) are only used by
|
|
|
|
* adc-as3514.c to protect against other threads corrupting the result by using
|
|
|
|
* the ADC at the same time.
|
|
|
|
* Concurrent ascodec_(async_)?(read|write) calls are instead protected
|
|
|
|
* because ascodec_submit() is atomic and concurrent requests will wait
|
|
|
|
* in the queue until the current request is finished.
|
|
|
|
*/
|
2008-11-10 20:55:56 +00:00
|
|
|
void ascodec_lock(void)
|
|
|
|
{
|
|
|
|
mutex_lock(&as_mtx);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ascodec_unlock(void)
|
|
|
|
{
|
|
|
|
mutex_unlock(&as_mtx);
|
|
|
|
}
|