2 * QEMU model of the Xilinx Zynq SPI controller
4 * Copyright (c) 2012 Peter A. G. Crosthwaite
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "hw/sysbus.h"
26 #include "sysemu/sysemu.h"
27 #include "hw/ptimer.h"
29 #include "qemu/fifo8.h"
31 #include "qemu/bitops.h"
33 #ifndef XILINX_SPIPS_ERR_DEBUG
34 #define XILINX_SPIPS_ERR_DEBUG 0
37 #define DB_PRINT_L(level, ...) do { \
38 if (XILINX_SPIPS_ERR_DEBUG > (level)) { \
39 fprintf(stderr, ": %s: ", __func__); \
40 fprintf(stderr, ## __VA_ARGS__); \
45 #define R_CONFIG (0x00 / 4)
46 #define IFMODE (1 << 31)
47 #define ENDIAN (1 << 26)
48 #define MODEFAIL_GEN_EN (1 << 17)
49 #define MAN_START_COM (1 << 16)
50 #define MAN_START_EN (1 << 15)
51 #define MANUAL_CS (1 << 14)
52 #define CS (0xF << 10)
54 #define PERI_SEL (1 << 9)
55 #define REF_CLK (1 << 8)
56 #define FIFO_WIDTH (3 << 6)
57 #define BAUD_RATE_DIV (7 << 3)
58 #define CLK_PH (1 << 2)
59 #define CLK_POL (1 << 1)
60 #define MODE_SEL (1 << 0)
61 #define R_CONFIG_RSVD (0x7bf40000)
63 /* interrupt mechanism */
64 #define R_INTR_STATUS (0x04 / 4)
65 #define R_INTR_EN (0x08 / 4)
66 #define R_INTR_DIS (0x0C / 4)
67 #define R_INTR_MASK (0x10 / 4)
68 #define IXR_TX_FIFO_UNDERFLOW (1 << 6)
69 #define IXR_RX_FIFO_FULL (1 << 5)
70 #define IXR_RX_FIFO_NOT_EMPTY (1 << 4)
71 #define IXR_TX_FIFO_FULL (1 << 3)
72 #define IXR_TX_FIFO_NOT_FULL (1 << 2)
73 #define IXR_TX_FIFO_MODE_FAIL (1 << 1)
74 #define IXR_RX_FIFO_OVERFLOW (1 << 0)
75 #define IXR_ALL ((IXR_TX_FIFO_UNDERFLOW<<1)-1)
77 #define R_EN (0x14 / 4)
78 #define R_DELAY (0x18 / 4)
79 #define R_TX_DATA (0x1C / 4)
80 #define R_RX_DATA (0x20 / 4)
81 #define R_SLAVE_IDLE_COUNT (0x24 / 4)
82 #define R_TX_THRES (0x28 / 4)
83 #define R_RX_THRES (0x2C / 4)
84 #define R_TXD1 (0x80 / 4)
85 #define R_TXD2 (0x84 / 4)
86 #define R_TXD3 (0x88 / 4)
88 #define R_LQSPI_CFG (0xa0 / 4)
89 #define R_LQSPI_CFG_RESET 0x03A002EB
90 #define LQSPI_CFG_LQ_MODE (1 << 31)
91 #define LQSPI_CFG_TWO_MEM (1 << 30)
92 #define LQSPI_CFG_SEP_BUS (1 << 30)
93 #define LQSPI_CFG_U_PAGE (1 << 28)
94 #define LQSPI_CFG_MODE_EN (1 << 25)
95 #define LQSPI_CFG_MODE_WIDTH 8
96 #define LQSPI_CFG_MODE_SHIFT 16
97 #define LQSPI_CFG_DUMMY_WIDTH 3
98 #define LQSPI_CFG_DUMMY_SHIFT 8
99 #define LQSPI_CFG_INST_CODE 0xFF
101 #define R_LQSPI_STS (0xA4 / 4)
102 #define LQSPI_STS_WR_RECVD (1 << 1)
104 #define R_MOD_ID (0xFC / 4)
106 #define R_MAX (R_MOD_ID+1)
108 /* size of TXRX FIFOs */
112 #define RXFF_A_Q (64 * 4)
113 #define TXFF_A_Q (64 * 4)
115 /* 16MB per linear region */
116 #define LQSPI_ADDRESS_BITS 24
117 /* Bite off 4k chunks at a time */
118 #define LQSPI_CACHE_SIZE 1024
120 #define SNOOP_CHECKING 0xFF
121 #define SNOOP_NONE 0xFE
122 #define SNOOP_STRIPING 0
138 SysBusDevice parent_obj
;
141 MemoryRegion mmlqspi
;
156 uint8_t num_txrx_bytes
;
158 uint32_t regs
[R_MAX
];
162 XilinxSPIPS parent_obj
;
164 uint8_t lqspi_buf
[LQSPI_CACHE_SIZE
];
165 hwaddr lqspi_cached_addr
;
168 typedef struct XilinxSPIPSClass
{
169 SysBusDeviceClass parent_class
;
171 const MemoryRegionOps
*reg_ops
;
173 uint32_t rx_fifo_size
;
174 uint32_t tx_fifo_size
;
177 #define TYPE_XILINX_SPIPS "xlnx.ps7-spi"
178 #define TYPE_XILINX_QSPIPS "xlnx.ps7-qspi"
180 #define XILINX_SPIPS(obj) \
181 OBJECT_CHECK(XilinxSPIPS, (obj), TYPE_XILINX_SPIPS)
182 #define XILINX_SPIPS_CLASS(klass) \
183 OBJECT_CLASS_CHECK(XilinxSPIPSClass, (klass), TYPE_XILINX_SPIPS)
184 #define XILINX_SPIPS_GET_CLASS(obj) \
185 OBJECT_GET_CLASS(XilinxSPIPSClass, (obj), TYPE_XILINX_SPIPS)
187 #define XILINX_QSPIPS(obj) \
188 OBJECT_CHECK(XilinxQSPIPS, (obj), TYPE_XILINX_QSPIPS)
190 static inline int num_effective_busses(XilinxSPIPS
*s
)
192 return (s
->regs
[R_LQSPI_CFG
] & LQSPI_CFG_SEP_BUS
&&
193 s
->regs
[R_LQSPI_CFG
] & LQSPI_CFG_TWO_MEM
) ? s
->num_busses
: 1;
196 static inline bool xilinx_spips_cs_is_set(XilinxSPIPS
*s
, int i
, int field
)
198 return ~field
& (1 << i
) && (s
->regs
[R_CONFIG
] & MANUAL_CS
199 || !fifo8_is_empty(&s
->tx_fifo
));
202 static void xilinx_spips_update_cs_lines(XilinxSPIPS
*s
)
206 int field
= s
->regs
[R_CONFIG
] >> CS_SHIFT
;
208 for (i
= 0; i
< s
->num_cs
; i
++) {
209 for (j
= 0; j
< num_effective_busses(s
); j
++) {
210 int upage
= !!(s
->regs
[R_LQSPI_STS
] & LQSPI_CFG_U_PAGE
);
211 int cs_to_set
= (j
* s
->num_cs
+ i
+ upage
) %
212 (s
->num_cs
* s
->num_busses
);
214 if (xilinx_spips_cs_is_set(s
, i
, field
) && !found
) {
215 DB_PRINT_L(0, "selecting slave %d\n", i
);
216 qemu_set_irq(s
->cs_lines
[cs_to_set
], 0);
218 DB_PRINT_L(0, "deselecting slave %d\n", i
);
219 qemu_set_irq(s
->cs_lines
[cs_to_set
], 1);
222 if (xilinx_spips_cs_is_set(s
, i
, field
)) {
227 s
->snoop_state
= SNOOP_CHECKING
;
228 DB_PRINT_L(1, "moving to snoop check state\n");
232 static void xilinx_spips_update_ixr(XilinxSPIPS
*s
)
234 if (s
->regs
[R_LQSPI_CFG
] & LQSPI_CFG_LQ_MODE
) {
237 /* These are set/cleared as they occur */
238 s
->regs
[R_INTR_STATUS
] &= (IXR_TX_FIFO_UNDERFLOW
| IXR_RX_FIFO_OVERFLOW
|
239 IXR_TX_FIFO_MODE_FAIL
);
240 /* these are pure functions of fifo state, set them here */
241 s
->regs
[R_INTR_STATUS
] |=
242 (fifo8_is_full(&s
->rx_fifo
) ? IXR_RX_FIFO_FULL
: 0) |
243 (s
->rx_fifo
.num
>= s
->regs
[R_RX_THRES
] ? IXR_RX_FIFO_NOT_EMPTY
: 0) |
244 (fifo8_is_full(&s
->tx_fifo
) ? IXR_TX_FIFO_FULL
: 0) |
245 (s
->tx_fifo
.num
< s
->regs
[R_TX_THRES
] ? IXR_TX_FIFO_NOT_FULL
: 0);
246 /* drive external interrupt pin */
247 int new_irqline
= !!(s
->regs
[R_INTR_MASK
] & s
->regs
[R_INTR_STATUS
] &
249 if (new_irqline
!= s
->irqline
) {
250 s
->irqline
= new_irqline
;
251 qemu_set_irq(s
->irq
, s
->irqline
);
255 static void xilinx_spips_reset(DeviceState
*d
)
257 XilinxSPIPS
*s
= XILINX_SPIPS(d
);
260 for (i
= 0; i
< R_MAX
; i
++) {
264 fifo8_reset(&s
->rx_fifo
);
265 fifo8_reset(&s
->rx_fifo
);
266 /* non zero resets */
267 s
->regs
[R_CONFIG
] |= MODEFAIL_GEN_EN
;
268 s
->regs
[R_SLAVE_IDLE_COUNT
] = 0xFF;
269 s
->regs
[R_TX_THRES
] = 1;
270 s
->regs
[R_RX_THRES
] = 1;
271 /* FIXME: move magic number definition somewhere sensible */
272 s
->regs
[R_MOD_ID
] = 0x01090106;
273 s
->regs
[R_LQSPI_CFG
] = R_LQSPI_CFG_RESET
;
274 s
->snoop_state
= SNOOP_CHECKING
;
275 xilinx_spips_update_ixr(s
);
276 xilinx_spips_update_cs_lines(s
);
279 /* N way (num) in place bit striper. Lay out row wise bits (LSB to MSB)
280 * column wise (from element 0 to N-1). num is the length of x, and dir
281 * reverses the direction of the transform. Best illustrated by example:
282 * Each digit in the below array is a single bit (num == 3):
284 * {{ 76543210, } ----- stripe (dir == false) -----> {{ FCheb630, }
285 * { hgfedcba, } { GDAfc741, }
286 * { HGFEDCBA, }} <---- upstripe (dir == true) ----- { HEBgda52, }}
289 static inline void stripe8(uint8_t *x
, int num
, bool dir
)
292 memset(r
, 0, sizeof(uint8_t) * num
);
297 for (idx
[0] = 0; idx
[0] < num
; ++idx
[0]) {
298 for (bit
[0] = 0; bit
[0] < 8; ++bit
[0]) {
299 r
[idx
[d
]] |= x
[idx
[!d
]] & 1 << bit
[!d
] ? 1 << bit
[d
] : 0;
300 idx
[1] = (idx
[1] + 1) % num
;
306 memcpy(x
, r
, sizeof(uint8_t) * num
);
309 static void xilinx_spips_flush_txfifo(XilinxSPIPS
*s
)
316 uint8_t tx_rx
[num_effective_busses(s
)];
318 if (fifo8_is_empty(&s
->tx_fifo
)) {
319 if (!(s
->regs
[R_LQSPI_CFG
] & LQSPI_CFG_LQ_MODE
)) {
320 s
->regs
[R_INTR_STATUS
] |= IXR_TX_FIFO_UNDERFLOW
;
322 xilinx_spips_update_ixr(s
);
324 } else if (s
->snoop_state
== SNOOP_STRIPING
) {
325 for (i
= 0; i
< num_effective_busses(s
); ++i
) {
326 tx_rx
[i
] = fifo8_pop(&s
->tx_fifo
);
328 stripe8(tx_rx
, num_effective_busses(s
), false);
330 tx
= fifo8_pop(&s
->tx_fifo
);
331 for (i
= 0; i
< num_effective_busses(s
); ++i
) {
336 for (i
= 0; i
< num_effective_busses(s
); ++i
) {
337 DB_PRINT_L(debug_level
, "tx = %02x\n", tx_rx
[i
]);
338 tx_rx
[i
] = ssi_transfer(s
->spi
[i
], (uint32_t)tx_rx
[i
]);
339 DB_PRINT_L(debug_level
, "rx = %02x\n", tx_rx
[i
]);
342 if (fifo8_is_full(&s
->rx_fifo
)) {
343 s
->regs
[R_INTR_STATUS
] |= IXR_RX_FIFO_OVERFLOW
;
344 DB_PRINT_L(0, "rx FIFO overflow");
345 } else if (s
->snoop_state
== SNOOP_STRIPING
) {
346 stripe8(tx_rx
, num_effective_busses(s
), true);
347 for (i
= 0; i
< num_effective_busses(s
); ++i
) {
348 fifo8_push(&s
->rx_fifo
, (uint8_t)tx_rx
[i
]);
351 fifo8_push(&s
->rx_fifo
, (uint8_t)tx_rx
[0]);
354 DB_PRINT_L(debug_level
, "initial snoop state: %x\n",
355 (unsigned)s
->snoop_state
);
356 switch (s
->snoop_state
) {
357 case (SNOOP_CHECKING
):
358 switch (tx
) { /* new instruction code */
359 case READ
: /* 3 address bytes, no dummy bytes/cycles */
365 case FAST_READ
: /* 3 address bytes, 1 dummy byte */
368 case DIOR
: /* FIXME: these vary between vendor - set to spansion */
371 case QIOR
: /* 3 address bytes, 2 dummy bytes */
375 s
->snoop_state
= SNOOP_NONE
;
378 case (SNOOP_STRIPING
):
380 /* Once we hit the boring stuff - squelch debug noise */
382 DB_PRINT_L(0, "squelching debug info ....\n");
389 DB_PRINT_L(debug_level
, "final snoop state: %x\n",
390 (unsigned)s
->snoop_state
);
394 static inline void rx_data_bytes(XilinxSPIPS
*s
, uint8_t *value
, int max
)
398 for (i
= 0; i
< max
&& !fifo8_is_empty(&s
->rx_fifo
); ++i
) {
399 value
[i
] = fifo8_pop(&s
->rx_fifo
);
403 static uint64_t xilinx_spips_read(void *opaque
, hwaddr addr
,
406 XilinxSPIPS
*s
= opaque
;
414 mask
= ~(R_CONFIG_RSVD
| MAN_START_COM
);
417 ret
= s
->regs
[addr
] & IXR_ALL
;
419 DB_PRINT_L(0, "addr=" TARGET_FMT_plx
" = %x\n", addr
* 4, ret
);
427 case R_SLAVE_IDLE_COUNT
:
439 memset(rx_buf
, 0, sizeof(rx_buf
));
440 rx_data_bytes(s
, rx_buf
, s
->num_txrx_bytes
);
441 ret
= s
->regs
[R_CONFIG
] & ENDIAN
? cpu_to_be32(*(uint32_t *)rx_buf
)
442 : cpu_to_le32(*(uint32_t *)rx_buf
);
443 DB_PRINT_L(0, "addr=" TARGET_FMT_plx
" = %x\n", addr
* 4, ret
);
444 xilinx_spips_update_ixr(s
);
447 DB_PRINT_L(0, "addr=" TARGET_FMT_plx
" = %x\n", addr
* 4,
448 s
->regs
[addr
] & mask
);
449 return s
->regs
[addr
] & mask
;
453 static inline void tx_data_bytes(XilinxSPIPS
*s
, uint32_t value
, int num
)
456 for (i
= 0; i
< num
&& !fifo8_is_full(&s
->tx_fifo
); ++i
) {
457 if (s
->regs
[R_CONFIG
] & ENDIAN
) {
458 fifo8_push(&s
->tx_fifo
, (uint8_t)(value
>> 24));
461 fifo8_push(&s
->tx_fifo
, (uint8_t)value
);
467 static void xilinx_spips_write(void *opaque
, hwaddr addr
,
468 uint64_t value
, unsigned size
)
471 int man_start_com
= 0;
472 XilinxSPIPS
*s
= opaque
;
474 DB_PRINT_L(0, "addr=" TARGET_FMT_plx
" = %x\n", addr
, (unsigned)value
);
478 mask
= ~(R_CONFIG_RSVD
| MAN_START_COM
);
479 if (value
& MAN_START_COM
) {
485 s
->regs
[R_INTR_STATUS
] &= ~(mask
& value
);
489 s
->regs
[R_INTR_MASK
] &= ~(mask
& value
);
493 s
->regs
[R_INTR_MASK
] |= mask
& value
;
498 case R_SLAVE_IDLE_COUNT
:
507 tx_data_bytes(s
, (uint32_t)value
, s
->num_txrx_bytes
);
510 tx_data_bytes(s
, (uint32_t)value
, 1);
513 tx_data_bytes(s
, (uint32_t)value
, 2);
516 tx_data_bytes(s
, (uint32_t)value
, 3);
519 s
->regs
[addr
] = (s
->regs
[addr
] & ~mask
) | (value
& mask
);
521 xilinx_spips_update_cs_lines(s
);
522 if ((man_start_com
&& s
->regs
[R_CONFIG
] & MAN_START_EN
) ||
523 (fifo8_is_empty(&s
->tx_fifo
) && s
->regs
[R_CONFIG
] & MAN_START_EN
)) {
524 xilinx_spips_flush_txfifo(s
);
526 xilinx_spips_update_cs_lines(s
);
527 xilinx_spips_update_ixr(s
);
530 static const MemoryRegionOps spips_ops
= {
531 .read
= xilinx_spips_read
,
532 .write
= xilinx_spips_write
,
533 .endianness
= DEVICE_LITTLE_ENDIAN
,
536 static void xilinx_qspips_write(void *opaque
, hwaddr addr
,
537 uint64_t value
, unsigned size
)
539 XilinxQSPIPS
*q
= XILINX_QSPIPS(opaque
);
541 xilinx_spips_write(opaque
, addr
, value
, size
);
544 if (addr
== R_LQSPI_CFG
) {
545 q
->lqspi_cached_addr
= ~0ULL;
549 static const MemoryRegionOps qspips_ops
= {
550 .read
= xilinx_spips_read
,
551 .write
= xilinx_qspips_write
,
552 .endianness
= DEVICE_LITTLE_ENDIAN
,
555 #define LQSPI_CACHE_SIZE 1024
558 lqspi_read(void *opaque
, hwaddr addr
, unsigned int size
)
561 XilinxQSPIPS
*q
= opaque
;
562 XilinxSPIPS
*s
= opaque
;
565 if (addr
>= q
->lqspi_cached_addr
&&
566 addr
<= q
->lqspi_cached_addr
+ LQSPI_CACHE_SIZE
- 4) {
567 uint8_t *retp
= &q
->lqspi_buf
[addr
- q
->lqspi_cached_addr
];
568 ret
= cpu_to_le32(*(uint32_t *)retp
);
569 DB_PRINT_L(1, "addr: %08x, data: %08x\n", (unsigned)addr
,
573 int flash_addr
= (addr
/ num_effective_busses(s
));
574 int slave
= flash_addr
>> LQSPI_ADDRESS_BITS
;
576 uint32_t u_page_save
= s
->regs
[R_LQSPI_STS
] & ~LQSPI_CFG_U_PAGE
;
578 s
->regs
[R_LQSPI_STS
] &= ~LQSPI_CFG_U_PAGE
;
579 s
->regs
[R_LQSPI_STS
] |= slave
? LQSPI_CFG_U_PAGE
: 0;
581 DB_PRINT_L(0, "config reg status: %08x\n", s
->regs
[R_LQSPI_CFG
]);
583 fifo8_reset(&s
->tx_fifo
);
584 fifo8_reset(&s
->rx_fifo
);
587 DB_PRINT_L(0, "pushing read instruction: %02x\n",
588 (unsigned)(uint8_t)(s
->regs
[R_LQSPI_CFG
] &
589 LQSPI_CFG_INST_CODE
));
590 fifo8_push(&s
->tx_fifo
, s
->regs
[R_LQSPI_CFG
] & LQSPI_CFG_INST_CODE
);
592 DB_PRINT_L(0, "pushing read address %06x\n", flash_addr
);
593 fifo8_push(&s
->tx_fifo
, (uint8_t)(flash_addr
>> 16));
594 fifo8_push(&s
->tx_fifo
, (uint8_t)(flash_addr
>> 8));
595 fifo8_push(&s
->tx_fifo
, (uint8_t)flash_addr
);
597 if (s
->regs
[R_LQSPI_CFG
] & LQSPI_CFG_MODE_EN
) {
598 fifo8_push(&s
->tx_fifo
, extract32(s
->regs
[R_LQSPI_CFG
],
599 LQSPI_CFG_MODE_SHIFT
,
600 LQSPI_CFG_MODE_WIDTH
));
603 for (i
= 0; i
< (extract32(s
->regs
[R_LQSPI_CFG
], LQSPI_CFG_DUMMY_SHIFT
,
604 LQSPI_CFG_DUMMY_WIDTH
)); ++i
) {
605 DB_PRINT_L(0, "pushing dummy byte\n");
606 fifo8_push(&s
->tx_fifo
, 0);
608 xilinx_spips_update_cs_lines(s
);
609 xilinx_spips_flush_txfifo(s
);
610 fifo8_reset(&s
->rx_fifo
);
612 DB_PRINT_L(0, "starting QSPI data read\n");
614 while (cache_entry
< LQSPI_CACHE_SIZE
) {
615 for (i
= 0; i
< 64; ++i
) {
616 tx_data_bytes(s
, 0, 1);
618 xilinx_spips_flush_txfifo(s
);
619 for (i
= 0; i
< 64; ++i
) {
620 rx_data_bytes(s
, &q
->lqspi_buf
[cache_entry
++], 1);
624 s
->regs
[R_LQSPI_STS
] &= ~LQSPI_CFG_U_PAGE
;
625 s
->regs
[R_LQSPI_STS
] |= u_page_save
;
626 xilinx_spips_update_cs_lines(s
);
628 q
->lqspi_cached_addr
= flash_addr
* num_effective_busses(s
);
629 return lqspi_read(opaque
, addr
, size
);
633 static const MemoryRegionOps lqspi_ops
= {
635 .endianness
= DEVICE_NATIVE_ENDIAN
,
637 .min_access_size
= 1,
642 static void xilinx_spips_realize(DeviceState
*dev
, Error
**errp
)
644 XilinxSPIPS
*s
= XILINX_SPIPS(dev
);
645 SysBusDevice
*sbd
= SYS_BUS_DEVICE(dev
);
646 XilinxSPIPSClass
*xsc
= XILINX_SPIPS_GET_CLASS(s
);
649 DB_PRINT_L(0, "realized spips\n");
651 s
->spi
= g_new(SSIBus
*, s
->num_busses
);
652 for (i
= 0; i
< s
->num_busses
; ++i
) {
654 snprintf(bus_name
, 16, "spi%d", i
);
655 s
->spi
[i
] = ssi_create_bus(dev
, bus_name
);
658 s
->cs_lines
= g_new0(qemu_irq
, s
->num_cs
* s
->num_busses
);
659 ssi_auto_connect_slaves(DEVICE(s
), s
->cs_lines
, s
->spi
[0]);
660 ssi_auto_connect_slaves(DEVICE(s
), s
->cs_lines
, s
->spi
[1]);
661 sysbus_init_irq(sbd
, &s
->irq
);
662 for (i
= 0; i
< s
->num_cs
* s
->num_busses
; ++i
) {
663 sysbus_init_irq(sbd
, &s
->cs_lines
[i
]);
666 memory_region_init_io(&s
->iomem
, xsc
->reg_ops
, s
, "spi", R_MAX
*4);
667 sysbus_init_mmio(sbd
, &s
->iomem
);
671 fifo8_create(&s
->rx_fifo
, xsc
->rx_fifo_size
);
672 fifo8_create(&s
->tx_fifo
, xsc
->tx_fifo_size
);
675 static void xilinx_qspips_realize(DeviceState
*dev
, Error
**errp
)
677 XilinxSPIPS
*s
= XILINX_SPIPS(dev
);
678 XilinxQSPIPS
*q
= XILINX_QSPIPS(dev
);
679 SysBusDevice
*sbd
= SYS_BUS_DEVICE(dev
);
681 DB_PRINT_L(0, "realized qspips\n");
685 s
->num_txrx_bytes
= 4;
687 xilinx_spips_realize(dev
, errp
);
688 memory_region_init_io(&s
->mmlqspi
, &lqspi_ops
, s
, "lqspi",
689 (1 << LQSPI_ADDRESS_BITS
) * 2);
690 sysbus_init_mmio(sbd
, &s
->mmlqspi
);
692 q
->lqspi_cached_addr
= ~0ULL;
695 static int xilinx_spips_post_load(void *opaque
, int version_id
)
697 xilinx_spips_update_ixr((XilinxSPIPS
*)opaque
);
698 xilinx_spips_update_cs_lines((XilinxSPIPS
*)opaque
);
702 static const VMStateDescription vmstate_xilinx_spips
= {
703 .name
= "xilinx_spips",
705 .minimum_version_id
= 2,
706 .minimum_version_id_old
= 2,
707 .post_load
= xilinx_spips_post_load
,
708 .fields
= (VMStateField
[]) {
709 VMSTATE_FIFO8(tx_fifo
, XilinxSPIPS
),
710 VMSTATE_FIFO8(rx_fifo
, XilinxSPIPS
),
711 VMSTATE_UINT32_ARRAY(regs
, XilinxSPIPS
, R_MAX
),
712 VMSTATE_UINT8(snoop_state
, XilinxSPIPS
),
713 VMSTATE_END_OF_LIST()
717 static Property xilinx_spips_properties
[] = {
718 DEFINE_PROP_UINT8("num-busses", XilinxSPIPS
, num_busses
, 1),
719 DEFINE_PROP_UINT8("num-ss-bits", XilinxSPIPS
, num_cs
, 4),
720 DEFINE_PROP_UINT8("num-txrx-bytes", XilinxSPIPS
, num_txrx_bytes
, 1),
721 DEFINE_PROP_END_OF_LIST(),
724 static void xilinx_qspips_class_init(ObjectClass
*klass
, void * data
)
726 DeviceClass
*dc
= DEVICE_CLASS(klass
);
727 XilinxSPIPSClass
*xsc
= XILINX_SPIPS_CLASS(klass
);
729 dc
->realize
= xilinx_qspips_realize
;
730 xsc
->reg_ops
= &qspips_ops
;
731 xsc
->rx_fifo_size
= RXFF_A_Q
;
732 xsc
->tx_fifo_size
= TXFF_A_Q
;
735 static void xilinx_spips_class_init(ObjectClass
*klass
, void *data
)
737 DeviceClass
*dc
= DEVICE_CLASS(klass
);
738 XilinxSPIPSClass
*xsc
= XILINX_SPIPS_CLASS(klass
);
740 dc
->realize
= xilinx_spips_realize
;
741 dc
->reset
= xilinx_spips_reset
;
742 dc
->props
= xilinx_spips_properties
;
743 dc
->vmsd
= &vmstate_xilinx_spips
;
745 xsc
->reg_ops
= &spips_ops
;
746 xsc
->rx_fifo_size
= RXFF_A
;
747 xsc
->tx_fifo_size
= TXFF_A
;
750 static const TypeInfo xilinx_spips_info
= {
751 .name
= TYPE_XILINX_SPIPS
,
752 .parent
= TYPE_SYS_BUS_DEVICE
,
753 .instance_size
= sizeof(XilinxSPIPS
),
754 .class_init
= xilinx_spips_class_init
,
755 .class_size
= sizeof(XilinxSPIPSClass
),
758 static const TypeInfo xilinx_qspips_info
= {
759 .name
= TYPE_XILINX_QSPIPS
,
760 .parent
= TYPE_XILINX_SPIPS
,
761 .instance_size
= sizeof(XilinxQSPIPS
),
762 .class_init
= xilinx_qspips_class_init
,
765 static void xilinx_spips_register_types(void)
767 type_register_static(&xilinx_spips_info
);
768 type_register_static(&xilinx_qspips_info
);
771 type_init(xilinx_spips_register_types
)