2006-03-08 15:53:24 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2005 Stephen Street / StreetFire Sound Labs
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
2010-11-23 09:12:15 +08:00
|
|
|
#ifndef __linux_pxa2xx_spi_h
|
|
|
|
#define __linux_pxa2xx_spi_h
|
2006-03-08 15:53:24 +08:00
|
|
|
|
2010-11-23 09:12:15 +08:00
|
|
|
#include <linux/pxa2xx_ssp.h>
|
2006-03-08 15:53:24 +08:00
|
|
|
|
|
|
|
#define PXA2XX_CS_ASSERT (0x01)
|
|
|
|
#define PXA2XX_CS_DEASSERT (0x02)
|
|
|
|
|
2014-08-20 01:29:19 +08:00
|
|
|
struct dma_chan;
|
|
|
|
|
2006-03-08 15:53:24 +08:00
|
|
|
/* device.platform_data for SSP controller devices */
|
|
|
|
struct pxa2xx_spi_master {
|
|
|
|
u32 clock_enable;
|
|
|
|
u16 num_chipselect;
|
|
|
|
u8 enable_dma;
|
2013-01-07 18:44:33 +08:00
|
|
|
|
2013-01-22 18:26:29 +08:00
|
|
|
/* DMA engine specific config */
|
2014-08-20 01:29:19 +08:00
|
|
|
bool (*dma_filter)(struct dma_chan *chan, void *param);
|
|
|
|
void *tx_param;
|
|
|
|
void *rx_param;
|
2013-01-22 18:26:29 +08:00
|
|
|
|
2013-01-07 18:44:33 +08:00
|
|
|
/* For non-PXA arches */
|
|
|
|
struct ssp_device ssp;
|
2006-03-08 15:53:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* spi_board_info.controller_data for SPI slave devices,
|
|
|
|
* copied to spi_device.platform_data ... mostly for dma tuning
|
|
|
|
*/
|
|
|
|
struct pxa2xx_spi_chip {
|
|
|
|
u8 tx_threshold;
|
2013-01-22 18:26:32 +08:00
|
|
|
u8 tx_hi_threshold;
|
2006-03-08 15:53:24 +08:00
|
|
|
u8 rx_threshold;
|
|
|
|
u8 dma_burst_size;
|
2006-12-10 18:18:54 +08:00
|
|
|
u32 timeout;
|
2006-03-08 15:53:24 +08:00
|
|
|
u8 enable_loopback;
|
2009-04-07 10:00:54 +08:00
|
|
|
int gpio_cs;
|
2006-03-08 15:53:24 +08:00
|
|
|
void (*cs_control)(u32 command);
|
|
|
|
};
|
|
|
|
|
2012-06-04 10:41:03 +08:00
|
|
|
#if defined(CONFIG_ARCH_PXA) || defined(CONFIG_ARCH_MMP)
|
2010-11-24 17:17:14 +08:00
|
|
|
|
|
|
|
#include <linux/clk.h>
|
|
|
|
|
2008-06-13 16:17:31 +08:00
|
|
|
extern void pxa2xx_set_spi_info(unsigned id, struct pxa2xx_spi_master *info);
|
|
|
|
|
2010-11-24 17:17:14 +08:00
|
|
|
#endif
|
2010-11-23 09:12:15 +08:00
|
|
|
#endif
|