Sample Implementation of Intel MIC User Space Daemon.
[linux-2.6-block.git] / Documentation / mic / mic_overview.txt
CommitLineData
8d497515
CY
1An Intel MIC X100 device is a PCIe form factor add-in coprocessor
2card based on the Intel Many Integrated Core (MIC) architecture
3that runs a Linux OS. It is a PCIe endpoint in a platform and therefore
4implements the three required standard address spaces i.e. configuration,
5memory and I/O. The host OS loads a device driver as is typical for
6PCIe devices. The card itself runs a bootstrap after reset that
7transfers control to the card OS downloaded from the host driver.
8The card OS as shipped by Intel is a Linux kernel with modifications
9for the X100 devices.
10
11Since it is a PCIe card, it does not have the ability to host hardware
12devices for networking, storage and console. We provide these devices
13on X100 coprocessors thus enabling a self-bootable equivalent environment
14for applications. A key benefit of our solution is that it leverages
15the standard virtio framework for network, disk and console devices,
16though in our case the virtio framework is used across a PCIe bus.
17
18Here is a block diagram of the various components described above. The
19virtio backends are situated on the host rather than the card given better
20single threaded performance for the host compared to MIC, the ability of
21the host to initiate DMA's to/from the card using the MIC DMA engine and
22the fact that the virtio block storage backend can only be on the host.
23
24 |
25 +----------+ | +----------+
26 | Card OS | | | Host OS |
27 +----------+ | +----------+
28 |
29+-------+ +--------+ +------+ | +---------+ +--------+ +--------+
30| Virtio| |Virtio | |Virtio| | |Virtio | |Virtio | |Virtio |
31| Net | |Console | |Block | | |Net | |Console | |Block |
32| Driver| |Driver | |Driver| | |backend | |backend | |backend |
33+-------+ +--------+ +------+ | +---------+ +--------+ +--------+
34 | | | | | | |
35 | | | |User | | |
36 | | | |------|------------|---------|-------
37 +-------------------+ |Kernel +--------------------------+
38 | | | Virtio over PCIe IOCTLs |
39 | | +--------------------------+
40 +--------------+ | |
41 |Intel MIC | | +---------------+
42 |Card Driver | | |Intel MIC |
43 +--------------+ | |Host Driver |
44 | | +---------------+
45 | | |
46 +-------------------------------------------------------------+
47 | |
48 | PCIe Bus |
49 +-------------------------------------------------------------+