Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 1 | /* |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 2 | * 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 Kamat | 8cb7a36 | 2013-12-30 10:37:48 +0530 | [diff] [blame] | 22 | #ifndef __ASOC_TI_MCBSP_H |
| 23 | #define __ASOC_TI_MCBSP_H |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 24 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 25 | #include <linux/spinlock.h> |
Jarkko Nikula | 5167255 | 2011-09-26 10:45:46 +0300 | [diff] [blame] | 26 | #include <linux/clk.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 27 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 28 | /* Platform specific configuration */ |
| 29 | struct omap_mcbsp_ops { |
| 30 | void (*request)(unsigned int); |
| 31 | void (*free)(unsigned int); |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 32 | }; |
| 33 | |
| 34 | struct omap_mcbsp_platform_data { |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 35 | struct omap_mcbsp_ops *ops; |
Kishon Vijay Abraham I | 64bcbd3 | 2011-02-24 15:16:52 +0530 | [diff] [blame] | 36 | u16 buffer_size; |
Jarkko Nikula | cdc71514 | 2011-09-26 10:45:39 +0300 | [diff] [blame] | 37 | u8 reg_size; |
| 38 | u8 reg_step; |
Jarkko Nikula | 1a64588 | 2011-09-26 10:45:40 +0300 | [diff] [blame] | 39 | |
| 40 | /* McBSP platform and instance specific features */ |
| 41 | bool has_wakeup; /* Wakeup capability */ |
Jarkko Nikula | 8840823 | 2011-09-26 10:45:41 +0300 | [diff] [blame] | 42 | bool has_ccr; /* Transceiver has configuration control registers */ |
Peter Ujfalusi | 53ae95f | 2016-05-30 11:23:46 +0300 | [diff] [blame] | 43 | int (*force_ick_on)(struct clk *clk, bool force_on); |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 44 | }; |
| 45 | |
Peter Ujfalusi | c26c84c | 2016-05-30 11:23:47 +0300 | [diff] [blame] | 46 | void omap3_mcbsp_init_pdata_callback(struct omap_mcbsp_platform_data *pdata); |
| 47 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 48 | #endif |