]> git.proxmox.com Git - mirror_qemu.git/blame - hw/ssi/xilinx_spips.c
memory: add owner argument to initialization functions
[mirror_qemu.git] / hw / ssi / xilinx_spips.c
CommitLineData
94befa45
PC
1/*
2 * QEMU model of the Xilinx Zynq SPI controller
3 *
4 * Copyright (c) 2012 Peter A. G. Crosthwaite
5 *
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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
22 * THE SOFTWARE.
23 */
24
83c9f4ca 25#include "hw/sysbus.h"
9c17d615 26#include "sysemu/sysemu.h"
83c9f4ca 27#include "hw/ptimer.h"
1de7afc9 28#include "qemu/log.h"
fd7f0d66 29#include "qemu/fifo8.h"
83c9f4ca 30#include "hw/ssi.h"
1de7afc9 31#include "qemu/bitops.h"
94befa45 32
4a5b6fa8
PC
33#ifndef XILINX_SPIPS_ERR_DEBUG
34#define XILINX_SPIPS_ERR_DEBUG 0
94befa45
PC
35#endif
36
4a5b6fa8
PC
37#define DB_PRINT_L(level, ...) do { \
38 if (XILINX_SPIPS_ERR_DEBUG > (level)) { \
39 fprintf(stderr, ": %s: ", __func__); \
40 fprintf(stderr, ## __VA_ARGS__); \
41 } \
42} while (0);
43
94befa45
PC
44/* config register */
45#define R_CONFIG (0x00 / 4)
f1241144
PC
46#define IFMODE (1 << 31)
47#define ENDIAN (1 << 26)
94befa45
PC
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)
53#define CS_SHIFT (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)
2133a5f6 61#define R_CONFIG_RSVD (0x7bf40000)
94befa45
PC
62
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)
76
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)
f1241144
PC
84#define R_TXD1 (0x80 / 4)
85#define R_TXD2 (0x84 / 4)
86#define R_TXD3 (0x88 / 4)
87
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
100
101#define R_LQSPI_STS (0xA4 / 4)
102#define LQSPI_STS_WR_RECVD (1 << 1)
103
94befa45
PC
104#define R_MOD_ID (0xFC / 4)
105
106#define R_MAX (R_MOD_ID+1)
107
108/* size of TXRX FIFOs */
94befa45
PC
109#define RXFF_A 32
110#define TXFF_A 32
111
10e60b35
PC
112#define RXFF_A_Q (64 * 4)
113#define TXFF_A_Q (64 * 4)
114
f1241144
PC
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
119
120#define SNOOP_CHECKING 0xFF
121#define SNOOP_NONE 0xFE
122#define SNOOP_STRIPING 0
123
08a9635b
NR
124typedef enum {
125 READ = 0x3,
126 FAST_READ = 0xb,
127 DOR = 0x3b,
128 QOR = 0x6b,
129 DIOR = 0xbb,
130 QIOR = 0xeb,
131
132 PP = 0x2,
133 DPP = 0xa2,
134 QPP = 0x32,
135} FlashCMD;
136
94befa45 137typedef struct {
6b91f015
PC
138 SysBusDevice parent_obj;
139
94befa45 140 MemoryRegion iomem;
f1241144
PC
141 MemoryRegion mmlqspi;
142
94befa45
PC
143 qemu_irq irq;
144 int irqline;
145
f1241144
PC
146 uint8_t num_cs;
147 uint8_t num_busses;
148
149 uint8_t snoop_state;
150 qemu_irq *cs_lines;
151 SSIBus **spi;
94befa45
PC
152
153 Fifo8 rx_fifo;
154 Fifo8 tx_fifo;
155
f1241144
PC
156 uint8_t num_txrx_bytes;
157
94befa45 158 uint32_t regs[R_MAX];
6b91f015
PC
159} XilinxSPIPS;
160
161typedef struct {
162 XilinxSPIPS parent_obj;
f1241144 163
b0b7ae62 164 uint8_t lqspi_buf[LQSPI_CACHE_SIZE];
f1241144 165 hwaddr lqspi_cached_addr;
6b91f015
PC
166} XilinxQSPIPS;
167
10e60b35
PC
168typedef struct XilinxSPIPSClass {
169 SysBusDeviceClass parent_class;
170
b5cd9143
PC
171 const MemoryRegionOps *reg_ops;
172
10e60b35
PC
173 uint32_t rx_fifo_size;
174 uint32_t tx_fifo_size;
175} XilinxSPIPSClass;
94befa45 176
6b91f015
PC
177#define TYPE_XILINX_SPIPS "xlnx.ps7-spi"
178#define TYPE_XILINX_QSPIPS "xlnx.ps7-qspi"
f8b9fe24
PC
179
180#define XILINX_SPIPS(obj) \
181 OBJECT_CHECK(XilinxSPIPS, (obj), TYPE_XILINX_SPIPS)
10e60b35
PC
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)
186
6b91f015
PC
187#define XILINX_QSPIPS(obj) \
188 OBJECT_CHECK(XilinxQSPIPS, (obj), TYPE_XILINX_QSPIPS)
f8b9fe24 189
f1241144
PC
190static inline int num_effective_busses(XilinxSPIPS *s)
191{
e0891bd8
NR
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;
f1241144
PC
194}
195
c4f08ffe
PC
196static inline bool xilinx_spips_cs_is_set(XilinxSPIPS *s, int i, int field)
197{
198 return ~field & (1 << i) && (s->regs[R_CONFIG] & MANUAL_CS
199 || !fifo8_is_empty(&s->tx_fifo));
200}
201
94befa45
PC
202static void xilinx_spips_update_cs_lines(XilinxSPIPS *s)
203{
f1241144 204 int i, j;
94befa45
PC
205 bool found = false;
206 int field = s->regs[R_CONFIG] >> CS_SHIFT;
207
f1241144
PC
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);
213
c4f08ffe 214 if (xilinx_spips_cs_is_set(s, i, field) && !found) {
4a5b6fa8 215 DB_PRINT_L(0, "selecting slave %d\n", i);
f1241144
PC
216 qemu_set_irq(s->cs_lines[cs_to_set], 0);
217 } else {
4a5b6fa8 218 DB_PRINT_L(0, "deselecting slave %d\n", i);
f1241144
PC
219 qemu_set_irq(s->cs_lines[cs_to_set], 1);
220 }
221 }
c4f08ffe 222 if (xilinx_spips_cs_is_set(s, i, field)) {
94befa45 223 found = true;
94befa45 224 }
f1241144
PC
225 }
226 if (!found) {
227 s->snoop_state = SNOOP_CHECKING;
4a5b6fa8 228 DB_PRINT_L(1, "moving to snoop check state\n");
f1241144 229 }
94befa45
PC
230}
231
232static void xilinx_spips_update_ixr(XilinxSPIPS *s)
233{
3ea728d0
PC
234 if (s->regs[R_LQSPI_CFG] & LQSPI_CFG_LQ_MODE) {
235 return;
236 }
94befa45
PC
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] &
248 IXR_ALL);
249 if (new_irqline != s->irqline) {
250 s->irqline = new_irqline;
251 qemu_set_irq(s->irq, s->irqline);
252 }
253}
254
255static void xilinx_spips_reset(DeviceState *d)
256{
f8b9fe24 257 XilinxSPIPS *s = XILINX_SPIPS(d);
94befa45
PC
258
259 int i;
260 for (i = 0; i < R_MAX; i++) {
261 s->regs[i] = 0;
262 }
263
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;
f1241144
PC
273 s->regs[R_LQSPI_CFG] = R_LQSPI_CFG_RESET;
274 s->snoop_state = SNOOP_CHECKING;
94befa45
PC
275 xilinx_spips_update_ixr(s);
276 xilinx_spips_update_cs_lines(s);
277}
278
9151da25
PC
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):
283 *
284 * {{ 76543210, } ----- stripe (dir == false) -----> {{ FCheb630, }
285 * { hgfedcba, } { GDAfc741, }
286 * { HGFEDCBA, }} <---- upstripe (dir == true) ----- { HEBgda52, }}
287 */
288
289static inline void stripe8(uint8_t *x, int num, bool dir)
290{
291 uint8_t r[num];
292 memset(r, 0, sizeof(uint8_t) * num);
293 int idx[2] = {0, 0};
294 int bit[2] = {0, 0};
295 int d = dir;
296
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;
301 if (!idx[1]) {
302 bit[1]++;
303 }
304 }
305 }
306 memcpy(x, r, sizeof(uint8_t) * num);
307}
308
94befa45
PC
309static void xilinx_spips_flush_txfifo(XilinxSPIPS *s)
310{
4a5b6fa8
PC
311 int debug_level = 0;
312
94befa45 313 for (;;) {
f1241144 314 int i;
f1241144 315 uint8_t tx = 0;
9151da25 316 uint8_t tx_rx[num_effective_busses(s)];
f1241144 317
9151da25
PC
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;
321 }
322 xilinx_spips_update_ixr(s);
323 return;
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);
f1241144 327 }
9151da25
PC
328 stripe8(tx_rx, num_effective_busses(s), false);
329 } else {
330 tx = fifo8_pop(&s->tx_fifo);
331 for (i = 0; i < num_effective_busses(s); ++i) {
332 tx_rx[i] = tx;
333 }
334 }
335
336 for (i = 0; i < num_effective_busses(s); ++i) {
4a5b6fa8 337 DB_PRINT_L(debug_level, "tx = %02x\n", tx_rx[i]);
9151da25 338 tx_rx[i] = ssi_transfer(s->spi[i], (uint32_t)tx_rx[i]);
4a5b6fa8 339 DB_PRINT_L(debug_level, "rx = %02x\n", tx_rx[i]);
9151da25
PC
340 }
341
342 if (fifo8_is_full(&s->rx_fifo)) {
343 s->regs[R_INTR_STATUS] |= IXR_RX_FIFO_OVERFLOW;
4a5b6fa8 344 DB_PRINT_L(0, "rx FIFO overflow");
9151da25
PC
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]);
f1241144 349 }
9151da25
PC
350 } else {
351 fifo8_push(&s->rx_fifo, (uint8_t)tx_rx[0]);
f1241144 352 }
94befa45 353
4a5b6fa8
PC
354 DB_PRINT_L(debug_level, "initial snoop state: %x\n",
355 (unsigned)s->snoop_state);
f1241144
PC
356 switch (s->snoop_state) {
357 case (SNOOP_CHECKING):
358 switch (tx) { /* new instruction code */
08a9635b
NR
359 case READ: /* 3 address bytes, no dummy bytes/cycles */
360 case PP:
361 case DPP:
362 case QPP:
363 s->snoop_state = 3;
f1241144 364 break;
08a9635b
NR
365 case FAST_READ: /* 3 address bytes, 1 dummy byte */
366 case DOR:
367 case QOR:
368 case DIOR: /* FIXME: these vary between vendor - set to spansion */
f1241144
PC
369 s->snoop_state = 4;
370 break;
08a9635b 371 case QIOR: /* 3 address bytes, 2 dummy bytes */
f1241144
PC
372 s->snoop_state = 6;
373 break;
374 default:
375 s->snoop_state = SNOOP_NONE;
376 }
94befa45 377 break;
f1241144
PC
378 case (SNOOP_STRIPING):
379 case (SNOOP_NONE):
4a5b6fa8
PC
380 /* Once we hit the boring stuff - squelch debug noise */
381 if (!debug_level) {
382 DB_PRINT_L(0, "squelching debug info ....\n");
383 debug_level = 1;
384 }
f1241144
PC
385 break;
386 default:
387 s->snoop_state--;
94befa45 388 }
4a5b6fa8
PC
389 DB_PRINT_L(debug_level, "final snoop state: %x\n",
390 (unsigned)s->snoop_state);
f1241144
PC
391 }
392}
94befa45 393
b0b7ae62 394static inline void rx_data_bytes(XilinxSPIPS *s, uint8_t *value, int max)
f1241144
PC
395{
396 int i;
397
f1241144 398 for (i = 0; i < max && !fifo8_is_empty(&s->rx_fifo); ++i) {
b0b7ae62 399 value[i] = fifo8_pop(&s->rx_fifo);
94befa45 400 }
94befa45
PC
401}
402
a8170e5e 403static uint64_t xilinx_spips_read(void *opaque, hwaddr addr,
94befa45
PC
404 unsigned size)
405{
406 XilinxSPIPS *s = opaque;
407 uint32_t mask = ~0;
408 uint32_t ret;
b0b7ae62 409 uint8_t rx_buf[4];
94befa45
PC
410
411 addr >>= 2;
412 switch (addr) {
413 case R_CONFIG:
2133a5f6 414 mask = ~(R_CONFIG_RSVD | MAN_START_COM);
94befa45
PC
415 break;
416 case R_INTR_STATUS:
87920b44
PC
417 ret = s->regs[addr] & IXR_ALL;
418 s->regs[addr] = 0;
4a5b6fa8 419 DB_PRINT_L(0, "addr=" TARGET_FMT_plx " = %x\n", addr * 4, ret);
87920b44 420 return ret;
94befa45
PC
421 case R_INTR_MASK:
422 mask = IXR_ALL;
423 break;
424 case R_EN:
425 mask = 0x1;
426 break;
427 case R_SLAVE_IDLE_COUNT:
428 mask = 0xFF;
429 break;
430 case R_MOD_ID:
431 mask = 0x01FFFFFF;
432 break;
433 case R_INTR_EN:
434 case R_INTR_DIS:
435 case R_TX_DATA:
436 mask = 0;
437 break;
438 case R_RX_DATA:
b0b7ae62
PC
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);
4a5b6fa8 443 DB_PRINT_L(0, "addr=" TARGET_FMT_plx " = %x\n", addr * 4, ret);
94befa45
PC
444 xilinx_spips_update_ixr(s);
445 return ret;
446 }
4a5b6fa8
PC
447 DB_PRINT_L(0, "addr=" TARGET_FMT_plx " = %x\n", addr * 4,
448 s->regs[addr] & mask);
94befa45
PC
449 return s->regs[addr] & mask;
450
451}
452
f1241144
PC
453static inline void tx_data_bytes(XilinxSPIPS *s, uint32_t value, int num)
454{
455 int i;
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));
459 value <<= 8;
460 } else {
461 fifo8_push(&s->tx_fifo, (uint8_t)value);
462 value >>= 8;
463 }
464 }
465}
466
a8170e5e 467static void xilinx_spips_write(void *opaque, hwaddr addr,
94befa45
PC
468 uint64_t value, unsigned size)
469{
470 int mask = ~0;
471 int man_start_com = 0;
472 XilinxSPIPS *s = opaque;
473
4a5b6fa8 474 DB_PRINT_L(0, "addr=" TARGET_FMT_plx " = %x\n", addr, (unsigned)value);
94befa45
PC
475 addr >>= 2;
476 switch (addr) {
477 case R_CONFIG:
2133a5f6 478 mask = ~(R_CONFIG_RSVD | MAN_START_COM);
94befa45
PC
479 if (value & MAN_START_COM) {
480 man_start_com = 1;
481 }
482 break;
483 case R_INTR_STATUS:
484 mask = IXR_ALL;
485 s->regs[R_INTR_STATUS] &= ~(mask & value);
486 goto no_reg_update;
487 case R_INTR_DIS:
488 mask = IXR_ALL;
489 s->regs[R_INTR_MASK] &= ~(mask & value);
490 goto no_reg_update;
491 case R_INTR_EN:
492 mask = IXR_ALL;
493 s->regs[R_INTR_MASK] |= mask & value;
494 goto no_reg_update;
495 case R_EN:
496 mask = 0x1;
497 break;
498 case R_SLAVE_IDLE_COUNT:
499 mask = 0xFF;
500 break;
501 case R_RX_DATA:
502 case R_INTR_MASK:
503 case R_MOD_ID:
504 mask = 0;
505 break;
506 case R_TX_DATA:
f1241144
PC
507 tx_data_bytes(s, (uint32_t)value, s->num_txrx_bytes);
508 goto no_reg_update;
509 case R_TXD1:
510 tx_data_bytes(s, (uint32_t)value, 1);
511 goto no_reg_update;
512 case R_TXD2:
513 tx_data_bytes(s, (uint32_t)value, 2);
514 goto no_reg_update;
515 case R_TXD3:
516 tx_data_bytes(s, (uint32_t)value, 3);
94befa45
PC
517 goto no_reg_update;
518 }
519 s->regs[addr] = (s->regs[addr] & ~mask) | (value & mask);
520no_reg_update:
c4f08ffe 521 xilinx_spips_update_cs_lines(s);
e100f3be
PC
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)) {
94befa45
PC
524 xilinx_spips_flush_txfifo(s);
525 }
94befa45 526 xilinx_spips_update_cs_lines(s);
c4f08ffe 527 xilinx_spips_update_ixr(s);
94befa45
PC
528}
529
530static const MemoryRegionOps spips_ops = {
531 .read = xilinx_spips_read,
532 .write = xilinx_spips_write,
533 .endianness = DEVICE_LITTLE_ENDIAN,
534};
535
b5cd9143
PC
536static void xilinx_qspips_write(void *opaque, hwaddr addr,
537 uint64_t value, unsigned size)
538{
539 XilinxQSPIPS *q = XILINX_QSPIPS(opaque);
540
541 xilinx_spips_write(opaque, addr, value, size);
542 addr >>= 2;
543
544 if (addr == R_LQSPI_CFG) {
545 q->lqspi_cached_addr = ~0ULL;
546 }
547}
548
549static const MemoryRegionOps qspips_ops = {
550 .read = xilinx_spips_read,
551 .write = xilinx_qspips_write,
552 .endianness = DEVICE_LITTLE_ENDIAN,
553};
554
f1241144
PC
555#define LQSPI_CACHE_SIZE 1024
556
557static uint64_t
558lqspi_read(void *opaque, hwaddr addr, unsigned int size)
559{
560 int i;
6b91f015 561 XilinxQSPIPS *q = opaque;
f1241144 562 XilinxSPIPS *s = opaque;
abef5fa6 563 uint32_t ret;
f1241144 564
6b91f015
PC
565 if (addr >= q->lqspi_cached_addr &&
566 addr <= q->lqspi_cached_addr + LQSPI_CACHE_SIZE - 4) {
b0b7ae62
PC
567 uint8_t *retp = &q->lqspi_buf[addr - q->lqspi_cached_addr];
568 ret = cpu_to_le32(*(uint32_t *)retp);
4a5b6fa8
PC
569 DB_PRINT_L(1, "addr: %08x, data: %08x\n", (unsigned)addr,
570 (unsigned)ret);
abef5fa6 571 return ret;
f1241144
PC
572 } else {
573 int flash_addr = (addr / num_effective_busses(s));
574 int slave = flash_addr >> LQSPI_ADDRESS_BITS;
575 int cache_entry = 0;
15408b42
PC
576 uint32_t u_page_save = s->regs[R_LQSPI_STS] & ~LQSPI_CFG_U_PAGE;
577
578 s->regs[R_LQSPI_STS] &= ~LQSPI_CFG_U_PAGE;
579 s->regs[R_LQSPI_STS] |= slave ? LQSPI_CFG_U_PAGE : 0;
f1241144 580
4a5b6fa8 581 DB_PRINT_L(0, "config reg status: %08x\n", s->regs[R_LQSPI_CFG]);
f1241144
PC
582
583 fifo8_reset(&s->tx_fifo);
584 fifo8_reset(&s->rx_fifo);
585
f1241144 586 /* instruction */
4a5b6fa8
PC
587 DB_PRINT_L(0, "pushing read instruction: %02x\n",
588 (unsigned)(uint8_t)(s->regs[R_LQSPI_CFG] &
589 LQSPI_CFG_INST_CODE));
f1241144
PC
590 fifo8_push(&s->tx_fifo, s->regs[R_LQSPI_CFG] & LQSPI_CFG_INST_CODE);
591 /* read address */
4a5b6fa8 592 DB_PRINT_L(0, "pushing read address %06x\n", flash_addr);
f1241144
PC
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);
596 /* mode bits */
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));
601 }
602 /* dummy bytes */
603 for (i = 0; i < (extract32(s->regs[R_LQSPI_CFG], LQSPI_CFG_DUMMY_SHIFT,
604 LQSPI_CFG_DUMMY_WIDTH)); ++i) {
4a5b6fa8 605 DB_PRINT_L(0, "pushing dummy byte\n");
f1241144
PC
606 fifo8_push(&s->tx_fifo, 0);
607 }
c4f08ffe 608 xilinx_spips_update_cs_lines(s);
f1241144
PC
609 xilinx_spips_flush_txfifo(s);
610 fifo8_reset(&s->rx_fifo);
611
4a5b6fa8 612 DB_PRINT_L(0, "starting QSPI data read\n");
f1241144 613
b0b7ae62
PC
614 while (cache_entry < LQSPI_CACHE_SIZE) {
615 for (i = 0; i < 64; ++i) {
616 tx_data_bytes(s, 0, 1);
a66418f6 617 }
f1241144 618 xilinx_spips_flush_txfifo(s);
b0b7ae62
PC
619 for (i = 0; i < 64; ++i) {
620 rx_data_bytes(s, &q->lqspi_buf[cache_entry++], 1);
a66418f6 621 }
f1241144
PC
622 }
623
15408b42
PC
624 s->regs[R_LQSPI_STS] &= ~LQSPI_CFG_U_PAGE;
625 s->regs[R_LQSPI_STS] |= u_page_save;
f1241144
PC
626 xilinx_spips_update_cs_lines(s);
627
b0b7ae62 628 q->lqspi_cached_addr = flash_addr * num_effective_busses(s);
f1241144
PC
629 return lqspi_read(opaque, addr, size);
630 }
631}
632
633static const MemoryRegionOps lqspi_ops = {
634 .read = lqspi_read,
635 .endianness = DEVICE_NATIVE_ENDIAN,
636 .valid = {
b0b7ae62 637 .min_access_size = 1,
f1241144
PC
638 .max_access_size = 4
639 }
640};
641
f8b9fe24 642static void xilinx_spips_realize(DeviceState *dev, Error **errp)
94befa45 643{
f8b9fe24
PC
644 XilinxSPIPS *s = XILINX_SPIPS(dev);
645 SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
10e60b35 646 XilinxSPIPSClass *xsc = XILINX_SPIPS_GET_CLASS(s);
94befa45
PC
647 int i;
648
4a5b6fa8 649 DB_PRINT_L(0, "realized spips\n");
94befa45 650
f1241144
PC
651 s->spi = g_new(SSIBus *, s->num_busses);
652 for (i = 0; i < s->num_busses; ++i) {
653 char bus_name[16];
654 snprintf(bus_name, 16, "spi%d", i);
f8b9fe24 655 s->spi[i] = ssi_create_bus(dev, bus_name);
f1241144 656 }
b4ae3cfa 657
2790cd91 658 s->cs_lines = g_new0(qemu_irq, s->num_cs * s->num_busses);
f1241144
PC
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]);
f8b9fe24 661 sysbus_init_irq(sbd, &s->irq);
f1241144 662 for (i = 0; i < s->num_cs * s->num_busses; ++i) {
f8b9fe24 663 sysbus_init_irq(sbd, &s->cs_lines[i]);
94befa45
PC
664 }
665
2c9b15ca 666 memory_region_init_io(&s->iomem, NULL, xsc->reg_ops, s, "spi", R_MAX*4);
f8b9fe24 667 sysbus_init_mmio(sbd, &s->iomem);
94befa45
PC
668
669 s->irqline = -1;
94befa45 670
10e60b35
PC
671 fifo8_create(&s->rx_fifo, xsc->rx_fifo_size);
672 fifo8_create(&s->tx_fifo, xsc->tx_fifo_size);
94befa45
PC
673}
674
6b91f015
PC
675static void xilinx_qspips_realize(DeviceState *dev, Error **errp)
676{
677 XilinxSPIPS *s = XILINX_SPIPS(dev);
678 XilinxQSPIPS *q = XILINX_QSPIPS(dev);
679 SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
680
4a5b6fa8 681 DB_PRINT_L(0, "realized qspips\n");
6b91f015
PC
682
683 s->num_busses = 2;
684 s->num_cs = 2;
685 s->num_txrx_bytes = 4;
686
687 xilinx_spips_realize(dev, errp);
2c9b15ca 688 memory_region_init_io(&s->mmlqspi, NULL, &lqspi_ops, s, "lqspi",
6b91f015
PC
689 (1 << LQSPI_ADDRESS_BITS) * 2);
690 sysbus_init_mmio(sbd, &s->mmlqspi);
691
692 q->lqspi_cached_addr = ~0ULL;
693}
694
94befa45
PC
695static int xilinx_spips_post_load(void *opaque, int version_id)
696{
697 xilinx_spips_update_ixr((XilinxSPIPS *)opaque);
698 xilinx_spips_update_cs_lines((XilinxSPIPS *)opaque);
699 return 0;
700}
701
702static const VMStateDescription vmstate_xilinx_spips = {
703 .name = "xilinx_spips",
f1241144
PC
704 .version_id = 2,
705 .minimum_version_id = 2,
706 .minimum_version_id_old = 2,
94befa45
PC
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),
f1241144 712 VMSTATE_UINT8(snoop_state, XilinxSPIPS),
94befa45
PC
713 VMSTATE_END_OF_LIST()
714 }
715};
716
f1241144
PC
717static 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(),
722};
6b91f015
PC
723
724static void xilinx_qspips_class_init(ObjectClass *klass, void * data)
725{
726 DeviceClass *dc = DEVICE_CLASS(klass);
10e60b35 727 XilinxSPIPSClass *xsc = XILINX_SPIPS_CLASS(klass);
6b91f015
PC
728
729 dc->realize = xilinx_qspips_realize;
b5cd9143 730 xsc->reg_ops = &qspips_ops;
10e60b35
PC
731 xsc->rx_fifo_size = RXFF_A_Q;
732 xsc->tx_fifo_size = TXFF_A_Q;
6b91f015
PC
733}
734
94befa45
PC
735static void xilinx_spips_class_init(ObjectClass *klass, void *data)
736{
737 DeviceClass *dc = DEVICE_CLASS(klass);
10e60b35 738 XilinxSPIPSClass *xsc = XILINX_SPIPS_CLASS(klass);
94befa45 739
f8b9fe24 740 dc->realize = xilinx_spips_realize;
94befa45 741 dc->reset = xilinx_spips_reset;
f1241144 742 dc->props = xilinx_spips_properties;
94befa45 743 dc->vmsd = &vmstate_xilinx_spips;
10e60b35 744
b5cd9143 745 xsc->reg_ops = &spips_ops;
10e60b35
PC
746 xsc->rx_fifo_size = RXFF_A;
747 xsc->tx_fifo_size = TXFF_A;
94befa45
PC
748}
749
750static const TypeInfo xilinx_spips_info = {
f8b9fe24 751 .name = TYPE_XILINX_SPIPS,
94befa45
PC
752 .parent = TYPE_SYS_BUS_DEVICE,
753 .instance_size = sizeof(XilinxSPIPS),
754 .class_init = xilinx_spips_class_init,
10e60b35 755 .class_size = sizeof(XilinxSPIPSClass),
94befa45
PC
756};
757
6b91f015
PC
758static 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,
763};
764
94befa45
PC
765static void xilinx_spips_register_types(void)
766{
767 type_register_static(&xilinx_spips_info);
6b91f015 768 type_register_static(&xilinx_qspips_info);
94befa45
PC
769}
770
771type_init(xilinx_spips_register_types)