mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-spi
- NPCM7xx FIU SPI driver (Jim Liu) - AT45DB641E dataflash (Luca Ellero)
This commit is contained in:
commit
4209f74445
5 changed files with 468 additions and 34 deletions
|
@ -70,6 +70,9 @@
|
|||
#define OP_WRITE_SECURITY_REVC 0x9A
|
||||
#define OP_WRITE_SECURITY 0x9B /* revision D */
|
||||
|
||||
#define DATAFLASH_SHIFT_EXTID 24
|
||||
#define DATAFLASH_SHIFT_ID 40
|
||||
|
||||
struct dataflash {
|
||||
uint8_t command[16];
|
||||
unsigned short page_offset; /* offset in flash address */
|
||||
|
@ -455,7 +458,7 @@ struct data_flash_info {
|
|||
* JEDEC id has a high byte of zero plus three data bytes:
|
||||
* the manufacturer id, then a two byte device id.
|
||||
*/
|
||||
uint32_t jedec_id;
|
||||
uint64_t jedec_id;
|
||||
|
||||
/* The size listed here is what works with OP_ERASE_PAGE. */
|
||||
unsigned nr_pages;
|
||||
|
@ -463,6 +466,7 @@ struct data_flash_info {
|
|||
uint16_t pageoffset;
|
||||
|
||||
uint16_t flags;
|
||||
#define SUP_EXTID 0x0004 /* supports extended ID data */
|
||||
#define SUP_POW2PS 0x0002 /* supports 2^N byte pages */
|
||||
#define IS_POW2PS 0x0001 /* uses 2^N byte pages */
|
||||
};
|
||||
|
@ -506,50 +510,31 @@ static struct data_flash_info dataflash_data[] = {
|
|||
|
||||
{ "AT45DB642x", 0x1f2800, 8192, 1056, 11, SUP_POW2PS},
|
||||
{ "at45db642d", 0x1f2800, 8192, 1024, 10, SUP_POW2PS | IS_POW2PS},
|
||||
|
||||
{ "AT45DB641E", 0x1f28000100ULL, 32768, 264, 9, SUP_EXTID | SUP_POW2PS},
|
||||
{ "at45db641e", 0x1f28000100ULL, 32768, 256, 8, SUP_EXTID | SUP_POW2PS | IS_POW2PS},
|
||||
};
|
||||
|
||||
static struct data_flash_info *jedec_probe(struct spi_slave *spi)
|
||||
static struct data_flash_info *jedec_lookup(struct spi_slave *spi,
|
||||
u64 jedec, bool use_extid)
|
||||
|
||||
{
|
||||
int tmp;
|
||||
uint8_t id[5];
|
||||
uint32_t jedec;
|
||||
struct data_flash_info *info;
|
||||
u8 opcode = CMD_READ_ID;
|
||||
struct data_flash_info *info;
|
||||
int status;
|
||||
|
||||
/*
|
||||
* JEDEC also defines an optional "extended device information"
|
||||
* string for after vendor-specific data, after the three bytes
|
||||
* we use here. Supporting some chips might require using it.
|
||||
*
|
||||
* If the vendor ID isn't Atmel's (0x1f), assume this call failed.
|
||||
* That's not an error; only rev C and newer chips handle it, and
|
||||
* only Atmel sells these chips.
|
||||
*/
|
||||
tmp = spi_write_then_read(spi, &opcode, 1, NULL, id, sizeof(id));
|
||||
if (tmp < 0) {
|
||||
printf("dataflash: error %d reading JEDEC ID\n", tmp);
|
||||
return ERR_PTR(tmp);
|
||||
}
|
||||
if (id[0] != 0x1f)
|
||||
return NULL;
|
||||
for (info = dataflash_data;
|
||||
info < dataflash_data + ARRAY_SIZE(dataflash_data);
|
||||
info++) {
|
||||
if (use_extid && !(info->flags & SUP_EXTID))
|
||||
continue;
|
||||
|
||||
jedec = id[0];
|
||||
jedec = jedec << 8;
|
||||
jedec |= id[1];
|
||||
jedec = jedec << 8;
|
||||
jedec |= id[2];
|
||||
|
||||
for (tmp = 0, info = dataflash_data;
|
||||
tmp < ARRAY_SIZE(dataflash_data);
|
||||
tmp++, info++) {
|
||||
if (info->jedec_id == jedec) {
|
||||
if (info->flags & SUP_POW2PS) {
|
||||
status = dataflash_status(spi);
|
||||
if (status < 0) {
|
||||
debug("dataflash: status error %d\n",
|
||||
status);
|
||||
return NULL;
|
||||
return ERR_PTR(status);
|
||||
}
|
||||
if (status & 0x1) {
|
||||
if (info->flags & IS_POW2PS)
|
||||
|
@ -564,12 +549,58 @@ static struct data_flash_info *jedec_probe(struct spi_slave *spi)
|
|||
}
|
||||
}
|
||||
|
||||
return ERR_PTR(-ENODEV);
|
||||
}
|
||||
|
||||
static struct data_flash_info *jedec_probe(struct spi_slave *spi)
|
||||
{
|
||||
int tmp;
|
||||
uint64_t jedec;
|
||||
uint8_t id[sizeof(jedec)] = {0};
|
||||
const unsigned int id_size = 5;
|
||||
struct data_flash_info *info;
|
||||
u8 opcode = CMD_READ_ID;
|
||||
|
||||
/*
|
||||
* JEDEC also defines an optional "extended device information"
|
||||
* string for after vendor-specific data, after the three bytes
|
||||
* we use here. Supporting some chips might require using it.
|
||||
*
|
||||
* If the vendor ID isn't Atmel's (0x1f), assume this call failed.
|
||||
* That's not an error; only rev C and newer chips handle it, and
|
||||
* only Atmel sells these chips.
|
||||
*/
|
||||
tmp = spi_write_then_read(spi, &opcode, 1, NULL, id, id_size);
|
||||
if (tmp < 0) {
|
||||
printf("dataflash: error %d reading JEDEC ID\n", tmp);
|
||||
return ERR_PTR(tmp);
|
||||
}
|
||||
|
||||
if (id[0] != 0x1f)
|
||||
return NULL;
|
||||
|
||||
jedec = be64_to_cpup((__be64 *)id);
|
||||
|
||||
/*
|
||||
* First, try to match device using extended device
|
||||
* information
|
||||
*/
|
||||
info = jedec_lookup(spi, jedec >> DATAFLASH_SHIFT_EXTID, true);
|
||||
if (!IS_ERR(info))
|
||||
return info;
|
||||
/*
|
||||
* If that fails, make another pass using regular ID
|
||||
* information
|
||||
*/
|
||||
info = jedec_lookup(spi, jedec >> DATAFLASH_SHIFT_ID, false);
|
||||
if (!IS_ERR(info))
|
||||
return info;
|
||||
/*
|
||||
* Treat other chips as errors ... we won't know the right page
|
||||
* size (it might be binary) even when we can tell which density
|
||||
* class is involved (legacy chip id scheme).
|
||||
*/
|
||||
printf("dataflash: JEDEC id %06x not handled\n", jedec);
|
||||
printf("dataflash: JEDEC id 0x%016llx not handled\n", jedec);
|
||||
return ERR_PTR(-ENODEV);
|
||||
}
|
||||
|
||||
|
@ -618,6 +649,8 @@ static int spi_dataflash_probe(struct udevice *dev)
|
|||
(info->flags & SUP_POW2PS) ? 'd' : 'c');
|
||||
if (status < 0)
|
||||
goto err_status;
|
||||
else
|
||||
return status;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -166,6 +166,8 @@ const struct flash_info spi_nor_ids[] = {
|
|||
{ INFO("mx25u6435f", 0xc22537, 0, 64 * 1024, 128, SECT_4K) },
|
||||
{ INFO("mx25l12805d", 0xc22018, 0, 64 * 1024, 256, SECT_4K) },
|
||||
{ INFO("mx25u12835f", 0xc22538, 0, 64 * 1024, 256, SECT_4K) },
|
||||
{ INFO("mx25u51245g", 0xc2253a, 0, 64 * 1024, 1024, SECT_4K |
|
||||
SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
|
||||
{ INFO("mx25l12855e", 0xc22618, 0, 64 * 1024, 256, 0) },
|
||||
{ INFO("mx25l25635e", 0xc22019, 0, 64 * 1024, 512, SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
|
||||
{ INFO("mx25u25635f", 0xc22539, 0, 64 * 1024, 512, SECT_4K | SPI_NOR_4B_OPCODES) },
|
||||
|
@ -345,6 +347,11 @@ const struct flash_info spi_nor_ids[] = {
|
|||
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ |
|
||||
SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
|
||||
},
|
||||
{
|
||||
INFO("w25q128jw", 0xef8018, 0, 64 * 1024, 256,
|
||||
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ |
|
||||
SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
|
||||
},
|
||||
{
|
||||
INFO("w25q256fw", 0xef6019, 0, 64 * 1024, 512,
|
||||
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ |
|
||||
|
|
|
@ -283,6 +283,12 @@ config SPI_MXIC
|
|||
can be used to access the SPI flash on platforms embedding
|
||||
this Macronix IP core.
|
||||
|
||||
config NPCM_FIU_SPI
|
||||
bool "FIU driver for Nuvoton NPCM SoC"
|
||||
help
|
||||
This enables support for the Flash Interface Unit SPI controller
|
||||
in master mode.
|
||||
|
||||
config NXP_FSPI
|
||||
bool "NXP FlexSPI driver"
|
||||
depends on SPI_MEM
|
||||
|
|
|
@ -47,6 +47,7 @@ obj-$(CONFIG_MSCC_BB_SPI) += mscc_bb_spi.o
|
|||
obj-$(CONFIG_MVEBU_A3700_SPI) += mvebu_a3700_spi.o
|
||||
obj-$(CONFIG_MXC_SPI) += mxc_spi.o
|
||||
obj-$(CONFIG_MXS_SPI) += mxs_spi.o
|
||||
obj-$(CONFIG_NPCM_FIU_SPI) += npcm_fiu_spi.o
|
||||
obj-$(CONFIG_NXP_FSPI) += nxp_fspi.o
|
||||
obj-$(CONFIG_ATCSPI200_SPI) += atcspi200_spi.o
|
||||
obj-$(CONFIG_OCTEON_SPI) += octeon_spi.o
|
||||
|
|
387
drivers/spi/npcm_fiu_spi.c
Normal file
387
drivers/spi/npcm_fiu_spi.c
Normal file
|
@ -0,0 +1,387 @@
|
|||
// SPDX-License-Identifier: GPL-2.0+
|
||||
/*
|
||||
* Copyright (c) 2022 Nuvoton Technology Corp.
|
||||
* NPCM Flash Interface Unit(FIU) SPI master controller driver.
|
||||
*/
|
||||
|
||||
#include <clk.h>
|
||||
#include <dm.h>
|
||||
#include <spi.h>
|
||||
#include <spi-mem.h>
|
||||
#include <linux/bitfield.h>
|
||||
#include <linux/log2.h>
|
||||
#include <linux/iopoll.h>
|
||||
|
||||
#define DW_SIZE 4
|
||||
#define CHUNK_SIZE 16
|
||||
#define XFER_TIMEOUT 1000000
|
||||
|
||||
/* FIU UMA Configuration Register (UMA_CFG) */
|
||||
#define UMA_CFG_RDATSIZ_MASK GENMASK(28, 24)
|
||||
#define UMA_CFG_DBSIZ_MASK GENMASK(23, 21)
|
||||
#define UMA_CFG_WDATSIZ_MASK GENMASK(20, 16)
|
||||
#define UMA_CFG_ADDSIZ_MASK GENMASK(13, 11)
|
||||
#define UMA_CFG_RDBPCK_MASK GENMASK(9, 8)
|
||||
#define UMA_CFG_DBPCK_MASK GENMASK(7, 6)
|
||||
#define UMA_CFG_WDBPCK_MASK GENMASK(5, 4)
|
||||
#define UMA_CFG_ADBPCK_MASK GENMASK(3, 2)
|
||||
#define UMA_CFG_CMBPCK_MASK GENMASK(1, 0)
|
||||
#define UMA_CFG_CMDSIZ_SHIFT 10
|
||||
|
||||
/* FIU UMA Control and Status Register (UMA_CTS) */
|
||||
#define UMA_CTS_SW_CS BIT(16)
|
||||
#define UMA_CTS_EXEC_DONE BIT(0)
|
||||
#define UMA_CTS_RDYST BIT(24)
|
||||
#define UMA_CTS_DEV_NUM_MASK GENMASK(9, 8)
|
||||
|
||||
struct npcm_fiu_regs {
|
||||
unsigned int drd_cfg;
|
||||
unsigned int dwr_cfg;
|
||||
unsigned int uma_cfg;
|
||||
unsigned int uma_cts;
|
||||
unsigned int uma_cmd;
|
||||
unsigned int uma_addr;
|
||||
unsigned int prt_cfg;
|
||||
unsigned char res1[4];
|
||||
unsigned int uma_dw0;
|
||||
unsigned int uma_dw1;
|
||||
unsigned int uma_dw2;
|
||||
unsigned int uma_dw3;
|
||||
unsigned int uma_dr0;
|
||||
unsigned int uma_dr1;
|
||||
unsigned int uma_dr2;
|
||||
unsigned int uma_dr3;
|
||||
unsigned int prt_cmd0;
|
||||
unsigned int prt_cmd1;
|
||||
unsigned int prt_cmd2;
|
||||
unsigned int prt_cmd3;
|
||||
unsigned int prt_cmd4;
|
||||
unsigned int prt_cmd5;
|
||||
unsigned int prt_cmd6;
|
||||
unsigned int prt_cmd7;
|
||||
unsigned int prt_cmd8;
|
||||
unsigned int prt_cmd9;
|
||||
unsigned int stuff[4];
|
||||
unsigned int fiu_cfg;
|
||||
};
|
||||
|
||||
struct npcm_fiu_priv {
|
||||
struct npcm_fiu_regs *regs;
|
||||
struct clk clk;
|
||||
};
|
||||
|
||||
static int npcm_fiu_spi_set_speed(struct udevice *bus, uint speed)
|
||||
{
|
||||
struct npcm_fiu_priv *priv = dev_get_priv(bus);
|
||||
int ret;
|
||||
|
||||
debug("%s: set speed %u\n", bus->name, speed);
|
||||
ret = clk_set_rate(&priv->clk, speed);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int npcm_fiu_spi_set_mode(struct udevice *bus, uint mode)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static inline void activate_cs(struct npcm_fiu_regs *regs, int cs)
|
||||
{
|
||||
writel(FIELD_PREP(UMA_CTS_DEV_NUM_MASK, cs), ®s->uma_cts);
|
||||
}
|
||||
|
||||
static inline void deactivate_cs(struct npcm_fiu_regs *regs, int cs)
|
||||
{
|
||||
writel(FIELD_PREP(UMA_CTS_DEV_NUM_MASK, cs) | UMA_CTS_SW_CS, ®s->uma_cts);
|
||||
}
|
||||
|
||||
static int fiu_uma_read(struct udevice *bus, u8 *buf, u32 size)
|
||||
{
|
||||
struct npcm_fiu_priv *priv = dev_get_priv(bus);
|
||||
struct npcm_fiu_regs *regs = priv->regs;
|
||||
u32 data_reg[4];
|
||||
u32 val;
|
||||
int ret;
|
||||
|
||||
/* Set data size */
|
||||
writel(FIELD_PREP(UMA_CFG_RDATSIZ_MASK, size), ®s->uma_cfg);
|
||||
|
||||
/* Initiate the read */
|
||||
writel(readl(®s->uma_cts) | UMA_CTS_EXEC_DONE, ®s->uma_cts);
|
||||
|
||||
/* Wait for completion */
|
||||
ret = readl_poll_timeout(®s->uma_cts, val,
|
||||
!(val & UMA_CTS_EXEC_DONE), XFER_TIMEOUT);
|
||||
if (ret) {
|
||||
printf("npcm_fiu: read timeout\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* Copy data from data registers */
|
||||
if (size)
|
||||
data_reg[0] = readl(®s->uma_dr0);
|
||||
if (size > DW_SIZE)
|
||||
data_reg[1] = readl(®s->uma_dr1);
|
||||
if (size > DW_SIZE * 2)
|
||||
data_reg[2] = readl(®s->uma_dr2);
|
||||
if (size > DW_SIZE * 3)
|
||||
data_reg[3] = readl(®s->uma_dr3);
|
||||
memcpy(buf, data_reg, size);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int fiu_uma_write(struct udevice *bus, const u8 *buf, u32 size)
|
||||
{
|
||||
struct npcm_fiu_priv *priv = dev_get_priv(bus);
|
||||
struct npcm_fiu_regs *regs = priv->regs;
|
||||
u32 data_reg[4];
|
||||
u32 val;
|
||||
int ret;
|
||||
|
||||
/* Set data size */
|
||||
writel(FIELD_PREP(UMA_CFG_WDATSIZ_MASK, size), ®s->uma_cfg);
|
||||
|
||||
/* Write data to data registers */
|
||||
memcpy(data_reg, buf, size);
|
||||
if (size)
|
||||
writel(data_reg[0], ®s->uma_dw0);
|
||||
if (size > DW_SIZE)
|
||||
writel(data_reg[1], ®s->uma_dw1);
|
||||
if (size > DW_SIZE * 2)
|
||||
writel(data_reg[2], ®s->uma_dw2);
|
||||
if (size > DW_SIZE * 3)
|
||||
writel(data_reg[3], ®s->uma_dw3);
|
||||
|
||||
/* Initiate the transaction */
|
||||
writel(readl(®s->uma_cts) | UMA_CTS_EXEC_DONE, ®s->uma_cts);
|
||||
|
||||
/* Wait for completion */
|
||||
ret = readl_poll_timeout(®s->uma_cts, val,
|
||||
!(val & UMA_CTS_EXEC_DONE), XFER_TIMEOUT);
|
||||
if (ret)
|
||||
printf("npcm_fiu: write timeout\n");
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int npcm_fiu_spi_xfer(struct udevice *dev, unsigned int bitlen,
|
||||
const void *dout, void *din, unsigned long flags)
|
||||
{
|
||||
struct udevice *bus = dev->parent;
|
||||
struct npcm_fiu_priv *priv = dev_get_priv(bus);
|
||||
struct npcm_fiu_regs *regs = priv->regs;
|
||||
struct dm_spi_slave_plat *slave_plat =
|
||||
dev_get_parent_plat(dev);
|
||||
const u8 *tx = dout;
|
||||
u8 *rx = din;
|
||||
int bytes = bitlen / 8;
|
||||
int ret = 0;
|
||||
int len;
|
||||
|
||||
if (flags & SPI_XFER_BEGIN)
|
||||
activate_cs(regs, slave_plat->cs);
|
||||
|
||||
while (bytes) {
|
||||
len = (bytes > CHUNK_SIZE) ? CHUNK_SIZE : bytes;
|
||||
if (tx) {
|
||||
ret = fiu_uma_write(bus, tx, len);
|
||||
if (ret)
|
||||
break;
|
||||
tx += len;
|
||||
} else {
|
||||
ret = fiu_uma_read(bus, rx, len);
|
||||
if (ret)
|
||||
break;
|
||||
rx += len;
|
||||
}
|
||||
bytes -= len;
|
||||
}
|
||||
|
||||
if (flags & SPI_XFER_END)
|
||||
deactivate_cs(regs, slave_plat->cs);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int npcm_fiu_uma_operation(struct npcm_fiu_priv *priv, const struct spi_mem_op *op,
|
||||
u32 addr, const u8 *tx, u8 *rx, u32 nbytes, bool started)
|
||||
{
|
||||
struct npcm_fiu_regs *regs = priv->regs;
|
||||
u32 uma_cfg = 0, val;
|
||||
u32 data_reg[4];
|
||||
int ret;
|
||||
|
||||
debug("fiu_uma: opcode 0x%x, dir %d, addr 0x%x, %d bytes\n",
|
||||
op->cmd.opcode, op->data.dir, addr, nbytes);
|
||||
debug(" buswidth cmd:%d, addr:%d, dummy:%d, data:%d\n",
|
||||
op->cmd.buswidth, op->addr.buswidth, op->dummy.buswidth,
|
||||
op->data.buswidth);
|
||||
debug(" size cmd:%d, addr:%d, dummy:%d, data:%d\n",
|
||||
1, op->addr.nbytes, op->dummy.nbytes, op->data.nbytes);
|
||||
debug(" tx %p, rx %p\n", tx, rx);
|
||||
|
||||
if (!started) {
|
||||
/* Send cmd/addr in the begin of an transaction */
|
||||
writel(op->cmd.opcode, ®s->uma_cmd);
|
||||
|
||||
uma_cfg |= FIELD_PREP(UMA_CFG_CMBPCK_MASK, ilog2(op->cmd.buswidth)) |
|
||||
(1 << UMA_CFG_CMDSIZ_SHIFT);
|
||||
/* Configure addr bytes */
|
||||
if (op->addr.nbytes) {
|
||||
uma_cfg |= FIELD_PREP(UMA_CFG_ADBPCK_MASK, ilog2(op->addr.buswidth)) |
|
||||
FIELD_PREP(UMA_CFG_ADDSIZ_MASK, op->addr.nbytes);
|
||||
writel(addr, ®s->uma_addr);
|
||||
}
|
||||
/* Configure dummy bytes */
|
||||
if (op->dummy.nbytes)
|
||||
uma_cfg |= FIELD_PREP(UMA_CFG_DBPCK_MASK, ilog2(op->dummy.buswidth)) |
|
||||
FIELD_PREP(UMA_CFG_DBSIZ_MASK, op->dummy.nbytes);
|
||||
}
|
||||
/* Set data bus width and data size */
|
||||
if (op->data.dir == SPI_MEM_DATA_IN && nbytes)
|
||||
uma_cfg |= FIELD_PREP(UMA_CFG_RDBPCK_MASK, ilog2(op->data.buswidth)) |
|
||||
FIELD_PREP(UMA_CFG_RDATSIZ_MASK, nbytes);
|
||||
else if (op->data.dir == SPI_MEM_DATA_OUT && nbytes)
|
||||
uma_cfg |= FIELD_PREP(UMA_CFG_WDBPCK_MASK, ilog2(op->data.buswidth)) |
|
||||
FIELD_PREP(UMA_CFG_WDATSIZ_MASK, nbytes);
|
||||
writel(uma_cfg, ®s->uma_cfg);
|
||||
|
||||
if (op->data.dir == SPI_MEM_DATA_OUT && nbytes) {
|
||||
memcpy(data_reg, tx, nbytes);
|
||||
|
||||
if (nbytes)
|
||||
writel(data_reg[0], ®s->uma_dw0);
|
||||
if (nbytes > DW_SIZE)
|
||||
writel(data_reg[1], ®s->uma_dw1);
|
||||
if (nbytes > DW_SIZE * 2)
|
||||
writel(data_reg[2], ®s->uma_dw2);
|
||||
if (nbytes > DW_SIZE * 3)
|
||||
writel(data_reg[3], ®s->uma_dw3);
|
||||
}
|
||||
/* Initiate the transaction */
|
||||
writel(readl(®s->uma_cts) | UMA_CTS_EXEC_DONE, ®s->uma_cts);
|
||||
|
||||
/* Wait for completion */
|
||||
ret = readl_poll_timeout(®s->uma_cts, val,
|
||||
!(val & UMA_CTS_EXEC_DONE), XFER_TIMEOUT);
|
||||
if (ret) {
|
||||
printf("npcm_fiu: UMA op timeout\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (op->data.dir == SPI_MEM_DATA_IN && nbytes) {
|
||||
if (nbytes)
|
||||
data_reg[0] = readl(®s->uma_dr0);
|
||||
if (nbytes > DW_SIZE)
|
||||
data_reg[1] = readl(®s->uma_dr1);
|
||||
if (nbytes > DW_SIZE * 2)
|
||||
data_reg[2] = readl(®s->uma_dr2);
|
||||
if (nbytes > DW_SIZE * 3)
|
||||
data_reg[3] = readl(®s->uma_dr3);
|
||||
|
||||
memcpy(rx, data_reg, nbytes);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int npcm_fiu_exec_op(struct spi_slave *slave,
|
||||
const struct spi_mem_op *op)
|
||||
{
|
||||
struct udevice *bus = slave->dev->parent;
|
||||
struct npcm_fiu_priv *priv = dev_get_priv(bus);
|
||||
struct npcm_fiu_regs *regs = priv->regs;
|
||||
struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(slave->dev);
|
||||
u32 bytes, len, addr;
|
||||
const u8 *tx;
|
||||
u8 *rx;
|
||||
bool started = false;
|
||||
int ret;
|
||||
|
||||
bytes = op->data.nbytes;
|
||||
addr = (u32)op->addr.val;
|
||||
if (!bytes) {
|
||||
activate_cs(regs, slave_plat->cs);
|
||||
ret = npcm_fiu_uma_operation(priv, op, addr, NULL, NULL, 0, false);
|
||||
deactivate_cs(regs, slave_plat->cs);
|
||||
return ret;
|
||||
}
|
||||
|
||||
tx = op->data.buf.out;
|
||||
rx = op->data.buf.in;
|
||||
/*
|
||||
* Use SW-control CS for write to extend the transaction and
|
||||
* keep the Write Enable state.
|
||||
* Use HW-control CS for read to avoid clock and timing issues.
|
||||
*/
|
||||
if (op->data.dir == SPI_MEM_DATA_OUT)
|
||||
activate_cs(regs, slave_plat->cs);
|
||||
else
|
||||
writel(FIELD_PREP(UMA_CTS_DEV_NUM_MASK, slave_plat->cs) | UMA_CTS_SW_CS,
|
||||
®s->uma_cts);
|
||||
while (bytes) {
|
||||
len = (bytes > CHUNK_SIZE) ? CHUNK_SIZE : bytes;
|
||||
ret = npcm_fiu_uma_operation(priv, op, addr, tx, rx, len, started);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
/* CS is kept low for uma write, extend the transaction */
|
||||
if (op->data.dir == SPI_MEM_DATA_OUT)
|
||||
started = true;
|
||||
|
||||
bytes -= len;
|
||||
addr += len;
|
||||
if (tx)
|
||||
tx += len;
|
||||
if (rx)
|
||||
rx += len;
|
||||
}
|
||||
if (op->data.dir == SPI_MEM_DATA_OUT)
|
||||
deactivate_cs(regs, slave_plat->cs);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int npcm_fiu_spi_probe(struct udevice *bus)
|
||||
{
|
||||
struct npcm_fiu_priv *priv = dev_get_priv(bus);
|
||||
int ret;
|
||||
|
||||
priv->regs = (struct npcm_fiu_regs *)dev_read_addr_ptr(bus);
|
||||
|
||||
ret = clk_get_by_index(bus, 0, &priv->clk);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct spi_controller_mem_ops npcm_fiu_mem_ops = {
|
||||
.exec_op = npcm_fiu_exec_op,
|
||||
};
|
||||
|
||||
static const struct dm_spi_ops npcm_fiu_spi_ops = {
|
||||
.xfer = npcm_fiu_spi_xfer,
|
||||
.set_speed = npcm_fiu_spi_set_speed,
|
||||
.set_mode = npcm_fiu_spi_set_mode,
|
||||
.mem_ops = &npcm_fiu_mem_ops,
|
||||
};
|
||||
|
||||
static const struct udevice_id npcm_fiu_spi_ids[] = {
|
||||
{ .compatible = "nuvoton,npcm845-fiu" },
|
||||
{ .compatible = "nuvoton,npcm750-fiu" },
|
||||
{ }
|
||||
};
|
||||
|
||||
U_BOOT_DRIVER(npcm_fiu_spi) = {
|
||||
.name = "npcm_fiu_spi",
|
||||
.id = UCLASS_SPI,
|
||||
.of_match = npcm_fiu_spi_ids,
|
||||
.ops = &npcm_fiu_spi_ops,
|
||||
.priv_auto = sizeof(struct npcm_fiu_priv),
|
||||
.probe = npcm_fiu_spi_probe,
|
||||
};
|
Loading…
Reference in a new issue