diff options
Diffstat (limited to 'include/linux/bcma')
-rw-r--r-- | include/linux/bcma/bcma.h | 1 | ||||
-rw-r--r-- | include/linux/bcma/bcma_driver_pci.h | 2 | ||||
-rw-r--r-- | include/linux/bcma/bcma_regs.h | 2 | ||||
-rw-r--r-- | include/linux/bcma/bcma_soc.h | 2 |
4 files changed, 5 insertions, 2 deletions
diff --git a/include/linux/bcma/bcma.h b/include/linux/bcma/bcma.h index eb1c6a47b67f..994739da827f 100644 --- a/include/linux/bcma/bcma.h +++ b/include/linux/bcma/bcma.h | |||
@@ -318,6 +318,7 @@ struct bcma_bus { | |||
318 | const struct bcma_host_ops *ops; | 318 | const struct bcma_host_ops *ops; |
319 | 319 | ||
320 | enum bcma_hosttype hosttype; | 320 | enum bcma_hosttype hosttype; |
321 | bool host_is_pcie2; /* Used for BCMA_HOSTTYPE_PCI only */ | ||
321 | union { | 322 | union { |
322 | /* Pointer to the PCI bus (only for BCMA_HOSTTYPE_PCI) */ | 323 | /* Pointer to the PCI bus (only for BCMA_HOSTTYPE_PCI) */ |
323 | struct pci_dev *host_pci; | 324 | struct pci_dev *host_pci; |
diff --git a/include/linux/bcma/bcma_driver_pci.h b/include/linux/bcma/bcma_driver_pci.h index 0333e605ea0d..3f809ae372c4 100644 --- a/include/linux/bcma/bcma_driver_pci.h +++ b/include/linux/bcma/bcma_driver_pci.h | |||
@@ -223,6 +223,7 @@ struct bcma_drv_pci_host { | |||
223 | 223 | ||
224 | struct bcma_drv_pci { | 224 | struct bcma_drv_pci { |
225 | struct bcma_device *core; | 225 | struct bcma_device *core; |
226 | u8 early_setup_done:1; | ||
226 | u8 setup_done:1; | 227 | u8 setup_done:1; |
227 | u8 hostmode:1; | 228 | u8 hostmode:1; |
228 | 229 | ||
@@ -237,6 +238,7 @@ struct bcma_drv_pci { | |||
237 | #define pcicore_write16(pc, offset, val) bcma_write16((pc)->core, offset, val) | 238 | #define pcicore_write16(pc, offset, val) bcma_write16((pc)->core, offset, val) |
238 | #define pcicore_write32(pc, offset, val) bcma_write32((pc)->core, offset, val) | 239 | #define pcicore_write32(pc, offset, val) bcma_write32((pc)->core, offset, val) |
239 | 240 | ||
241 | extern void bcma_core_pci_early_init(struct bcma_drv_pci *pc); | ||
240 | extern void bcma_core_pci_init(struct bcma_drv_pci *pc); | 242 | extern void bcma_core_pci_init(struct bcma_drv_pci *pc); |
241 | extern int bcma_core_pci_irq_ctl(struct bcma_drv_pci *pc, | 243 | extern int bcma_core_pci_irq_ctl(struct bcma_drv_pci *pc, |
242 | struct bcma_device *core, bool enable); | 244 | struct bcma_device *core, bool enable); |
diff --git a/include/linux/bcma/bcma_regs.h b/include/linux/bcma/bcma_regs.h index e64ae7bf80a1..ebd5c1fcdea4 100644 --- a/include/linux/bcma/bcma_regs.h +++ b/include/linux/bcma/bcma_regs.h | |||
@@ -64,6 +64,8 @@ | |||
64 | #define BCMA_PCI_GPIO_XTAL 0x40 /* PCI config space GPIO 14 for Xtal powerup */ | 64 | #define BCMA_PCI_GPIO_XTAL 0x40 /* PCI config space GPIO 14 for Xtal powerup */ |
65 | #define BCMA_PCI_GPIO_PLL 0x80 /* PCI config space GPIO 15 for PLL powerdown */ | 65 | #define BCMA_PCI_GPIO_PLL 0x80 /* PCI config space GPIO 15 for PLL powerdown */ |
66 | 66 | ||
67 | #define BCMA_PCIE2_BAR0_WIN2 0x70 | ||
68 | |||
67 | /* SiliconBackplane Address Map. | 69 | /* SiliconBackplane Address Map. |
68 | * All regions may not exist on all chips. | 70 | * All regions may not exist on all chips. |
69 | */ | 71 | */ |
diff --git a/include/linux/bcma/bcma_soc.h b/include/linux/bcma/bcma_soc.h index f24d245f8394..1b5fc0c3b1b5 100644 --- a/include/linux/bcma/bcma_soc.h +++ b/include/linux/bcma/bcma_soc.h | |||
@@ -5,8 +5,6 @@ | |||
5 | 5 | ||
6 | struct bcma_soc { | 6 | struct bcma_soc { |
7 | struct bcma_bus bus; | 7 | struct bcma_bus bus; |
8 | struct bcma_device core_cc; | ||
9 | struct bcma_device core_mips; | ||
10 | }; | 8 | }; |
11 | 9 | ||
12 | int __init bcma_host_soc_register(struct bcma_soc *soc); | 10 | int __init bcma_host_soc_register(struct bcma_soc *soc); |