2011-01-08 13:36:12 +08:00
|
|
|
/*
|
2012-04-06 05:54:53 +08:00
|
|
|
* tegra20_das.c - Tegra20 DAS driver
|
2011-01-08 13:36:12 +08:00
|
|
|
*
|
|
|
|
* Author: Stephen Warren <swarren@nvidia.com>
|
|
|
|
* Copyright (C) 2010 - NVIDIA, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/debugfs.h>
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include <mach/iomap.h>
|
|
|
|
#include <sound/soc.h>
|
2012-04-06 05:54:53 +08:00
|
|
|
#include "tegra20_das.h"
|
2011-01-08 13:36:12 +08:00
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
#define DRV_NAME "tegra20-das"
|
2011-01-08 13:36:12 +08:00
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
static struct tegra20_das *das;
|
2011-01-08 13:36:12 +08:00
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
static inline void tegra20_das_write(u32 reg, u32 val)
|
2011-01-08 13:36:12 +08:00
|
|
|
{
|
|
|
|
__raw_writel(val, das->regs + reg);
|
|
|
|
}
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
static inline u32 tegra20_das_read(u32 reg)
|
2011-01-08 13:36:12 +08:00
|
|
|
{
|
|
|
|
return __raw_readl(das->regs + reg);
|
|
|
|
}
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
int tegra20_das_connect_dap_to_dac(int dap, int dac)
|
2011-01-08 13:36:12 +08:00
|
|
|
{
|
|
|
|
u32 addr;
|
|
|
|
u32 reg;
|
|
|
|
|
|
|
|
if (!das)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
addr = TEGRA20_DAS_DAP_CTRL_SEL +
|
|
|
|
(dap * TEGRA20_DAS_DAP_CTRL_SEL_STRIDE);
|
|
|
|
reg = dac << TEGRA20_DAS_DAP_CTRL_SEL_DAP_CTRL_SEL_P;
|
2011-01-08 13:36:12 +08:00
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
tegra20_das_write(addr, reg);
|
2011-01-08 13:36:12 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2012-04-07 00:30:52 +08:00
|
|
|
EXPORT_SYMBOL_GPL(tegra20_das_connect_dap_to_dac);
|
2011-01-08 13:36:12 +08:00
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
int tegra20_das_connect_dap_to_dap(int dap, int otherdap, int master,
|
|
|
|
int sdata1rx, int sdata2rx)
|
2011-01-08 13:36:12 +08:00
|
|
|
{
|
|
|
|
u32 addr;
|
|
|
|
u32 reg;
|
|
|
|
|
|
|
|
if (!das)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
addr = TEGRA20_DAS_DAP_CTRL_SEL +
|
|
|
|
(dap * TEGRA20_DAS_DAP_CTRL_SEL_STRIDE);
|
|
|
|
reg = otherdap << TEGRA20_DAS_DAP_CTRL_SEL_DAP_CTRL_SEL_P |
|
|
|
|
!!sdata2rx << TEGRA20_DAS_DAP_CTRL_SEL_DAP_SDATA2_TX_RX_P |
|
|
|
|
!!sdata1rx << TEGRA20_DAS_DAP_CTRL_SEL_DAP_SDATA1_TX_RX_P |
|
|
|
|
!!master << TEGRA20_DAS_DAP_CTRL_SEL_DAP_MS_SEL_P;
|
2011-01-08 13:36:12 +08:00
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
tegra20_das_write(addr, reg);
|
2011-01-08 13:36:12 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2012-04-07 00:30:52 +08:00
|
|
|
EXPORT_SYMBOL_GPL(tegra20_das_connect_dap_to_dap);
|
2011-01-08 13:36:12 +08:00
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
int tegra20_das_connect_dac_to_dap(int dac, int dap)
|
2011-01-08 13:36:12 +08:00
|
|
|
{
|
|
|
|
u32 addr;
|
|
|
|
u32 reg;
|
|
|
|
|
|
|
|
if (!das)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
addr = TEGRA20_DAS_DAC_INPUT_DATA_CLK_SEL +
|
|
|
|
(dac * TEGRA20_DAS_DAC_INPUT_DATA_CLK_SEL_STRIDE);
|
|
|
|
reg = dap << TEGRA20_DAS_DAC_INPUT_DATA_CLK_SEL_DAC_CLK_SEL_P |
|
|
|
|
dap << TEGRA20_DAS_DAC_INPUT_DATA_CLK_SEL_DAC_SDATA1_SEL_P |
|
|
|
|
dap << TEGRA20_DAS_DAC_INPUT_DATA_CLK_SEL_DAC_SDATA2_SEL_P;
|
2011-01-08 13:36:12 +08:00
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
tegra20_das_write(addr, reg);
|
2011-01-08 13:36:12 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2012-04-07 00:30:52 +08:00
|
|
|
EXPORT_SYMBOL_GPL(tegra20_das_connect_dac_to_dap);
|
2011-01-08 13:36:12 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG_FS
|
2012-04-07 00:30:52 +08:00
|
|
|
static int tegra20_das_show(struct seq_file *s, void *unused)
|
2011-01-08 13:36:12 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
u32 addr;
|
|
|
|
u32 reg;
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
for (i = 0; i < TEGRA20_DAS_DAP_CTRL_SEL_COUNT; i++) {
|
|
|
|
addr = TEGRA20_DAS_DAP_CTRL_SEL +
|
|
|
|
(i * TEGRA20_DAS_DAP_CTRL_SEL_STRIDE);
|
|
|
|
reg = tegra20_das_read(addr);
|
|
|
|
seq_printf(s, "TEGRA20_DAS_DAP_CTRL_SEL[%d] = %08x\n", i, reg);
|
2011-01-08 13:36:12 +08:00
|
|
|
}
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
for (i = 0; i < TEGRA20_DAS_DAC_INPUT_DATA_CLK_SEL_COUNT; i++) {
|
|
|
|
addr = TEGRA20_DAS_DAC_INPUT_DATA_CLK_SEL +
|
|
|
|
(i * TEGRA20_DAS_DAC_INPUT_DATA_CLK_SEL_STRIDE);
|
|
|
|
reg = tegra20_das_read(addr);
|
|
|
|
seq_printf(s, "TEGRA20_DAS_DAC_INPUT_DATA_CLK_SEL[%d] = %08x\n",
|
|
|
|
i, reg);
|
2011-01-08 13:36:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
static int tegra20_das_debug_open(struct inode *inode, struct file *file)
|
2011-01-08 13:36:12 +08:00
|
|
|
{
|
2012-04-07 00:30:52 +08:00
|
|
|
return single_open(file, tegra20_das_show, inode->i_private);
|
2011-01-08 13:36:12 +08:00
|
|
|
}
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
static const struct file_operations tegra20_das_debug_fops = {
|
|
|
|
.open = tegra20_das_debug_open,
|
2011-01-08 13:36:12 +08:00
|
|
|
.read = seq_read,
|
|
|
|
.llseek = seq_lseek,
|
|
|
|
.release = single_release,
|
|
|
|
};
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
static void tegra20_das_debug_add(struct tegra20_das *das)
|
2011-01-08 13:36:12 +08:00
|
|
|
{
|
2011-01-11 06:25:21 +08:00
|
|
|
das->debug = debugfs_create_file(DRV_NAME, S_IRUGO,
|
|
|
|
snd_soc_debugfs_root, das,
|
2012-04-07 00:30:52 +08:00
|
|
|
&tegra20_das_debug_fops);
|
2011-01-08 13:36:12 +08:00
|
|
|
}
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
static void tegra20_das_debug_remove(struct tegra20_das *das)
|
2011-01-08 13:36:12 +08:00
|
|
|
{
|
|
|
|
if (das->debug)
|
|
|
|
debugfs_remove(das->debug);
|
|
|
|
}
|
|
|
|
#else
|
2012-04-07 00:30:52 +08:00
|
|
|
static inline void tegra20_das_debug_add(struct tegra20_das *das)
|
2011-01-08 13:36:12 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
static inline void tegra20_das_debug_remove(struct tegra20_das *das)
|
2011-01-08 13:36:12 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
static int __devinit tegra20_das_probe(struct platform_device *pdev)
|
2011-01-08 13:36:12 +08:00
|
|
|
{
|
|
|
|
struct resource *res, *region;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (das)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
das = devm_kzalloc(&pdev->dev, sizeof(struct tegra20_das), GFP_KERNEL);
|
2011-01-08 13:36:12 +08:00
|
|
|
if (!das) {
|
2012-04-07 00:30:52 +08:00
|
|
|
dev_err(&pdev->dev, "Can't allocate tegra20_das\n");
|
2011-01-08 13:36:12 +08:00
|
|
|
ret = -ENOMEM;
|
2011-11-23 09:21:15 +08:00
|
|
|
goto err;
|
2011-01-08 13:36:12 +08:00
|
|
|
}
|
|
|
|
das->dev = &pdev->dev;
|
|
|
|
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
|
|
if (!res) {
|
|
|
|
dev_err(&pdev->dev, "No memory resource\n");
|
|
|
|
ret = -ENODEV;
|
2011-11-23 09:21:15 +08:00
|
|
|
goto err;
|
2011-01-08 13:36:12 +08:00
|
|
|
}
|
|
|
|
|
2011-11-23 09:21:15 +08:00
|
|
|
region = devm_request_mem_region(&pdev->dev, res->start,
|
|
|
|
resource_size(res), pdev->name);
|
2011-01-08 13:36:12 +08:00
|
|
|
if (!region) {
|
|
|
|
dev_err(&pdev->dev, "Memory region already claimed\n");
|
|
|
|
ret = -EBUSY;
|
2011-11-23 09:21:15 +08:00
|
|
|
goto err;
|
2011-01-08 13:36:12 +08:00
|
|
|
}
|
|
|
|
|
2011-11-23 09:21:15 +08:00
|
|
|
das->regs = devm_ioremap(&pdev->dev, res->start, resource_size(res));
|
2011-01-08 13:36:12 +08:00
|
|
|
if (!das->regs) {
|
|
|
|
dev_err(&pdev->dev, "ioremap failed\n");
|
|
|
|
ret = -ENOMEM;
|
2011-11-23 09:21:15 +08:00
|
|
|
goto err;
|
2011-01-08 13:36:12 +08:00
|
|
|
}
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
ret = tegra20_das_connect_dap_to_dac(TEGRA20_DAS_DAP_ID_1,
|
|
|
|
TEGRA20_DAS_DAP_SEL_DAC1);
|
2011-12-08 04:58:29 +08:00
|
|
|
if (ret) {
|
|
|
|
dev_err(&pdev->dev, "Can't set up DAS DAP connection\n");
|
|
|
|
goto err;
|
|
|
|
}
|
2012-04-07 00:30:52 +08:00
|
|
|
ret = tegra20_das_connect_dac_to_dap(TEGRA20_DAS_DAC_ID_1,
|
|
|
|
TEGRA20_DAS_DAC_SEL_DAP1);
|
2011-12-08 04:58:29 +08:00
|
|
|
if (ret) {
|
|
|
|
dev_err(&pdev->dev, "Can't set up DAS DAC connection\n");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
tegra20_das_debug_add(das);
|
2011-01-08 13:36:12 +08:00
|
|
|
|
|
|
|
platform_set_drvdata(pdev, das);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2011-11-23 09:21:15 +08:00
|
|
|
err:
|
2011-10-15 06:54:19 +08:00
|
|
|
das = NULL;
|
2011-01-08 13:36:12 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
static int __devexit tegra20_das_remove(struct platform_device *pdev)
|
2011-01-08 13:36:12 +08:00
|
|
|
{
|
|
|
|
if (!das)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
tegra20_das_debug_remove(das);
|
2011-01-08 13:36:12 +08:00
|
|
|
|
2011-10-15 06:54:19 +08:00
|
|
|
das = NULL;
|
2011-01-08 13:36:12 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
static const struct of_device_id tegra20_das_of_match[] __devinitconst = {
|
2011-11-23 09:21:18 +08:00
|
|
|
{ .compatible = "nvidia,tegra20-das", },
|
|
|
|
{},
|
|
|
|
};
|
|
|
|
|
2012-04-07 00:30:52 +08:00
|
|
|
static struct platform_driver tegra20_das_driver = {
|
|
|
|
.probe = tegra20_das_probe,
|
|
|
|
.remove = __devexit_p(tegra20_das_remove),
|
2011-01-08 13:36:12 +08:00
|
|
|
.driver = {
|
|
|
|
.name = DRV_NAME,
|
2011-11-23 09:21:18 +08:00
|
|
|
.owner = THIS_MODULE,
|
2012-04-07 00:30:52 +08:00
|
|
|
.of_match_table = tegra20_das_of_match,
|
2011-01-08 13:36:12 +08:00
|
|
|
},
|
|
|
|
};
|
2012-04-07 00:30:52 +08:00
|
|
|
module_platform_driver(tegra20_das_driver);
|
2011-01-08 13:36:12 +08:00
|
|
|
|
|
|
|
MODULE_AUTHOR("Stephen Warren <swarren@nvidia.com>");
|
2012-04-07 00:30:52 +08:00
|
|
|
MODULE_DESCRIPTION("Tegra20 DAS driver");
|
2011-01-08 13:36:12 +08:00
|
|
|
MODULE_LICENSE("GPL");
|
2011-02-11 06:37:19 +08:00
|
|
|
MODULE_ALIAS("platform:" DRV_NAME);
|
2012-04-07 00:30:52 +08:00
|
|
|
MODULE_DEVICE_TABLE(of, tegra20_das_of_match);
|