genode/repos/os/src/drivers/platform/spec/x86
Alexander Boettcher 5ca30b0318 platform_drv: disable PCI DMA class specific
for such classes where it should be safe and where we have seen issues.
Disabling in general bus master DMA causes on some machines hard hangs, e.g.
because the USB handover protocol was violated.

Fixes #2835
2018-06-12 12:11:40 +02:00
..
device_pd.cc platform_drv/x86: Switch to ECAM/MMCONF 2018-03-29 14:59:04 +02:00
device_pd.h base: support to attach RAM dataspaces readonly 2018-05-30 13:36:27 +02:00
irq_proxy.h Follow practices suggested by "Effective C++" 2018-01-17 12:14:35 +01:00
irq.cc x86: detect root bridge properly 2018-05-30 13:36:07 +02:00
irq.h Follow practices suggested by "Effective C++" 2018-01-17 12:14:35 +01:00
main.cc platform_drv/x86: Switch to ECAM/MMCONF 2018-03-29 14:59:04 +02:00
nonpci_devices.cc platform_drv/x86: Switch to ECAM/MMCONF 2018-03-29 14:59:04 +02:00
pci_bridge.h x86: detect root bridge properly 2018-05-30 13:36:07 +02:00
pci_config_access.h platform_drv/x86: Switch to ECAM/MMCONF 2018-03-29 14:59:04 +02:00
pci_device_component.h platform_drv: disable PCI DMA class specific 2018-06-12 12:11:40 +02:00
pci_device_config.h platform_drv: disable PCI DMA class specific 2018-06-12 12:11:40 +02:00
pci_device.cc platform_drv: disable PCI DMA class specific 2018-06-12 12:11:40 +02:00
pci_session_component.h platform_drv: skip assign device if iommu missing 2018-05-30 13:36:18 +02:00
README platform_drv: recognize PCIe NVMe controller 2018-04-10 13:56:22 +02:00
session.cc platform_drv: disable PCI DMA class specific 2018-06-12 12:11:40 +02:00
target.mk platform_drv: replace nova specific device_pd 2017-08-18 10:24:47 +02:00

This directory contains the implementation of Genode's x86 platform driver.

Behavior
--------

On startup the driver scans the PCI bus hierarchy and stores the found devices.
Per client a policy must be configured that states which client can
access certain devices to form a virtual pci bus per client. The client may
iterate through the virtual pci bus using the 'first' and 'next' methods of
the platform_session interface to discover all available devices of the virtual
bus. Non PCI devices may be discovered by using 'device' of the
platform_session interface.  As a result of the discovery a client obtains a
device capability.

With the device capability the resources of the devices can be obtained, e.g.
io_port, io_mem and irq of the platform_device interface.

Policy usage
------------

A policy may contain several nodes describing several devices. The entries of
a policy may describe PCI devices as non PCI devices. A PCI device is
explicitly configured by the triple 'bus', 'device', 'function':

!<start name="platform_drv">
! <resource name="RAM" quantum="8M" constrain_phys="yes"/>
! ...
! <config>
!  <policy label_prefix="usb_drv">
!   <pci bus="0" device="19" function="0"/>
!   <pci bus="0" device="18" function="3"/>
!  </policy>
! </config>
! ...

or more fuzzy by a device class alias:

!<start name="platform_drv">
! <resource name="RAM" quantum="8M" constrain_phys="yes"/>
! ...
! <config>
!  <policy label_prefix="usb_drv">
!   <pci class="USB"/>
!  </policy>
! </config>
! ...


Non PCI devices, as the PS2 controller are named by a "device" node in the policy:

!<start name="platform_drv">
! <resource name="RAM" quantum="8M" constrain_phys="yes"/>
! <config>
!  <policy label_prefix="ps2_drv">
!   <device name="PS2/>
!  </policy>
! </config>
! ...


The first entry ('pci' or 'dev') of the policy node that matches will grant
access of a device or device class to the client. Subsequent entries will not
be checked. If a 'bus', 'device', 'function' triple was specified in one of the
policies and in another policy a fuzzy pci class alias which would include
the device specified by the triple, the device will not appear during device
discovery by the client with the fuzzy pci class policy.


By default the driver will try to use MSIs if the device and the used kernel
supports it. This behaviour can be overwritten:

!<start name="platform_drv">
! <resource name="RAM" quantum="8M" constrain_phys="yes"/>
! <config>
!  <policy label_prefix="nic_drv" irq_mode="nomsi">
!  ...
!  </policy>
! </config>
! ...

The constrain_phys attribute is evaluated by init. If set to "yes" it
permits a component, the platform driver, to restrict the allocation of memory to
specific physical RAM ranges. The platform driver uses this feature to ensure that
the allocation of DMA capable memory consider several restrictions. For
example, some drivers, as the UHCI controller, requires a
physical memory address below 4G. Another example is that on 32bit hosts
physical to virtual identical mappings of DMA memory for the device_pd
(required when IOMMU is used) must be below the kernel memory boundary (3G).

The platform driver waits on startup on the first valid ACPI report, typically
provided dynamically by the acpi driver.
The report contains further information about the hardware the platform driver can
not discover (e.g. IRQ re-routing information, PCI ECAM/MMCONF information).

A specific route to a report_rom service named 'acpi_report_rom' looks as
in the following:

!<start name="platform_drv">
!  ...
!  <route>
!    <service name="ROM" label="acpi">
!      <child name="acpi_report_rom"/>
!    </service>
!    ...
!  </route>
!  ...

Synchronize ACPI startup and platform driver
--------------------------------------------

If the config attribute 'acpi_ready' is set to 'yes', the platform driver
monitors a ROM in XML format named 'acpi_ready'.

!<start name="platform_drv">
!  <config acpi_ready="yes">

The platform driver will announce its service not as 'Platform', but instead
as 'Acpi' first.

An ACPI application like acpica can connect to the platform driver and may
reconfigure hardware devices according to the ACPI table findings. If the
system state changes to "acpi_ready in the XML ROM 'acpi_ready':

!<system state="acpi_ready"/>

the platform driver will announce the platform session as 'Platform', so
that drivers may start to operate with the platform driver.

Supported PCI class aliases
---------------------------

The following class names are supported which corresponds to the
specified PCI class(C), subclass(S) and programming interface(P):

alias       C    S   P
**********************
ALL       0x0 0x00 0x0
AHCI      0x1 0x06 0x0
AUDIO     0x4 0x01 0x0
ETHERNET  0x2 0x00 0x0
HDAUDIO   0x4 0x03 0x0
NVME      0x1 0x08 0x2
USB       0xc 0x03 0x0
VGA       0x3 0x00 0x0
WIFI      0x2 0x80 0x0
ISABRIDGE 0x6 0x01 0x0


Supported non PCI devices
-------------------------

The driver provides for the PS2 and PIT device the IO_PORT and IRQ resources.

!<start name="platform_drv">
! <resource name="RAM" quantum="8M" constrain_phys="yes"/>
! <config>
!  <policy label_prefix="ps2_drv">
!   <dev name="PS2/>
!  </policy>
!  <policy label_prefix="pit_timer_drv">
!   <dev name="PIT/>
!  </policy>
! </config>
!</start>