blob: 3c73c045f8da961dd8a3ddb6d5c17a169b2a2b42 [file] [log] [blame]
Russell Kinga09e64f2008-08-05 16:14:15 +01001/*
Russell Kinga09e64f2008-08-05 16:14:15 +01002 * Defines for Multi-Channel Buffered Serial Port
3 *
4 * Copyright (C) 2002 RidgeRun, Inc.
5 * Author: Steve Johnson
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
Sachin Kamat8cb7a362013-12-30 10:37:48 +053022#ifndef __ASOC_TI_MCBSP_H
23#define __ASOC_TI_MCBSP_H
Russell Kinga09e64f2008-08-05 16:14:15 +010024
Russell Kinga09e64f2008-08-05 16:14:15 +010025#include <linux/spinlock.h>
Jarkko Nikula51672552011-09-26 10:45:46 +030026#include <linux/clk.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010027
Charulatha V37801b32011-02-24 12:51:46 -080028#define MCBSP_CONFIG_TYPE2 0x2
Charulatha Vdc48e5f2011-02-24 15:16:49 +053029#define MCBSP_CONFIG_TYPE3 0x3
Kishon Vijay Abraham Icb7e9de2011-02-24 15:16:50 +053030#define MCBSP_CONFIG_TYPE4 0x4
Charulatha V37801b32011-02-24 12:51:46 -080031
Russell Kinga09e64f2008-08-05 16:14:15 +010032/* Platform specific configuration */
33struct omap_mcbsp_ops {
34 void (*request)(unsigned int);
35 void (*free)(unsigned int);
Russell Kinga09e64f2008-08-05 16:14:15 +010036};
37
38struct omap_mcbsp_platform_data {
Russell Kinga09e64f2008-08-05 16:14:15 +010039 struct omap_mcbsp_ops *ops;
Kishon Vijay Abraham I64bcbd32011-02-24 15:16:52 +053040 u16 buffer_size;
Jarkko Nikulacdc715142011-09-26 10:45:39 +030041 u8 reg_size;
42 u8 reg_step;
Jarkko Nikula1a645882011-09-26 10:45:40 +030043
44 /* McBSP platform and instance specific features */
45 bool has_wakeup; /* Wakeup capability */
Jarkko Nikula88408232011-09-26 10:45:41 +030046 bool has_ccr; /* Transceiver has configuration control registers */
Jarkko Nikula1743d142011-09-26 10:45:44 +030047 int (*enable_st_clock)(unsigned int, bool);
Russell Kinga09e64f2008-08-05 16:14:15 +010048};
49
Kishon Vijay Abraham I8b1906f2011-02-24 15:16:51 +053050/**
51 * omap_mcbsp_dev_attr - OMAP McBSP device attributes for omap_hwmod
52 * @sidetone: name of the sidetone device
53 */
54struct omap_mcbsp_dev_attr {
55 const char *sidetone;
56};
57
Russell Kinga09e64f2008-08-05 16:14:15 +010058#endif