blob: b3ab7d04943ae74a8353befb0352518d47acfbfb [file] [log] [blame]
Sandeep Paulraj8e2a0012010-02-01 09:51:02 -05001/*
2 * Copyright 2009 Texas Instruments.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19#ifndef __ARCH_ARM_DAVINCI_SPI_H
20#define __ARCH_ARM_DAVINCI_SPI_H
21
Brian Niebuhr23853972010-08-13 10:57:44 +053022#define SPI_INTERN_CS 0xFF
23
Sandeep Paulraj8e2a0012010-02-01 09:51:02 -050024enum {
25 SPI_VERSION_1, /* For DM355/DM365/DM6467 */
26 SPI_VERSION_2, /* For DA8xx */
27};
28
29struct davinci_spi_platform_data {
30 u8 version;
31 u8 num_chipselect;
Sandeep Paulraj8e2a0012010-02-01 09:51:02 -050032 u8 clk_internal;
Brian Niebuhre0d205e2010-09-02 16:52:06 +053033 u8 intr_line;
Brian Niebuhr53a31b02010-08-16 15:05:51 +053034 u8 *chip_sel;
Brian Niebuhrc29e3c62010-09-28 13:59:26 +053035 bool cshold_bug;
Brian Niebuhr53a31b02010-08-16 15:05:51 +053036};
37
38struct davinci_spi_config {
39 u8 wdelay;
40 u8 odd_parity;
41 u8 parity_enable;
Brian Niebuhre0d205e2010-09-02 16:52:06 +053042#define SPI_IO_TYPE_INTR 0
43#define SPI_IO_TYPE_POLL 1
Brian Niebuhr87467bd2010-10-06 17:03:10 +053044#define SPI_IO_TYPE_DMA 2
Brian Niebuhre0d205e2010-09-02 16:52:06 +053045 u8 io_type;
Brian Niebuhr53a31b02010-08-16 15:05:51 +053046 u8 timer_disable;
Sandeep Paulraj8e2a0012010-02-01 09:51:02 -050047 u8 c2tdelay;
48 u8 t2cdelay;
Brian Niebuhr7abbf232010-08-19 15:07:38 +053049 u8 t2edelay;
50 u8 c2edelay;
Sandeep Paulraj8e2a0012010-02-01 09:51:02 -050051};
52
53#endif /* __ARCH_ARM_DAVINCI_SPI_H */