2019-05-27 08:55:05 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2005-04-16 15:20:36 -07:00
|
|
|
/*
|
|
|
|
* Defines for Multi-Channel Buffered Serial Port
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 RidgeRun, Inc.
|
|
|
|
* Author: Steve Johnson
|
|
|
|
*/
|
2013-12-30 10:37:48 +05:30
|
|
|
#ifndef __ASOC_TI_MCBSP_H
|
|
|
|
#define __ASOC_TI_MCBSP_H
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2008-07-03 12:24:39 +03:00
|
|
|
#include <linux/spinlock.h>
|
2011-09-26 10:45:46 +03:00
|
|
|
#include <linux/clk.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2008-07-03 12:24:39 +03:00
|
|
|
/* Platform specific configuration */
|
|
|
|
struct omap_mcbsp_ops {
|
|
|
|
void (*request)(unsigned int);
|
|
|
|
void (*free)(unsigned int);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct omap_mcbsp_platform_data {
|
|
|
|
struct omap_mcbsp_ops *ops;
|
2011-02-24 15:16:52 +05:30
|
|
|
u16 buffer_size;
|
2011-09-26 10:45:39 +03:00
|
|
|
u8 reg_size;
|
|
|
|
u8 reg_step;
|
2011-09-26 10:45:40 +03:00
|
|
|
|
|
|
|
/* McBSP platform and instance specific features */
|
|
|
|
bool has_wakeup; /* Wakeup capability */
|
2011-09-26 10:45:41 +03:00
|
|
|
bool has_ccr; /* Transceiver has configuration control registers */
|
2016-05-30 11:23:46 +03:00
|
|
|
int (*force_ick_on)(struct clk *clk, bool force_on);
|
2008-07-03 12:24:39 +03:00
|
|
|
};
|
|
|
|
|
2016-05-30 11:23:47 +03:00
|
|
|
void omap3_mcbsp_init_pdata_callback(struct omap_mcbsp_platform_data *pdata);
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif
|