#ifndef _DEV_AT91_SPI_H_ #define _DEV_AT91_SPI_H_ /* * Copyright (C) 2006 by egnite Software GmbH. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holders nor the names of * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * For additional information see http://www.ethernut.de/ */ /*! * \file dev/at91_spi.h * \brief AT91 peripherals. * * \verbatim * * $Log$ * Revision 1.4 2009/01/17 11:26:47 haraldkipp * Getting rid of two remaining BSD types in favor of stdint. * Replaced 'u_int' by 'unsinged int' and 'uptr_t' by 'uintptr_t'. * * Revision 1.3 2008/08/11 06:59:59 haraldkipp * BSD types replaced by stdint types (feature request #1282721). * * Revision 1.2 2006/10/08 16:48:09 haraldkipp * Documentation fixed * * Revision 1.1 2006/09/29 12:34:59 haraldkipp * Basic AT91 SPI support added. * * * \endverbatim */ #include #include /* Should be in dev/spi.h. */ #define SPI_SETSPEED 0x0401 #define SPI_GETSPEED 0x0402 #define SPI_SETMODE 0x0403 #define SPI_GETMODE 0x0404 #define SPIMF_MASTER 0x00000001 /* Master mode. */ #define SPIMF_PCSDEC 0x00000002 /* Decoded chip selects. */ #define SPIMF_MFDETECT 0x00000004 /* Mode fault detection. */ #define SPIMF_LOOPBACK 0x00000008 /* Loopback mode. */ #define SPIMF_SCKIAHI 0x00000010 /* Clock is high when inactive. */ #define SPIMF_CAPRISE 0x00000020 /* Data cpatured on rising edge. */ #define SPIMF_KEEPCS 0x00000040 /* Chip select remains active after transfer. */ #define SPI_SETDATABITS 0x0405 #define SPI_GETDATABITS 0x0406 /* dev/spi.h. */ extern int At91Spi0Init(void); extern int At91Spi0InitChipSelects(unsigned int mask); extern int At91Spi0Enable(void); #if defined(SPI1_BASE) extern int At91Spi1Init(void); extern int At91Spi1InitChipSelects(unsigned int mask); extern int At91Spi1Enable(void); #endif extern int At91SpiInit(unsigned int base); extern int At91SpiReset(unsigned int base); extern int At91SpiInitChipSelects(unsigned int base, unsigned int mask); extern int At91SpiSetRate(unsigned int base, unsigned int cs, uint32_t rate); extern uint32_t At91SpiGetModeFlags(unsigned int base, unsigned int cs); extern int At91SpiSetModeFlags(unsigned int base, unsigned int cs, uint32_t mode); extern unsigned int At91SpiGetBits(unsigned int base, unsigned int cs); extern int At91SpiSetBits(unsigned int base, unsigned int cs, unsigned int bits); extern unsigned int At91SpiGetSckDelay(unsigned int base, unsigned int cs); extern int At91SpiSetSckDelay(unsigned int base, unsigned int cs, unsigned int dly); extern unsigned int At91SpiGetTxDelay(unsigned int base, unsigned int cs); extern int At91SpiSetTxDelay(unsigned int base, unsigned int cs, unsigned int dly); extern unsigned int At91SpiGetCsDelay(unsigned int base); extern int At91SpiSetCsDelay(unsigned int base, unsigned int dly); extern int At91SpiTransfer2(unsigned int base, unsigned int cs, const void *txbuf, void *rxbuf, int xlen, const void *txnbuf, void *rxnbuf, int xnlen); #endif