2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/mach-pxa/ssp.c
|
|
|
|
*
|
|
|
|
* based on linux/arch/arm/mach-sa1100/ssp.c by Russell King
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Russell King.
|
|
|
|
* Copyright (C) 2003 Wolfson Microelectronics PLC
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* PXA2xx SSP driver. This provides the generic core for simple
|
|
|
|
* IO-based SSP applications and allows easy port setup for DMA access.
|
|
|
|
*
|
|
|
|
* Author: Liam Girdwood <liam.girdwood@wolfsonmicro.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/ioport.h>
|
|
|
|
#include <linux/init.h>
|
2006-01-12 19:42:23 +01:00
|
|
|
#include <linux/mutex.h>
|
2007-12-06 10:56:42 +01:00
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/platform_device.h>
|
2008-09-06 13:10:45 +02:00
|
|
|
#include <linux/io.h>
|
2007-12-06 10:56:42 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/irq.h>
|
2008-08-05 17:14:15 +02:00
|
|
|
#include <mach/hardware.h>
|
|
|
|
#include <mach/ssp.h>
|
|
|
|
#include <mach/regs-ssp.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2010-02-09 04:10:10 +01:00
|
|
|
#ifdef CONFIG_PXA_SSP_LEGACY
|
|
|
|
|
2006-08-27 13:54:56 +02:00
|
|
|
#define TIMEOUT 100000
|
|
|
|
|
2006-10-06 19:53:39 +02:00
|
|
|
static irqreturn_t ssp_interrupt(int irq, void *dev_id)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-10-26 11:40:22 +02:00
|
|
|
struct ssp_dev *dev = dev_id;
|
2007-11-30 11:26:56 +01:00
|
|
|
struct ssp_device *ssp = dev->ssp;
|
|
|
|
unsigned int status;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-11-30 11:26:56 +01:00
|
|
|
status = __raw_readl(ssp->mmio_base + SSSR);
|
|
|
|
__raw_writel(status, ssp->mmio_base + SSSR);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
if (status & SSSR_ROR)
|
|
|
|
printk(KERN_WARNING "SSP(%d): receiver overrun\n", dev->port);
|
|
|
|
|
|
|
|
if (status & SSSR_TUR)
|
|
|
|
printk(KERN_WARNING "SSP(%d): transmitter underrun\n", dev->port);
|
|
|
|
|
|
|
|
if (status & SSSR_BCE)
|
|
|
|
printk(KERN_WARNING "SSP(%d): bit count error\n", dev->port);
|
|
|
|
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ssp_write_word - write a word to the SSP port
|
|
|
|
* @data: 32-bit, MSB justified data to write.
|
|
|
|
*
|
|
|
|
* Wait for a free entry in the SSP transmit FIFO, and write a data
|
|
|
|
* word to the SSP port.
|
|
|
|
*
|
|
|
|
* The caller is expected to perform the necessary locking.
|
|
|
|
*
|
|
|
|
* Returns:
|
2006-08-27 13:54:56 +02:00
|
|
|
* %-ETIMEDOUT timeout occurred
|
2005-04-17 00:20:36 +02:00
|
|
|
* 0 success
|
|
|
|
*/
|
|
|
|
int ssp_write_word(struct ssp_dev *dev, u32 data)
|
|
|
|
{
|
2007-11-30 11:26:56 +01:00
|
|
|
struct ssp_device *ssp = dev->ssp;
|
2006-08-27 13:54:56 +02:00
|
|
|
int timeout = TIMEOUT;
|
|
|
|
|
2007-11-30 11:26:56 +01:00
|
|
|
while (!(__raw_readl(ssp->mmio_base + SSSR) & SSSR_TNF)) {
|
2006-08-27 13:54:56 +02:00
|
|
|
if (!--timeout)
|
|
|
|
return -ETIMEDOUT;
|
2005-04-17 00:20:36 +02:00
|
|
|
cpu_relax();
|
2006-08-27 13:54:56 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-11-30 11:26:56 +01:00
|
|
|
__raw_writel(data, ssp->mmio_base + SSDR);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ssp_read_word - read a word from the SSP port
|
|
|
|
*
|
|
|
|
* Wait for a data word in the SSP receive FIFO, and return the
|
|
|
|
* received data. Data is LSB justified.
|
|
|
|
*
|
|
|
|
* Note: Currently, if data is not expected to be received, this
|
|
|
|
* function will wait for ever.
|
|
|
|
*
|
|
|
|
* The caller is expected to perform the necessary locking.
|
|
|
|
*
|
|
|
|
* Returns:
|
2006-08-27 13:54:56 +02:00
|
|
|
* %-ETIMEDOUT timeout occurred
|
2005-04-17 00:20:36 +02:00
|
|
|
* 32-bit data success
|
|
|
|
*/
|
2006-08-27 13:54:56 +02:00
|
|
|
int ssp_read_word(struct ssp_dev *dev, u32 *data)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-11-30 11:26:56 +01:00
|
|
|
struct ssp_device *ssp = dev->ssp;
|
2006-08-27 13:54:56 +02:00
|
|
|
int timeout = TIMEOUT;
|
|
|
|
|
2007-11-30 11:26:56 +01:00
|
|
|
while (!(__raw_readl(ssp->mmio_base + SSSR) & SSSR_RNE)) {
|
2006-08-27 13:54:56 +02:00
|
|
|
if (!--timeout)
|
|
|
|
return -ETIMEDOUT;
|
2005-04-17 00:20:36 +02:00
|
|
|
cpu_relax();
|
2006-08-27 13:54:56 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-11-30 11:26:56 +01:00
|
|
|
*data = __raw_readl(ssp->mmio_base + SSDR);
|
2006-08-27 13:54:56 +02:00
|
|
|
return 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ssp_flush - flush the transmit and receive FIFOs
|
|
|
|
*
|
|
|
|
* Wait for the SSP to idle, and ensure that the receive FIFO
|
|
|
|
* is empty.
|
|
|
|
*
|
|
|
|
* The caller is expected to perform the necessary locking.
|
|
|
|
*/
|
2006-08-27 13:54:56 +02:00
|
|
|
int ssp_flush(struct ssp_dev *dev)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-11-30 11:26:56 +01:00
|
|
|
struct ssp_device *ssp = dev->ssp;
|
2006-08-27 13:54:56 +02:00
|
|
|
int timeout = TIMEOUT * 2;
|
|
|
|
|
2007-11-23 07:55:59 +01:00
|
|
|
/* ensure TX FIFO is empty instead of not full */
|
|
|
|
if (cpu_is_pxa3xx()) {
|
|
|
|
while (__raw_readl(ssp->mmio_base + SSSR) & 0xf00) {
|
|
|
|
if (!--timeout)
|
|
|
|
return -ETIMEDOUT;
|
|
|
|
cpu_relax();
|
|
|
|
}
|
|
|
|
timeout = TIMEOUT * 2;
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
do {
|
2007-11-30 11:26:56 +01:00
|
|
|
while (__raw_readl(ssp->mmio_base + SSSR) & SSSR_RNE) {
|
2006-08-27 13:54:56 +02:00
|
|
|
if (!--timeout)
|
|
|
|
return -ETIMEDOUT;
|
2007-11-30 11:26:56 +01:00
|
|
|
(void)__raw_readl(ssp->mmio_base + SSDR);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2006-08-27 13:54:56 +02:00
|
|
|
if (!--timeout)
|
|
|
|
return -ETIMEDOUT;
|
2007-11-30 11:26:56 +01:00
|
|
|
} while (__raw_readl(ssp->mmio_base + SSSR) & SSSR_BSY);
|
2006-08-27 13:54:56 +02:00
|
|
|
|
|
|
|
return 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ssp_enable - enable the SSP port
|
|
|
|
*
|
|
|
|
* Turn on the SSP port.
|
|
|
|
*/
|
|
|
|
void ssp_enable(struct ssp_dev *dev)
|
|
|
|
{
|
2007-11-30 11:26:56 +01:00
|
|
|
struct ssp_device *ssp = dev->ssp;
|
|
|
|
uint32_t sscr0;
|
|
|
|
|
|
|
|
sscr0 = __raw_readl(ssp->mmio_base + SSCR0);
|
|
|
|
sscr0 |= SSCR0_SSE;
|
|
|
|
__raw_writel(sscr0, ssp->mmio_base + SSCR0);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ssp_disable - shut down the SSP port
|
|
|
|
*
|
|
|
|
* Turn off the SSP port, optionally powering it down.
|
|
|
|
*/
|
|
|
|
void ssp_disable(struct ssp_dev *dev)
|
|
|
|
{
|
2007-11-30 11:26:56 +01:00
|
|
|
struct ssp_device *ssp = dev->ssp;
|
|
|
|
uint32_t sscr0;
|
|
|
|
|
|
|
|
sscr0 = __raw_readl(ssp->mmio_base + SSCR0);
|
|
|
|
sscr0 &= ~SSCR0_SSE;
|
|
|
|
__raw_writel(sscr0, ssp->mmio_base + SSCR0);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ssp_save_state - save the SSP configuration
|
|
|
|
* @ssp: pointer to structure to save SSP configuration
|
|
|
|
*
|
|
|
|
* Save the configured SSP state for suspend.
|
|
|
|
*/
|
2007-11-30 11:26:56 +01:00
|
|
|
void ssp_save_state(struct ssp_dev *dev, struct ssp_state *state)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-11-30 11:26:56 +01:00
|
|
|
struct ssp_device *ssp = dev->ssp;
|
|
|
|
|
|
|
|
state->cr0 = __raw_readl(ssp->mmio_base + SSCR0);
|
|
|
|
state->cr1 = __raw_readl(ssp->mmio_base + SSCR1);
|
|
|
|
state->to = __raw_readl(ssp->mmio_base + SSTO);
|
|
|
|
state->psp = __raw_readl(ssp->mmio_base + SSPSP);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-11-30 11:26:56 +01:00
|
|
|
ssp_disable(dev);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ssp_restore_state - restore a previously saved SSP configuration
|
|
|
|
* @ssp: pointer to configuration saved by ssp_save_state
|
|
|
|
*
|
|
|
|
* Restore the SSP configuration saved previously by ssp_save_state.
|
|
|
|
*/
|
2007-11-30 11:26:56 +01:00
|
|
|
void ssp_restore_state(struct ssp_dev *dev, struct ssp_state *state)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-11-30 11:26:56 +01:00
|
|
|
struct ssp_device *ssp = dev->ssp;
|
|
|
|
uint32_t sssr = SSSR_ROR | SSSR_TUR | SSSR_BCE;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-11-30 11:26:56 +01:00
|
|
|
__raw_writel(sssr, ssp->mmio_base + SSSR);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-11-30 11:26:56 +01:00
|
|
|
__raw_writel(state->cr0 & ~SSCR0_SSE, ssp->mmio_base + SSCR0);
|
|
|
|
__raw_writel(state->cr1, ssp->mmio_base + SSCR1);
|
|
|
|
__raw_writel(state->to, ssp->mmio_base + SSTO);
|
|
|
|
__raw_writel(state->psp, ssp->mmio_base + SSPSP);
|
|
|
|
__raw_writel(state->cr0, ssp->mmio_base + SSCR0);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ssp_config - configure SSP port settings
|
|
|
|
* @mode: port operating mode
|
|
|
|
* @flags: port config flags
|
|
|
|
* @psp_flags: port PSP config flags
|
|
|
|
* @speed: port speed
|
|
|
|
*
|
|
|
|
* Port MUST be disabled by ssp_disable before making any config changes.
|
|
|
|
*/
|
|
|
|
int ssp_config(struct ssp_dev *dev, u32 mode, u32 flags, u32 psp_flags, u32 speed)
|
|
|
|
{
|
2007-11-30 11:26:56 +01:00
|
|
|
struct ssp_device *ssp = dev->ssp;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
dev->mode = mode;
|
|
|
|
dev->flags = flags;
|
|
|
|
dev->psp_flags = psp_flags;
|
|
|
|
dev->speed = speed;
|
|
|
|
|
|
|
|
/* set up port type, speed, port settings */
|
2007-11-30 11:26:56 +01:00
|
|
|
__raw_writel((dev->speed | dev->mode), ssp->mmio_base + SSCR0);
|
|
|
|
__raw_writel(dev->flags, ssp->mmio_base + SSCR1);
|
|
|
|
__raw_writel(dev->psp_flags, ssp->mmio_base + SSPSP);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ssp_init - setup the SSP port
|
|
|
|
*
|
|
|
|
* initialise and claim resources for the SSP port.
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* %-ENODEV if the SSP port is unavailable
|
|
|
|
* %-EBUSY if the resources are already in use
|
|
|
|
* %0 on success
|
|
|
|
*/
|
2005-11-10 18:45:39 +01:00
|
|
|
int ssp_init(struct ssp_dev *dev, u32 port, u32 init_flags)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-12-06 10:56:42 +01:00
|
|
|
struct ssp_device *ssp;
|
2005-11-10 18:45:39 +01:00
|
|
|
int ret;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-06 10:56:42 +01:00
|
|
|
ssp = ssp_request(port, "SSP");
|
|
|
|
if (ssp == NULL)
|
2005-04-17 00:20:36 +02:00
|
|
|
return -ENODEV;
|
|
|
|
|
2007-12-06 10:56:42 +01:00
|
|
|
dev->ssp = ssp;
|
2005-04-17 00:20:36 +02:00
|
|
|
dev->port = port;
|
|
|
|
|
2005-11-10 18:45:39 +01:00
|
|
|
/* do we need to get irq */
|
|
|
|
if (!(init_flags & SSP_NO_IRQ)) {
|
2007-12-06 10:56:42 +01:00
|
|
|
ret = request_irq(ssp->irq, ssp_interrupt,
|
2005-11-10 18:45:39 +01:00
|
|
|
0, "SSP", dev);
|
|
|
|
if (ret)
|
|
|
|
goto out_region;
|
2007-12-06 10:56:42 +01:00
|
|
|
dev->irq = ssp->irq;
|
2005-11-10 18:45:39 +01:00
|
|
|
} else
|
2008-06-19 04:18:09 +02:00
|
|
|
dev->irq = NO_IRQ;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* turn on SSP port clock */
|
2007-12-06 10:56:42 +01:00
|
|
|
clk_enable(ssp->clk);
|
2005-04-17 00:20:36 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
out_region:
|
2007-12-06 10:56:42 +01:00
|
|
|
ssp_free(ssp);
|
2005-04-17 00:20:36 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ssp_exit - undo the effects of ssp_init
|
|
|
|
*
|
|
|
|
* release and free resources for the SSP port.
|
|
|
|
*/
|
|
|
|
void ssp_exit(struct ssp_dev *dev)
|
|
|
|
{
|
2007-12-06 10:56:42 +01:00
|
|
|
struct ssp_device *ssp = dev->ssp;
|
|
|
|
|
2007-11-30 11:26:56 +01:00
|
|
|
ssp_disable(dev);
|
2008-06-19 04:18:09 +02:00
|
|
|
if (dev->irq != NO_IRQ)
|
|
|
|
free_irq(dev->irq, dev);
|
2007-12-06 10:56:42 +01:00
|
|
|
clk_disable(ssp->clk);
|
|
|
|
ssp_free(ssp);
|
|
|
|
}
|
2010-02-09 04:10:10 +01:00
|
|
|
#endif /* CONFIG_PXA_SSP_LEGACY */
|
2007-12-06 10:56:42 +01:00
|
|
|
|
|
|
|
static DEFINE_MUTEX(ssp_lock);
|
|
|
|
static LIST_HEAD(ssp_list);
|
|
|
|
|
|
|
|
struct ssp_device *ssp_request(int port, const char *label)
|
|
|
|
{
|
|
|
|
struct ssp_device *ssp = NULL;
|
|
|
|
|
|
|
|
mutex_lock(&ssp_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-06 10:56:42 +01:00
|
|
|
list_for_each_entry(ssp, &ssp_list, node) {
|
|
|
|
if (ssp->port_id == port && ssp->use_count == 0) {
|
|
|
|
ssp->use_count++;
|
|
|
|
ssp->label = label;
|
|
|
|
break;
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-12-06 10:56:42 +01:00
|
|
|
mutex_unlock(&ssp_lock);
|
|
|
|
|
2008-06-05 11:43:14 +02:00
|
|
|
if (&ssp->node == &ssp_list)
|
2007-12-06 10:56:42 +01:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return ssp;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(ssp_request);
|
|
|
|
|
|
|
|
void ssp_free(struct ssp_device *ssp)
|
|
|
|
{
|
|
|
|
mutex_lock(&ssp_lock);
|
|
|
|
if (ssp->use_count) {
|
|
|
|
ssp->use_count--;
|
|
|
|
ssp->label = NULL;
|
|
|
|
} else
|
|
|
|
dev_err(&ssp->pdev->dev, "device already free\n");
|
|
|
|
mutex_unlock(&ssp_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-12-06 10:56:42 +01:00
|
|
|
EXPORT_SYMBOL(ssp_free);
|
|
|
|
|
2009-10-22 18:09:47 +02:00
|
|
|
static int __devinit ssp_probe(struct platform_device *pdev)
|
2007-12-06 10:56:42 +01:00
|
|
|
{
|
2009-10-22 18:09:47 +02:00
|
|
|
const struct platform_device_id *id = platform_get_device_id(pdev);
|
2007-12-06 10:56:42 +01:00
|
|
|
struct resource *res;
|
|
|
|
struct ssp_device *ssp;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
ssp = kzalloc(sizeof(struct ssp_device), GFP_KERNEL);
|
|
|
|
if (ssp == NULL) {
|
|
|
|
dev_err(&pdev->dev, "failed to allocate memory");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
2008-06-19 03:55:52 +02:00
|
|
|
ssp->pdev = pdev;
|
2007-12-06 10:56:42 +01:00
|
|
|
|
2008-11-11 18:52:32 +01:00
|
|
|
ssp->clk = clk_get(&pdev->dev, NULL);
|
2007-12-06 10:56:42 +01:00
|
|
|
if (IS_ERR(ssp->clk)) {
|
|
|
|
ret = PTR_ERR(ssp->clk);
|
|
|
|
goto err_free;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
|
|
if (res == NULL) {
|
|
|
|
dev_err(&pdev->dev, "no memory resource defined\n");
|
|
|
|
ret = -ENODEV;
|
|
|
|
goto err_free_clk;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = request_mem_region(res->start, res->end - res->start + 1,
|
|
|
|
pdev->name);
|
|
|
|
if (res == NULL) {
|
|
|
|
dev_err(&pdev->dev, "failed to request memory resource\n");
|
|
|
|
ret = -EBUSY;
|
|
|
|
goto err_free_clk;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssp->phys_base = res->start;
|
|
|
|
|
|
|
|
ssp->mmio_base = ioremap(res->start, res->end - res->start + 1);
|
|
|
|
if (ssp->mmio_base == NULL) {
|
|
|
|
dev_err(&pdev->dev, "failed to ioremap() registers\n");
|
|
|
|
ret = -ENODEV;
|
|
|
|
goto err_free_mem;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssp->irq = platform_get_irq(pdev, 0);
|
|
|
|
if (ssp->irq < 0) {
|
|
|
|
dev_err(&pdev->dev, "no IRQ resource defined\n");
|
|
|
|
ret = -ENODEV;
|
|
|
|
goto err_free_io;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_DMA, 0);
|
|
|
|
if (res == NULL) {
|
|
|
|
dev_err(&pdev->dev, "no SSP RX DRCMR defined\n");
|
|
|
|
ret = -ENODEV;
|
|
|
|
goto err_free_io;
|
|
|
|
}
|
|
|
|
ssp->drcmr_rx = res->start;
|
|
|
|
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_DMA, 1);
|
|
|
|
if (res == NULL) {
|
|
|
|
dev_err(&pdev->dev, "no SSP TX DRCMR defined\n");
|
|
|
|
ret = -ENODEV;
|
|
|
|
goto err_free_io;
|
|
|
|
}
|
|
|
|
ssp->drcmr_tx = res->start;
|
|
|
|
|
|
|
|
/* PXA2xx/3xx SSP ports starts from 1 and the internal pdev->id
|
|
|
|
* starts from 0, do a translation here
|
|
|
|
*/
|
|
|
|
ssp->port_id = pdev->id + 1;
|
|
|
|
ssp->use_count = 0;
|
2009-10-22 18:09:47 +02:00
|
|
|
ssp->type = (int)id->driver_data;
|
2007-12-06 10:56:42 +01:00
|
|
|
|
|
|
|
mutex_lock(&ssp_lock);
|
|
|
|
list_add(&ssp->node, &ssp_list);
|
|
|
|
mutex_unlock(&ssp_lock);
|
|
|
|
|
|
|
|
platform_set_drvdata(pdev, ssp);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_free_io:
|
|
|
|
iounmap(ssp->mmio_base);
|
|
|
|
err_free_mem:
|
|
|
|
release_mem_region(res->start, res->end - res->start + 1);
|
|
|
|
err_free_clk:
|
|
|
|
clk_put(ssp->clk);
|
|
|
|
err_free:
|
|
|
|
kfree(ssp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int __devexit ssp_remove(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
struct resource *res;
|
|
|
|
struct ssp_device *ssp;
|
|
|
|
|
|
|
|
ssp = platform_get_drvdata(pdev);
|
|
|
|
if (ssp == NULL)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
iounmap(ssp->mmio_base);
|
|
|
|
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
|
|
release_mem_region(res->start, res->end - res->start + 1);
|
|
|
|
|
|
|
|
clk_put(ssp->clk);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-12-06 10:56:42 +01:00
|
|
|
mutex_lock(&ssp_lock);
|
|
|
|
list_del(&ssp->node);
|
|
|
|
mutex_unlock(&ssp_lock);
|
|
|
|
|
|
|
|
kfree(ssp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-22 18:09:47 +02:00
|
|
|
static const struct platform_device_id ssp_id_table[] = {
|
|
|
|
{ "pxa25x-ssp", PXA25x_SSP },
|
|
|
|
{ "pxa25x-nssp", PXA25x_NSSP },
|
|
|
|
{ "pxa27x-ssp", PXA27x_SSP },
|
|
|
|
{ },
|
2007-12-06 10:56:42 +01:00
|
|
|
};
|
|
|
|
|
2009-10-22 18:09:47 +02:00
|
|
|
static struct platform_driver ssp_driver = {
|
|
|
|
.probe = ssp_probe,
|
2007-12-06 10:56:42 +01:00
|
|
|
.remove = __devexit_p(ssp_remove),
|
|
|
|
.driver = {
|
2009-10-22 18:09:47 +02:00
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.name = "pxa2xx-ssp",
|
2007-12-06 10:56:42 +01:00
|
|
|
},
|
2009-10-22 18:09:47 +02:00
|
|
|
.id_table = ssp_id_table,
|
2007-12-06 10:56:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static int __init pxa_ssp_init(void)
|
|
|
|
{
|
2009-10-22 18:09:47 +02:00
|
|
|
return platform_driver_register(&ssp_driver);
|
2007-12-06 10:56:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit pxa_ssp_exit(void)
|
|
|
|
{
|
2009-10-22 18:09:47 +02:00
|
|
|
platform_driver_unregister(&ssp_driver);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-12-10 16:35:54 +01:00
|
|
|
arch_initcall(pxa_ssp_init);
|
2007-12-06 10:56:42 +01:00
|
|
|
module_exit(pxa_ssp_exit);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2010-02-09 04:10:10 +01:00
|
|
|
#ifdef CONFIG_PXA_SSP_LEGACY
|
2005-04-17 00:20:36 +02:00
|
|
|
EXPORT_SYMBOL(ssp_write_word);
|
|
|
|
EXPORT_SYMBOL(ssp_read_word);
|
|
|
|
EXPORT_SYMBOL(ssp_flush);
|
|
|
|
EXPORT_SYMBOL(ssp_enable);
|
|
|
|
EXPORT_SYMBOL(ssp_disable);
|
|
|
|
EXPORT_SYMBOL(ssp_save_state);
|
|
|
|
EXPORT_SYMBOL(ssp_restore_state);
|
|
|
|
EXPORT_SYMBOL(ssp_init);
|
|
|
|
EXPORT_SYMBOL(ssp_exit);
|
|
|
|
EXPORT_SYMBOL(ssp_config);
|
2010-02-09 04:10:10 +01:00
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
MODULE_DESCRIPTION("PXA SSP driver");
|
|
|
|
MODULE_AUTHOR("Liam Girdwood");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|