xref: /openbmc/linux/arch/powerpc/platforms/pseries/pseries.h (revision ee1cd5048959de496cd005c50b137212a5b62062)
12874c5fdSThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */
2577830b0SMichael Ellerman /*
3577830b0SMichael Ellerman  * Copyright 2006 IBM Corporation.
4577830b0SMichael Ellerman  */
5577830b0SMichael Ellerman 
6577830b0SMichael Ellerman #ifndef _PSERIES_PSERIES_H
7577830b0SMichael Ellerman #define _PSERIES_PSERIES_H
8577830b0SMichael Ellerman 
932c96f77SMark Nelson #include <linux/interrupt.h>
10999e2dadSNathan Fontenot #include <asm/rtas.h>
1132c96f77SMark Nelson 
1232c96f77SMark Nelson struct device_node;
1332c96f77SMark Nelson 
14e14ff96dSNick Child void __init request_event_sources_irqs(struct device_node *np,
1532c96f77SMark Nelson 				       irq_handler_t handler, const char *name);
1632c96f77SMark Nelson 
1720648974SNathan Fontenot #include <linux/of.h>
1820648974SNathan Fontenot 
19577830b0SMichael Ellerman struct pt_regs;
20577830b0SMichael Ellerman 
21577830b0SMichael Ellerman extern int pSeries_system_reset_exception(struct pt_regs *regs);
22577830b0SMichael Ellerman extern int pSeries_machine_check_exception(struct pt_regs *regs);
23a43c1590SMahesh Salgaonkar extern long pseries_machine_check_realmode(struct pt_regs *regs);
24cc15ff32SGanesh Goudar void pSeries_machine_check_log_err(void);
25577830b0SMichael Ellerman 
268feaeca2SMichael Ellerman #ifdef CONFIG_SMP
2786425bedSRashmica Gupta extern void smp_init_pseries(void);
2816560e88SMichael Ellerman 
2916560e88SMichael Ellerman /* Get state of physical CPU from query_cpu_stopped */
3016560e88SMichael Ellerman int smp_query_cpu_stopped(unsigned int pcpu);
3116560e88SMichael Ellerman #define QCSS_STOPPED 0
3216560e88SMichael Ellerman #define QCSS_STOPPING 1
3316560e88SMichael Ellerman #define QCSS_NOT_STOPPED 2
3416560e88SMichael Ellerman #define QCSS_HARDWARE_ERROR -1
3516560e88SMichael Ellerman #define QCSS_HARDWARE_BUSY -2
368feaeca2SMichael Ellerman #else
smp_init_pseries(void)376c6fdbb2SChengyang Fan static inline void smp_init_pseries(void) { }
388feaeca2SMichael Ellerman #endif
398feaeca2SMichael Ellerman 
40d739d2caSRashmica Gupta extern void pseries_kexec_cpu_down(int crash_shutdown, int secondary);
41dce623e0SMichael Ellerman 
423d5134eeSBenjamin Herrenschmidt extern void pSeries_final_fixup(void);
433d5134eeSBenjamin Herrenschmidt 
445d30bf30SManish Ahuja /* Poweron flag used for enabling auto ups restart */
455d30bf30SManish Ahuja extern unsigned long rtas_poweron_auto;
465d30bf30SManish Ahuja 
4720648974SNathan Fontenot /* Dynamic logical Partitioning/Mobility */
4820648974SNathan Fontenot extern void dlpar_free_cc_nodes(struct device_node *);
4920648974SNathan Fontenot extern void dlpar_free_cc_property(struct property *);
50d6f1e7abSBharata B Rao extern struct device_node *dlpar_configure_connector(__be32,
51d6f1e7abSBharata B Rao 						struct device_node *);
52215ee763SRob Herring extern int dlpar_attach_node(struct device_node *, struct device_node *);
5320648974SNathan Fontenot extern int dlpar_detach_node(struct device_node *);
545e51d3c2SNathan Fontenot extern int dlpar_acquire_drc(u32 drc_index);
555e51d3c2SNathan Fontenot extern int dlpar_release_drc(u32 drc_index);
560e3b3ff8SDaniel Henrique Barboza extern int dlpar_unisolate_drc(u32 drc_index);
5720648974SNathan Fontenot 
58fd12527aSNathan Fontenot void queue_hotplug_event(struct pseries_hp_errorlog *hp_errlog);
59fd12527aSNathan Fontenot int handle_dlpar_errorlog(struct pseries_hp_errorlog *hp_errlog);
60fd12527aSNathan Fontenot 
61999e2dadSNathan Fontenot #ifdef CONFIG_MEMORY_HOTPLUG
62999e2dadSNathan Fontenot int dlpar_memory(struct pseries_hp_errorlog *hp_elog);
634c5d87dbSOliver O'Halloran int dlpar_hp_pmem(struct pseries_hp_errorlog *hp_elog);
64999e2dadSNathan Fontenot #else
dlpar_memory(struct pseries_hp_errorlog * hp_elog)65999e2dadSNathan Fontenot static inline int dlpar_memory(struct pseries_hp_errorlog *hp_elog)
66999e2dadSNathan Fontenot {
67999e2dadSNathan Fontenot 	return -EOPNOTSUPP;
68999e2dadSNathan Fontenot }
dlpar_hp_pmem(struct pseries_hp_errorlog * hp_elog)694c5d87dbSOliver O'Halloran static inline int dlpar_hp_pmem(struct pseries_hp_errorlog *hp_elog)
704c5d87dbSOliver O'Halloran {
714c5d87dbSOliver O'Halloran 	return -EOPNOTSUPP;
724c5d87dbSOliver O'Halloran }
73999e2dadSNathan Fontenot #endif
74577830b0SMichael Ellerman 
75ac713800SNathan Fontenot #ifdef CONFIG_HOTPLUG_CPU
76ac713800SNathan Fontenot int dlpar_cpu(struct pseries_hp_errorlog *hp_elog);
77*3b3a4d0fSMichael Ellerman void pseries_cpu_hotplug_init(void);
78ac713800SNathan Fontenot #else
dlpar_cpu(struct pseries_hp_errorlog * hp_elog)79ac713800SNathan Fontenot static inline int dlpar_cpu(struct pseries_hp_errorlog *hp_elog)
80ac713800SNathan Fontenot {
81ac713800SNathan Fontenot 	return -EOPNOTSUPP;
82ac713800SNathan Fontenot }
pseries_cpu_hotplug_init(void)83*3b3a4d0fSMichael Ellerman static inline void pseries_cpu_hotplug_init(void) { }
84ac713800SNathan Fontenot #endif
85ac713800SNathan Fontenot 
86d82fb31aSKleber Sacilotto de Souza /* PCI root bridge prepare function override for pseries */
87d82fb31aSKleber Sacilotto de Souza struct pci_host_bridge;
88d82fb31aSKleber Sacilotto de Souza int pseries_root_bridge_prepare(struct pci_host_bridge *bridge);
89d82fb31aSKleber Sacilotto de Souza 
9038ae9ec4SDaniel Axtens extern struct pci_controller_ops pseries_pci_controller_ops;
91a5f3d2c1SCédric Le Goater int pseries_msi_allocate_domains(struct pci_controller *phb);
92174db9e7SCédric Le Goater void pseries_msi_free_domains(struct pci_controller *phb);
9338ae9ec4SDaniel Axtens 
948f272a5dSMichael Ellerman extern int CMO_PrPSP;
958f272a5dSMichael Ellerman extern int CMO_SecPSP;
968f272a5dSMichael Ellerman extern unsigned long CMO_PageSize;
978f272a5dSMichael Ellerman 
cmo_get_primary_psp(void)988f272a5dSMichael Ellerman static inline int cmo_get_primary_psp(void)
998f272a5dSMichael Ellerman {
1008f272a5dSMichael Ellerman 	return CMO_PrPSP;
1018f272a5dSMichael Ellerman }
1028f272a5dSMichael Ellerman 
cmo_get_secondary_psp(void)1038f272a5dSMichael Ellerman static inline int cmo_get_secondary_psp(void)
1048f272a5dSMichael Ellerman {
1058f272a5dSMichael Ellerman 	return CMO_SecPSP;
1068f272a5dSMichael Ellerman }
1078f272a5dSMichael Ellerman 
cmo_get_page_size(void)1088f272a5dSMichael Ellerman static inline unsigned long cmo_get_page_size(void)
1098f272a5dSMichael Ellerman {
1108f272a5dSMichael Ellerman 	return CMO_PageSize;
1118f272a5dSMichael Ellerman }
1128f272a5dSMichael Ellerman 
113e2d59152SMichael Ellerman int dlpar_workqueue_init(void);
114e2d59152SMichael Ellerman 
1156ce56e1aSLaurent Dufour extern u32 pseries_security_flavor;
116da631f7fSDaniel Axtens void pseries_setup_security_mitigations(void);
117387e220aSNicholas Piggin 
118387e220aSNicholas Piggin #ifdef CONFIG_PPC_64S_HASH_MMU
1191211ee61SLaurent Dufour void pseries_lpar_read_hblkrm_characteristics(void);
120387e220aSNicholas Piggin #else
pseries_lpar_read_hblkrm_characteristics(void)121387e220aSNicholas Piggin static inline void pseries_lpar_read_hblkrm_characteristics(void) { }
122387e220aSNicholas Piggin #endif
123921bc6cfSMichael Ellerman 
124e561e472SJason A. Donenfeld void pseries_rng_init(void);
125a9409044SAlexey Kardashevskiy #ifdef CONFIG_SPAPR_TCE_IOMMU
126a9409044SAlexey Kardashevskiy struct iommu_group *pSeries_pci_device_group(struct pci_controller *hose,
127a9409044SAlexey Kardashevskiy 					     struct pci_dev *pdev);
128a9409044SAlexey Kardashevskiy #endif
129e561e472SJason A. Donenfeld 
130577830b0SMichael Ellerman #endif /* _PSERIES_PSERIES_H */
131