blob: e319d0a2ec820d37d55b511c4f92fb8b99dce59d [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
Russell Kinga09e64f2008-08-05 16:14:15 +010028/* Platform specific configuration */
29struct omap_mcbsp_ops {
30 void (*request)(unsigned int);
31 void (*free)(unsigned int);
Russell Kinga09e64f2008-08-05 16:14:15 +010032};
33
34struct omap_mcbsp_platform_data {
Russell Kinga09e64f2008-08-05 16:14:15 +010035 struct omap_mcbsp_ops *ops;
Kishon Vijay Abraham I64bcbd32011-02-24 15:16:52 +053036 u16 buffer_size;
Jarkko Nikulacdc715142011-09-26 10:45:39 +030037 u8 reg_size;
38 u8 reg_step;
Jarkko Nikula1a645882011-09-26 10:45:40 +030039
40 /* McBSP platform and instance specific features */
41 bool has_wakeup; /* Wakeup capability */
Jarkko Nikula88408232011-09-26 10:45:41 +030042 bool has_ccr; /* Transceiver has configuration control registers */
Peter Ujfalusi53ae95f2016-05-30 11:23:46 +030043 int (*force_ick_on)(struct clk *clk, bool force_on);
Russell Kinga09e64f2008-08-05 16:14:15 +010044};
45
Peter Ujfalusic26c84c2016-05-30 11:23:47 +030046void omap3_mcbsp_init_pdata_callback(struct omap_mcbsp_platform_data *pdata);
47
Russell Kinga09e64f2008-08-05 16:14:15 +010048#endif