-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MIPS: ath79: separate common PCI code
The 'pcibios_map_irq' and 'pcibios_plat_dev_init' are common functions and only instance one of them can be present in a single kernel. Currently these functions can be built only if the CONFIG_SOC_AR724X option is selected. However the ath79 platform contain support for the AR71XX SoCs,. The AR71XX SoCs have a differnet PCI controller, and those will require a different code. Move the common PCI code into a separeate file in order to be able to use that with other SoCs as well. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> Acked-by: René Bolldorf <xsecute@googlemail.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/3485/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
- Loading branch information
Gabor Juhos
authored and
Ralf Baechle
committed
May 15, 2012
1 parent
97bf7a1
commit e2dbdc4
Showing
3 changed files
with
47 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| /* | ||
| * Atheros AR71XX/AR724X specific PCI setup code | ||
| * | ||
| * Copyright (C) 2011 René Bolldorf <xsecute@googlemail.com> | ||
| * | ||
| * This program is free software; you can redistribute it and/or modify it | ||
| * under the terms of the GNU General Public License version 2 as published | ||
| * by the Free Software Foundation. | ||
| */ | ||
|
|
||
| #include <linux/pci.h> | ||
| #include <asm/mach-ath79/pci-ath724x.h> | ||
|
|
||
| static struct ath724x_pci_data *pci_data; | ||
| static int pci_data_size; | ||
|
|
||
| void ath724x_pci_add_data(struct ath724x_pci_data *data, int size) | ||
| { | ||
| pci_data = data; | ||
| pci_data_size = size; | ||
| } | ||
|
|
||
| int __init pcibios_map_irq(const struct pci_dev *dev, uint8_t slot, uint8_t pin) | ||
| { | ||
| unsigned int devfn = dev->devfn; | ||
| int irq = -1; | ||
|
|
||
| if (devfn > pci_data_size - 1) | ||
| return irq; | ||
|
|
||
| irq = pci_data[devfn].irq; | ||
|
|
||
| return irq; | ||
| } | ||
|
|
||
| int pcibios_plat_dev_init(struct pci_dev *dev) | ||
| { | ||
| unsigned int devfn = dev->devfn; | ||
|
|
||
| if (devfn > pci_data_size - 1) | ||
| return PCIBIOS_DEVICE_NOT_FOUND; | ||
|
|
||
| dev->dev.platform_data = pci_data[devfn].pdata; | ||
|
|
||
| return PCIBIOS_SUCCESSFUL; | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters