2011-09-20 01:44:52 +08:00
|
|
|
#ifndef _POWERNV_H
|
|
|
|
#define _POWERNV_H
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
extern void pnv_smp_init(void);
|
|
|
|
#else
|
|
|
|
static inline void pnv_smp_init(void) { }
|
|
|
|
#endif
|
|
|
|
|
2014-02-11 08:32:38 +08:00
|
|
|
struct pci_dev;
|
|
|
|
|
2011-09-20 01:45:05 +08:00
|
|
|
#ifdef CONFIG_PCI
|
|
|
|
extern void pnv_pci_init(void);
|
2013-05-10 14:59:18 +08:00
|
|
|
extern void pnv_pci_shutdown(void);
|
2014-09-30 10:39:10 +08:00
|
|
|
extern u64 pnv_pci_dma_get_required_mask(struct pci_dev *pdev);
|
2011-09-20 01:45:05 +08:00
|
|
|
#else
|
|
|
|
static inline void pnv_pci_init(void) { }
|
2013-05-10 14:59:18 +08:00
|
|
|
static inline void pnv_pci_shutdown(void) { }
|
2014-02-11 08:32:38 +08:00
|
|
|
|
2014-09-30 10:39:10 +08:00
|
|
|
static inline u64 pnv_pci_dma_get_required_mask(struct pci_dev *pdev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2011-09-20 01:45:05 +08:00
|
|
|
#endif
|
|
|
|
|
2014-12-10 02:56:51 +08:00
|
|
|
extern u32 pnv_get_supported_cpuidle_states(void);
|
|
|
|
|
2013-07-15 11:03:11 +08:00
|
|
|
extern void pnv_lpc_init(void);
|
|
|
|
|
2015-05-15 12:06:37 +08:00
|
|
|
extern void opal_handle_events(uint64_t events);
|
|
|
|
extern void opal_event_shutdown(void);
|
|
|
|
|
2014-05-23 16:15:30 +08:00
|
|
|
bool cpu_core_split_required(void);
|
|
|
|
|
2011-09-20 01:44:52 +08:00
|
|
|
#endif /* _POWERNV_H */
|