qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: walimis <walimisdev@gmail.com>
To: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Cc: blauwirbel@gmail.com, edgar.iglesias@gmail.com,
	aliguori@us.ibm.com, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 3/3] xilinx_zynq: added QSPI controller
Date: Tue, 20 Nov 2012 20:21:15 +0800	[thread overview]
Message-ID: <20121120122115.GD3983@walimis-DELL> (raw)
In-Reply-To: <1351493100-5850-4-git-send-email-peter.crosthwaite@xilinx.com>

Hi, Peter

On Mon, Oct 29, 2012 at 04:45:00PM +1000, Peter Crosthwaite wrote:
>Added the QSPI controller to the Zynq. 4 SPI devices are attached to allow
>modelling of the different geometries. E.G. Dual parallel and dual stacked
>mode can both be tested with this one arrangement.
>
>Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
>---
> hw/xilinx_zynq.c |   40 ++++++++++++++++++++++++++++------------
> 1 files changed, 28 insertions(+), 12 deletions(-)
>
>diff --git a/hw/xilinx_zynq.c b/hw/xilinx_zynq.c
>index c55dafb..0026235 100644
>--- a/hw/xilinx_zynq.c
>+++ b/hw/xilinx_zynq.c
>@@ -27,6 +27,8 @@
> #include "ssi.h"
> 
> #define NUM_SPI_FLASHES 4
>+#define NUM_QSPI_FLASHES 2
>+#define NUM_QSPI_BUSSES 2
> 
> #define FLASH_SIZE (64 * 1024 * 1024)
> #define FLASH_SECTOR_SIZE (128 * 1024)
>@@ -49,30 +51,43 @@ static void gem_init(NICInfo *nd, uint32_t base, qemu_irq irq)
>     sysbus_connect_irq(s, 0, irq);
> }
> 
>-static inline void zynq_init_spi_flashes(uint32_t base_addr, qemu_irq irq)
>+static inline void zynq_init_spi_flashes(uint32_t base_addr, qemu_irq irq,
>+                                         bool is_qspi)
> {
>     DeviceState *dev;
>     SysBusDevice *busdev;
>     SSIBus *spi;
>-    int i;
>+    int i, j;
>+    int num_busses =  is_qspi ? NUM_QSPI_BUSSES : 1;
>+    int num_ss = is_qspi ? NUM_QSPI_FLASHES : NUM_SPI_FLASHES;
> 
>     dev = qdev_create(NULL, "xilinx,spips");
>+    qdev_prop_set_uint8(dev, "num-txrx-bytes", is_qspi ? 4 : 1);
>+    qdev_prop_set_uint8(dev, "num-ss-bits", num_ss);
>+    qdev_prop_set_uint8(dev, "num-busses", num_busses);
>     qdev_init_nofail(dev);
>     busdev = sysbus_from_qdev(dev);
>     sysbus_mmio_map(busdev, 0, base_addr);
>+    if (is_qspi) {
>+        sysbus_mmio_map(busdev, 1, 0xFC000000);
>+    }
>     sysbus_connect_irq(busdev, 0, irq);
> 
>-    spi = (SSIBus *)qdev_get_child_bus(dev, "spi");
>-
>-    for (i = 0; i < NUM_SPI_FLASHES; ++i) {
>+    for (i = 0; i < num_busses; ++i) {
>+        char bus_name[16];
>         qemu_irq cs_line;
> 
>-        dev = ssi_create_slave_no_init(spi, "m25p80");
>-        qdev_prop_set_string(dev, "partname", "n25q128");
>-        qdev_init_nofail(dev);
>+        snprintf(bus_name, 16, "spi%d", i);
>+        spi = (SSIBus *)qdev_get_child_bus(dev, bus_name);
> 
>-        cs_line = qdev_get_gpio_in(dev, 0);
>-        sysbus_connect_irq(busdev, i+1, cs_line);
>+        for (j = 0; j < num_ss; ++j) {

It seems that there are four devices for qspi bus. But I have
some questions for this model.

 - How to define these qspi flashes in Xilinx linux kernel device tree? I mean
   I want to know how to use them in Linux kernel.

 - The address of second qspi bus is 0xFC000000, so what's the irq num
   for this bus? Does the bus share the same irq with the first qspi bus?

>+            dev = ssi_create_slave_no_init(spi, "m25p80");
>+            qdev_prop_set_string(dev, "partname", "n25q128");
>+            qdev_init_nofail(dev);
>+
>+            cs_line = qdev_get_gpio_in(dev, 0);
>+            sysbus_connect_irq(busdev, i * num_ss + j + 1, cs_line);
>+        }
>     }
> 
> }
>@@ -147,8 +162,9 @@ static void zynq_init(QEMUMachineInitArgs *args)
>         pic[n] = qdev_get_gpio_in(dev, n);
>     }
> 
>-    zynq_init_spi_flashes(0xE0006000, pic[58-IRQ_OFFSET]);
>-    zynq_init_spi_flashes(0xE0007000, pic[81-IRQ_OFFSET]);
>+    zynq_init_spi_flashes(0xE0006000, pic[58-IRQ_OFFSET], false);
>+    zynq_init_spi_flashes(0xE0007000, pic[81-IRQ_OFFSET], false);

Here we defines two spi buses and total 8 flashes. That means to use
the following qspi flash, we should append 8 "-mtdblock img" parameters
to qemu, is it right?

Regards,
Liming Wang

>+    zynq_init_spi_flashes(0xE000D000, pic[51-IRQ_OFFSET], true);
> 
>     sysbus_create_simple("cadence_uart", 0xE0000000, pic[59-IRQ_OFFSET]);
>     sysbus_create_simple("cadence_uart", 0xE0001000, pic[82-IRQ_OFFSET]);
>-- 
>1.7.0.4
>
>

  reply	other threads:[~2012-11-20 12:22 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-29  6:44 [Qemu-devel] [PULL 0/3] Xilinx Zynq QSPI support Peter Crosthwaite
2012-10-29  6:44 ` [Qemu-devel] [PATCH 1/3] m25p80: Support for Quad SPI Peter Crosthwaite
2012-10-29  6:44 ` [Qemu-devel] [PATCH 2/3] xilinx_spips: Generalised to model QSPI Peter Crosthwaite
2012-10-29  6:45 ` [Qemu-devel] [PATCH 3/3] xilinx_zynq: added QSPI controller Peter Crosthwaite
2012-11-20 12:21   ` walimis [this message]
2012-10-30 21:07 ` [Qemu-devel] [PULL 0/3] Xilinx Zynq QSPI support Blue Swirl

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20121120122115.GD3983@walimis-DELL \
    --to=walimisdev@gmail.com \
    --cc=aliguori@us.ibm.com \
    --cc=blauwirbel@gmail.com \
    --cc=edgar.iglesias@gmail.com \
    --cc=peter.crosthwaite@xilinx.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).