blob: b97633d0d237ee4a5b7adcb4d3ed692d3b1abe0d [file] [log] [blame]
Rafał Miłecki8369ae32011-05-09 18:56:46 +02001#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
13struct bcma_bus;
14
15/* main.c */
Rafał Miłecki440ca982011-06-18 01:01:59 +020016int bcma_bus_register(struct bcma_bus *bus);
17void bcma_bus_unregister(struct bcma_bus *bus);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +020018int __init bcma_bus_early_register(struct bcma_bus *bus,
19 struct bcma_device *core_cc,
20 struct bcma_device *core_mips);
Rafał Miłecki8369ae32011-05-09 18:56:46 +020021
22/* scan.c */
23int bcma_bus_scan(struct bcma_bus *bus);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +020024int __init bcma_bus_scan_early(struct bcma_bus *bus,
25 struct bcma_device_id *match,
26 struct bcma_device *core);
27void bcma_init_bus(struct bcma_bus *bus);
Rafał Miłecki8369ae32011-05-09 18:56:46 +020028
Rafał Miłecki27f18dc2011-06-02 02:08:51 +020029/* sprom.c */
30int bcma_sprom_get(struct bcma_bus *bus);
31
Rafał Miłecki8369ae32011-05-09 18:56:46 +020032#ifdef CONFIG_BCMA_HOST_PCI
33/* host_pci.c */
34extern int __init bcma_host_pci_init(void);
35extern void __exit bcma_host_pci_exit(void);
36#endif /* CONFIG_BCMA_HOST_PCI */
37
Rafał Miłecki9352f692011-07-05 19:48:26 +020038#ifdef CONFIG_BCMA_DRIVER_PCI_HOSTMODE
39void bcma_core_pci_hostmode_init(struct bcma_drv_pci *pc);
40#endif /* CONFIG_BCMA_DRIVER_PCI_HOSTMODE */
41
Rafał Miłecki8369ae32011-05-09 18:56:46 +020042#endif