qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Antony Pavlov <antonynpavlov@gmail.com>
To: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Cc: "Peter Maydell" <peter.maydell@linaro.org>,
	"Giovanni Condello" <condellog@gmail.com>,
	g3gg0 <georg.hofstetter@lx-networking.de>,
	"Alex Dumitrache" <broscutamaker@gmail.com>,
	"QEMU Developers" <qemu-devel@nongnu.org>,
	"Paul Brook" <paul@codesourcery.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Andreas Färber" <afaerber@suse.de>
Subject: Re: [Qemu-devel] [RFC 2/5] hw/arm: add very initial support for Canon DIGIC SoC
Date: Fri, 30 Aug 2013 12:10:59 +0400	[thread overview]
Message-ID: <20130830121059.1ad74ed39b869a701362e5c5@gmail.com> (raw)
In-Reply-To: <CAEgOgz7hfLRBPhD3YF90baMF6iGACRgGm8ga8imzX2A=P1RZoQ@mail.gmail.com>

On Fri, 30 Aug 2013 15:07:49 +1000
Peter Crosthwaite <peter.crosthwaite@xilinx.com> wrote:

> Hi,
> 
> 
> On Fri, Aug 30, 2013 at 6:16 AM, Peter Maydell <peter.maydell@linaro.org> wrote:
> >
> > On 29 August 2013 20:36, Antony Pavlov <antonynpavlov@gmail.com> wrote:
> > > On Thu, 29 Aug 2013 14:15:40 +0200
> > > Andreas Färber <afaerber@suse.de> wrote:
> > >> DigicState should be a QOM type derived from TYPE_DEVICE. Since you're
> > >> hardcoding the CPU type, please use object_initialize() to create it
> > >> in-place - note we're about to extend that function but rebase will be
> > >> trivial.
> > >
> > > I have just examinied platforms with hardcoded cpu: pxa2xx, exynos4210.
> > > They don't use object_initialize().
> >
> > You'll find that QEMU is full of old code that hasn't been updated
> > to the current "best practice". pxa2xx in particular is pretty elderly
> > and probably a bad example to copy from. object_initialize()
> > is pretty new, which is why you can't find many examples yet.
> >
> > >> Is the RAM on the board or on the SoC? It's in DigicState but
> > >> initialized from the board init. If it's on the SoC, then
> > >> _add_subregion and _register_ram_global should be in its realizefn.
> > >> Otherwise please separate it from the SoC state.
> > >
> > > It's not a trivial question!
> > > See "Digging Into 'DIGIC 4' Image Processor (2)" (http://techon.nikkeibp.co.jp/english/NEWS_EN/20090218/165866/).
> > > The authors removed the upper package with a chemical solution and exposed the chips.
> > > The 'DIGIC 4' contains 3 chips in one package:
> > >  * processor itself;
> 
> For clarity, do you mean SoC here?
> 
> >
> > >  * 64-Mbit NOR flash memory, the "K8P6415UQB" (note that I have found another flash K8P3215UQB on my Canon A1100: Manufacturer ID: 0xEC, Device ID: 0x7E0301);
> > >  * 512-Mbit SDRAM, the "K4X51323PE" (just the same 64 M RAM as I see with barebox).
> > >
> > > So we can assume taht these memory chips are inalienable parts of the SoC.
> >
> > Package-on-Package is really just a funky way of connecting
> > up separate components (the layers are only connected
> > together at PCB assembly time, wikipedia tells me), and
> > indeed you can have different component combinations
> > (as you've found with the flash memory). So I would suggest
> > that either:
> >  (a) just model them all as separate components
> >    (SoC, memory, flash) instantiated by the board
> >  (b) model them as separate components, and have a
> >    "container" component which puts them together and
> >    then the board just instantiates that.
> >
> > Whether (b) is worthwhile depends on whether we
> > expect to have lots of boards that differ but have the
> > same PoP stack. I suspect (a) is better.
> 
> I like (b). If something is sold, branded or soldered as a self
> contained package then I think its worth having its own device. FWIW,
> I want to do this with Zynq sooner or later as its a SoC that's
> modelled as a board.

The current RFCv1 patch series tends to (a). So I'll keep this till RFCv2 code review :)

-- 
Best regards,
  Antony Pavlov

  reply	other threads:[~2013-08-30  8:13 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-29  9:33 [Qemu-devel] [RFC 0/5] add initial support for Canon DIGIC SoC Antony Pavlov
2013-08-29  9:33 ` [Qemu-devel] [RFC 1/5] target-arm: add ARM946E-S CPU Antony Pavlov
2013-08-29 10:44   ` Peter Maydell
2013-08-29 10:52     ` Antony Pavlov
2013-08-29 18:17     ` Antony Pavlov
2013-08-30  5:09       ` Peter Crosthwaite
2013-08-30  7:29         ` Peter Maydell
2013-08-30  8:06           ` Antony Pavlov
2013-08-29  9:33 ` [Qemu-devel] [RFC 2/5] hw/arm: add very initial support for Canon DIGIC SoC Antony Pavlov
2013-08-29 12:15   ` Andreas Färber
2013-08-29 19:36     ` Antony Pavlov
2013-08-29 20:16       ` Peter Maydell
2013-08-30  5:07         ` Peter Crosthwaite
2013-08-30  8:10           ` Antony Pavlov [this message]
2013-08-30 17:53           ` Andreas Färber
2013-08-30 16:27       ` Andreas Färber
2013-08-29 14:29   ` Condello
2013-08-29 16:22     ` Antony Pavlov
2013-08-29  9:33 ` [Qemu-devel] [RFC 3/5] hw/arm/digic: add timer support Antony Pavlov
2013-08-29  9:33 ` [Qemu-devel] [RFC 4/5] hw/arm/digic: add UART support Antony Pavlov
2013-08-30  5:16   ` Peter Crosthwaite
2013-08-30  8:31     ` Antony Pavlov

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=20130830121059.1ad74ed39b869a701362e5c5@gmail.com \
    --to=antonynpavlov@gmail.com \
    --cc=afaerber@suse.de \
    --cc=broscutamaker@gmail.com \
    --cc=condellog@gmail.com \
    --cc=georg.hofstetter@lx-networking.de \
    --cc=paul@codesourcery.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.crosthwaite@xilinx.com \
    --cc=peter.maydell@linaro.org \
    --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).