| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464 |
- /*
- * Copyright (C) 2007 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/
- *
- */
- /*
- * $Log$
- * Revision 1.4 2009/01/18 16:46:47 haraldkipp
- * GPIO header file changed.
- *
- * Revision 1.3 2008/10/23 08:54:07 haraldkipp
- * Include the correct header file.
- *
- * Revision 1.2 2008/08/11 06:59:42 haraldkipp
- * BSD types replaced by stdint types (feature request #1282721).
- *
- * Revision 1.1 2007/04/12 09:07:54 haraldkipp
- * Configurable SPI added.
- *
- */
- #include <sys/timer.h>
- #include <dev/gpio.h>
- #include <dev/sbbif0.h>
- /* SPI modes of all devices. */
- static ureg_t sbbi0_mode[SBBI0_MAX_DEVICES];
- /* SPI mode of the currently selected device. */
- static ureg_t sel_mode;
- /* SPI bit delay of all devices. */
- static ureg_t sbbi0_delay[SBBI0_MAX_DEVICES];
- /* SPI bit delay of the currently selected device. */
- static ureg_t sel_delay;
- /*!
- * \brief Set mode for a given device at SPI0.
- *
- * This is typically the first call in order to use the device. It will
- * not directly enable the SPI hardware. This is done when selecting
- * the device.
- *
- * \param ix The device index, starting at 0.
- * \param mode The mode to set.
- * - 0: Leading edge is rising, data sampled on rising edge.
- * - 1: Leading edge is rising, data sampled on falling edge.
- * - 2: Leading edge is falling, data sampled on falling edge.
- * - 3: Leading edge is falling, data sampled on rising edge.
- *
- * \return 0, if the device index and the mode are both valid. Otherwise
- * the return value will be -1.
- */
- int Sbbi0SetMode(ureg_t ix, ureg_t mode)
- {
- if (ix < SBBI0_MAX_DEVICES && mode <= 3) {
- sbbi0_mode[ix] = mode;
- return 0;
- }
- return -1;
- }
- /*!
- * \brief Set transfer rate for a given device at SPI0.
- *
- * This is currently a dummy and does nothing.
- *
- * \param ix The device index, starting at 0.
- * \param rate Transfer rate in bits per second.
- *
- */
- void Sbbi0SetSpeed(ureg_t ix, uint32_t rate)
- {
- uint32_t fosc = NutGetCpuClock() / 16;
- if (rate) {
- fosc /= rate;
- }
- if (fosc < 5) {
- sbbi0_delay[ix] = 0;
- }
- else if (fosc < 255) {
- sbbi0_delay[ix] = (ureg_t)fosc;
- } else {
- sbbi0_delay[ix] = 255;
- }
- }
- static INLINE void Sbbi0Delay(void)
- {
- if (sel_delay) {
- ureg_t d;
- for (d = sel_delay; d; d--) {
- _NOP();
- }
- }
- }
- /*!
- * \brief Enable the serial peripheral interface 0.
- *
- * Enables SPI with the parameters previously set by Sbbi0SetMode().
- *
- * \param ix The device index, starting at 0. The routine will not check
- * if this is valid.
- */
- void Sbbi0Enable(ureg_t ix)
- {
- sel_mode = sbbi0_mode[ix];
- sel_delay = sbbi0_delay[ix];
- SBBI0_MOSI_ENA();
- SBBI0_MOSI_CLR();
- SBBI0_MOSI_OUTPUT();
- SBBI0_MISO_ENA();
- SBBI0_SCK_ENA();
- if (sel_mode == 0 || sel_mode == 1) {
- SBBI0_SCK_CLR();
- }
- else {
- SBBI0_SCK_SET();
- }
- SBBI0_SCK_OUTPUT();
- }
- /*!
- * \brief Set or clear a configured reset line for a given device.
- *
- * Reset lines must be configured when building the system libraries.
- * This routine silently ignores them, if not configured.
- *
- * \param ix The device index, starting at 0.
- * \param hi If 0, the reset line is driven low. Otherwise the
- * line is driven high.
- */
- void Sbbi0ChipReset(ureg_t ix, ureg_t hi)
- {
- #if defined(SBBI0_RST0_BIT)
- if (ix == 0) {
- SBBI0_RST0_ENA();
- if (hi) {
- SBBI0_RST0_SET();
- } else {
- SBBI0_RST0_CLR();
- }
- SBBI0_RST0_OUTPUT();
- }
- #endif
- #if defined(SBBI0_RST1_BIT)
- if (ix == 1) {
- SBBI0_RST1_ENA();
- if (hi) {
- SBBI0_RST1_SET();
- } else {
- SBBI0_RST1_CLR();
- }
- SBBI0_RST1_OUTPUT();
- }
- #endif
- #if defined(SBBI0_RST2_BIT)
- if (ix == 2) {
- SBBI0_RST2_ENA();
- if (hi) {
- SBBI0_RST2_SET();
- } else {
- SBBI0_RST2_CLR();
- }
- SBBI0_RST2_OUTPUT();
- }
- #endif
- #if defined(SBBI0_RST3_BIT)
- if (ix == 3) {
- SBBI0_RST3_ENA();
- if (hi) {
- SBBI0_RST3_SET();
- } else {
- SBBI0_RST3_CLR();
- }
- SBBI0_RST3_OUTPUT();
- }
- #endif
- }
- /*!
- * \brief Set or clear a configured chip select for a given device.
- *
- * Chip selects must be configured when building the system libraries.
- * This routine silently ignores selects, if they are not configured.
- *
- * \param ix The device index, starting at 0. Same as the chip select
- * number.
- * \param hi If 0, the chip select is driven low. Otherwise the
- * line is driven high.
- */
- void Sbbi0ChipSelect(ureg_t ix, ureg_t hi)
- {
- #if defined(SBBI0_CS0_BIT)
- if (ix == 0) {
- SBBI0_CS0_ENA();
- if (hi) {
- SBBI0_CS0_SET();
- } else {
- SBBI0_CS0_CLR();
- }
- SBBI0_CS0_OUTPUT();
- }
- #endif
- #if defined(SBBI0_CS1_BIT)
- if (ix == 1) {
- SBBI0_CS1_ENA();
- if (hi) {
- SBBI0_CS1_SET();
- } else {
- SBBI0_CS1_CLR();
- }
- SBBI0_CS1_OUTPUT();
- }
- #endif
- #if defined(SBBI0_CS2_BIT)
- if (ix == 2) {
- SBBI0_CS2_ENA();
- if (hi) {
- SBBI0_CS2_SET();
- } else {
- SBBI0_CS2_CLR();
- }
- SBBI0_CS2_OUTPUT();
- }
- #endif
- #if defined(SBBI0_CS3_BIT)
- if (ix == 3) {
- SBBI0_CS3_ENA();
- if (hi) {
- SBBI0_CS3_SET();
- } else {
- SBBI0_CS3_CLR();
- }
- SBBI0_CS3_OUTPUT();
- }
- #endif
- }
- /*!
- * \brief Select the device at a given chip select.
- *
- * Enables the serial peripheral interface with the parameters
- * previously set for the given device by Sbbi0SetMode() and
- * Sbbi0SetSpeed(). Then the configured chip select line is
- * driven high.
- *
- * \param ix The device index, starting at 0. The routine will not
- * check if this is a valid number.
- */
- void Sbbi0SelectDevice(ureg_t ix)
- {
- Sbbi0Enable(ix);
- Sbbi0ChipSelect(ix, 1);
- }
- /*!
- * \brief Deselect the device at a given chip select.
- *
- * The configured chip select line will be driven low.
- *
- * \param ix The device index, starting at 0. The routine will not
- * check if this is a valid number.
- */
- void Sbbi0DeselectDevice(ureg_t ix)
- {
- Sbbi0ChipSelect(ix, 0);
- }
- /*!
- * \brief Select the device at a given negated chip select.
- *
- * Enables the serial peripheral interface with the parameters
- * previously set for the given device by Sbbi0SetMode() and
- * Sbbi0SetSpeed(). Then the configured chip select line is
- * driven low.
- *
- * \param ix The device index, starting at 0. The routine will not
- * check if this is a valid number.
- */
- void Sbbi0NegSelectDevice(ureg_t ix)
- {
- Sbbi0Enable(ix);
- Sbbi0ChipSelect(ix, 0);
- }
- /*!
- * \brief Deselect the device at a given negated chip select.
- *
- * The configured chip select line will be driven high.
- *
- * \param ix The device index, starting at 0. The routine will not
- * check if this is a valid number.
- */
- void Sbbi0NegDeselectDevice(ureg_t ix)
- {
- Sbbi0ChipSelect(ix, 1);
- }
- /*!
- * \brief Exchange a byte with the currently selected SPI device.
- *
- * \param data Byte to transmit.
- *
- * \return Received byte.
- */
- uint8_t Sbbi0Byte(uint8_t data)
- {
- ureg_t mask;
- if (sel_mode == 3) {
- /* Mode 3: Leading edge is falling, data sampled on rising edge. */
- for (mask = 0x80; mask; mask >>= 1) {
- SBBI0_SCK_CLR();
- if (data & mask) {
- SBBI0_MOSI_SET();
- } else {
- SBBI0_MOSI_CLR();
- }
- Sbbi0Delay();
- SBBI0_SCK_SET();
- if (SBBI0_MISO_TST()) {
- data |= mask;
- }
- else {
- data &= ~mask;
- }
- Sbbi0Delay();
- }
- }
- else if (sel_mode == 2) {
- /* Mode 2: Leading edge is falling, data sampled on falling edge. */
- for (mask = 0x80; mask; mask >>= 1) {
- SBBI0_SCK_SET();
- if (data & mask) {
- SBBI0_MOSI_SET();
- } else {
- SBBI0_MOSI_CLR();
- }
- Sbbi0Delay();
- SBBI0_SCK_CLR();
- if (SBBI0_MISO_TST()) {
- data |= mask;
- }
- else {
- data &= ~mask;
- }
- Sbbi0Delay();
- }
- SBBI0_SCK_SET();
- }
- else if (sel_mode == 1) {
- /* Mode 1: Leading edge is rising, data sampled on falling edge. */
- for (mask = 0x80; mask; mask >>= 1) {
- SBBI0_SCK_SET();
- if (data & mask) {
- SBBI0_MOSI_SET();
- } else {
- SBBI0_MOSI_CLR();
- }
- Sbbi0Delay();
- SBBI0_SCK_CLR();
- if (SBBI0_MISO_TST()) {
- data |= mask;
- }
- else {
- data &= ~mask;
- }
- Sbbi0Delay();
- }
- }
- else {
- /* Mode 0: Leading edge is rising, data sampled on rising edge. */
- for (mask = 0x80; mask; mask >>= 1) {
- SBBI0_SCK_CLR();
- if (data & mask) {
- SBBI0_MOSI_SET();
- } else {
- SBBI0_MOSI_CLR();
- }
- Sbbi0Delay();
- SBBI0_SCK_SET();
- if (SBBI0_MISO_TST()) {
- data |= mask;
- }
- else {
- data &= ~mask;
- }
- Sbbi0Delay();
- }
- SBBI0_SCK_CLR();
- }
- return data;
- }
- /*!
- * \brief Exchange a specified number of bytes with the currently selected SPI device.
- *
- * It is assumed, that the serial peripheral interface has been properly
- * initialized by calling Sbbi0SetMode() and optionally Sbbi0SetSpeed().
- *
- * Further it is assumed, that the chip select (if there is one) had
- * been enabled by a previous call to Sbbi0SelectDevice() or
- * Sbbi0NegSelectDevice().
- *
- * \param wdata Pointer to the data to transmit.
- * \param rdata Pointer to a buffer that receives the data from the device.
- * Can be set to NULL for transmit only. May also point to the
- * tranmit buffer, in which case the transmitted bytes are
- * replaced by the bytes received.
- */
- void Sbbi0Transact(const void *wdata, void *rdata, size_t len)
- {
- const uint8_t *wp = (const uint8_t *)wdata;
- if (rdata) {
- uint8_t *rp = (uint8_t *)rdata;
- while(len--) {
- *rp++ = Sbbi0Byte(*wp);
- wp++;
- }
- } else {
- while(len--) {
- Sbbi0Byte(*wp);
- wp++;
- }
- }
- }
|