Source
x
/*
* Xilinx SPI controller driver (master mode only)
*
* Author: MontaVista Software, Inc.
* source@mvista.com
*
* Copyright (c) 2010 Secret Lab Technologies, Ltd.
* Copyright (c) 2009 Intel Corporation
* 2002-2007 (c) MontaVista Software, Inc.
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
/* Register definitions as per "OPB Serial Peripheral Interface (SPI) (v1.00e)
* Product Specification", DS464
*/
/* Control Register */
/* Status Register */
/* Receive FIFO is empty */
/* Receive FIFO is full */
/* Transmit FIFO is empty */
/* Transmit FIFO is full */
/* Mode fault error */
/* Data Transmit Register */
/* Data Receive Register */
/* 32-bit Slave Select Register */
/* Register definitions as per "OPB IPIF (v3.01c) Product Specification", DS414
* IPIF registers are 32 bit
*/
/* IPIF global int enable reg */
/* IPIF interrupt status reg */
/* IPIF interrupt enable reg */
/* Mode fault error */
/* Selected as slave while
* disabled */
/* TxFIFO is empty */
/* TxFIFO was underrun */
/* RxFIFO is full */
/* RxFIFO was overrun */
/* TxFIFO is half empty */
/* IPIF reset register */
/* the value to write */
struct xilinx_spi {
/* bitbang has to be first */
struct spi_bitbang bitbang;
struct completion done;
void __iomem *regs; /* virt. address of the control registers */
int irq;
u8 *rx_ptr; /* pointer in the Tx buffer */
const u8 *tx_ptr; /* pointer in the Rx buffer */
u8 bytes_per_word;
int buffer_size; /* buffer size in words */