]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/bcma/bcma_private.h
bcma: support for suspend and resume
[mirror_ubuntu-bionic-kernel.git] / drivers / bcma / bcma_private.h
CommitLineData
8369ae33
RM
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
13struct bcma_bus;
14
15/* main.c */
440ca98f
RM
16int bcma_bus_register(struct bcma_bus *bus);
17void bcma_bus_unregister(struct bcma_bus *bus);
517f43e5
HM
18int __init bcma_bus_early_register(struct bcma_bus *bus,
19 struct bcma_device *core_cc,
20 struct bcma_device *core_mips);
775ab521
RM
21#ifdef CONFIG_PM
22int bcma_bus_resume(struct bcma_bus *bus);
23#endif
8369ae33
RM
24
25/* scan.c */
26int bcma_bus_scan(struct bcma_bus *bus);
517f43e5
HM
27int __init bcma_bus_scan_early(struct bcma_bus *bus,
28 struct bcma_device_id *match,
29 struct bcma_device *core);
30void bcma_init_bus(struct bcma_bus *bus);
8369ae33 31
27f18dc2
RM
32/* sprom.c */
33int bcma_sprom_get(struct bcma_bus *bus);
34
e3afe0e5
HM
35/* driver_chipcommon.c */
36#ifdef CONFIG_BCMA_DRIVER_MIPS
37void bcma_chipco_serial_init(struct bcma_drv_cc *cc);
38#endif /* CONFIG_BCMA_DRIVER_MIPS */
39
40/* driver_chipcommon_pmu.c */
41u32 bcma_pmu_alp_clock(struct bcma_drv_cc *cc);
908debc8 42u32 bcma_pmu_get_clockcpu(struct bcma_drv_cc *cc);
e3afe0e5 43
8369ae33
RM
44#ifdef CONFIG_BCMA_HOST_PCI
45/* host_pci.c */
46extern int __init bcma_host_pci_init(void);
47extern void __exit bcma_host_pci_exit(void);
48#endif /* CONFIG_BCMA_HOST_PCI */
49
9352f69c
RM
50#ifdef CONFIG_BCMA_DRIVER_PCI_HOSTMODE
51void bcma_core_pci_hostmode_init(struct bcma_drv_pci *pc);
52#endif /* CONFIG_BCMA_DRIVER_PCI_HOSTMODE */
53
8369ae33 54#endif