2012-08-01 12:52:36 +02:00
|
|
|
/*
|
|
|
|
* QEMU model of the Xilinx Zynq SPI controller
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Peter A. G. Crosthwaite
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:05 +01:00
|
|
|
#include "qemu/osdep.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/sysbus.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/sysemu.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/ptimer.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/log.h"
|
2013-02-04 10:57:50 +01:00
|
|
|
#include "qemu/fifo8.h"
|
2016-01-21 15:15:03 +01:00
|
|
|
#include "hw/ssi/ssi.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/bitops.h"
|
2016-01-21 15:15:03 +01:00
|
|
|
#include "hw/ssi/xilinx_spips.h"
|
2012-08-01 12:52:36 +02:00
|
|
|
|
2013-06-03 18:17:43 +02:00
|
|
|
#ifndef XILINX_SPIPS_ERR_DEBUG
|
|
|
|
#define XILINX_SPIPS_ERR_DEBUG 0
|
2012-08-01 12:52:36 +02:00
|
|
|
#endif
|
|
|
|
|
2013-06-03 18:17:43 +02:00
|
|
|
#define DB_PRINT_L(level, ...) do { \
|
|
|
|
if (XILINX_SPIPS_ERR_DEBUG > (level)) { \
|
|
|
|
fprintf(stderr, ": %s: ", __func__); \
|
|
|
|
fprintf(stderr, ## __VA_ARGS__); \
|
|
|
|
} \
|
|
|
|
} while (0);
|
|
|
|
|
2012-08-01 12:52:36 +02:00
|
|
|
/* config register */
|
|
|
|
#define R_CONFIG (0x00 / 4)
|
2014-03-10 15:56:30 +01:00
|
|
|
#define IFMODE (1U << 31)
|
2012-10-15 06:37:04 +02:00
|
|
|
#define ENDIAN (1 << 26)
|
2012-08-01 12:52:36 +02:00
|
|
|
#define MODEFAIL_GEN_EN (1 << 17)
|
|
|
|
#define MAN_START_COM (1 << 16)
|
|
|
|
#define MAN_START_EN (1 << 15)
|
|
|
|
#define MANUAL_CS (1 << 14)
|
|
|
|
#define CS (0xF << 10)
|
|
|
|
#define CS_SHIFT (10)
|
|
|
|
#define PERI_SEL (1 << 9)
|
|
|
|
#define REF_CLK (1 << 8)
|
|
|
|
#define FIFO_WIDTH (3 << 6)
|
|
|
|
#define BAUD_RATE_DIV (7 << 3)
|
|
|
|
#define CLK_PH (1 << 2)
|
|
|
|
#define CLK_POL (1 << 1)
|
|
|
|
#define MODE_SEL (1 << 0)
|
2013-06-03 18:17:43 +02:00
|
|
|
#define R_CONFIG_RSVD (0x7bf40000)
|
2012-08-01 12:52:36 +02:00
|
|
|
|
|
|
|
/* interrupt mechanism */
|
|
|
|
#define R_INTR_STATUS (0x04 / 4)
|
|
|
|
#define R_INTR_EN (0x08 / 4)
|
|
|
|
#define R_INTR_DIS (0x0C / 4)
|
|
|
|
#define R_INTR_MASK (0x10 / 4)
|
|
|
|
#define IXR_TX_FIFO_UNDERFLOW (1 << 6)
|
|
|
|
#define IXR_RX_FIFO_FULL (1 << 5)
|
|
|
|
#define IXR_RX_FIFO_NOT_EMPTY (1 << 4)
|
|
|
|
#define IXR_TX_FIFO_FULL (1 << 3)
|
|
|
|
#define IXR_TX_FIFO_NOT_FULL (1 << 2)
|
|
|
|
#define IXR_TX_FIFO_MODE_FAIL (1 << 1)
|
|
|
|
#define IXR_RX_FIFO_OVERFLOW (1 << 0)
|
|
|
|
#define IXR_ALL ((IXR_TX_FIFO_UNDERFLOW<<1)-1)
|
|
|
|
|
|
|
|
#define R_EN (0x14 / 4)
|
|
|
|
#define R_DELAY (0x18 / 4)
|
|
|
|
#define R_TX_DATA (0x1C / 4)
|
|
|
|
#define R_RX_DATA (0x20 / 4)
|
|
|
|
#define R_SLAVE_IDLE_COUNT (0x24 / 4)
|
|
|
|
#define R_TX_THRES (0x28 / 4)
|
|
|
|
#define R_RX_THRES (0x2C / 4)
|
2012-10-15 06:37:04 +02:00
|
|
|
#define R_TXD1 (0x80 / 4)
|
|
|
|
#define R_TXD2 (0x84 / 4)
|
|
|
|
#define R_TXD3 (0x88 / 4)
|
|
|
|
|
|
|
|
#define R_LQSPI_CFG (0xa0 / 4)
|
|
|
|
#define R_LQSPI_CFG_RESET 0x03A002EB
|
2014-03-10 15:56:30 +01:00
|
|
|
#define LQSPI_CFG_LQ_MODE (1U << 31)
|
2012-10-15 06:37:04 +02:00
|
|
|
#define LQSPI_CFG_TWO_MEM (1 << 30)
|
|
|
|
#define LQSPI_CFG_SEP_BUS (1 << 30)
|
|
|
|
#define LQSPI_CFG_U_PAGE (1 << 28)
|
|
|
|
#define LQSPI_CFG_MODE_EN (1 << 25)
|
|
|
|
#define LQSPI_CFG_MODE_WIDTH 8
|
|
|
|
#define LQSPI_CFG_MODE_SHIFT 16
|
|
|
|
#define LQSPI_CFG_DUMMY_WIDTH 3
|
|
|
|
#define LQSPI_CFG_DUMMY_SHIFT 8
|
|
|
|
#define LQSPI_CFG_INST_CODE 0xFF
|
|
|
|
|
|
|
|
#define R_LQSPI_STS (0xA4 / 4)
|
|
|
|
#define LQSPI_STS_WR_RECVD (1 << 1)
|
|
|
|
|
2012-08-01 12:52:36 +02:00
|
|
|
#define R_MOD_ID (0xFC / 4)
|
|
|
|
|
|
|
|
/* size of TXRX FIFOs */
|
|
|
|
#define RXFF_A 32
|
|
|
|
#define TXFF_A 32
|
|
|
|
|
2013-06-03 18:17:42 +02:00
|
|
|
#define RXFF_A_Q (64 * 4)
|
|
|
|
#define TXFF_A_Q (64 * 4)
|
|
|
|
|
2012-10-15 06:37:04 +02:00
|
|
|
/* 16MB per linear region */
|
|
|
|
#define LQSPI_ADDRESS_BITS 24
|
|
|
|
/* Bite off 4k chunks at a time */
|
|
|
|
#define LQSPI_CACHE_SIZE 1024
|
|
|
|
|
|
|
|
#define SNOOP_CHECKING 0xFF
|
|
|
|
#define SNOOP_NONE 0xFE
|
|
|
|
#define SNOOP_STRIPING 0
|
|
|
|
|
2013-03-15 17:41:59 +01:00
|
|
|
typedef enum {
|
|
|
|
READ = 0x3,
|
|
|
|
FAST_READ = 0xb,
|
|
|
|
DOR = 0x3b,
|
|
|
|
QOR = 0x6b,
|
|
|
|
DIOR = 0xbb,
|
|
|
|
QIOR = 0xeb,
|
|
|
|
|
|
|
|
PP = 0x2,
|
|
|
|
DPP = 0xa2,
|
|
|
|
QPP = 0x32,
|
|
|
|
} FlashCMD;
|
|
|
|
|
2013-06-03 18:17:41 +02:00
|
|
|
typedef struct {
|
|
|
|
XilinxSPIPS parent_obj;
|
2012-10-15 06:37:04 +02:00
|
|
|
|
2013-06-03 18:17:44 +02:00
|
|
|
uint8_t lqspi_buf[LQSPI_CACHE_SIZE];
|
2012-10-15 06:37:04 +02:00
|
|
|
hwaddr lqspi_cached_addr;
|
2013-06-03 18:17:41 +02:00
|
|
|
} XilinxQSPIPS;
|
|
|
|
|
2013-06-03 18:17:42 +02:00
|
|
|
typedef struct XilinxSPIPSClass {
|
|
|
|
SysBusDeviceClass parent_class;
|
|
|
|
|
2013-06-03 18:17:42 +02:00
|
|
|
const MemoryRegionOps *reg_ops;
|
|
|
|
|
2013-06-03 18:17:42 +02:00
|
|
|
uint32_t rx_fifo_size;
|
|
|
|
uint32_t tx_fifo_size;
|
|
|
|
} XilinxSPIPSClass;
|
2012-08-01 12:52:36 +02:00
|
|
|
|
2012-10-15 06:37:04 +02:00
|
|
|
static inline int num_effective_busses(XilinxSPIPS *s)
|
|
|
|
{
|
2013-03-15 17:41:59 +01:00
|
|
|
return (s->regs[R_LQSPI_CFG] & LQSPI_CFG_SEP_BUS &&
|
|
|
|
s->regs[R_LQSPI_CFG] & LQSPI_CFG_TWO_MEM) ? s->num_busses : 1;
|
2012-10-15 06:37:04 +02:00
|
|
|
}
|
|
|
|
|
2013-06-03 18:17:42 +02:00
|
|
|
static inline bool xilinx_spips_cs_is_set(XilinxSPIPS *s, int i, int field)
|
|
|
|
{
|
|
|
|
return ~field & (1 << i) && (s->regs[R_CONFIG] & MANUAL_CS
|
|
|
|
|| !fifo8_is_empty(&s->tx_fifo));
|
|
|
|
}
|
|
|
|
|
2012-08-01 12:52:36 +02:00
|
|
|
static void xilinx_spips_update_cs_lines(XilinxSPIPS *s)
|
|
|
|
{
|
2012-10-15 06:37:04 +02:00
|
|
|
int i, j;
|
2012-08-01 12:52:36 +02:00
|
|
|
bool found = false;
|
|
|
|
int field = s->regs[R_CONFIG] >> CS_SHIFT;
|
|
|
|
|
2012-10-15 06:37:04 +02:00
|
|
|
for (i = 0; i < s->num_cs; i++) {
|
|
|
|
for (j = 0; j < num_effective_busses(s); j++) {
|
|
|
|
int upage = !!(s->regs[R_LQSPI_STS] & LQSPI_CFG_U_PAGE);
|
|
|
|
int cs_to_set = (j * s->num_cs + i + upage) %
|
|
|
|
(s->num_cs * s->num_busses);
|
|
|
|
|
2013-06-03 18:17:42 +02:00
|
|
|
if (xilinx_spips_cs_is_set(s, i, field) && !found) {
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(0, "selecting slave %d\n", i);
|
2012-10-15 06:37:04 +02:00
|
|
|
qemu_set_irq(s->cs_lines[cs_to_set], 0);
|
|
|
|
} else {
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(0, "deselecting slave %d\n", i);
|
2012-10-15 06:37:04 +02:00
|
|
|
qemu_set_irq(s->cs_lines[cs_to_set], 1);
|
|
|
|
}
|
|
|
|
}
|
2013-06-03 18:17:42 +02:00
|
|
|
if (xilinx_spips_cs_is_set(s, i, field)) {
|
2012-08-01 12:52:36 +02:00
|
|
|
found = true;
|
|
|
|
}
|
2012-10-15 06:37:04 +02:00
|
|
|
}
|
|
|
|
if (!found) {
|
|
|
|
s->snoop_state = SNOOP_CHECKING;
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(1, "moving to snoop check state\n");
|
2012-10-15 06:37:04 +02:00
|
|
|
}
|
2012-08-01 12:52:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xilinx_spips_update_ixr(XilinxSPIPS *s)
|
|
|
|
{
|
2013-06-03 18:17:41 +02:00
|
|
|
if (s->regs[R_LQSPI_CFG] & LQSPI_CFG_LQ_MODE) {
|
|
|
|
return;
|
|
|
|
}
|
2012-08-01 12:52:36 +02:00
|
|
|
/* These are set/cleared as they occur */
|
|
|
|
s->regs[R_INTR_STATUS] &= (IXR_TX_FIFO_UNDERFLOW | IXR_RX_FIFO_OVERFLOW |
|
|
|
|
IXR_TX_FIFO_MODE_FAIL);
|
|
|
|
/* these are pure functions of fifo state, set them here */
|
|
|
|
s->regs[R_INTR_STATUS] |=
|
|
|
|
(fifo8_is_full(&s->rx_fifo) ? IXR_RX_FIFO_FULL : 0) |
|
|
|
|
(s->rx_fifo.num >= s->regs[R_RX_THRES] ? IXR_RX_FIFO_NOT_EMPTY : 0) |
|
|
|
|
(fifo8_is_full(&s->tx_fifo) ? IXR_TX_FIFO_FULL : 0) |
|
|
|
|
(s->tx_fifo.num < s->regs[R_TX_THRES] ? IXR_TX_FIFO_NOT_FULL : 0);
|
|
|
|
/* drive external interrupt pin */
|
|
|
|
int new_irqline = !!(s->regs[R_INTR_MASK] & s->regs[R_INTR_STATUS] &
|
|
|
|
IXR_ALL);
|
|
|
|
if (new_irqline != s->irqline) {
|
|
|
|
s->irqline = new_irqline;
|
|
|
|
qemu_set_irq(s->irq, s->irqline);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xilinx_spips_reset(DeviceState *d)
|
|
|
|
{
|
2013-03-15 17:41:59 +01:00
|
|
|
XilinxSPIPS *s = XILINX_SPIPS(d);
|
2012-08-01 12:52:36 +02:00
|
|
|
|
|
|
|
int i;
|
2016-01-21 15:15:03 +01:00
|
|
|
for (i = 0; i < XLNX_SPIPS_R_MAX; i++) {
|
2012-08-01 12:52:36 +02:00
|
|
|
s->regs[i] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
fifo8_reset(&s->rx_fifo);
|
|
|
|
fifo8_reset(&s->rx_fifo);
|
|
|
|
/* non zero resets */
|
|
|
|
s->regs[R_CONFIG] |= MODEFAIL_GEN_EN;
|
|
|
|
s->regs[R_SLAVE_IDLE_COUNT] = 0xFF;
|
|
|
|
s->regs[R_TX_THRES] = 1;
|
|
|
|
s->regs[R_RX_THRES] = 1;
|
|
|
|
/* FIXME: move magic number definition somewhere sensible */
|
|
|
|
s->regs[R_MOD_ID] = 0x01090106;
|
2012-10-15 06:37:04 +02:00
|
|
|
s->regs[R_LQSPI_CFG] = R_LQSPI_CFG_RESET;
|
|
|
|
s->snoop_state = SNOOP_CHECKING;
|
2012-08-01 12:52:36 +02:00
|
|
|
xilinx_spips_update_ixr(s);
|
|
|
|
xilinx_spips_update_cs_lines(s);
|
|
|
|
}
|
|
|
|
|
2013-06-03 18:17:43 +02:00
|
|
|
/* N way (num) in place bit striper. Lay out row wise bits (LSB to MSB)
|
|
|
|
* column wise (from element 0 to N-1). num is the length of x, and dir
|
|
|
|
* reverses the direction of the transform. Best illustrated by example:
|
|
|
|
* Each digit in the below array is a single bit (num == 3):
|
|
|
|
*
|
|
|
|
* {{ 76543210, } ----- stripe (dir == false) -----> {{ FCheb630, }
|
|
|
|
* { hgfedcba, } { GDAfc741, }
|
|
|
|
* { HGFEDCBA, }} <---- upstripe (dir == true) ----- { HEBgda52, }}
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline void stripe8(uint8_t *x, int num, bool dir)
|
|
|
|
{
|
|
|
|
uint8_t r[num];
|
|
|
|
memset(r, 0, sizeof(uint8_t) * num);
|
|
|
|
int idx[2] = {0, 0};
|
|
|
|
int bit[2] = {0, 0};
|
|
|
|
int d = dir;
|
|
|
|
|
|
|
|
for (idx[0] = 0; idx[0] < num; ++idx[0]) {
|
|
|
|
for (bit[0] = 0; bit[0] < 8; ++bit[0]) {
|
|
|
|
r[idx[d]] |= x[idx[!d]] & 1 << bit[!d] ? 1 << bit[d] : 0;
|
|
|
|
idx[1] = (idx[1] + 1) % num;
|
|
|
|
if (!idx[1]) {
|
|
|
|
bit[1]++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
memcpy(x, r, sizeof(uint8_t) * num);
|
|
|
|
}
|
|
|
|
|
2012-08-01 12:52:36 +02:00
|
|
|
static void xilinx_spips_flush_txfifo(XilinxSPIPS *s)
|
|
|
|
{
|
2013-06-03 18:17:43 +02:00
|
|
|
int debug_level = 0;
|
|
|
|
|
2012-08-01 12:52:36 +02:00
|
|
|
for (;;) {
|
2012-10-15 06:37:04 +02:00
|
|
|
int i;
|
|
|
|
uint8_t tx = 0;
|
2013-06-03 18:17:43 +02:00
|
|
|
uint8_t tx_rx[num_effective_busses(s)];
|
2012-10-15 06:37:04 +02:00
|
|
|
|
2013-06-03 18:17:43 +02:00
|
|
|
if (fifo8_is_empty(&s->tx_fifo)) {
|
|
|
|
if (!(s->regs[R_LQSPI_CFG] & LQSPI_CFG_LQ_MODE)) {
|
|
|
|
s->regs[R_INTR_STATUS] |= IXR_TX_FIFO_UNDERFLOW;
|
|
|
|
}
|
|
|
|
xilinx_spips_update_ixr(s);
|
|
|
|
return;
|
|
|
|
} else if (s->snoop_state == SNOOP_STRIPING) {
|
|
|
|
for (i = 0; i < num_effective_busses(s); ++i) {
|
|
|
|
tx_rx[i] = fifo8_pop(&s->tx_fifo);
|
2012-10-15 06:37:04 +02:00
|
|
|
}
|
2013-06-03 18:17:43 +02:00
|
|
|
stripe8(tx_rx, num_effective_busses(s), false);
|
|
|
|
} else {
|
|
|
|
tx = fifo8_pop(&s->tx_fifo);
|
|
|
|
for (i = 0; i < num_effective_busses(s); ++i) {
|
|
|
|
tx_rx[i] = tx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < num_effective_busses(s); ++i) {
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(debug_level, "tx = %02x\n", tx_rx[i]);
|
2013-06-03 18:17:43 +02:00
|
|
|
tx_rx[i] = ssi_transfer(s->spi[i], (uint32_t)tx_rx[i]);
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(debug_level, "rx = %02x\n", tx_rx[i]);
|
2013-06-03 18:17:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fifo8_is_full(&s->rx_fifo)) {
|
|
|
|
s->regs[R_INTR_STATUS] |= IXR_RX_FIFO_OVERFLOW;
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(0, "rx FIFO overflow");
|
2013-06-03 18:17:43 +02:00
|
|
|
} else if (s->snoop_state == SNOOP_STRIPING) {
|
|
|
|
stripe8(tx_rx, num_effective_busses(s), true);
|
|
|
|
for (i = 0; i < num_effective_busses(s); ++i) {
|
|
|
|
fifo8_push(&s->rx_fifo, (uint8_t)tx_rx[i]);
|
2012-10-15 06:37:04 +02:00
|
|
|
}
|
2013-06-03 18:17:43 +02:00
|
|
|
} else {
|
|
|
|
fifo8_push(&s->rx_fifo, (uint8_t)tx_rx[0]);
|
2012-10-15 06:37:04 +02:00
|
|
|
}
|
2012-08-01 12:52:36 +02:00
|
|
|
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(debug_level, "initial snoop state: %x\n",
|
|
|
|
(unsigned)s->snoop_state);
|
2012-10-15 06:37:04 +02:00
|
|
|
switch (s->snoop_state) {
|
|
|
|
case (SNOOP_CHECKING):
|
|
|
|
switch (tx) { /* new instruction code */
|
2013-03-15 17:41:59 +01:00
|
|
|
case READ: /* 3 address bytes, no dummy bytes/cycles */
|
|
|
|
case PP:
|
|
|
|
case DPP:
|
|
|
|
case QPP:
|
|
|
|
s->snoop_state = 3;
|
2012-10-15 06:37:04 +02:00
|
|
|
break;
|
2013-03-15 17:41:59 +01:00
|
|
|
case FAST_READ: /* 3 address bytes, 1 dummy byte */
|
|
|
|
case DOR:
|
|
|
|
case QOR:
|
|
|
|
case DIOR: /* FIXME: these vary between vendor - set to spansion */
|
2012-10-15 06:37:04 +02:00
|
|
|
s->snoop_state = 4;
|
|
|
|
break;
|
2013-03-15 17:41:59 +01:00
|
|
|
case QIOR: /* 3 address bytes, 2 dummy bytes */
|
2012-10-15 06:37:04 +02:00
|
|
|
s->snoop_state = 6;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
s->snoop_state = SNOOP_NONE;
|
|
|
|
}
|
2012-08-01 12:52:36 +02:00
|
|
|
break;
|
2012-10-15 06:37:04 +02:00
|
|
|
case (SNOOP_STRIPING):
|
|
|
|
case (SNOOP_NONE):
|
2013-06-03 18:17:43 +02:00
|
|
|
/* Once we hit the boring stuff - squelch debug noise */
|
|
|
|
if (!debug_level) {
|
|
|
|
DB_PRINT_L(0, "squelching debug info ....\n");
|
|
|
|
debug_level = 1;
|
|
|
|
}
|
2012-10-15 06:37:04 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
s->snoop_state--;
|
2012-08-01 12:52:36 +02:00
|
|
|
}
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(debug_level, "final snoop state: %x\n",
|
|
|
|
(unsigned)s->snoop_state);
|
2012-10-15 06:37:04 +02:00
|
|
|
}
|
|
|
|
}
|
2012-08-01 12:52:36 +02:00
|
|
|
|
2013-06-03 18:17:44 +02:00
|
|
|
static inline void rx_data_bytes(XilinxSPIPS *s, uint8_t *value, int max)
|
2012-10-15 06:37:04 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < max && !fifo8_is_empty(&s->rx_fifo); ++i) {
|
2013-06-03 18:17:44 +02:00
|
|
|
value[i] = fifo8_pop(&s->rx_fifo);
|
2012-08-01 12:52:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static uint64_t xilinx_spips_read(void *opaque, hwaddr addr,
|
2012-08-01 12:52:36 +02:00
|
|
|
unsigned size)
|
|
|
|
{
|
|
|
|
XilinxSPIPS *s = opaque;
|
|
|
|
uint32_t mask = ~0;
|
|
|
|
uint32_t ret;
|
2013-06-03 18:17:44 +02:00
|
|
|
uint8_t rx_buf[4];
|
2012-08-01 12:52:36 +02:00
|
|
|
|
|
|
|
addr >>= 2;
|
|
|
|
switch (addr) {
|
|
|
|
case R_CONFIG:
|
2013-06-03 18:17:43 +02:00
|
|
|
mask = ~(R_CONFIG_RSVD | MAN_START_COM);
|
2012-08-01 12:52:36 +02:00
|
|
|
break;
|
|
|
|
case R_INTR_STATUS:
|
2013-06-03 18:17:41 +02:00
|
|
|
ret = s->regs[addr] & IXR_ALL;
|
|
|
|
s->regs[addr] = 0;
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(0, "addr=" TARGET_FMT_plx " = %x\n", addr * 4, ret);
|
2013-06-03 18:17:41 +02:00
|
|
|
return ret;
|
2012-08-01 12:52:36 +02:00
|
|
|
case R_INTR_MASK:
|
|
|
|
mask = IXR_ALL;
|
|
|
|
break;
|
|
|
|
case R_EN:
|
|
|
|
mask = 0x1;
|
|
|
|
break;
|
|
|
|
case R_SLAVE_IDLE_COUNT:
|
|
|
|
mask = 0xFF;
|
|
|
|
break;
|
|
|
|
case R_MOD_ID:
|
|
|
|
mask = 0x01FFFFFF;
|
|
|
|
break;
|
|
|
|
case R_INTR_EN:
|
|
|
|
case R_INTR_DIS:
|
|
|
|
case R_TX_DATA:
|
|
|
|
mask = 0;
|
|
|
|
break;
|
|
|
|
case R_RX_DATA:
|
2013-06-03 18:17:44 +02:00
|
|
|
memset(rx_buf, 0, sizeof(rx_buf));
|
|
|
|
rx_data_bytes(s, rx_buf, s->num_txrx_bytes);
|
|
|
|
ret = s->regs[R_CONFIG] & ENDIAN ? cpu_to_be32(*(uint32_t *)rx_buf)
|
|
|
|
: cpu_to_le32(*(uint32_t *)rx_buf);
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(0, "addr=" TARGET_FMT_plx " = %x\n", addr * 4, ret);
|
2012-08-01 12:52:36 +02:00
|
|
|
xilinx_spips_update_ixr(s);
|
|
|
|
return ret;
|
|
|
|
}
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(0, "addr=" TARGET_FMT_plx " = %x\n", addr * 4,
|
|
|
|
s->regs[addr] & mask);
|
2012-08-01 12:52:36 +02:00
|
|
|
return s->regs[addr] & mask;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-10-15 06:37:04 +02:00
|
|
|
static inline void tx_data_bytes(XilinxSPIPS *s, uint32_t value, int num)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < num && !fifo8_is_full(&s->tx_fifo); ++i) {
|
|
|
|
if (s->regs[R_CONFIG] & ENDIAN) {
|
|
|
|
fifo8_push(&s->tx_fifo, (uint8_t)(value >> 24));
|
|
|
|
value <<= 8;
|
|
|
|
} else {
|
|
|
|
fifo8_push(&s->tx_fifo, (uint8_t)value);
|
|
|
|
value >>= 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static void xilinx_spips_write(void *opaque, hwaddr addr,
|
2012-08-01 12:52:36 +02:00
|
|
|
uint64_t value, unsigned size)
|
|
|
|
{
|
|
|
|
int mask = ~0;
|
|
|
|
int man_start_com = 0;
|
|
|
|
XilinxSPIPS *s = opaque;
|
|
|
|
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(0, "addr=" TARGET_FMT_plx " = %x\n", addr, (unsigned)value);
|
2012-08-01 12:52:36 +02:00
|
|
|
addr >>= 2;
|
|
|
|
switch (addr) {
|
|
|
|
case R_CONFIG:
|
2013-06-03 18:17:43 +02:00
|
|
|
mask = ~(R_CONFIG_RSVD | MAN_START_COM);
|
2012-08-01 12:52:36 +02:00
|
|
|
if (value & MAN_START_COM) {
|
|
|
|
man_start_com = 1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case R_INTR_STATUS:
|
|
|
|
mask = IXR_ALL;
|
|
|
|
s->regs[R_INTR_STATUS] &= ~(mask & value);
|
|
|
|
goto no_reg_update;
|
|
|
|
case R_INTR_DIS:
|
|
|
|
mask = IXR_ALL;
|
|
|
|
s->regs[R_INTR_MASK] &= ~(mask & value);
|
|
|
|
goto no_reg_update;
|
|
|
|
case R_INTR_EN:
|
|
|
|
mask = IXR_ALL;
|
|
|
|
s->regs[R_INTR_MASK] |= mask & value;
|
|
|
|
goto no_reg_update;
|
|
|
|
case R_EN:
|
|
|
|
mask = 0x1;
|
|
|
|
break;
|
|
|
|
case R_SLAVE_IDLE_COUNT:
|
|
|
|
mask = 0xFF;
|
|
|
|
break;
|
|
|
|
case R_RX_DATA:
|
|
|
|
case R_INTR_MASK:
|
|
|
|
case R_MOD_ID:
|
|
|
|
mask = 0;
|
|
|
|
break;
|
|
|
|
case R_TX_DATA:
|
2012-10-15 06:37:04 +02:00
|
|
|
tx_data_bytes(s, (uint32_t)value, s->num_txrx_bytes);
|
|
|
|
goto no_reg_update;
|
|
|
|
case R_TXD1:
|
|
|
|
tx_data_bytes(s, (uint32_t)value, 1);
|
|
|
|
goto no_reg_update;
|
|
|
|
case R_TXD2:
|
|
|
|
tx_data_bytes(s, (uint32_t)value, 2);
|
|
|
|
goto no_reg_update;
|
|
|
|
case R_TXD3:
|
|
|
|
tx_data_bytes(s, (uint32_t)value, 3);
|
2012-08-01 12:52:36 +02:00
|
|
|
goto no_reg_update;
|
|
|
|
}
|
|
|
|
s->regs[addr] = (s->regs[addr] & ~mask) | (value & mask);
|
|
|
|
no_reg_update:
|
2013-06-03 18:17:42 +02:00
|
|
|
xilinx_spips_update_cs_lines(s);
|
2013-06-03 18:17:42 +02:00
|
|
|
if ((man_start_com && s->regs[R_CONFIG] & MAN_START_EN) ||
|
|
|
|
(fifo8_is_empty(&s->tx_fifo) && s->regs[R_CONFIG] & MAN_START_EN)) {
|
2012-08-01 12:52:36 +02:00
|
|
|
xilinx_spips_flush_txfifo(s);
|
|
|
|
}
|
|
|
|
xilinx_spips_update_cs_lines(s);
|
2013-06-03 18:17:42 +02:00
|
|
|
xilinx_spips_update_ixr(s);
|
2012-08-01 12:52:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const MemoryRegionOps spips_ops = {
|
|
|
|
.read = xilinx_spips_read,
|
|
|
|
.write = xilinx_spips_write,
|
|
|
|
.endianness = DEVICE_LITTLE_ENDIAN,
|
|
|
|
};
|
|
|
|
|
2013-06-03 18:17:42 +02:00
|
|
|
static void xilinx_qspips_write(void *opaque, hwaddr addr,
|
|
|
|
uint64_t value, unsigned size)
|
|
|
|
{
|
|
|
|
XilinxQSPIPS *q = XILINX_QSPIPS(opaque);
|
|
|
|
|
|
|
|
xilinx_spips_write(opaque, addr, value, size);
|
|
|
|
addr >>= 2;
|
|
|
|
|
|
|
|
if (addr == R_LQSPI_CFG) {
|
|
|
|
q->lqspi_cached_addr = ~0ULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const MemoryRegionOps qspips_ops = {
|
|
|
|
.read = xilinx_spips_read,
|
|
|
|
.write = xilinx_qspips_write,
|
|
|
|
.endianness = DEVICE_LITTLE_ENDIAN,
|
|
|
|
};
|
|
|
|
|
2012-10-15 06:37:04 +02:00
|
|
|
#define LQSPI_CACHE_SIZE 1024
|
|
|
|
|
|
|
|
static uint64_t
|
|
|
|
lqspi_read(void *opaque, hwaddr addr, unsigned int size)
|
|
|
|
{
|
|
|
|
int i;
|
2013-06-03 18:17:41 +02:00
|
|
|
XilinxQSPIPS *q = opaque;
|
2012-10-15 06:37:04 +02:00
|
|
|
XilinxSPIPS *s = opaque;
|
2013-06-03 18:17:41 +02:00
|
|
|
uint32_t ret;
|
2012-10-15 06:37:04 +02:00
|
|
|
|
2013-06-03 18:17:41 +02:00
|
|
|
if (addr >= q->lqspi_cached_addr &&
|
|
|
|
addr <= q->lqspi_cached_addr + LQSPI_CACHE_SIZE - 4) {
|
2013-06-03 18:17:44 +02:00
|
|
|
uint8_t *retp = &q->lqspi_buf[addr - q->lqspi_cached_addr];
|
|
|
|
ret = cpu_to_le32(*(uint32_t *)retp);
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(1, "addr: %08x, data: %08x\n", (unsigned)addr,
|
|
|
|
(unsigned)ret);
|
2013-06-03 18:17:41 +02:00
|
|
|
return ret;
|
2012-10-15 06:37:04 +02:00
|
|
|
} else {
|
|
|
|
int flash_addr = (addr / num_effective_busses(s));
|
|
|
|
int slave = flash_addr >> LQSPI_ADDRESS_BITS;
|
|
|
|
int cache_entry = 0;
|
2013-06-03 18:17:43 +02:00
|
|
|
uint32_t u_page_save = s->regs[R_LQSPI_STS] & ~LQSPI_CFG_U_PAGE;
|
|
|
|
|
|
|
|
s->regs[R_LQSPI_STS] &= ~LQSPI_CFG_U_PAGE;
|
|
|
|
s->regs[R_LQSPI_STS] |= slave ? LQSPI_CFG_U_PAGE : 0;
|
2012-10-15 06:37:04 +02:00
|
|
|
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(0, "config reg status: %08x\n", s->regs[R_LQSPI_CFG]);
|
2012-10-15 06:37:04 +02:00
|
|
|
|
|
|
|
fifo8_reset(&s->tx_fifo);
|
|
|
|
fifo8_reset(&s->rx_fifo);
|
|
|
|
|
|
|
|
/* instruction */
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(0, "pushing read instruction: %02x\n",
|
|
|
|
(unsigned)(uint8_t)(s->regs[R_LQSPI_CFG] &
|
|
|
|
LQSPI_CFG_INST_CODE));
|
2012-10-15 06:37:04 +02:00
|
|
|
fifo8_push(&s->tx_fifo, s->regs[R_LQSPI_CFG] & LQSPI_CFG_INST_CODE);
|
|
|
|
/* read address */
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(0, "pushing read address %06x\n", flash_addr);
|
2012-10-15 06:37:04 +02:00
|
|
|
fifo8_push(&s->tx_fifo, (uint8_t)(flash_addr >> 16));
|
|
|
|
fifo8_push(&s->tx_fifo, (uint8_t)(flash_addr >> 8));
|
|
|
|
fifo8_push(&s->tx_fifo, (uint8_t)flash_addr);
|
|
|
|
/* mode bits */
|
|
|
|
if (s->regs[R_LQSPI_CFG] & LQSPI_CFG_MODE_EN) {
|
|
|
|
fifo8_push(&s->tx_fifo, extract32(s->regs[R_LQSPI_CFG],
|
|
|
|
LQSPI_CFG_MODE_SHIFT,
|
|
|
|
LQSPI_CFG_MODE_WIDTH));
|
|
|
|
}
|
|
|
|
/* dummy bytes */
|
|
|
|
for (i = 0; i < (extract32(s->regs[R_LQSPI_CFG], LQSPI_CFG_DUMMY_SHIFT,
|
|
|
|
LQSPI_CFG_DUMMY_WIDTH)); ++i) {
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(0, "pushing dummy byte\n");
|
2012-10-15 06:37:04 +02:00
|
|
|
fifo8_push(&s->tx_fifo, 0);
|
|
|
|
}
|
2013-06-03 18:17:42 +02:00
|
|
|
xilinx_spips_update_cs_lines(s);
|
2012-10-15 06:37:04 +02:00
|
|
|
xilinx_spips_flush_txfifo(s);
|
|
|
|
fifo8_reset(&s->rx_fifo);
|
|
|
|
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(0, "starting QSPI data read\n");
|
2012-10-15 06:37:04 +02:00
|
|
|
|
2013-06-03 18:17:44 +02:00
|
|
|
while (cache_entry < LQSPI_CACHE_SIZE) {
|
|
|
|
for (i = 0; i < 64; ++i) {
|
|
|
|
tx_data_bytes(s, 0, 1);
|
2013-06-03 18:17:44 +02:00
|
|
|
}
|
2012-10-15 06:37:04 +02:00
|
|
|
xilinx_spips_flush_txfifo(s);
|
2013-06-03 18:17:44 +02:00
|
|
|
for (i = 0; i < 64; ++i) {
|
|
|
|
rx_data_bytes(s, &q->lqspi_buf[cache_entry++], 1);
|
2013-06-03 18:17:44 +02:00
|
|
|
}
|
2012-10-15 06:37:04 +02:00
|
|
|
}
|
|
|
|
|
2013-06-03 18:17:43 +02:00
|
|
|
s->regs[R_LQSPI_STS] &= ~LQSPI_CFG_U_PAGE;
|
|
|
|
s->regs[R_LQSPI_STS] |= u_page_save;
|
2012-10-15 06:37:04 +02:00
|
|
|
xilinx_spips_update_cs_lines(s);
|
|
|
|
|
2013-06-03 18:17:44 +02:00
|
|
|
q->lqspi_cached_addr = flash_addr * num_effective_busses(s);
|
2012-10-15 06:37:04 +02:00
|
|
|
return lqspi_read(opaque, addr, size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const MemoryRegionOps lqspi_ops = {
|
|
|
|
.read = lqspi_read,
|
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
|
|
|
.valid = {
|
2013-06-03 18:17:44 +02:00
|
|
|
.min_access_size = 1,
|
2012-10-15 06:37:04 +02:00
|
|
|
.max_access_size = 4
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-03-15 17:41:59 +01:00
|
|
|
static void xilinx_spips_realize(DeviceState *dev, Error **errp)
|
2012-08-01 12:52:36 +02:00
|
|
|
{
|
2013-03-15 17:41:59 +01:00
|
|
|
XilinxSPIPS *s = XILINX_SPIPS(dev);
|
|
|
|
SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
|
2013-06-03 18:17:42 +02:00
|
|
|
XilinxSPIPSClass *xsc = XILINX_SPIPS_GET_CLASS(s);
|
2012-08-01 12:52:36 +02:00
|
|
|
int i;
|
|
|
|
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(0, "realized spips\n");
|
2012-08-01 12:52:36 +02:00
|
|
|
|
2012-10-15 06:37:04 +02:00
|
|
|
s->spi = g_new(SSIBus *, s->num_busses);
|
|
|
|
for (i = 0; i < s->num_busses; ++i) {
|
|
|
|
char bus_name[16];
|
|
|
|
snprintf(bus_name, 16, "spi%d", i);
|
2013-03-15 17:41:59 +01:00
|
|
|
s->spi[i] = ssi_create_bus(dev, bus_name);
|
2012-10-15 06:37:04 +02:00
|
|
|
}
|
2012-10-01 04:34:37 +02:00
|
|
|
|
2013-03-15 17:41:58 +01:00
|
|
|
s->cs_lines = g_new0(qemu_irq, s->num_cs * s->num_busses);
|
2012-10-15 06:37:04 +02:00
|
|
|
ssi_auto_connect_slaves(DEVICE(s), s->cs_lines, s->spi[0]);
|
|
|
|
ssi_auto_connect_slaves(DEVICE(s), s->cs_lines, s->spi[1]);
|
2013-03-15 17:41:59 +01:00
|
|
|
sysbus_init_irq(sbd, &s->irq);
|
2012-10-15 06:37:04 +02:00
|
|
|
for (i = 0; i < s->num_cs * s->num_busses; ++i) {
|
2013-03-15 17:41:59 +01:00
|
|
|
sysbus_init_irq(sbd, &s->cs_lines[i]);
|
2012-08-01 12:52:36 +02:00
|
|
|
}
|
|
|
|
|
2013-06-07 03:25:08 +02:00
|
|
|
memory_region_init_io(&s->iomem, OBJECT(s), xsc->reg_ops, s,
|
2016-01-21 15:15:03 +01:00
|
|
|
"spi", XLNX_SPIPS_R_MAX * 4);
|
2013-03-15 17:41:59 +01:00
|
|
|
sysbus_init_mmio(sbd, &s->iomem);
|
2012-08-01 12:52:36 +02:00
|
|
|
|
|
|
|
s->irqline = -1;
|
|
|
|
|
2013-06-03 18:17:42 +02:00
|
|
|
fifo8_create(&s->rx_fifo, xsc->rx_fifo_size);
|
|
|
|
fifo8_create(&s->tx_fifo, xsc->tx_fifo_size);
|
2012-08-01 12:52:36 +02:00
|
|
|
}
|
|
|
|
|
2013-06-03 18:17:41 +02:00
|
|
|
static void xilinx_qspips_realize(DeviceState *dev, Error **errp)
|
|
|
|
{
|
|
|
|
XilinxSPIPS *s = XILINX_SPIPS(dev);
|
|
|
|
XilinxQSPIPS *q = XILINX_QSPIPS(dev);
|
|
|
|
SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
|
|
|
|
|
2013-06-03 18:17:43 +02:00
|
|
|
DB_PRINT_L(0, "realized qspips\n");
|
2013-06-03 18:17:41 +02:00
|
|
|
|
|
|
|
s->num_busses = 2;
|
|
|
|
s->num_cs = 2;
|
|
|
|
s->num_txrx_bytes = 4;
|
|
|
|
|
|
|
|
xilinx_spips_realize(dev, errp);
|
2013-06-07 03:25:08 +02:00
|
|
|
memory_region_init_io(&s->mmlqspi, OBJECT(s), &lqspi_ops, s, "lqspi",
|
2013-06-03 18:17:41 +02:00
|
|
|
(1 << LQSPI_ADDRESS_BITS) * 2);
|
|
|
|
sysbus_init_mmio(sbd, &s->mmlqspi);
|
|
|
|
|
|
|
|
q->lqspi_cached_addr = ~0ULL;
|
|
|
|
}
|
|
|
|
|
2012-08-01 12:52:36 +02:00
|
|
|
static int xilinx_spips_post_load(void *opaque, int version_id)
|
|
|
|
{
|
|
|
|
xilinx_spips_update_ixr((XilinxSPIPS *)opaque);
|
|
|
|
xilinx_spips_update_cs_lines((XilinxSPIPS *)opaque);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const VMStateDescription vmstate_xilinx_spips = {
|
|
|
|
.name = "xilinx_spips",
|
2012-10-15 06:37:04 +02:00
|
|
|
.version_id = 2,
|
|
|
|
.minimum_version_id = 2,
|
2012-08-01 12:52:36 +02:00
|
|
|
.post_load = xilinx_spips_post_load,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_FIFO8(tx_fifo, XilinxSPIPS),
|
|
|
|
VMSTATE_FIFO8(rx_fifo, XilinxSPIPS),
|
2016-01-21 15:15:03 +01:00
|
|
|
VMSTATE_UINT32_ARRAY(regs, XilinxSPIPS, XLNX_SPIPS_R_MAX),
|
2012-10-15 06:37:04 +02:00
|
|
|
VMSTATE_UINT8(snoop_state, XilinxSPIPS),
|
2012-08-01 12:52:36 +02:00
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-10-15 06:37:04 +02:00
|
|
|
static Property xilinx_spips_properties[] = {
|
|
|
|
DEFINE_PROP_UINT8("num-busses", XilinxSPIPS, num_busses, 1),
|
|
|
|
DEFINE_PROP_UINT8("num-ss-bits", XilinxSPIPS, num_cs, 4),
|
|
|
|
DEFINE_PROP_UINT8("num-txrx-bytes", XilinxSPIPS, num_txrx_bytes, 1),
|
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
2013-06-03 18:17:41 +02:00
|
|
|
|
|
|
|
static void xilinx_qspips_class_init(ObjectClass *klass, void * data)
|
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2013-06-03 18:17:42 +02:00
|
|
|
XilinxSPIPSClass *xsc = XILINX_SPIPS_CLASS(klass);
|
2013-06-03 18:17:41 +02:00
|
|
|
|
|
|
|
dc->realize = xilinx_qspips_realize;
|
2013-06-03 18:17:42 +02:00
|
|
|
xsc->reg_ops = &qspips_ops;
|
2013-06-03 18:17:42 +02:00
|
|
|
xsc->rx_fifo_size = RXFF_A_Q;
|
|
|
|
xsc->tx_fifo_size = TXFF_A_Q;
|
2013-06-03 18:17:41 +02:00
|
|
|
}
|
|
|
|
|
2012-08-01 12:52:36 +02:00
|
|
|
static void xilinx_spips_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2013-06-03 18:17:42 +02:00
|
|
|
XilinxSPIPSClass *xsc = XILINX_SPIPS_CLASS(klass);
|
2012-08-01 12:52:36 +02:00
|
|
|
|
2013-03-15 17:41:59 +01:00
|
|
|
dc->realize = xilinx_spips_realize;
|
2012-08-01 12:52:36 +02:00
|
|
|
dc->reset = xilinx_spips_reset;
|
2012-10-15 06:37:04 +02:00
|
|
|
dc->props = xilinx_spips_properties;
|
2012-08-01 12:52:36 +02:00
|
|
|
dc->vmsd = &vmstate_xilinx_spips;
|
2013-06-03 18:17:42 +02:00
|
|
|
|
2013-06-03 18:17:42 +02:00
|
|
|
xsc->reg_ops = &spips_ops;
|
2013-06-03 18:17:42 +02:00
|
|
|
xsc->rx_fifo_size = RXFF_A;
|
|
|
|
xsc->tx_fifo_size = TXFF_A;
|
2012-08-01 12:52:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo xilinx_spips_info = {
|
2013-03-15 17:41:59 +01:00
|
|
|
.name = TYPE_XILINX_SPIPS,
|
2012-08-01 12:52:36 +02:00
|
|
|
.parent = TYPE_SYS_BUS_DEVICE,
|
|
|
|
.instance_size = sizeof(XilinxSPIPS),
|
|
|
|
.class_init = xilinx_spips_class_init,
|
2013-06-03 18:17:42 +02:00
|
|
|
.class_size = sizeof(XilinxSPIPSClass),
|
2012-08-01 12:52:36 +02:00
|
|
|
};
|
|
|
|
|
2013-06-03 18:17:41 +02:00
|
|
|
static const TypeInfo xilinx_qspips_info = {
|
|
|
|
.name = TYPE_XILINX_QSPIPS,
|
|
|
|
.parent = TYPE_XILINX_SPIPS,
|
|
|
|
.instance_size = sizeof(XilinxQSPIPS),
|
|
|
|
.class_init = xilinx_qspips_class_init,
|
|
|
|
};
|
|
|
|
|
2012-08-01 12:52:36 +02:00
|
|
|
static void xilinx_spips_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&xilinx_spips_info);
|
2013-06-03 18:17:41 +02:00
|
|
|
type_register_static(&xilinx_qspips_info);
|
2012-08-01 12:52:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type_init(xilinx_spips_register_types)
|