2011-11-08 23:18:14 +00:00
|
|
|
/*
|
|
|
|
* Freescale i.MX28 SPI driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
|
|
|
|
* on behalf of DENX Software Engineering GmbH
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
* NOTE: This driver only supports the SPI-controller chipselects,
|
|
|
|
* GPIO driven chipselects are not supported.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <spi.h>
|
|
|
|
#include <asm/errno.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/arch/clock.h>
|
|
|
|
#include <asm/arch/imx-regs.h>
|
|
|
|
#include <asm/arch/sys_proto.h>
|
|
|
|
|
|
|
|
#define MXS_SPI_MAX_TIMEOUT 1000000
|
|
|
|
#define MXS_SPI_PORT_OFFSET 0x2000
|
2012-04-23 08:30:50 +00:00
|
|
|
#define MXS_SSP_CHIPSELECT_MASK 0x00300000
|
|
|
|
#define MXS_SSP_CHIPSELECT_SHIFT 20
|
2011-11-08 23:18:14 +00:00
|
|
|
|
|
|
|
struct mxs_spi_slave {
|
|
|
|
struct spi_slave slave;
|
|
|
|
uint32_t max_khz;
|
|
|
|
uint32_t mode;
|
|
|
|
struct mx28_ssp_regs *regs;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct mxs_spi_slave *to_mxs_slave(struct spi_slave *slave)
|
|
|
|
{
|
|
|
|
return container_of(slave, struct mxs_spi_slave, slave);
|
|
|
|
}
|
|
|
|
|
|
|
|
void spi_init(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-04-23 08:30:49 +00:00
|
|
|
int spi_cs_is_valid(unsigned int bus, unsigned int cs)
|
|
|
|
{
|
|
|
|
/* MXS SPI: 4 ports and 3 chip selects maximum */
|
|
|
|
if (bus > 3 || cs > 2)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-11-08 23:18:14 +00:00
|
|
|
struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
|
|
|
|
unsigned int max_hz, unsigned int mode)
|
|
|
|
{
|
|
|
|
struct mxs_spi_slave *mxs_slave;
|
|
|
|
uint32_t addr;
|
2012-04-23 08:30:50 +00:00
|
|
|
struct mx28_ssp_regs *ssp_regs;
|
|
|
|
int reg;
|
2011-11-08 23:18:14 +00:00
|
|
|
|
2012-04-23 08:30:49 +00:00
|
|
|
if (!spi_cs_is_valid(bus, cs)) {
|
|
|
|
printf("mxs_spi: invalid bus %d / chip select %d\n", bus, cs);
|
2011-11-08 23:18:14 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
mxs_slave = malloc(sizeof(struct mxs_spi_slave));
|
|
|
|
if (!mxs_slave)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
addr = MXS_SSP0_BASE + (bus * MXS_SPI_PORT_OFFSET);
|
|
|
|
|
|
|
|
mxs_slave->slave.bus = bus;
|
|
|
|
mxs_slave->slave.cs = cs;
|
|
|
|
mxs_slave->max_khz = max_hz / 1000;
|
|
|
|
mxs_slave->mode = mode;
|
|
|
|
mxs_slave->regs = (struct mx28_ssp_regs *)addr;
|
2012-04-23 08:30:50 +00:00
|
|
|
ssp_regs = mxs_slave->regs;
|
2011-11-08 23:18:14 +00:00
|
|
|
|
2012-04-23 08:30:50 +00:00
|
|
|
reg = readl(&ssp_regs->hw_ssp_ctrl0);
|
|
|
|
reg &= ~(MXS_SSP_CHIPSELECT_MASK);
|
|
|
|
reg |= cs << MXS_SSP_CHIPSELECT_SHIFT;
|
|
|
|
|
|
|
|
writel(reg, &ssp_regs->hw_ssp_ctrl0);
|
2011-11-08 23:18:14 +00:00
|
|
|
return &mxs_slave->slave;
|
|
|
|
}
|
|
|
|
|
|
|
|
void spi_free_slave(struct spi_slave *slave)
|
|
|
|
{
|
|
|
|
struct mxs_spi_slave *mxs_slave = to_mxs_slave(slave);
|
|
|
|
free(mxs_slave);
|
|
|
|
}
|
|
|
|
|
|
|
|
int spi_claim_bus(struct spi_slave *slave)
|
|
|
|
{
|
|
|
|
struct mxs_spi_slave *mxs_slave = to_mxs_slave(slave);
|
|
|
|
struct mx28_ssp_regs *ssp_regs = mxs_slave->regs;
|
|
|
|
uint32_t reg = 0;
|
|
|
|
|
|
|
|
mx28_reset_block(&ssp_regs->hw_ssp_ctrl0_reg);
|
|
|
|
|
|
|
|
writel(SSP_CTRL0_BUS_WIDTH_ONE_BIT, &ssp_regs->hw_ssp_ctrl0);
|
|
|
|
|
|
|
|
reg = SSP_CTRL1_SSP_MODE_SPI | SSP_CTRL1_WORD_LENGTH_EIGHT_BITS;
|
|
|
|
reg |= (mxs_slave->mode & SPI_CPOL) ? SSP_CTRL1_POLARITY : 0;
|
|
|
|
reg |= (mxs_slave->mode & SPI_CPHA) ? SSP_CTRL1_PHASE : 0;
|
|
|
|
writel(reg, &ssp_regs->hw_ssp_ctrl1);
|
|
|
|
|
|
|
|
writel(0, &ssp_regs->hw_ssp_cmd0);
|
|
|
|
|
|
|
|
mx28_set_ssp_busclock(slave->bus, mxs_slave->max_khz);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void spi_release_bus(struct spi_slave *slave)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mxs_spi_start_xfer(struct mx28_ssp_regs *ssp_regs)
|
|
|
|
{
|
|
|
|
writel(SSP_CTRL0_LOCK_CS, &ssp_regs->hw_ssp_ctrl0_set);
|
|
|
|
writel(SSP_CTRL0_IGNORE_CRC, &ssp_regs->hw_ssp_ctrl0_clr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mxs_spi_end_xfer(struct mx28_ssp_regs *ssp_regs)
|
|
|
|
{
|
|
|
|
writel(SSP_CTRL0_LOCK_CS, &ssp_regs->hw_ssp_ctrl0_clr);
|
|
|
|
writel(SSP_CTRL0_IGNORE_CRC, &ssp_regs->hw_ssp_ctrl0_set);
|
|
|
|
}
|
|
|
|
|
|
|
|
int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
|
|
|
|
const void *dout, void *din, unsigned long flags)
|
|
|
|
{
|
|
|
|
struct mxs_spi_slave *mxs_slave = to_mxs_slave(slave);
|
|
|
|
struct mx28_ssp_regs *ssp_regs = mxs_slave->regs;
|
|
|
|
int len = bitlen / 8;
|
2012-01-14 02:25:25 +00:00
|
|
|
char dummy;
|
2012-07-09 00:48:31 +00:00
|
|
|
int write = 0;
|
|
|
|
char *data = NULL;
|
2012-01-14 02:25:25 +00:00
|
|
|
|
|
|
|
if (bitlen == 0) {
|
|
|
|
if (flags & SPI_XFER_END) {
|
2012-07-09 00:48:31 +00:00
|
|
|
din = (void *)&dummy;
|
2012-01-14 02:25:25 +00:00
|
|
|
len = 1;
|
|
|
|
} else
|
|
|
|
return 0;
|
|
|
|
}
|
2011-11-08 23:18:14 +00:00
|
|
|
|
2012-07-09 00:48:31 +00:00
|
|
|
/* Half-duplex only */
|
|
|
|
if (din && dout)
|
|
|
|
return -EINVAL;
|
|
|
|
/* No data */
|
|
|
|
if (!din && !dout)
|
2011-11-08 23:18:14 +00:00
|
|
|
return 0;
|
|
|
|
|
2012-07-09 00:48:31 +00:00
|
|
|
if (dout) {
|
|
|
|
data = (char *)dout;
|
|
|
|
write = 1;
|
|
|
|
} else if (din) {
|
|
|
|
data = (char *)din;
|
|
|
|
write = 0;
|
|
|
|
}
|
|
|
|
|
2011-11-08 23:18:14 +00:00
|
|
|
if (flags & SPI_XFER_BEGIN)
|
|
|
|
mxs_spi_start_xfer(ssp_regs);
|
|
|
|
|
|
|
|
while (len--) {
|
|
|
|
/* We transfer 1 byte */
|
|
|
|
writel(1, &ssp_regs->hw_ssp_xfer_size);
|
|
|
|
|
|
|
|
if ((flags & SPI_XFER_END) && !len)
|
|
|
|
mxs_spi_end_xfer(ssp_regs);
|
|
|
|
|
2012-07-09 00:48:31 +00:00
|
|
|
if (write)
|
2011-11-08 23:18:14 +00:00
|
|
|
writel(SSP_CTRL0_READ, &ssp_regs->hw_ssp_ctrl0_clr);
|
|
|
|
else
|
|
|
|
writel(SSP_CTRL0_READ, &ssp_regs->hw_ssp_ctrl0_set);
|
|
|
|
|
|
|
|
writel(SSP_CTRL0_RUN, &ssp_regs->hw_ssp_ctrl0_set);
|
|
|
|
|
|
|
|
if (mx28_wait_mask_set(&ssp_regs->hw_ssp_ctrl0_reg,
|
|
|
|
SSP_CTRL0_RUN, MXS_SPI_MAX_TIMEOUT)) {
|
|
|
|
printf("MXS SPI: Timeout waiting for start\n");
|
2012-03-18 17:23:35 +00:00
|
|
|
return -ETIMEDOUT;
|
2011-11-08 23:18:14 +00:00
|
|
|
}
|
|
|
|
|
2012-07-09 00:48:31 +00:00
|
|
|
if (write)
|
|
|
|
writel(*data++, &ssp_regs->hw_ssp_data);
|
2011-11-08 23:18:14 +00:00
|
|
|
|
|
|
|
writel(SSP_CTRL0_DATA_XFER, &ssp_regs->hw_ssp_ctrl0_set);
|
|
|
|
|
2012-07-09 00:48:31 +00:00
|
|
|
if (!write) {
|
2011-11-08 23:18:14 +00:00
|
|
|
if (mx28_wait_mask_clr(&ssp_regs->hw_ssp_status_reg,
|
|
|
|
SSP_STATUS_FIFO_EMPTY, MXS_SPI_MAX_TIMEOUT)) {
|
|
|
|
printf("MXS SPI: Timeout waiting for data\n");
|
2012-03-18 17:23:35 +00:00
|
|
|
return -ETIMEDOUT;
|
2011-11-08 23:18:14 +00:00
|
|
|
}
|
|
|
|
|
2012-07-09 00:48:31 +00:00
|
|
|
*data = readl(&ssp_regs->hw_ssp_data);
|
|
|
|
data++;
|
2011-11-08 23:18:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mx28_wait_mask_clr(&ssp_regs->hw_ssp_ctrl0_reg,
|
|
|
|
SSP_CTRL0_RUN, MXS_SPI_MAX_TIMEOUT)) {
|
|
|
|
printf("MXS SPI: Timeout waiting for finish\n");
|
2012-03-18 17:23:35 +00:00
|
|
|
return -ETIMEDOUT;
|
2011-11-08 23:18:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|