blob: 4ae4bbc8793b13ddd7808f9a927830783f04e8a0 [file] [log] [blame]
/*******************************************************************************
Copyright (C) Marvell International Ltd. and its affiliates
This software file (the "File") is owned and distributed by Marvell
International Ltd. and/or its affiliates ("Marvell") under the following
alternative licensing terms. Once you have made an election to distribute the
File under one of the following license alternatives, please (i) delete this
introductory statement regarding license alternatives, (ii) delete the two
license alternatives that you have not elected to use and (iii) preserve the
Marvell copyright notice above.
********************************************************************************
Marvell Commercial License Option
If you received this File from Marvell and you have entered into a commercial
license agreement (a "Commercial License") with Marvell, the File is licensed
to you under the terms of the applicable Commercial License.
********************************************************************************
Marvell GPL License Option
If you received this File from Marvell, you may opt to use, redistribute and/or
modify this File in accordance with the terms and conditions of the General
Public License Version 2, June 1991 (the "GPL License"), a copy of which is
available along with the File in the license.txt file or by writing to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 or
on the worldwide web at http://www.gnu.org/licenses/gpl.txt.
THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY
DISCLAIMED. The GPL License provides additional details about this warranty
disclaimer.
********************************************************************************
Marvell BSD License Option
If you received this File from Marvell, you may opt to use, redistribute and/or
modify this File under the following licensing terms.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Marvell nor the names of its contributors may be
used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
******************************************************************************/
#include "tdm_if.h"
#include <linux/interrupt.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/proc_fs.h>
#ifndef CONFIG_MV_TDM_SUPPORT
#include "gpp/mvGppRegs.h"
#endif
/* TDM Interrupt Service Routine */
static irqreturn_t tdm_if_isr(int irq, void* dev_id);
/* PCM start/stop */
static void tdm_if_pcm_start(void);
static void tdm_if_pcm_stop(void);
/* Rx/Tx Tasklets */
#if !(defined CONFIG_MV_PHONE_USE_IRQ_PROCESSING) && !(defined CONFIG_MV_PHONE_USE_FIQ_PROCESSING)
static void tdm_if_pcm_rx_process(unsigned long arg);
static void tdm_if_pcm_tx_process(unsigned long arg);
#else
static inline void tdm_if_pcm_rx_process(void);
static inline void tdm_if_pcm_tx_process(void);
#endif
/* TDM proc-fs statistics */
static int proc_tdm_init_read(char *buffer, char **buffer_location, off_t offset,
int buffer_length, int *zero, void *ptr);
static int proc_rx_miss_read(char *buffer, char **buffer_location, off_t offset,
int buffer_length, int *zero, void *ptr);
static int proc_tx_miss_read(char *buffer, char **buffer_location, off_t offset,
int buffer_length, int *zero, void *ptr);
static int proc_rx_over_read(char *buffer, char **buffer_location, off_t offset,
int buffer_length, int *zero, void *ptr);
static int proc_tx_under_read(char *buffer, char **buffer_location, off_t offset,
int buffer_length, int *zero, void *ptr);
/* Module */
static int __init tdm_if_module_init(void);
static void __exit tdm_if_module_exit(void);
/* Globals */
static tdm_if_register_ops_t* tdm_if_register_ops;
#if !(defined CONFIG_MV_PHONE_USE_IRQ_PROCESSING) && !(defined CONFIG_MV_PHONE_USE_FIQ_PROCESSING)
static DECLARE_TASKLET(tdm_if_rx_tasklet, tdm_if_pcm_rx_process, 0);
static DECLARE_TASKLET(tdm_if_tx_tasklet, tdm_if_pcm_tx_process, 0);
#endif
static DEFINE_SPINLOCK(tdm_if_lock);
static unsigned char *rxBuff = NULL, *txBuff = NULL;
static char irqnr;
static unsigned int rx_miss = 0, tx_miss = 0;
static unsigned int rx_over = 0, tx_under = 0;
static struct proc_dir_entry *tdm_stats;
static int pcm_enable = 0;
static int irq_init = 0;
static int tdm_init = 0;
static int buff_size = 0;
static unsigned short test_enable = 0;
#ifdef CONFIG_MV_PHONE_USE_FIQ_PROCESSING
extern int __must_check
request_fiq(unsigned int irq, irq_handler_t handler, unsigned long flags,
const char *name, void *dev);
extern void free_fiq(unsigned int irq, void *dev_id);
#endif /* CONFIG_MV_PHONE_USE_FIQ_PROCESSING */
static int proc_tdm_init_read(char *buffer, char **buffer_location, off_t offset,
int buffer_length, int *zero, void *ptr)
{
return sprintf(buffer, "%u\n", tdm_init);
}
static int proc_rx_miss_read(char *buffer, char **buffer_location, off_t offset,
int buffer_length, int *zero, void *ptr)
{
return sprintf(buffer, "%u\n", rx_miss);
}
static int proc_tx_miss_read(char *buffer, char **buffer_location, off_t offset,
int buffer_length, int *zero, void *ptr)
{
return sprintf(buffer, "%u\n", tx_miss);
}
static int proc_rx_over_read(char *buffer, char **buffer_location, off_t offset,
int buffer_length, int *zero, void *ptr)
{
return sprintf(buffer, "%u\n", rx_over);
}
static int proc_tx_under_read(char *buffer, char **buffer_location, off_t offset,
int buffer_length, int *zero, void *ptr)
{
return sprintf(buffer, "%u\n", tx_under);
}
MV_STATUS tdm_if_init(tdm_if_register_ops_t* register_ops, tdm_if_params_t* tdm_if_params)
{
MV_TDM_PARAMS tdm_params;
printk("Loading Marvell Telephony Driver\n");
/* Check if any SLIC module exists */
if(mvBoardTdmDevicesCountGet() == 0) {
mvCtrlPwrClckSet(TDM_32CH_UNIT_ID, 0, MV_FALSE);
mvCtrlPwrClckSet(TDM_2CH_UNIT_ID, 0, MV_FALSE);
printk("%s: Warning, no SLIC module is connected\n",__FUNCTION__);
return MV_OK;
}
/* Check that selected TDM unit is active */
if (MV_FALSE == mvCtrlPwrClckGet(mvCtrlTdmUnitTypeGet(), 0)) {
printk("%s: Warning, TDM is powered off\n",__FUNCTION__);
return MV_OK;
}
/* Shut down unused unit */
if(mvCtrlTdmUnitTypeGet() == TDM_2CH_UNIT_ID) {
mvCtrlPwrClckSet(TDM_32CH_UNIT_ID, 0, MV_FALSE);
}
else { /* TDM_32CH_UNIT_ID */
mvCtrlPwrClckSet(TDM_2CH_UNIT_ID, 0, MV_FALSE);
}
if((register_ops == NULL) || (tdm_if_params == NULL)) {
printk("%s: bad parameters\n",__FUNCTION__);
return MV_ERROR;
}
/* Check callbacks */
if(register_ops->tdm_if_pcm_ops.pcm_tx_callback == NULL ||
register_ops->tdm_if_pcm_ops.pcm_rx_callback == NULL ) {
printk("%s: missing parameters\n",__FUNCTION__);
return MV_ERROR;
}
/* Reset globals */
rxBuff = txBuff = NULL;
#ifdef CONFIG_MV_TDM_SUPPORT
pcm_enable = 0;
#else
pcm_enable = 1;
#endif
irq_init = 0;
tdm_init = 0;
/* Extract test enable */
test_enable = tdm_if_params->test_enable;
/* Calculate Rx/Tx buffer size(use in callbacks) */
buff_size = (tdm_if_params->pcm_format * tdm_if_params->total_lines * 80 *
(tdm_if_params->sampling_period/MV_TDM_BASE_SAMPLING_PERIOD));
/* Extract TDM irq number */
irqnr = mvCtrlTdmUnitIrqGet();
/* Enable Marvell tracing */
TRC_START();
TRC_INIT();
TRC_REC("->%s\n",__FUNCTION__);
/* Assign TDM parameters */
memcpy(&tdm_params, tdm_if_params, sizeof(MV_TDM_PARAMS));
/* Assign control callbacks */
tdm_if_register_ops = register_ops;
tdm_if_register_ops->tdm_if_ctl_ops.ctl_pcm_start = tdm_if_pcm_start;
tdm_if_register_ops->tdm_if_ctl_ops.ctl_pcm_stop = tdm_if_pcm_stop;
/* TDM init */
if(mvSysTdmInit(&tdm_params) != MV_OK) {
printk("%s: Error, TDM initialization failed !!!\n",__FUNCTION__);
return MV_ERROR;
}
tdm_init = 1;
/* Register TDM interrupt */
#ifdef CONFIG_MV_PHONE_USE_FIQ_PROCESSING
if (request_fiq(irqnr, tdm_if_isr, IRQF_DISABLED, "tdm", NULL)) {
printk("%s: Failed to connect fiq(%d)\n", __FUNCTION__, irqnr);
return MV_ERROR;
}
#else /* CONFIG_MV_PHONE_USE_FIQ_PROCESSING */
if (request_irq(irqnr, tdm_if_isr, IRQF_DISABLED, "tdm", NULL)) {
printk("%s: Failed to connect irq(%d)\n", __FUNCTION__, irqnr);
return MV_ERROR;
}
#endif /* CONFIG_MV_PHONE_USE_FIQ_PROCESSING */
irq_init = 1;
/* Create TDM procFS statistics */
tdm_stats = proc_mkdir("tdm", NULL);
create_proc_read_entry("tdm_init", 0, tdm_stats, proc_tdm_init_read, NULL);
create_proc_read_entry("rx_miss", 0, tdm_stats, proc_rx_miss_read, NULL);
create_proc_read_entry("tx_miss", 0, tdm_stats, proc_tx_miss_read, NULL);
create_proc_read_entry("rx_over", 0, tdm_stats, proc_rx_over_read, NULL);
create_proc_read_entry("tx_under", 0, tdm_stats, proc_tx_under_read, NULL);
TRC_REC("Marvell Telephony Driver Loaded Successfully\n");
#ifdef CONFIG_MV_COMM_UNIT_SUPPORT
/* WA to stop the MCDMA gracefully after commUnit initialization */
tdm_if_pcm_stop();
#endif
TRC_REC("<-%s\n",__FUNCTION__);
return MV_OK;
}
void tdm_if_exit(void)
{
/* Check if already stopped */
if(!irq_init && !pcm_enable && !tdm_init)
return;
TRC_REC("->%s\n",__FUNCTION__);
if(irq_init) {
/* Release interrupt */
#ifndef CONFIG_MV_PHONE_USE_FIQ_PROCESSING
free_irq(irqnr, NULL);
#else /* !CONFIG_MV_PHONE_USE_FIQ_PROCESSING */
free_fiq(irqnr, NULL);
#endif /* !CONFIG_MV_PHONE_USE_FIQ_PROCESSING */
irq_init = 0;
}
/* Stop PCM data sampling */
if(pcm_enable)
tdm_if_pcm_stop();
if(tdm_init) {
#ifdef CONFIG_MV_TDM_SUPPORT
mvTdmRelease();
#else
mvCommUnitRelease();
#endif
tdm_init = 0;
}
/* Remove proc directory & entries */
remove_proc_entry("tdm_init", tdm_stats);
remove_proc_entry("rx_miss", tdm_stats);
remove_proc_entry("tx_miss", tdm_stats);
remove_proc_entry("rx_over", tdm_stats);
remove_proc_entry("tx_under", tdm_stats);
remove_proc_entry("tdm", NULL);
TRC_REC("<-%s\n",__FUNCTION__);
/* Dump output and release Marvell trace resources */
TRC_OUTPUT(0, 1);
TRC_RELEASE();
}
static void tdm_if_pcm_start(void)
{
unsigned long flags;
TRC_REC("->%s\n",__FUNCTION__);
spin_lock_irqsave(&tdm_if_lock, flags);
if(!pcm_enable) {
rxBuff = txBuff = NULL;
pcm_enable = 1;
#ifdef CONFIG_MV_TDM_SUPPORT
mvTdmPcmStart();
#else
mvCommUnitPcmStart();
#endif
}
spin_unlock_irqrestore(&tdm_if_lock, flags);
TRC_REC("<-%s\n",__FUNCTION__);
return;
}
static void tdm_if_pcm_stop(void)
{
unsigned long flags;
TRC_REC("->%s\n",__FUNCTION__);
spin_lock_irqsave(&tdm_if_lock, flags);
if(pcm_enable) {
pcm_enable = 0;
rxBuff = txBuff = NULL;
#ifdef CONFIG_MV_TDM_SUPPORT
mvTdmPcmStop();
#else
mvCommUnitPcmStop();
#endif
}
spin_unlock_irqrestore(&tdm_if_lock, flags);
TRC_REC("<-%s\n",__FUNCTION__);
return;
}
static irqreturn_t tdm_if_isr(int irq, void* dev_id)
{
MV_TDM_INT_INFO tdm_int_info;
unsigned int int_type;
TRC_REC("->%s\n",__FUNCTION__);
/* Extract interrupt information from low level ISR */
#ifdef CONFIG_MV_TDM_SUPPORT
mvTdmIntLow(&tdm_int_info);
#else
mvCommUnitIntLow(&tdm_int_info);
#endif
int_type = tdm_int_info.intType;
/*device_id = tdm_int_info.cs;*/
/* Nothing to do - return */
if(int_type == MV_EMPTY_INT)
goto out;
/* Support multiple interrupt handling */
/* RX interrupt */
if(int_type & MV_RX_INT) {
if(rxBuff != NULL) {
rx_miss++;
TRC_REC("%s: Warning, missed Rx buffer processing !!!\n",__FUNCTION__);
}
else {
rxBuff = tdm_int_info.tdmRxBuff;
#if (defined CONFIG_MV_PHONE_USE_IRQ_PROCESSING) || (defined CONFIG_MV_PHONE_USE_FIQ_PROCESSING)
TRC_REC("%s: running Rx in ISR\n", __FUNCTION__);
tdm_if_pcm_rx_process();
#else
/* Schedule Rx processing within SOFT_IRQ context */
TRC_REC("%s: schedule Rx tasklet\n", __FUNCTION__);
tasklet_hi_schedule(&tdm_if_rx_tasklet);
#endif
}
}
/* TX interrupt */
if(int_type & MV_TX_INT) {
if(txBuff != NULL) {
tx_miss++;
TRC_REC("%s: Warning, missed Tx buffer processing !!!\n",__FUNCTION__);
}
else {
txBuff = tdm_int_info.tdmTxBuff;
#if (defined CONFIG_MV_PHONE_USE_IRQ_PROCESSING) || (defined CONFIG_MV_PHONE_USE_FIQ_PROCESSING)
TRC_REC("%s: running Tx in ISR\n", __FUNCTION__);
tdm_if_pcm_tx_process();
#else
/* Schedule Tx processing within SOFT_IRQ context */
TRC_REC("%s: schedule Tx tasklet\n", __FUNCTION__);
tasklet_hi_schedule(&tdm_if_tx_tasklet);
#endif
}
}
/* PHONE interrupt */
if(int_type & MV_PHONE_INT) {
/* TBD */
}
/* ERROR interrupt */
if(int_type & MV_ERROR_INT) {
if(int_type & MV_RX_ERROR_INT)
rx_over++;
if(int_type & MV_TX_ERROR_INT)
tx_under++;
}
out:
TRC_REC("<-%s\n",__FUNCTION__);
return IRQ_HANDLED;
}
#if (defined CONFIG_MV_PHONE_USE_IRQ_PROCESSING) || (defined CONFIG_MV_PHONE_USE_FIQ_PROCESSING)
static inline void tdm_if_pcm_rx_process(void)
#else
/* Rx tasklet */
static void tdm_if_pcm_rx_process(unsigned long arg)
#endif
{
TRC_REC("->%s\n",__FUNCTION__);
if(pcm_enable) {
if(rxBuff == NULL) {
TRC_REC("%s: Error, empty Rx processing\n",__FUNCTION__);
return;
}
/* Fill TDM Rx aggregated buffer */
#ifdef CONFIG_MV_TDM_SUPPORT
if(mvTdmRx(rxBuff) == MV_OK)
tdm_if_register_ops->tdm_if_pcm_ops.pcm_rx_callback(rxBuff, buff_size); /* Dispatch Rx handler */
#else
if(mvCommUnitRx(rxBuff) == MV_OK) {
tdm_if_register_ops->tdm_if_pcm_ops.pcm_rx_callback(rxBuff, buff_size); /* Dispatch Rx handler */
/* Since data buffer is shared among MCDMA and CPU, need to invalidate
before it accessed by MCDMA */
mvOsCacheInvalidate(NULL, rxBuff, buff_size);
}
#endif
else
printk("%s: could not fill Rx buffer\n",__FUNCTION__);
}
/* Clear rxBuff for next iteration */
rxBuff = NULL;
TRC_REC("<-%s\n",__FUNCTION__);
return;
}
#if (defined CONFIG_MV_PHONE_USE_IRQ_PROCESSING) || (defined CONFIG_MV_PHONE_USE_FIQ_PROCESSING)
static inline void tdm_if_pcm_tx_process(void)
#else
/* Tx tasklet */
static void tdm_if_pcm_tx_process(unsigned long arg)
#endif
{
TRC_REC("->%s\n",__FUNCTION__);
if(pcm_enable) {
if(txBuff == NULL) {
TRC_REC("%s: Error, empty Tx processing\n",__FUNCTION__);
return;
}
/* Dispatch Tx handler */
tdm_if_register_ops->tdm_if_pcm_ops.pcm_tx_callback(txBuff, buff_size);
if(test_enable == 0) {
/* Fill Tx aggregated buffer */
#ifdef CONFIG_MV_TDM_SUPPORT
if(mvTdmTx(txBuff) != MV_OK)
#else
if(mvCommUnitTx(txBuff) != MV_OK)
#endif /* CONFIG_MV_TDM_SUPPORT */
printk("%s: could not fill Tx buffer\n",__FUNCTION__);
}
}
/* Clear txBuff for next iteration */
txBuff = NULL;
TRC_REC("<-%s\n",__FUNCTION__);
return;
}
void tdm_if_stats_get(tdm_if_stats_t* tdm_if_stats)
{
tdm_if_stats->tdm_init = tdm_init;
tdm_if_stats->rx_miss = rx_miss;
tdm_if_stats->tx_miss = tx_miss;
tdm_if_stats->rx_over = rx_over;
tdm_if_stats->tx_under = tx_under;
return;
}
static int __init tdm_if_module_init(void)
{
/* The real init is done later */
return 0;
}
static void __exit tdm_if_module_exit(void)
{
tdm_if_exit();
return;
}
/* Module stuff */
module_init(tdm_if_module_init);
module_exit(tdm_if_module_exit);
MODULE_DESCRIPTION("Marvell TDM I/F Device Driver - www.marvell.com");
MODULE_AUTHOR("Eran Ben-Avi <benavi@marvell.com>");
MODULE_LICENSE("GPL");