Merge commit 'v3.3-rc1' into stable/for-linus-fixes-3.3
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / bcma / bcma_private.h
blob0def898a1d159c12d2543df6ffd6264932a7affc
1 #ifndef LINUX_BCMA_PRIVATE_H_
2 #define LINUX_BCMA_PRIVATE_H_
4 #ifndef pr_fmt
5 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
6 #endif
8 #include <linux/bcma/bcma.h>
9 #include <linux/delay.h>
11 #define BCMA_CORE_SIZE 0x1000
13 struct bcma_bus;
15 /* main.c */
16 int bcma_bus_register(struct bcma_bus *bus);
17 void bcma_bus_unregister(struct bcma_bus *bus);
18 int __init bcma_bus_early_register(struct bcma_bus *bus,
19 struct bcma_device *core_cc,
20 struct bcma_device *core_mips);
21 #ifdef CONFIG_PM
22 int bcma_bus_suspend(struct bcma_bus *bus);
23 int bcma_bus_resume(struct bcma_bus *bus);
24 #endif
26 /* scan.c */
27 int bcma_bus_scan(struct bcma_bus *bus);
28 int __init bcma_bus_scan_early(struct bcma_bus *bus,
29 struct bcma_device_id *match,
30 struct bcma_device *core);
31 void bcma_init_bus(struct bcma_bus *bus);
33 /* sprom.c */
34 int bcma_sprom_get(struct bcma_bus *bus);
36 /* driver_chipcommon.c */
37 #ifdef CONFIG_BCMA_DRIVER_MIPS
38 void bcma_chipco_serial_init(struct bcma_drv_cc *cc);
39 #endif /* CONFIG_BCMA_DRIVER_MIPS */
41 /* driver_chipcommon_pmu.c */
42 u32 bcma_pmu_alp_clock(struct bcma_drv_cc *cc);
43 u32 bcma_pmu_get_clockcpu(struct bcma_drv_cc *cc);
45 #ifdef CONFIG_BCMA_HOST_PCI
46 /* host_pci.c */
47 extern int __init bcma_host_pci_init(void);
48 extern void __exit bcma_host_pci_exit(void);
49 #endif /* CONFIG_BCMA_HOST_PCI */
51 #ifdef CONFIG_BCMA_DRIVER_PCI_HOSTMODE
52 void bcma_core_pci_hostmode_init(struct bcma_drv_pci *pc);
53 #endif /* CONFIG_BCMA_DRIVER_PCI_HOSTMODE */
55 #endif