pseries.h 2.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * Copyright 2006 IBM Corporation.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

#ifndef _PSERIES_PSERIES_H
#define _PSERIES_PSERIES_H

13
#include <linux/interrupt.h>
14
#include <asm/rtas.h>
15 16 17 18 19 20

struct device_node;

extern void request_event_sources_irqs(struct device_node *np,
				       irq_handler_t handler, const char *name);

21 22
#include <linux/of.h>

23 24 25 26
extern void __init fw_hypertas_feature_init(const char *hypertas,
					    unsigned long len);
extern void __init fw_vec5_feature_init(const char *hypertas,
					unsigned long len);
27 28 29 30 31 32

struct pt_regs;

extern int pSeries_system_reset_exception(struct pt_regs *regs);
extern int pSeries_machine_check_exception(struct pt_regs *regs);

33 34 35 36
#ifdef CONFIG_SMP
extern void smp_init_pseries_mpic(void);
extern void smp_init_pseries_xics(void);
#else
S
Stephen Rothwell 已提交
37 38
static inline void smp_init_pseries_mpic(void) { };
static inline void smp_init_pseries_xics(void) { };
39 40
#endif

41 42 43 44
#ifdef CONFIG_KEXEC
extern void setup_kexec_cpu_down_xics(void);
extern void setup_kexec_cpu_down_mpic(void);
#else
45 46
static inline void setup_kexec_cpu_down_xics(void) { }
static inline void setup_kexec_cpu_down_mpic(void) { }
47 48
#endif

49 50
extern void pSeries_final_fixup(void);

51 52 53
/* Poweron flag used for enabling auto ups restart */
extern unsigned long rtas_poweron_auto;

54 55
/* Provided by HVC VIO */
extern void hvc_vio_init_early(void);
56

57 58 59
/* Dynamic logical Partitioning/Mobility */
extern void dlpar_free_cc_nodes(struct device_node *);
extern void dlpar_free_cc_property(struct property *);
60 61
extern struct device_node *dlpar_configure_connector(__be32,
						struct device_node *);
62 63
extern int dlpar_attach_node(struct device_node *);
extern int dlpar_detach_node(struct device_node *);
64 65
extern int dlpar_acquire_drc(u32 drc_index);
extern int dlpar_release_drc(u32 drc_index);
66

67 68 69 70 71 72 73 74
#ifdef CONFIG_MEMORY_HOTPLUG
int dlpar_memory(struct pseries_hp_errorlog *hp_elog);
#else
static inline int dlpar_memory(struct pseries_hp_errorlog *hp_elog)
{
	return -EOPNOTSUPP;
}
#endif
75

76 77 78 79
/* PCI root bridge prepare function override for pseries */
struct pci_host_bridge;
int pseries_root_bridge_prepare(struct pci_host_bridge *bridge);

80 81
extern struct pci_controller_ops pseries_pci_controller_ops;

82 83
unsigned long pseries_memory_block_size(void);

84
#endif /* _PSERIES_PSERIES_H */