blob: 6109da5d883ca7997d900dc1b5f5589819b5d47c [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łecki775ab522011-12-09 22:16:07 +010021#ifdef CONFIG_PM
Linus Torvalds685a4ef2012-01-13 23:58:40 +010022int bcma_bus_suspend(struct bcma_bus *bus);
Rafał Miłecki775ab522011-12-09 22:16:07 +010023int bcma_bus_resume(struct bcma_bus *bus);
24#endif
Rafał Miłecki8369ae32011-05-09 18:56:46 +020025
26/* scan.c */
27int bcma_bus_scan(struct bcma_bus *bus);
Hauke Mehrtens517f43e2011-07-23 01:20:07 +020028int __init bcma_bus_scan_early(struct bcma_bus *bus,
29 struct bcma_device_id *match,
30 struct bcma_device *core);
31void bcma_init_bus(struct bcma_bus *bus);
Rafał Miłecki8369ae32011-05-09 18:56:46 +020032
Rafał Miłecki27f18dc2011-06-02 02:08:51 +020033/* sprom.c */
34int bcma_sprom_get(struct bcma_bus *bus);
35
Hauke Mehrtense3afe0e2011-07-23 01:20:10 +020036/* driver_chipcommon.c */
37#ifdef CONFIG_BCMA_DRIVER_MIPS
38void bcma_chipco_serial_init(struct bcma_drv_cc *cc);
39#endif /* CONFIG_BCMA_DRIVER_MIPS */
40
41/* driver_chipcommon_pmu.c */
42u32 bcma_pmu_alp_clock(struct bcma_drv_cc *cc);
Hauke Mehrtens908debc2011-07-23 01:20:11 +020043u32 bcma_pmu_get_clockcpu(struct bcma_drv_cc *cc);
Hauke Mehrtense3afe0e2011-07-23 01:20:10 +020044
Rafał Miłecki8369ae32011-05-09 18:56:46 +020045#ifdef CONFIG_BCMA_HOST_PCI
46/* host_pci.c */
47extern int __init bcma_host_pci_init(void);
48extern void __exit bcma_host_pci_exit(void);
49#endif /* CONFIG_BCMA_HOST_PCI */
50
Hauke Mehrtens4b259a52012-01-31 00:03:33 +010051/* driver_pci.c */
52u32 bcma_pcie_read(struct bcma_drv_pci *pc, u32 address);
53
Rafał Miłecki9352f692011-07-05 19:48:26 +020054#ifdef CONFIG_BCMA_DRIVER_PCI_HOSTMODE
55void bcma_core_pci_hostmode_init(struct bcma_drv_pci *pc);
56#endif /* CONFIG_BCMA_DRIVER_PCI_HOSTMODE */
57
Rafał Miłecki8369ae32011-05-09 18:56:46 +020058#endif