| Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 1 | #ifndef LINUX_BCMA_PRIVATE_H_ | 
|  | 2 | #define LINUX_BCMA_PRIVATE_H_ | 
|  | 3 |  | 
|  | 4 | #ifndef pr_fmt | 
|  | 5 | #define pr_fmt(fmt)		KBUILD_MODNAME ": " fmt | 
|  | 6 | #endif | 
|  | 7 |  | 
|  | 8 | #include <linux/bcma/bcma.h> | 
|  | 9 | #include <linux/delay.h> | 
|  | 10 |  | 
|  | 11 | #define BCMA_CORE_SIZE		0x1000 | 
|  | 12 |  | 
|  | 13 | struct bcma_bus; | 
|  | 14 |  | 
|  | 15 | /* main.c */ | 
| Rafał Miłecki | 440ca98 | 2011-06-18 01:01:59 +0200 | [diff] [blame] | 16 | int bcma_bus_register(struct bcma_bus *bus); | 
|  | 17 | void bcma_bus_unregister(struct bcma_bus *bus); | 
| Hauke Mehrtens | 517f43e | 2011-07-23 01:20:07 +0200 | [diff] [blame] | 18 | int __init bcma_bus_early_register(struct bcma_bus *bus, | 
|  | 19 | struct bcma_device *core_cc, | 
|  | 20 | struct bcma_device *core_mips); | 
| Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 21 |  | 
|  | 22 | /* scan.c */ | 
|  | 23 | int bcma_bus_scan(struct bcma_bus *bus); | 
| Hauke Mehrtens | 517f43e | 2011-07-23 01:20:07 +0200 | [diff] [blame] | 24 | int __init bcma_bus_scan_early(struct bcma_bus *bus, | 
|  | 25 | struct bcma_device_id *match, | 
|  | 26 | struct bcma_device *core); | 
|  | 27 | void bcma_init_bus(struct bcma_bus *bus); | 
| Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 28 |  | 
| Rafał Miłecki | 27f18dc | 2011-06-02 02:08:51 +0200 | [diff] [blame] | 29 | /* sprom.c */ | 
|  | 30 | int bcma_sprom_get(struct bcma_bus *bus); | 
|  | 31 |  | 
| Hauke Mehrtens | e3afe0e | 2011-07-23 01:20:10 +0200 | [diff] [blame] | 32 | /* driver_chipcommon.c */ | 
|  | 33 | #ifdef CONFIG_BCMA_DRIVER_MIPS | 
|  | 34 | void bcma_chipco_serial_init(struct bcma_drv_cc *cc); | 
|  | 35 | #endif /* CONFIG_BCMA_DRIVER_MIPS */ | 
|  | 36 |  | 
|  | 37 | /* driver_chipcommon_pmu.c */ | 
|  | 38 | u32 bcma_pmu_alp_clock(struct bcma_drv_cc *cc); | 
| Hauke Mehrtens | 908debc | 2011-07-23 01:20:11 +0200 | [diff] [blame] | 39 | u32 bcma_pmu_get_clockcpu(struct bcma_drv_cc *cc); | 
| Hauke Mehrtens | e3afe0e | 2011-07-23 01:20:10 +0200 | [diff] [blame] | 40 |  | 
| Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 41 | #ifdef CONFIG_BCMA_HOST_PCI | 
|  | 42 | /* host_pci.c */ | 
|  | 43 | extern int __init bcma_host_pci_init(void); | 
|  | 44 | extern void __exit bcma_host_pci_exit(void); | 
|  | 45 | #endif /* CONFIG_BCMA_HOST_PCI */ | 
|  | 46 |  | 
| Rafał Miłecki | 9352f69 | 2011-07-05 19:48:26 +0200 | [diff] [blame] | 47 | #ifdef CONFIG_BCMA_DRIVER_PCI_HOSTMODE | 
|  | 48 | void bcma_core_pci_hostmode_init(struct bcma_drv_pci *pc); | 
|  | 49 | #endif /* CONFIG_BCMA_DRIVER_PCI_HOSTMODE */ | 
|  | 50 |  | 
| Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 51 | #endif |