2019-05-27 09:55:06 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2006-03-08 10:53:24 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2005 Stephen Street / StreetFire Sound Labs
|
|
|
|
*/
|
2010-11-23 04:12:15 +03:00
|
|
|
#ifndef __linux_pxa2xx_spi_h
|
|
|
|
#define __linux_pxa2xx_spi_h
|
2006-03-08 10:53:24 +03:00
|
|
|
|
2010-11-23 04:12:15 +03:00
|
|
|
#include <linux/pxa2xx_ssp.h>
|
2006-03-08 10:53:24 +03:00
|
|
|
|
|
|
|
#define PXA2XX_CS_ASSERT (0x01)
|
|
|
|
#define PXA2XX_CS_DEASSERT (0x02)
|
|
|
|
|
2014-08-19 21:29:19 +04:00
|
|
|
struct dma_chan;
|
|
|
|
|
2006-03-08 10:53:24 +03:00
|
|
|
/* device.platform_data for SSP controller devices */
|
2019-01-16 18:13:31 +03:00
|
|
|
struct pxa2xx_spi_controller {
|
2006-03-08 10:53:24 +03:00
|
|
|
u16 num_chipselect;
|
|
|
|
u8 enable_dma;
|
2019-03-19 18:48:42 +03:00
|
|
|
u8 dma_burst_size;
|
2018-11-13 13:22:25 +03:00
|
|
|
bool is_slave;
|
2013-01-07 14:44:33 +04:00
|
|
|
|
2013-01-22 14:26:29 +04:00
|
|
|
/* DMA engine specific config */
|
2014-08-19 21:29:19 +04:00
|
|
|
bool (*dma_filter)(struct dma_chan *chan, void *param);
|
|
|
|
void *tx_param;
|
|
|
|
void *rx_param;
|
2013-01-22 14:26:29 +04:00
|
|
|
|
2013-01-07 14:44:33 +04:00
|
|
|
/* For non-PXA arches */
|
|
|
|
struct ssp_device ssp;
|
2006-03-08 10:53:24 +03: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 14:26:32 +04:00
|
|
|
u8 tx_hi_threshold;
|
2006-03-08 10:53:24 +03:00
|
|
|
u8 rx_threshold;
|
|
|
|
u8 dma_burst_size;
|
2006-12-10 13:18:54 +03:00
|
|
|
u32 timeout;
|
2006-03-08 10:53:24 +03:00
|
|
|
u8 enable_loopback;
|
2009-04-07 06:00:54 +04:00
|
|
|
int gpio_cs;
|
2006-03-08 10:53:24 +03:00
|
|
|
void (*cs_control)(u32 command);
|
|
|
|
};
|
|
|
|
|
2012-06-04 06:41:03 +04:00
|
|
|
#if defined(CONFIG_ARCH_PXA) || defined(CONFIG_ARCH_MMP)
|
2010-11-24 12:17:14 +03:00
|
|
|
|
|
|
|
#include <linux/clk.h>
|
|
|
|
|
2019-01-16 18:13:31 +03:00
|
|
|
extern void pxa2xx_set_spi_info(unsigned id, struct pxa2xx_spi_controller *info);
|
2008-06-13 12:17:31 +04:00
|
|
|
|
2010-11-24 12:17:14 +03:00
|
|
|
#endif
|
2010-11-23 04:12:15 +03:00
|
|
|
#endif
|