mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Waskiewicz Jr, Peter P" <peter.p.waskiewicz.jr@intel.com>
To: "Dutt, Sudeep" <sudeep.dutt@intel.com>
Cc: Pavel Machek <pavel@ucw.cz>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Arnd Bergmann <arnd@arndb.de>,
	Rusty Russell <rusty@rustcorp.com.au>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	Rob Landley <rob@landley.net>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"virtualization@lists.linux-foundation.org" 
	<virtualization@lists.linux-foundation.org>,
	"linux-doc@vger.kernel.org" <linux-doc@vger.kernel.org>,
	"Rao, Nikhil" <nikhil.rao@intel.com>,
	"Dixit, Ashutosh" <ashutosh.dixit@intel.com>,
	"Yokoyama, Caz" <caz.yokoyama@intel.com>,
	"Chandramouli,
	Dasaratharaman"  <dasaratharaman.chandramouli@intel.com>,
	"Kharche, Harshavardhan R" <harshavardhan.r.kharche@intel.com>,
	"Dong, Eddie" <eddie.dong@intel.com>
Subject: Re: [PATCH 0/5] Enable Drivers for Intel MIC X100 Coprocessors.
Date: Fri, 16 Aug 2013 17:08:13 +0000	[thread overview]
Message-ID: <1376672885.5327.4.camel@ppwaskie-mobl2> (raw)
In-Reply-To: <1376672369.93110.13.camel@blbiskey-desk1.amr.corp.intel.com>

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 4908 bytes --]

On Fri, 2013-08-16 at 09:59 -0700, Sudeep Dutt wrote:
> On Thu, 2013-08-15 at 12:14 +0200, Pavel Machek wrote:
> > Hi!
> > 
> 
> Hi!
> 
> > > > > Since it is a PCIe card, it does not have the ability to host hardware
> > > > > devices for networking, storage and console. We provide these devices
> > > > > on X100 coprocessors thus enabling a self-bootable equivalent environment
> > > > > for applications. A key benefit of our solution is that it leverages
> > > > > the standard virtio framework for network, disk and console devices,
> > > > > though in our case the virtio framework is used across a PCIe bus.
> > > > 
> > > > Interesting...
> > > > 
> > > > >  Documentation/mic/mic_overview.txt   |   48 +
> > > > >  Documentation/mic/mpssd/.gitignore   |    1 +
> > > > >  Documentation/mic/mpssd/Makefile     |   20 +
> > > > >  Documentation/mic/mpssd/micctrl      |  157 +++
> > > > >  Documentation/mic/mpssd/mpss         |  246 +++++
> > > > >  Documentation/mic/mpssd/mpssd.c      | 1732 ++++++++++++++++++++++++++++++++++
> > > > >  Documentation/mic/mpssd/mpssd.h      |  105 +++
> > > > >  Documentation/mic/mpssd/sysfs.c      |  108 +++
> > > > >  drivers/misc/Kconfig                 |    1 +
> > > > >  drivers/misc/Makefile                |    1 +
> > > > >  drivers/misc/mic/Kconfig             |   56 ++
> > > > >  drivers/misc/mic/Makefile            |    6 +
> > > > >  drivers/misc/mic/card/Makefile       |   11 +
> > > > >  drivers/misc/mic/card/mic_common.h   |   43 +
> > > > >  drivers/misc/mic/card/mic_debugfs.c  |  139 +++
> > > > >  drivers/misc/mic/card/mic_debugfs.h  |   40 +
> > > > >  drivers/misc/mic/card/mic_device.c   |  311 ++++++
> > > > >  drivers/misc/mic/card/mic_device.h   |  106 +++
> > > > >  drivers/misc/mic/card/mic_virtio.c   |  643 +++++++++++++
> > > > >  drivers/misc/mic/card/mic_virtio.h   |   79 ++
> > > > >  drivers/misc/mic/card/mic_x100.c     |  253 +++++
> > > > >  drivers/misc/mic/card/mic_x100.h     |   53 ++
> > > > >  drivers/misc/mic/common/mic_device.h |   85 ++
> > > > >  drivers/misc/mic/host/Makefile       |   13 +
> > > > >  drivers/misc/mic/host/mic_boot.c     |  181 ++++
> > > > 
> > > > So... there are basically separate computers running on PCIe card
> > > > plugged into host computer, right?
> > > > 
> > > 
> > > They are PCIe form factor Coprocessors plugged into the host.
> > > 
> > > > Maybe we should have something more promintent than drivers/misc for
> > > > this, then? Like drivers/multicomputer?
> > > > 
> > > 
> > > multicomputer" is an interesting name for these kind of devices but has
> > > several issues:
> > > a) The definition I found for multicomputer online was "A computer made
> > > up of several computers. The term generally refers to an architecture in
> > > which each processor has its own memory rather than multiple processors
> > > with a shared memory. A multicore computer, although it sounds similar,
> > > would not be a multicomputer because the multiple cores share a common
> > > memory." Intel MIC X100 devices typically have upto 244 CPUs (61 cores)
> > > on the card sharing common card memory so multicomputer would not be
> > > accurate based on this definition.
> > 
> > Well... you have your "host" computer, and than (potentially several)
> > Intel MIC devices, which are basically separate computers. So X100 is
> > not a multicomputer, but machine with several X100 cards certainly is
> > multicomputer.
> > 
> > > b) X100 MIC devices have always been referred to Coprocessors and never
> > > as multicomputers in product specifications @
> > > http://software.intel.com/en-us/mic-developer
> > 
> > Coprocessor sounds like i487, but why not.
> > 
> > > c) multicomputer is a very long path name.
> > 
> > Agreed it is long. drivers/coproc? 
> > 
> > [I guess we'll get similar hardware from different vendors in
> > future. It would make sense having it at common place.]
> > 
> 
> drivers/coproc is a good, short suggestion. Intel MIC X100 devices are
> likely unique since they can run a general purpose OS in a PCIe form
> factor Coprocessor plugged to the host. This might result in MIC
> potentially being the only driver under drivers/coproc till another
> general purpose Coprocessor comes along. Is it recommended to create a
> new driver directory (drivers/coproc) in anticipation of future devices?
> Do you think it would be better if we revive this discussion, once
> another Coprocessor with similar capabilities comes along?

