mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
PCI: mvebu: add support for Marvell Dove SoCs
This patch adds a compatible for the PCIe controller found on Marvell Dove SoCs. Binding documentation and Kconfig entry are also updated. Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
This commit is contained in:
parent
52ba992e20
commit
cc54ccd9a6
3 changed files with 3 additions and 1 deletions
|
@ -5,6 +5,7 @@ Mandatory properties:
|
||||||
- compatible: one of the following values:
|
- compatible: one of the following values:
|
||||||
marvell,armada-370-pcie
|
marvell,armada-370-pcie
|
||||||
marvell,armada-xp-pcie
|
marvell,armada-xp-pcie
|
||||||
|
marvell,dove-pcie
|
||||||
marvell,kirkwood-pcie
|
marvell,kirkwood-pcie
|
||||||
- #address-cells, set to <3>
|
- #address-cells, set to <3>
|
||||||
- #size-cells, set to <2>
|
- #size-cells, set to <2>
|
||||||
|
|
|
@ -3,7 +3,7 @@ menu "PCI host controller drivers"
|
||||||
|
|
||||||
config PCI_MVEBU
|
config PCI_MVEBU
|
||||||
bool "Marvell EBU PCIe controller"
|
bool "Marvell EBU PCIe controller"
|
||||||
depends on ARCH_MVEBU || ARCH_KIRKWOOD
|
depends on ARCH_MVEBU || ARCH_DOVE || ARCH_KIRKWOOD
|
||||||
depends on OF
|
depends on OF
|
||||||
|
|
||||||
config PCIE_DW
|
config PCIE_DW
|
||||||
|
|
|
@ -976,6 +976,7 @@ static int mvebu_pcie_probe(struct platform_device *pdev)
|
||||||
static const struct of_device_id mvebu_pcie_of_match_table[] = {
|
static const struct of_device_id mvebu_pcie_of_match_table[] = {
|
||||||
{ .compatible = "marvell,armada-xp-pcie", },
|
{ .compatible = "marvell,armada-xp-pcie", },
|
||||||
{ .compatible = "marvell,armada-370-pcie", },
|
{ .compatible = "marvell,armada-370-pcie", },
|
||||||
|
{ .compatible = "marvell,dove-pcie", },
|
||||||
{ .compatible = "marvell,kirkwood-pcie", },
|
{ .compatible = "marvell,kirkwood-pcie", },
|
||||||
{},
|
{},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue