diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2015-02-08 17:11:47 +0100 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2015-03-02 16:59:45 +0200 |
commit | 4186721d02b71ae943e60bbf50d3488fd5fd6adb (patch) | |
tree | 7623f94d3baa042f5090780bb285f5be1e6ff847 /include/linux/bcma/bcma.h | |
parent | ba8b6ae6e91ed4d866f83b026138cc75a955e101 (diff) | |
download | op-kernel-dev-4186721d02b71ae943e60bbf50d3488fd5fd6adb.zip op-kernel-dev-4186721d02b71ae943e60bbf50d3488fd5fd6adb.tar.gz |
bcma: add helpers bringing PCIe hosted bus up / down
Bringing PCIe hosted bus up requires operating on host-related core.
Since we plan to support PCIe Gen 2 devices we should provide a helper
picking the correct one (PCIE or PCIE2).
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'include/linux/bcma/bcma.h')
-rw-r--r-- | include/linux/bcma/bcma.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/bcma/bcma.h b/include/linux/bcma/bcma.h index 994739d..037620b 100644 --- a/include/linux/bcma/bcma.h +++ b/include/linux/bcma/bcma.h @@ -434,6 +434,9 @@ static inline struct bcma_device *bcma_find_core(struct bcma_bus *bus, return bcma_find_core_unit(bus, coreid, 0); } +extern void bcma_host_pci_up(struct bcma_bus *bus); +extern void bcma_host_pci_down(struct bcma_bus *bus); + extern bool bcma_core_is_enabled(struct bcma_device *core); extern void bcma_core_disable(struct bcma_device *core, u32 flags); extern int bcma_core_enable(struct bcma_device *core, u32 flags); |