Creating a new driver directory for one device that may never have a
similar device to share that directory seems a bit overkill.  git mv is
simple and quick to rearrange the directory structure later if the need
arises (with the appropriate Kconfig tweakage).

-PJ
ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±þG«éÿŠ{ayº\x1dʇڙë,j\a­¢f£¢·hšïêÿ‘êçz_è®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?™¨è­Ú&£ø§~á¶iO•æ¬z·švØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?–I¥

      reply	other threads:[~2013-08-16 17:08 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-25  3:31 Sudeep Dutt
2013-07-25  3:31 ` [PATCH 1/5] Intel MIC Host Driver for X100 family Sudeep Dutt
2013-08-01  1:44   ` Greg Kroah-Hartman
2013-08-01  1:45   ` Greg Kroah-Hartman
2013-08-02  0:38     ` Sudeep Dutt
2013-08-01  1:51   ` Greg Kroah-Hartman
2013-08-02  0:36     ` Sudeep Dutt
2013-08-02  0:46       ` Greg Kroah-Hartman
2013-07-25  3:31 ` [PATCH 2/5] Intel MIC Card " Sudeep Dutt
2013-07-25  3:31 ` [PATCH 3/5] Intel MIC Host Driver Changes for Virtio Devices Sudeep Dutt
2013-07-29  7:05   ` Michael S. Tsirkin
2013-08-02  0:40     ` Sudeep Dutt
2013-08-06  3:47       ` Rusty Russell
2013-07-25  3:31 ` [PATCH 4/5] Intel MIC Card " Sudeep Dutt
2013-07-25  4:41   ` Greg Kroah-Hartman
2013-07-25 18:00     ` Sudeep Dutt
2013-07-29  1:58   ` Rusty Russell
2013-07-25  3:31 ` [PATCH 5/5] Sample Implementation of Intel MIC User Space Daemon Sudeep Dutt
2013-08-01  1:46 ` [PATCH 0/5] Enable Drivers for Intel MIC X100 Coprocessors Greg Kroah-Hartman
2013-08-01  7:45   ` Asias He
2013-08-02  0:37     ` Sudeep Dutt
2013-08-02  0:34   ` Sudeep Dutt
2013-08-13 12:43 ` Pavel Machek
2013-08-14 20:24   ` Sudeep Dutt
2013-08-15 10:14     ` Pavel Machek
2013-08-16 16:59       ` Sudeep Dutt
2013-08-16 17:08         ` Waskiewicz Jr, Peter P [this message]

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=1376672885.5327.4.camel@ppwaskie-mobl2 \
    --to=peter.p.waskiewicz.jr@intel.com \
    --cc=arnd@arndb.de \
    --cc=ashutosh.dixit@intel.com \
    --cc=caz.yokoyama@intel.com \
    --cc=dasaratharaman.chandramouli@intel.com \
    --cc=eddie.dong@intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=harshavardhan.r.kharche@intel.com \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=nikhil.rao@intel.com \
    --cc=pavel@ucw.cz \
    --cc=rob@landley.net \
    --cc=rusty@rustcorp.com.au \
    --cc=sudeep.dutt@intel.com \
    --cc=virtualization@lists.linux-foundation.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

all inboxes | Powered by JetHome®