666 lines
21 KiB
C
666 lines
21 KiB
C
/****************************************************************************
|
|
* config/zp214xpa/src/lpc2148_spi1.c
|
|
*
|
|
* Copyright (C) 2008-2010, 2012, 2016-2017 Gregory Nutt. All rights
|
|
* reserved.
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
*
|
|
* 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 NuttX nor the names of its 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* LCD Interface
|
|
*
|
|
* PIN NAME PIN CONFIGURATION
|
|
* 3 RESET P0.18/CAP1.3/MISO1/MAT1.3P0.18 - General purpose output
|
|
* 4 DI P0.19/MAT1.2/MOSI1/CAP1.2P0.19 - Alternate function 2
|
|
* 5 CS P0.20/MAT1.3/SSEL1/EINT3 - General purpose output
|
|
* 6 SCK P0.17/CAP1.2/SCK1/MAT1.2 - Alternate function 2
|
|
* 7 A0 P0.23/VBUS - General purpose output
|
|
*
|
|
* ENC29J60 Interface
|
|
*
|
|
* PIN NAME PIN CONFIGURATION
|
|
* 1 /CS P0.7/SSEL0/PWM2/EINT2 - General purpose output
|
|
* 2 SCK P0.4/SCK0/CAP0.1/AD0.6 - Alternate function 1
|
|
* 3 SI P0.6/MOSI0/CAP0.2/AD1.0 - Alternate function 1
|
|
* 4 SO P0.5/MISO0/MAT0.1/AD0.7 - Alternate function 1
|
|
* 7 INT P1.25/EXTIN0 - Alternal function 1
|
|
* 9 RST P1.24/TRACECLK
|
|
*
|
|
* This file provides support only for the LCD interface on SPI1.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <semaphore.h>
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <debug.h>
|
|
|
|
#include <arch/board/board.h>
|
|
#include <nuttx/arch.h>
|
|
#include <nuttx/spi/spi.h>
|
|
|
|
#include "up_internal.h"
|
|
#include "up_arch.h"
|
|
|
|
#include "chip.h"
|
|
#include "lpc214x_power.h"
|
|
#include "lpc214x_pinsel.h"
|
|
#include "lpc214x_spi.h"
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
/* Clocking */
|
|
|
|
#define LPC214X_CCLKFREQ (LPC214X_FOSC*LPC214X_PLL_M)
|
|
#define LPC214X_PCLKFREQ (LPC214X_CCLKFREQ/LPC214X_APB_DIV)
|
|
|
|
/* Use either FIO or legacy GPIO */
|
|
|
|
#ifdef CONFIG_LPC214x_FIO
|
|
# define CS_PIN_REGISTER (LPC214X_FIO0_BASE+LPC214X_FIO_PIN_OFFSET)
|
|
# define CS_SET_REGISTER (LPC214X_FIO0_BASE+LPC214X_FIO_SET_OFFSET)
|
|
# define CS_CLR_REGISTER (LPC214X_FIO0_BASE+LPC214X_FIO_CLR_OFFSET)
|
|
# define CS_DIR_REGISTER (LPC214X_FIO0_BASE+LPC214X_FIO_DIR_OFFSET)
|
|
#else
|
|
# define CS_PIN_REGISTER (LPC214X_GPIO0_BASE+LPC214X_GPIO_PIN_OFFSET)
|
|
# define CS_SET_REGISTER (LPC214X_GPIO0_BASE+LPC214X_GPIO_SET_OFFSET)
|
|
# define CS_CLR_REGISTER (LPC214X_GPIO0_BASE+LPC214X_GPIO_CLR_OFFSET)
|
|
# define CS_DIR_REGISTER (LPC214X_GPIO0_BASE+LPC214X_GPIO_DIR_OFFSET)
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Private Function Prototypes
|
|
****************************************************************************/
|
|
|
|
static int spi_lock(FAR struct spi_dev_s *dev, bool lock);
|
|
static void spi_select(FAR struct spi_dev_s *dev, uint32_t devid, bool selected);
|
|
static uint32_t spi_setfrequency(FAR struct spi_dev_s *dev, uint32_t frequency);
|
|
static uint8_t spi_status(FAR struct spi_dev_s *dev, uint32_t devid);
|
|
#ifdef CONFIG_SPI_CMDDATA
|
|
static int spi_cmddata(FAR struct spi_dev_s *dev, uint32_t devid, bool cmd);
|
|
#endif
|
|
static uint16_t spi_send(FAR struct spi_dev_s *dev, uint16_t ch);
|
|
static void spi_sndblock(FAR struct spi_dev_s *dev, FAR const void *buffer, size_t nwords);
|
|
static void spi_recvblock(FAR struct spi_dev_s *dev, FAR void *buffer, size_t nwords);
|
|
|
|
/****************************************************************************
|
|
* Private Data
|
|
****************************************************************************/
|
|
|
|
static const struct spi_ops_s g_spiops =
|
|
{
|
|
.lock = spi_lock,
|
|
.select = spi_select,
|
|
.setfrequency = spi_setfrequency,
|
|
.status = spi_status,
|
|
#ifdef CONFIG_SPI_CMDDATA
|
|
.cmddata = spi_cmddata,
|
|
#endif
|
|
.send = spi_send,
|
|
.sndblock = spi_sndblock,
|
|
.recvblock = spi_recvblock,
|
|
.registercallback = 0, /* Not implemented */
|
|
};
|
|
|
|
static struct spi_dev_s g_spidev = {&g_spiops};
|
|
static sem_t g_exclsem = SEM_INITIALIZER(1); /* For mutually exclusive access */
|
|
|
|
/****************************************************************************
|
|
* Public Data
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: spi_lock
|
|
*
|
|
* Description:
|
|
* On SPI busses where there are multiple devices, it will be necessary to
|
|
* lock SPI to have exclusive access to the busses for a sequence of
|
|
* transfers. The bus should be locked before the chip is selected. After
|
|
* locking the SPI bus, the caller should then also call the setfrequency,
|
|
* setbits, and setmode methods to make sure that the SPI is properly
|
|
* configured for the device. If the SPI buss is being shared, then it
|
|
* may have been left in an incompatible state.
|
|
*
|
|
* Input Parameters:
|
|
* dev - Device-specific state data
|
|
* lock - true: Lock spi bus, false: unlock SPI bus
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
static int spi_lock(FAR struct spi_dev_s *dev, bool lock)
|
|
{
|
|
int ret;
|
|
|
|
if (lock)
|
|
{
|
|
/* Take the semaphore (perhaps waiting) */
|
|
|
|
do
|
|
{
|
|
ret = nxsem_wait(&g_exclsem);
|
|
|
|
/* The only case that an error should occur here is if the wait
|
|
* was awakened by a signal.
|
|
*/
|
|
|
|
DEBUGASSERT(ret == OK || ret == -EINTR);
|
|
}
|
|
while (ret == -EINTR);
|
|
}
|
|
else
|
|
{
|
|
(void)nxsem_post(&g_exclsem);
|
|
ret = OK;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: spi_select
|
|
*
|
|
* Description:
|
|
* Enable/disable the SPI slave select. The implementation of this method
|
|
* must include handshaking: If a device is selected, it must hold off
|
|
* all other attempts to select the device until the device is deselecte.
|
|
*
|
|
* Input Parameters:
|
|
* dev - Device-specific state data
|
|
* devid - Identifies the device to select
|
|
* selected - true: slave selected, false: slave de-selected
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
static void spi_select(FAR struct spi_dev_s *dev, uint32_t devid, bool selected)
|
|
{
|
|
#ifdef CONFIG_DEBUG_SPI_INFO
|
|
uint32_t regval;
|
|
#endif
|
|
uint32_t bit = 1 << 20;
|
|
|
|
/* We do not bother to check if devid == SPIDEV_DISPLAY(0) because that is the
|
|
* only thing on the bus.
|
|
*/
|
|
|
|
#ifdef CONFIG_DEBUG_SPI_INFO
|
|
regval = getreg32(CS_PIN_REGISTER);
|
|
#endif
|
|
|
|
if (selected)
|
|
{
|
|
/* Enable slave select (low enables) */
|
|
|
|
putreg32(bit, CS_CLR_REGISTER);
|
|
spiinfo("CS asserted: %08x->%08x\n", regval, getreg32(CS_PIN_REGISTER));
|
|
}
|
|
else
|
|
{
|
|
/* Disable slave select (low enables) */
|
|
|
|
putreg32(bit, CS_SET_REGISTER);
|
|
spiinfo("CS de-asserted: %08x->%08x\n", regval, getreg32(CS_PIN_REGISTER));
|
|
|
|
/* Wait for the TX FIFO not full indication */
|
|
|
|
while (!(getreg8(LPC214X_SPI1_SR) & LPC214X_SPI1SR_TNF));
|
|
putreg16(0xff, LPC214X_SPI1_DR);
|
|
|
|
/* Wait until TX FIFO and TX shift buffer are empty */
|
|
|
|
while (getreg8(LPC214X_SPI1_SR) & LPC214X_SPI1SR_BSY);
|
|
|
|
/* Wait until RX FIFO is not empty */
|
|
|
|
while (!(getreg8(LPC214X_SPI1_SR) & LPC214X_SPI1SR_RNE));
|
|
|
|
/* Then read and discard bytes until the RX FIFO is empty */
|
|
|
|
do
|
|
{
|
|
(void)getreg16(LPC214X_SPI1_DR);
|
|
}
|
|
while (getreg8(LPC214X_SPI1_SR) & LPC214X_SPI1SR_RNE);
|
|
}
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: spi_setfrequency
|
|
*
|
|
* Description:
|
|
* Set the SPI frequency.
|
|
*
|
|
* Input Parameters:
|
|
* dev - Device-specific state data
|
|
* frequency - The SPI frequency requested
|
|
*
|
|
* Returned Value:
|
|
* Returns the actual frequency selected
|
|
*
|
|
****************************************************************************/
|
|
|
|
static uint32_t spi_setfrequency(FAR struct spi_dev_s *dev, uint32_t frequency)
|
|
{
|
|
uint32_t divisor = LPC214X_PCLKFREQ / frequency;
|
|
|
|
if (divisor < 2)
|
|
{
|
|
divisor = 2;
|
|
}
|
|
else if (divisor > 254)
|
|
{
|
|
divisor = 254;
|
|
}
|
|
|
|
divisor = (divisor + 1) & ~1;
|
|
putreg8(divisor, LPC214X_SPI1_CPSR);
|
|
|
|
spiinfo("Frequency %d->%d\n", frequency, LPC214X_PCLKFREQ / divisor);
|
|
return LPC214X_PCLKFREQ / divisor;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: spi_status
|
|
*
|
|
* Description:
|
|
* Get SPI/MMC status
|
|
*
|
|
* Input Parameters:
|
|
* dev - Device-specific state data
|
|
* devid - Identifies the device to report status on
|
|
*
|
|
* Returned Value:
|
|
* Returns a bitset of status values (see SPI_STATUS_* defines
|
|
*
|
|
****************************************************************************/
|
|
|
|
static uint8_t spi_status(FAR struct spi_dev_s *dev, uint32_t devid)
|
|
{
|
|
spiinfo("Return 0\n");
|
|
return 0;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: spi_cmddata
|
|
*
|
|
* Description:
|
|
* Some devices require and additional out-of-band bit to specify if the
|
|
* next word sent to the device is a command or data. This is typical, for
|
|
* example, in "9-bit" displays where the 9th bit is the CMD/DATA bit.
|
|
* This function provides selection of command or data.
|
|
*
|
|
* This "latches" the CMD/DATA state. It does not have to be called before
|
|
* every word is transferred; only when the CMD/DATA state changes. This
|
|
* method is required if CONFIG_SPI_CMDDATA is selected in the NuttX
|
|
* configuration
|
|
*
|
|
* Input Parameters:
|
|
* dev - Device-specific state data
|
|
* cmd - TRUE: The following word is a command; FALSE: the following words
|
|
* are data.
|
|
*
|
|
* Returned Value:
|
|
* OK unless an error occurs. Then a negated errno value is returned
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifdef CONFIG_SPI_CMDDATA
|
|
static int spi_cmddata(FAR struct spi_dev_s *dev, uint32_t devid, bool cmd)
|
|
{
|
|
#ifdef CONFIG_DEBUG_SPI_INFO
|
|
uint32_t regval;
|
|
#endif
|
|
uint32_t bit = 1 << 23;
|
|
|
|
/* We do not bother to check if devid == SPIDEV_DISPLAY(0) because that is the
|
|
* only thing on the bus.
|
|
*/
|
|
|
|
/* "This is the Data/Command control pad which determines whether the
|
|
* data bits are data or a command.
|
|
*
|
|
* A0 = H: the inputs at D0 to D7 are treated as display data.
|
|
* A0 = L: the inputs at D0 to D7 are transferred to the command registers."
|
|
*/
|
|
|
|
#ifdef CONFIG_DEBUG_SPI_INFO
|
|
regval = getreg32(CS_PIN_REGISTER);
|
|
#endif
|
|
|
|
if (cmd)
|
|
{
|
|
/* L: the inputs at D0 to D7 are transferred to the command registers */
|
|
|
|
putreg32(bit, CS_CLR_REGISTER);
|
|
spiinfo("Command: %08x->%08x\n", regval, getreg32(CS_PIN_REGISTER));
|
|
}
|
|
else
|
|
{
|
|
/* H: the inputs at D0 to D7 are treated as display data. */
|
|
|
|
putreg32(bit, CS_SET_REGISTER);
|
|
spiinfo("Data: %08x->%08x\n", regval, getreg32(CS_PIN_REGISTER));
|
|
}
|
|
|
|
return OK;
|
|
}
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Name: spi_send
|
|
*
|
|
* Description:
|
|
* Exchange one word on SPI
|
|
*
|
|
* Input Parameters:
|
|
* dev - Device-specific state data
|
|
* wd - The word to send. the size of the data is determined by the
|
|
* number of bits selected for the SPI interface.
|
|
*
|
|
* Returned Value:
|
|
* response
|
|
*
|
|
****************************************************************************/
|
|
|
|
static uint16_t spi_send(FAR struct spi_dev_s *dev, uint16_t wd)
|
|
{
|
|
register uint16_t regval;
|
|
|
|
/* Wait while the TX FIFO is full */
|
|
|
|
while (!(getreg8(LPC214X_SPI1_SR) & LPC214X_SPI1SR_TNF));
|
|
|
|
/* Write the byte to the TX FIFO */
|
|
|
|
putreg16((uint8_t)wd, LPC214X_SPI1_DR);
|
|
|
|
/* Wait for the RX FIFO not empty */
|
|
|
|
while (!(getreg8(LPC214X_SPI1_SR) & LPC214X_SPI1SR_RNE));
|
|
|
|
/* Get the value from the RX FIFO and return it */
|
|
|
|
regval = getreg16(LPC214X_SPI1_DR);
|
|
spiinfo("%04x->%04x\n", wd, regval);
|
|
return regval;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: spi_sndblock
|
|
*
|
|
* Description:
|
|
* Send a block of data on SPI
|
|
*
|
|
* Input Parameters:
|
|
* dev - Device-specific state data
|
|
* buffer - A pointer to the buffer of data to be sent
|
|
* nwords - the length of data to send from the buffer in number of words.
|
|
* The wordsize is determined by the number of bits-per-word
|
|
* selected for the SPI interface. If nbits <= 8, the data is
|
|
* packed into uint8_t's; if nbits >8, the data is packed into uint16_t's
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
static void spi_sndblock(FAR struct spi_dev_s *dev, FAR const void *buffer, size_t nwords)
|
|
{
|
|
FAR const uint8_t *ptr = (FAR const uint8_t *)buffer;
|
|
uint8_t sr;
|
|
|
|
/* Loop while thre are bytes remaining to be sent */
|
|
|
|
spiinfo("nwords: %d\n", nwords);
|
|
while (nwords > 0)
|
|
{
|
|
/* While the TX FIFO is not full and there are bytes left to send */
|
|
|
|
while ((getreg8(LPC214X_SPI1_SR) & LPC214X_SPI1SR_TNF) && nwords)
|
|
{
|
|
/* Send the data */
|
|
|
|
putreg16((uint16_t)*ptr, LPC214X_SPI1_DR);
|
|
ptr++;
|
|
nwords--;
|
|
}
|
|
}
|
|
|
|
/* Then discard all card responses until the RX & TX FIFOs are emptied. */
|
|
|
|
spiinfo("discarding\n");
|
|
do
|
|
{
|
|
/* Is there anything in the RX fifo? */
|
|
|
|
sr = getreg8(LPC214X_SPI1_SR);
|
|
if ((sr & LPC214X_SPI1SR_RNE) != 0)
|
|
{
|
|
/* Yes.. Read and discard */
|
|
|
|
(void)getreg16(LPC214X_SPI1_DR);
|
|
}
|
|
|
|
/* There is a race condition where TFE may go true just before
|
|
* RNE goes true and this loop terminates prematurely. The nasty little
|
|
* delay in the following solves that (it could probably be tuned
|
|
* to improve performance).
|
|
*/
|
|
|
|
else if ((sr & LPC214X_SPI1SR_TFE) != 0)
|
|
{
|
|
up_udelay(100);
|
|
sr = getreg8(LPC214X_SPI1_SR);
|
|
}
|
|
}
|
|
while ((sr & LPC214X_SPI1SR_RNE) != 0 || (sr & LPC214X_SPI1SR_TFE) == 0);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: spi_recvblock
|
|
*
|
|
* Description:
|
|
* Revice a block of data from SPI
|
|
*
|
|
* Input Parameters:
|
|
* dev - Device-specific state data
|
|
* buffer - A pointer to the buffer in which to recieve data
|
|
* nwords - the length of data that can be received in the buffer in number
|
|
* of words. The wordsize is determined by the number of bits-per-word
|
|
* selected for the SPI interface. If nbits <= 8, the data is
|
|
* packed into uint8_t's; if nbits >8, the data is packed into uint16_t's
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
static void spi_recvblock(FAR struct spi_dev_s *dev, FAR void *buffer, size_t nwords)
|
|
{
|
|
FAR uint8_t *ptr = (FAR uint8_t*)buffer;
|
|
uint32_t rxpending = 0;
|
|
|
|
/* While there is remaining to be sent (and no synchronization error has occurred) */
|
|
|
|
spiinfo("nwords: %d\n", nwords);
|
|
while (nwords || rxpending)
|
|
{
|
|
/* Fill the transmit FIFO with 0xff...
|
|
* Write 0xff to the data register while (1) the TX FIFO is
|
|
* not full, (2) we have not exceeded the depth of the TX FIFO,
|
|
* and (3) there are more bytes to be sent.
|
|
*/
|
|
|
|
spiinfo("TX: rxpending: %d nwords: %d\n", rxpending, nwords);
|
|
while ((getreg8(LPC214X_SPI1_SR) & LPC214X_SPI1SR_TNF) &&
|
|
(rxpending < LPC214X_SPI1_FIFOSZ) && nwords)
|
|
{
|
|
putreg16(0xff, LPC214X_SPI1_DR);
|
|
nwords--;
|
|
rxpending++;
|
|
}
|
|
|
|
/* Now, read the RX data from the RX FIFO while the RX FIFO is not empty */
|
|
|
|
spiinfo("RX: rxpending: %d\n", rxpending);
|
|
while (getreg8(LPC214X_SPI1_SR) & LPC214X_SPI1SR_RNE)
|
|
{
|
|
*ptr++ = (uint8_t)getreg16(LPC214X_SPI1_DR);
|
|
rxpending--;
|
|
}
|
|
}
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: lpc214x_spibus_initialize
|
|
*
|
|
* Description:
|
|
* Initialize the selected SPI port
|
|
*
|
|
* Input Parameters:
|
|
* Port number (for hardware that has mutiple SPI interfaces)
|
|
*
|
|
* Returned Value:
|
|
* Valid SPI device structre reference on succcess; a NULL on failure
|
|
*
|
|
****************************************************************************/
|
|
|
|
FAR struct spi_dev_s *lpc214x_spibus_initialize(int port)
|
|
{
|
|
uint32_t regval32;
|
|
uint8_t regval8;
|
|
int i;
|
|
|
|
/* Only the SPI1 interface is supported */
|
|
|
|
#ifdef CONFIG_DEBUG_FEATURES
|
|
if (port != 1)
|
|
{
|
|
return NULL;
|
|
}
|
|
#endif
|
|
|
|
/* Configure multiplexed pins as connected on the ZP213X/4XPA board:
|
|
*
|
|
* PINSEL1 P0.17/CAP1.2/SCK1/MAT1.2 Bits 2-3=10 for SCK1
|
|
* PINSEL1 P0.18/CAP1.3/MISO1/MAT1.3 Bits 4-5=10 for MISO1
|
|
* (This is the RESET line for the UG_2864AMBAG01,
|
|
* although it is okay to configure it as an input too)
|
|
* PINSEL1 P0.19/MAT1.2/MOSI1/CAP1.2 Bits 6-7=10 for MOSI1
|
|
* PINSEL1 P0.20/MAT1.3/SSEL1/EINT3 Bits 8-9=00 for P0.20 (we'll control it via GPIO or FIO)
|
|
* PINSEL1 P0.23/VBUS Bits 12-13=00 for P0.21 (we'll control it via GPIO or FIO)
|
|
*/
|
|
|
|
regval32 = getreg32(LPC214X_PINSEL1);
|
|
#ifdef CONFIG_LCD_UG2864AMBAG01
|
|
regval32 &= ~(LPC214X_PINSEL1_P017_MASK|LPC214X_PINSEL1_P019_MASK|
|
|
LPC214X_PINSEL1_P020_MASK|LPC214X_PINSEL1_P023_MASK);
|
|
regval32 |= (LPC214X_PINSEL1_P017_SCK1|LPC214X_PINSEL1_P019_MOSI1|
|
|
LPC214X_PINSEL1_P020_GPIO|LPC214X_PINSEL1_P023_GPIO);
|
|
#else
|
|
regval32 &= ~(LPC214X_PINSEL1_P017_MASK|LPC214X_PINSEL1_P018_MASK
|
|
LPC214X_PINSEL1_P019_MASK|LPC214X_PINSEL1_P020_MASK|
|
|
LPC214X_PINSEL1_P023_MASK);
|
|
regval32 |= (LPC214X_PINSEL1_P017_SCK1|LPC214X_PINSEL1_P018_MISO1|
|
|
LPC214X_PINSEL1_P019_MOSI1|LPC214X_PINSEL1_P020_GPIO|
|
|
LPC214X_PINSEL1_P023_GPIO);
|
|
#endif
|
|
putreg32(regval32, LPC214X_PINSEL1);
|
|
|
|
/* De-select chip select using P0.20 (SSEL1) (low enables) and select A0
|
|
* for commands (also low)
|
|
*/
|
|
|
|
regval32 = (1 << 20) | (1 << 23);
|
|
putreg32(regval32, CS_SET_REGISTER);
|
|
regval32 |= getreg32(CS_DIR_REGISTER);
|
|
putreg32(regval32, CS_DIR_REGISTER);
|
|
|
|
spiinfo("CS Pin Config: PINSEL1: %08x PIN: %08x DIR: %08x\n",
|
|
getreg32(LPC214X_PINSEL1), getreg32(CS_PIN_REGISTER),
|
|
getreg32(CS_DIR_REGISTER));
|
|
|
|
/* Enable peripheral clocking to SPI1 */
|
|
|
|
regval32 = getreg32(LPC214X_PCON_PCONP);
|
|
regval32 |= LPC214X_PCONP_PCSPI1;
|
|
putreg32(regval32, LPC214X_PCON_PCONP);
|
|
|
|
/* Configure 8-bit SPI mode */
|
|
|
|
putreg16(LPC214X_SPI1CR0_DSS8BIT|LPC214X_SPI1CR0_FRFSPI, LPC214X_SPI1_CR0);
|
|
|
|
/* Disable the SSP and all interrupts (we'll poll for all data) */
|
|
|
|
putreg8(0, LPC214X_SPI1_CR1);
|
|
putreg8(0, LPC214X_SPI1_IMSC);
|
|
|
|
/* Set the initial clock frequency for indentification mode < 400kHz */
|
|
|
|
spi_setfrequency(NULL, 400000);
|
|
|
|
/* Enable the SPI */
|
|
|
|
regval8 = getreg8(LPC214X_SPI1_CR1);
|
|
putreg8(regval8 | LPC214X_SPI1CR1_SSE, LPC214X_SPI1_CR1);
|
|
|
|
for (i = 0; i < 8; i++)
|
|
{
|
|
(void)getreg16(LPC214X_SPI1_DR);
|
|
}
|
|
|
|
return &g_spidev;
|
|
}
|