2019-07-18 07:33:56 +00:00
|
|
|
.. SPDX-License-Identifier: GPL-2.0+
|
|
|
|
|
2015-03-05 19:25:25 +00:00
|
|
|
PCI with Driver Model
|
|
|
|
=====================
|
|
|
|
|
|
|
|
How busses are scanned
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
Any config read will end up at pci_read_config(). This uses
|
|
|
|
uclass_get_device_by_seq() to get the PCI bus for a particular bus number.
|
2015-07-27 07:33:43 +00:00
|
|
|
Bus number 0 will need to be requested first, and the alias in the device
|
2019-07-18 07:33:56 +00:00
|
|
|
tree file will point to the correct device::
|
2015-03-05 19:25:25 +00:00
|
|
|
|
|
|
|
aliases {
|
2020-02-11 17:41:23 +00:00
|
|
|
pci0 = &pcic;
|
2015-03-05 19:25:25 +00:00
|
|
|
};
|
|
|
|
|
2020-02-11 17:41:23 +00:00
|
|
|
pcic: pci@0 {
|
2015-03-05 19:25:25 +00:00
|
|
|
compatible = "sandbox,pci";
|
|
|
|
...
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
If there is no alias the devices will be numbered sequentially in the device
|
|
|
|
tree.
|
|
|
|
|
2015-07-27 07:33:43 +00:00
|
|
|
The call to uclass_get_device() will cause the PCI bus to be probed.
|
2015-03-05 19:25:25 +00:00
|
|
|
This does a scan of the bus to locate available devices. These devices are
|
|
|
|
bound to their appropriate driver if available. If there is no driver, then
|
|
|
|
they are bound to a generic PCI driver which does nothing.
|
|
|
|
|
|
|
|
After probing a bus, the available devices will appear in the device tree
|
|
|
|
under that bus.
|
|
|
|
|
|
|
|
Note that this is all done on a lazy basis, as needed, so until something is
|
2015-07-27 07:33:43 +00:00
|
|
|
touched on PCI (eg: a call to pci_find_devices()) it will not be probed.
|
2015-03-05 19:25:25 +00:00
|
|
|
|
2018-10-10 19:27:07 +00:00
|
|
|
PCI devices can appear in the flattened device tree. If they do, their node
|
|
|
|
often contains extra information which cannot be derived from the PCI IDs or
|
|
|
|
PCI class of the device. Each PCI device node must have a <reg> property, as
|
|
|
|
defined by the IEEE Std 1275-1994 PCI bus binding document v2.1. Compatible
|
|
|
|
string list is optional and generally not needed, since PCI is discoverable
|
|
|
|
bus, albeit there are justified exceptions. If the compatible string is
|
|
|
|
present, matching on it takes precedence over PCI IDs and PCI classes.
|
|
|
|
|
|
|
|
Note we must describe PCI devices with the same bus hierarchy as the
|
2015-08-24 08:14:04 +00:00
|
|
|
hardware, otherwise driver model cannot detect the correct parent/children
|
|
|
|
relationship during PCI bus enumeration thus PCI devices won't be bound to
|
2019-07-18 07:33:56 +00:00
|
|
|
their drivers accordingly. A working example like below::
|
2015-08-24 08:14:04 +00:00
|
|
|
|
|
|
|
pci {
|
|
|
|
#address-cells = <3>;
|
|
|
|
#size-cells = <2>;
|
|
|
|
compatible = "pci-x86";
|
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
ranges = <0x02000000 0x0 0x40000000 0x40000000 0 0x80000000
|
|
|
|
0x42000000 0x0 0xc0000000 0xc0000000 0 0x20000000
|
|
|
|
0x01000000 0x0 0x2000 0x2000 0 0xe000>;
|
|
|
|
|
|
|
|
pcie@17,0 {
|
|
|
|
#address-cells = <3>;
|
|
|
|
#size-cells = <2>;
|
|
|
|
compatible = "pci-bridge";
|
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
reg = <0x0000b800 0x0 0x0 0x0 0x0>;
|
|
|
|
|
|
|
|
topcliff@0,0 {
|
|
|
|
#address-cells = <3>;
|
|
|
|
#size-cells = <2>;
|
|
|
|
compatible = "pci-bridge";
|
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
reg = <0x00010000 0x0 0x0 0x0 0x0>;
|
|
|
|
|
|
|
|
pciuart0: uart@a,1 {
|
|
|
|
compatible = "pci8086,8811.00",
|
|
|
|
"pci8086,8811",
|
|
|
|
"pciclass,070002",
|
|
|
|
"pciclass,0700",
|
|
|
|
"x86-uart";
|
|
|
|
u-boot,dm-pre-reloc;
|
|
|
|
reg = <0x00025100 0x0 0x0 0x0 0x0
|
|
|
|
0x01025110 0x0 0x0 0x0 0x0>;
|
|
|
|
......
|
|
|
|
};
|
|
|
|
|
|
|
|
......
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
......
|
|
|
|
};
|
|
|
|
|
|
|
|
In this example, the root PCI bus node is the "/pci" which matches "pci-x86"
|
|
|
|
driver. It has a subnode "pcie@17,0" with driver "pci-bridge". "pcie@17,0"
|
|
|
|
also has subnode "topcliff@0,0" which is a "pci-bridge" too. Under that bridge,
|
|
|
|
a PCI UART device "uart@a,1" is described. This exactly reflects the hardware
|
|
|
|
bus hierarchy: on the root PCI bus, there is a PCIe root port which connects
|
|
|
|
to a downstream device Topcliff chipset. Inside Topcliff chipset, it has a
|
|
|
|
PCIe-to-PCI bridge and all the chipset integrated devices like the PCI UART
|
|
|
|
device are on the PCI bus. Like other devices in the device tree, if we want
|
|
|
|
to bind PCI devices before relocation, "u-boot,dm-pre-reloc" must be declared
|
|
|
|
in each of these nodes.
|
|
|
|
|
|
|
|
If PCI devices are not listed in the device tree, U_BOOT_PCI_DEVICE can be used
|
|
|
|
to specify the driver to use for the device. The device tree takes precedence
|
2019-09-25 14:56:14 +00:00
|
|
|
over U_BOOT_PCI_DEVICE. Please note with U_BOOT_PCI_DEVICE, only drivers with
|
2015-08-24 08:14:04 +00:00
|
|
|
DM_FLAG_PRE_RELOC will be bound before relocation. If neither device tree nor
|
|
|
|
U_BOOT_PCI_DEVICE is provided, the built-in driver (either pci_bridge_drv or
|
|
|
|
pci_generic_drv) will be used.
|
2015-03-05 19:25:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
Sandbox
|
|
|
|
-------
|
|
|
|
|
|
|
|
With sandbox we need a device emulator for each device on the bus since there
|
pci: sandbox: Move the emulators into their own node
Sandbox pci works using emulation drivers which are currently children of
the pci device:
pci-controller {
pci@1f,0 {
compatible = "pci-generic";
reg = <0xf800 0 0 0 0>;
emul@1f,0 {
compatible = "sandbox,swap-case";
};
};
};
In this case the emulation device is attached to pci device on address
f800 (device 1f, function 0) and provides the swap-case functionality.
However this is not ideal, since every device on a PCI bus has a child
device. This is only really the case for sandbox, but we want to avoid
special-case code for sandbox.
Worse, child devices cannot be probed before their parents. This forces
us to use 'find' rather than 'get' to obtain the emulator device. In fact
the emulator devices are never probed. There is code in
sandbox_pci_emul_post_probe() which tries to track when emulators are
active, but at present this does not work.
A better approach seems to be to add a separate node elsewhere in the
device tree, an 'emulation parent'. This could be given a bogus address
(such as -1) to hide the emulators away from the 'pci' command, but it
seems better to keep it at the root node to avoid such hacks.
Then we can use a phandle to point from the device to the correct
emulator, and only on sandbox. The code to find an emulator does not
interfere with normal pci operation.
Add a new UCLASS_PCI_EMUL_PARENT uclass which allows finding an emulator
given a bus, and finding a bus given an emulator. Update the existing
device trees and the code for finding an emulator.
This brings PCI emulators more into line with I2C.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tested-by: Bin Meng <bmeng.cn@gmail.com>
[bmeng: fix 3 typos in the commit message;
encode bus number in the labels of swap_case_emul nodes;
mention commit 4345998ae9df in sandbox_pci_get_emul()]
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
2019-09-25 14:56:10 +00:00
|
|
|
is no real PCI bus. This works by looking in the device tree node for an
|
|
|
|
emulator driver. For example::
|
2015-03-05 19:25:25 +00:00
|
|
|
|
|
|
|
pci@1f,0 {
|
|
|
|
compatible = "pci-generic";
|
|
|
|
reg = <0xf800 0 0 0 0>;
|
pci: sandbox: Move the emulators into their own node
Sandbox pci works using emulation drivers which are currently children of
the pci device:
pci-controller {
pci@1f,0 {
compatible = "pci-generic";
reg = <0xf800 0 0 0 0>;
emul@1f,0 {
compatible = "sandbox,swap-case";
};
};
};
In this case the emulation device is attached to pci device on address
f800 (device 1f, function 0) and provides the swap-case functionality.
However this is not ideal, since every device on a PCI bus has a child
device. This is only really the case for sandbox, but we want to avoid
special-case code for sandbox.
Worse, child devices cannot be probed before their parents. This forces
us to use 'find' rather than 'get' to obtain the emulator device. In fact
the emulator devices are never probed. There is code in
sandbox_pci_emul_post_probe() which tries to track when emulators are
active, but at present this does not work.
A better approach seems to be to add a separate node elsewhere in the
device tree, an 'emulation parent'. This could be given a bogus address
(such as -1) to hide the emulators away from the 'pci' command, but it
seems better to keep it at the root node to avoid such hacks.
Then we can use a phandle to point from the device to the correct
emulator, and only on sandbox. The code to find an emulator does not
interfere with normal pci operation.
Add a new UCLASS_PCI_EMUL_PARENT uclass which allows finding an emulator
given a bus, and finding a bus given an emulator. Update the existing
device trees and the code for finding an emulator.
This brings PCI emulators more into line with I2C.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tested-by: Bin Meng <bmeng.cn@gmail.com>
[bmeng: fix 3 typos in the commit message;
encode bus number in the labels of swap_case_emul nodes;
mention commit 4345998ae9df in sandbox_pci_get_emul()]
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
2019-09-25 14:56:10 +00:00
|
|
|
sandbox,emul = <&emul_1f>;
|
|
|
|
};
|
|
|
|
pci-emul {
|
|
|
|
compatible = "sandbox,pci-emul-parent";
|
|
|
|
emul_1f: emul@1f,0 {
|
2015-03-05 19:25:25 +00:00
|
|
|
compatible = "sandbox,swap-case";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
This means that there is a 'sandbox,swap-case' driver at that bus position.
|
|
|
|
Note that the first cell in the 'reg' value is the bus/device/function. See
|
|
|
|
PCI_BDF() for the encoding (it is also specified in the IEEE Std 1275-1994
|
|
|
|
PCI bus binding document, v2.1)
|
|
|
|
|
pci: sandbox: Move the emulators into their own node
Sandbox pci works using emulation drivers which are currently children of
the pci device:
pci-controller {
pci@1f,0 {
compatible = "pci-generic";
reg = <0xf800 0 0 0 0>;
emul@1f,0 {
compatible = "sandbox,swap-case";
};
};
};
In this case the emulation device is attached to pci device on address
f800 (device 1f, function 0) and provides the swap-case functionality.
However this is not ideal, since every device on a PCI bus has a child
device. This is only really the case for sandbox, but we want to avoid
special-case code for sandbox.
Worse, child devices cannot be probed before their parents. This forces
us to use 'find' rather than 'get' to obtain the emulator device. In fact
the emulator devices are never probed. There is code in
sandbox_pci_emul_post_probe() which tries to track when emulators are
active, but at present this does not work.
A better approach seems to be to add a separate node elsewhere in the
device tree, an 'emulation parent'. This could be given a bogus address
(such as -1) to hide the emulators away from the 'pci' command, but it
seems better to keep it at the root node to avoid such hacks.
Then we can use a phandle to point from the device to the correct
emulator, and only on sandbox. The code to find an emulator does not
interfere with normal pci operation.
Add a new UCLASS_PCI_EMUL_PARENT uclass which allows finding an emulator
given a bus, and finding a bus given an emulator. Update the existing
device trees and the code for finding an emulator.
This brings PCI emulators more into line with I2C.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tested-by: Bin Meng <bmeng.cn@gmail.com>
[bmeng: fix 3 typos in the commit message;
encode bus number in the labels of swap_case_emul nodes;
mention commit 4345998ae9df in sandbox_pci_get_emul()]
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
2019-09-25 14:56:10 +00:00
|
|
|
The pci-emul node should go outside the pci bus node, since otherwise it will
|
|
|
|
be scanned as a PCI device, causing confusion.
|
|
|
|
|
2019-07-18 07:33:56 +00:00
|
|
|
When this bus is scanned we will end up with something like this::
|
2015-03-05 19:25:25 +00:00
|
|
|
|
2020-02-11 17:41:23 +00:00
|
|
|
`- * pci@0 @ 05c660c8, 0
|
2019-07-18 07:33:56 +00:00
|
|
|
`- pci@1f,0 @ 05c661c8, 63488
|
pci: sandbox: Move the emulators into their own node
Sandbox pci works using emulation drivers which are currently children of
the pci device:
pci-controller {
pci@1f,0 {
compatible = "pci-generic";
reg = <0xf800 0 0 0 0>;
emul@1f,0 {
compatible = "sandbox,swap-case";
};
};
};
In this case the emulation device is attached to pci device on address
f800 (device 1f, function 0) and provides the swap-case functionality.
However this is not ideal, since every device on a PCI bus has a child
device. This is only really the case for sandbox, but we want to avoid
special-case code for sandbox.
Worse, child devices cannot be probed before their parents. This forces
us to use 'find' rather than 'get' to obtain the emulator device. In fact
the emulator devices are never probed. There is code in
sandbox_pci_emul_post_probe() which tries to track when emulators are
active, but at present this does not work.
A better approach seems to be to add a separate node elsewhere in the
device tree, an 'emulation parent'. This could be given a bogus address
(such as -1) to hide the emulators away from the 'pci' command, but it
seems better to keep it at the root node to avoid such hacks.
Then we can use a phandle to point from the device to the correct
emulator, and only on sandbox. The code to find an emulator does not
interfere with normal pci operation.
Add a new UCLASS_PCI_EMUL_PARENT uclass which allows finding an emulator
given a bus, and finding a bus given an emulator. Update the existing
device trees and the code for finding an emulator.
This brings PCI emulators more into line with I2C.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tested-by: Bin Meng <bmeng.cn@gmail.com>
[bmeng: fix 3 typos in the commit message;
encode bus number in the labels of swap_case_emul nodes;
mention commit 4345998ae9df in sandbox_pci_get_emul()]
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
2019-09-25 14:56:10 +00:00
|
|
|
`- emul@1f,0 @ 05c662c8
|
2015-03-05 19:25:25 +00:00
|
|
|
|
pci: sandbox: Move the emulators into their own node
Sandbox pci works using emulation drivers which are currently children of
the pci device:
pci-controller {
pci@1f,0 {
compatible = "pci-generic";
reg = <0xf800 0 0 0 0>;
emul@1f,0 {
compatible = "sandbox,swap-case";
};
};
};
In this case the emulation device is attached to pci device on address
f800 (device 1f, function 0) and provides the swap-case functionality.
However this is not ideal, since every device on a PCI bus has a child
device. This is only really the case for sandbox, but we want to avoid
special-case code for sandbox.
Worse, child devices cannot be probed before their parents. This forces
us to use 'find' rather than 'get' to obtain the emulator device. In fact
the emulator devices are never probed. There is code in
sandbox_pci_emul_post_probe() which tries to track when emulators are
active, but at present this does not work.
A better approach seems to be to add a separate node elsewhere in the
device tree, an 'emulation parent'. This could be given a bogus address
(such as -1) to hide the emulators away from the 'pci' command, but it
seems better to keep it at the root node to avoid such hacks.
Then we can use a phandle to point from the device to the correct
emulator, and only on sandbox. The code to find an emulator does not
interfere with normal pci operation.
Add a new UCLASS_PCI_EMUL_PARENT uclass which allows finding an emulator
given a bus, and finding a bus given an emulator. Update the existing
device trees and the code for finding an emulator.
This brings PCI emulators more into line with I2C.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tested-by: Bin Meng <bmeng.cn@gmail.com>
[bmeng: fix 3 typos in the commit message;
encode bus number in the labels of swap_case_emul nodes;
mention commit 4345998ae9df in sandbox_pci_get_emul()]
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
2019-09-25 14:56:10 +00:00
|
|
|
When accesses go to the pci@1f,0 device they are forwarded to its emulator.
|
2018-08-03 08:14:45 +00:00
|
|
|
|
|
|
|
The sandbox PCI drivers also support dynamic driver binding, allowing device
|
|
|
|
driver to declare the driver binding information via U_BOOT_PCI_DEVICE(),
|
|
|
|
eliminating the need to provide any device tree node under the host controller
|
|
|
|
node. It is required a "sandbox,dev-info" property must be provided in the
|
|
|
|
host controller node for this functionality to work.
|
|
|
|
|
2019-07-18 07:33:56 +00:00
|
|
|
.. code-block:: none
|
|
|
|
|
2020-02-11 17:41:23 +00:00
|
|
|
pci1: pci@1 {
|
2018-08-03 08:14:45 +00:00
|
|
|
compatible = "sandbox,pci";
|
|
|
|
...
|
|
|
|
sandbox,dev-info = <0x08 0x00 0x1234 0x5678
|
|
|
|
0x0c 0x00 0x1234 0x5678>;
|
|
|
|
};
|
|
|
|
|
|
|
|
The "sandbox,dev-info" property specifies all dynamic PCI devices on this bus.
|
|
|
|
Each dynamic PCI device is encoded as 4 cells a group. The first and second
|
|
|
|
cells are PCI device number and function number respectively. The third and
|
|
|
|
fourth cells are PCI vendor ID and device ID respectively.
|
|
|
|
|
2019-07-18 07:33:56 +00:00
|
|
|
When this bus is scanned we will end up with something like this::
|
2018-08-03 08:14:45 +00:00
|
|
|
|
2020-02-11 17:41:23 +00:00
|
|
|
pci [ + ] pci_sandbo |-- pci1
|
2018-08-03 08:14:45 +00:00
|
|
|
pci_emul [ ] sandbox_sw | |-- sandbox_swap_case_emul
|
|
|
|
pci_emul [ ] sandbox_sw | `-- sandbox_swap_case_emul
|