2019-05-27 14:55:06 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2006-03-08 15:53:24 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2005 Stephen Street / StreetFire Sound Labs
|
|
|
|
*/
|
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 */
|
2019-01-16 23:13:31 +08:00
|
|
|
struct pxa2xx_spi_controller {
|
2006-03-08 15:53:24 +08:00
|
|
|
u16 num_chipselect;
|
|
|
|
u8 enable_dma;
|
2019-03-19 23:48:42 +08:00
|
|
|
u8 dma_burst_size;
|
2018-11-13 18:22:25 +08:00
|
|
|
bool is_slave;
|
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>
|
|
|
|
|
2019-01-16 23:13:31 +08:00
|
|
|
extern void pxa2xx_set_spi_info(unsigned id, struct pxa2xx_spi_controller *info);
|
2008-06-13 16:17:31 +08:00
|
|
|
|
2010-11-24 17:17:14 +08:00
|
|
|
#endif
|
2010-11-23 09:12:15 +08:00
|
|
|
#endif
|