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 */ |
Hauke Mehrtens | d1a7a8e | 2012-01-31 00:03:34 +0100 | [diff] [blame] | 16 | int __devinit bcma_bus_register(struct bcma_bus *bus); |
Rafał Miłecki | 440ca98 | 2011-06-18 01:01:59 +0200 | [diff] [blame] | 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 | 775ab52 | 2011-12-09 22:16:07 +0100 | [diff] [blame] | 21 | #ifdef CONFIG_PM |
Linus Torvalds | 685a4ef | 2012-01-13 23:58:40 +0100 | [diff] [blame] | 22 | int bcma_bus_suspend(struct bcma_bus *bus); |
Rafał Miłecki | 775ab52 | 2011-12-09 22:16:07 +0100 | [diff] [blame] | 23 | int bcma_bus_resume(struct bcma_bus *bus); |
| 24 | #endif |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 25 | |
| 26 | /* scan.c */ |
| 27 | int bcma_bus_scan(struct bcma_bus *bus); |
Hauke Mehrtens | 517f43e | 2011-07-23 01:20:07 +0200 | [diff] [blame] | 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); |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 32 | |
Rafał Miłecki | 27f18dc | 2011-06-02 02:08:51 +0200 | [diff] [blame] | 33 | /* sprom.c */ |
| 34 | int bcma_sprom_get(struct bcma_bus *bus); |
| 35 | |
Hauke Mehrtens | e3afe0e | 2011-07-23 01:20:10 +0200 | [diff] [blame] | 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 */ |
| 40 | |
| 41 | /* driver_chipcommon_pmu.c */ |
| 42 | u32 bcma_pmu_alp_clock(struct bcma_drv_cc *cc); |
Hauke Mehrtens | 908debc | 2011-07-23 01:20:11 +0200 | [diff] [blame] | 43 | u32 bcma_pmu_get_clockcpu(struct bcma_drv_cc *cc); |
Hauke Mehrtens | e3afe0e | 2011-07-23 01:20:10 +0200 | [diff] [blame] | 44 | |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 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 */ |
| 50 | |
Hauke Mehrtens | 4b259a5 | 2012-01-31 00:03:33 +0100 | [diff] [blame] | 51 | /* driver_pci.c */ |
| 52 | u32 bcma_pcie_read(struct bcma_drv_pci *pc, u32 address); |
| 53 | |
Rafał Miłecki | 9352f69 | 2011-07-05 19:48:26 +0200 | [diff] [blame] | 54 | #ifdef CONFIG_BCMA_DRIVER_PCI_HOSTMODE |
Hauke Mehrtens | 49dc957 | 2012-01-31 00:03:35 +0100 | [diff] [blame] | 55 | bool __devinit bcma_core_pci_is_in_hostmode(struct bcma_drv_pci *pc); |
Hauke Mehrtens | d1a7a8e | 2012-01-31 00:03:34 +0100 | [diff] [blame] | 56 | void __devinit bcma_core_pci_hostmode_init(struct bcma_drv_pci *pc); |
Rafał Miłecki | 9352f69 | 2011-07-05 19:48:26 +0200 | [diff] [blame] | 57 | #endif /* CONFIG_BCMA_DRIVER_PCI_HOSTMODE */ |
| 58 | |
Rafał Miłecki | 8369ae3 | 2011-05-09 18:56:46 +0200 | [diff] [blame] | 59 | #endif |