2019-05-27 14:55:01 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2005-10-26 19:53:19 +08:00
|
|
|
#ifndef _ASM_POWERPC_MACHDEP_H
|
|
|
|
#define _ASM_POWERPC_MACHDEP_H
|
2005-10-19 21:11:21 +08:00
|
|
|
#ifdef __KERNEL__
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/dma-mapping.h>
|
2011-07-29 14:19:31 +08:00
|
|
|
#include <linux/export.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <asm/setup.h>
|
|
|
|
|
2005-10-19 21:11:21 +08:00
|
|
|
/* We export this macro for external modules like Alsa to know if
|
|
|
|
* ppc_md.feature_call is implemented or not
|
|
|
|
*/
|
|
|
|
#define CONFIG_PPC_HAS_FEATURE_CALLS
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
struct pt_regs;
|
|
|
|
struct pci_bus;
|
|
|
|
struct device_node;
|
|
|
|
struct iommu_table;
|
|
|
|
struct rtc_time;
|
|
|
|
struct file;
|
2006-11-11 14:25:08 +08:00
|
|
|
struct pci_controller;
|
[PATCH] powerpc: Merge kexec
This patch merges, to some extent, the PPC32 and PPC64 kexec implementations.
We adopt the PPC32 approach of having ppc_md callbacks for the kexec functions.
The current PPC64 implementation becomes the "default" implementation for PPC64
which platforms can select if they need no special treatment.
I've added these default callbacks to pseries/maple/cell/powermac, this means
iSeries no longer supports kexec - but it never worked anyway.
I've renamed PPC32's machine_kexec_simple to default_machine_kexec, inline with
PPC64. Judging by the comments it might be better named machine_kexec_non_of,
or something, but at the moment it's the only implementation for PPC32 so it's
the "default".
Kexec requires machine_shutdown(), which is in machine_kexec.c on PPC32, but we
already have in setup-common.c on powerpc. All this does is call
ppc_md.nvram_sync, which only powermac implements, so instead make
machine_shutdown a ppc_md member and have it call core99_nvram_sync directly
on powermac.
I've also stuck relocate_kernel.S into misc_32.S for powerpc.
Built for ARCH=ppc, and 32 & 64 bit ARCH=powerpc, with KEXEC=y/n. Booted on
P5 LPAR and successfully kexec'ed.
Should apply on top of 493f25ef4087395891c99fcfe2c72e62e293e89f.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
2005-11-14 20:35:00 +08:00
|
|
|
struct kimage;
|
2013-05-03 20:43:12 +08:00
|
|
|
struct pci_host_bridge;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
struct machdep_calls {
|
2006-03-28 20:15:54 +08:00
|
|
|
char *name;
|
2005-10-19 21:11:21 +08:00
|
|
|
#ifdef CONFIG_PPC64
|
2007-05-03 20:28:32 +08:00
|
|
|
#ifdef CONFIG_PM
|
|
|
|
void (*iommu_save)(void);
|
|
|
|
void (*iommu_restore)(void);
|
|
|
|
#endif
|
2014-06-04 15:50:47 +08:00
|
|
|
#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
|
|
|
|
unsigned long (*memory_block_size)(void);
|
|
|
|
#endif
|
2006-03-28 20:15:54 +08:00
|
|
|
#endif /* CONFIG_PPC64 */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2019-02-13 15:01:22 +08:00
|
|
|
void (*dma_set_mask)(struct device *dev, u64 dma_mask);
|
2010-08-31 03:23:52 +08:00
|
|
|
|
2006-03-28 20:15:54 +08:00
|
|
|
int (*probe)(void);
|
2007-10-11 02:48:18 +08:00
|
|
|
void (*setup_arch)(void); /* Optional, may be NULL */
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Optional, may be NULL. */
|
2005-10-20 15:02:01 +08:00
|
|
|
void (*show_cpuinfo)(struct seq_file *m);
|
|
|
|
void (*show_percpuinfo)(struct seq_file *m, int i);
|
2014-03-11 19:31:18 +08:00
|
|
|
/* Returns the current operating frequency of "cpu" in Hz */
|
|
|
|
unsigned long (*get_proc_freq)(unsigned int cpu);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
void (*init_IRQ)(void);
|
2009-04-22 23:31:38 +08:00
|
|
|
|
2016-09-06 19:53:24 +08:00
|
|
|
/* Return an irq, or 0 to indicate there are none pending. */
|
2006-10-07 20:08:26 +08:00
|
|
|
unsigned int (*get_irq)(void);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* PCI stuff */
|
2015-02-13 12:16:32 +08:00
|
|
|
/* Called after allocating resources */
|
2005-04-17 06:20:36 +08:00
|
|
|
void (*pcibios_fixup)(void);
|
2006-11-11 14:24:51 +08:00
|
|
|
void (*pci_irq_fixup)(struct pci_dev *dev);
|
2013-05-03 20:43:12 +08:00
|
|
|
int (*pcibios_root_bridge_prepare)(struct pci_host_bridge
|
|
|
|
*bridge);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2024-06-11 20:26:44 +08:00
|
|
|
/* finds all the pci_controllers present at boot */
|
|
|
|
void (*discover_phbs)(void);
|
|
|
|
|
2006-11-11 14:25:08 +08:00
|
|
|
/* To setup PHBs when using automatic OF platform driver for PCI */
|
|
|
|
int (*pci_setup_phb)(struct pci_controller *host);
|
|
|
|
|
2016-07-12 08:54:52 +08:00
|
|
|
void __noreturn (*restart)(char *cmd);
|
|
|
|
void __noreturn (*halt)(void);
|
2017-12-04 13:27:25 +08:00
|
|
|
void (*panic)(char *str);
|
2005-04-17 06:20:36 +08:00
|
|
|
void (*cpu_die)(void);
|
|
|
|
|
2005-10-19 21:11:21 +08:00
|
|
|
long (*time_init)(void); /* Optional, may be NULL */
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
int (*set_rtc_time)(struct rtc_time *);
|
|
|
|
void (*get_rtc_time)(struct rtc_time *);
|
2018-04-23 16:36:40 +08:00
|
|
|
time64_t (*get_boot_time)(void);
|
2005-10-19 21:11:21 +08:00
|
|
|
unsigned char (*rtc_read_val)(int addr);
|
|
|
|
void (*rtc_write_val)(int addr, unsigned char val);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
void (*calibrate_decr)(void);
|
|
|
|
|
|
|
|
void (*progress)(char *, unsigned short);
|
|
|
|
|
|
|
|
/* Interface for platform error logging */
|
|
|
|
void (*log_error)(char *buf, unsigned int err_type, int fatal);
|
|
|
|
|
2005-10-22 14:02:39 +08:00
|
|
|
unsigned char (*nvram_read_val)(int addr);
|
|
|
|
void (*nvram_write_val)(int addr, unsigned char val);
|
2005-04-17 06:20:36 +08:00
|
|
|
ssize_t (*nvram_write)(char *buf, size_t count, loff_t *index);
|
|
|
|
ssize_t (*nvram_read)(char *buf, size_t count, loff_t *index);
|
|
|
|
ssize_t (*nvram_size)(void);
|
2005-10-19 21:11:21 +08:00
|
|
|
void (*nvram_sync)(void);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Exception handlers */
|
2006-01-05 03:55:53 +08:00
|
|
|
int (*system_reset_exception)(struct pt_regs *regs);
|
2005-04-17 06:20:36 +08:00
|
|
|
int (*machine_check_exception)(struct pt_regs *regs);
|
2014-07-29 21:10:01 +08:00
|
|
|
int (*handle_hmi_exception)(struct pt_regs *regs);
|
|
|
|
|
|
|
|
/* Early exception handlers called in realmode */
|
|
|
|
int (*hmi_exception_early)(struct pt_regs *regs);
|
2018-09-11 22:27:00 +08:00
|
|
|
long (*machine_check_early)(struct pt_regs *regs);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-12-16 13:16:24 +08:00
|
|
|
/* Called during machine check exception to retrive fixup address. */
|
|
|
|
bool (*mce_check_early_recovery)(struct pt_regs *regs);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Motherboard/chipset features. This is a kind of general purpose
|
|
|
|
* hook used to control some machine specific features (like reset
|
|
|
|
* lines, chip power control, etc...).
|
|
|
|
*/
|
|
|
|
long (*feature_call)(unsigned int feature, ...);
|
|
|
|
|
|
|
|
/* Get legacy PCI/IDE interrupt mapping */
|
|
|
|
int (*pci_get_legacy_ide_irq)(struct pci_dev *dev, int channel);
|
|
|
|
|
|
|
|
/* Get access protection for /dev/mem */
|
|
|
|
pgprot_t (*phys_mem_access_prot)(struct file *file,
|
2005-10-29 08:46:18 +08:00
|
|
|
unsigned long pfn,
|
2005-04-17 06:20:36 +08:00
|
|
|
unsigned long size,
|
|
|
|
pgprot_t vma_prot);
|
|
|
|
|
2006-03-27 12:03:03 +08:00
|
|
|
/*
|
|
|
|
* Function for waiting for work with reduced power in idle loop;
|
|
|
|
* called with interrupts disabled.
|
|
|
|
*/
|
|
|
|
void (*power_save)(void);
|
|
|
|
|
2005-10-19 21:11:21 +08:00
|
|
|
/* Function to enable performance monitor counters for this
|
|
|
|
platform, called once per cpu. */
|
2005-08-09 09:13:36 +08:00
|
|
|
void (*enable_pmcs)(void);
|
2005-10-19 21:11:21 +08:00
|
|
|
|
2016-02-25 02:51:11 +08:00
|
|
|
/* Set DABR for this platform, leave empty for default implementation */
|
2012-09-07 05:24:56 +08:00
|
|
|
int (*set_dabr)(unsigned long dabr,
|
|
|
|
unsigned long dabrx);
|
2005-11-07 10:12:03 +08:00
|
|
|
|
2016-02-25 02:51:11 +08:00
|
|
|
/* Set DAWR for this platform, leave empty for default implementation */
|
2012-12-20 22:06:45 +08:00
|
|
|
int (*set_dawr)(unsigned long dawr,
|
|
|
|
unsigned long dawrx);
|
|
|
|
|
2005-10-19 21:11:21 +08:00
|
|
|
#ifdef CONFIG_PPC32 /* XXX for now */
|
|
|
|
/* A general init function, called by ppc_init in init/main.c.
|
|
|
|
May be NULL. */
|
|
|
|
void (*init)(void);
|
|
|
|
|
|
|
|
void (*kgdb_map_scc)(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* optional PCI "hooks"
|
|
|
|
*/
|
|
|
|
/* Called at then very end of pcibios_init() */
|
|
|
|
void (*pcibios_after_init)(void);
|
|
|
|
|
[PATCH] powerpc: Merge kexec
This patch merges, to some extent, the PPC32 and PPC64 kexec implementations.
We adopt the PPC32 approach of having ppc_md callbacks for the kexec functions.
The current PPC64 implementation becomes the "default" implementation for PPC64
which platforms can select if they need no special treatment.
I've added these default callbacks to pseries/maple/cell/powermac, this means
iSeries no longer supports kexec - but it never worked anyway.
I've renamed PPC32's machine_kexec_simple to default_machine_kexec, inline with
PPC64. Judging by the comments it might be better named machine_kexec_non_of,
or something, but at the moment it's the only implementation for PPC32 so it's
the "default".
Kexec requires machine_shutdown(), which is in machine_kexec.c on PPC32, but we
already have in setup-common.c on powerpc. All this does is call
ppc_md.nvram_sync, which only powermac implements, so instead make
machine_shutdown a ppc_md member and have it call core99_nvram_sync directly
on powermac.
I've also stuck relocate_kernel.S into misc_32.S for powerpc.
Built for ARCH=ppc, and 32 & 64 bit ARCH=powerpc, with KEXEC=y/n. Booted on
P5 LPAR and successfully kexec'ed.
Should apply on top of 493f25ef4087395891c99fcfe2c72e62e293e89f.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
2005-11-14 20:35:00 +08:00
|
|
|
#endif /* CONFIG_PPC32 */
|
2005-10-19 21:11:21 +08:00
|
|
|
|
2009-08-26 00:20:45 +08:00
|
|
|
/* Called in indirect_* to avoid touching devices */
|
|
|
|
int (*pci_exclude_device)(struct pci_controller *, unsigned char, unsigned char);
|
|
|
|
|
2007-12-20 11:54:51 +08:00
|
|
|
/* Called after PPC generic resource fixup to perform
|
|
|
|
machine specific fixups */
|
|
|
|
void (*pcibios_fixup_resources)(struct pci_dev *);
|
|
|
|
|
|
|
|
/* Called for each PCI bus in the system when it's probed */
|
|
|
|
void (*pcibios_fixup_bus)(struct pci_bus *);
|
|
|
|
|
2011-11-07 02:55:57 +08:00
|
|
|
/* Called after scan and before resource survey */
|
|
|
|
void (*pcibios_fixup_phb)(struct pci_controller *hose);
|
|
|
|
|
2017-11-09 22:00:33 +08:00
|
|
|
/*
|
|
|
|
* Called after device has been added to bus and
|
|
|
|
* before sysfs has been created.
|
|
|
|
*/
|
|
|
|
void (*pcibios_bus_add_device)(struct pci_dev *pdev);
|
|
|
|
|
2017-04-10 19:58:13 +08:00
|
|
|
resource_size_t (*pcibios_default_alignment)(void);
|
|
|
|
|
2015-03-25 16:23:55 +08:00
|
|
|
#ifdef CONFIG_PCI_IOV
|
|
|
|
void (*pcibios_fixup_sriov)(struct pci_dev *pdev);
|
2015-03-25 16:23:56 +08:00
|
|
|
resource_size_t (*pcibios_iov_resource_alignment)(struct pci_dev *, int resno);
|
2017-11-09 22:00:33 +08:00
|
|
|
int (*pcibios_sriov_enable)(struct pci_dev *pdev, u16 num_vfs);
|
|
|
|
int (*pcibios_sriov_disable)(struct pci_dev *pdev);
|
2015-03-25 16:23:55 +08:00
|
|
|
#endif /* CONFIG_PCI_IOV */
|
|
|
|
|
2005-10-19 21:11:21 +08:00
|
|
|
/* Called to shutdown machine specific hardware not already controlled
|
|
|
|
* by other drivers.
|
|
|
|
*/
|
|
|
|
void (*machine_shutdown)(void);
|
|
|
|
|
2016-11-29 20:45:50 +08:00
|
|
|
#ifdef CONFIG_KEXEC_CORE
|
2011-01-07 01:54:15 +08:00
|
|
|
void (*kexec_cpu_down)(int crash_shutdown, int secondary);
|
|
|
|
|
2005-10-19 21:11:21 +08:00
|
|
|
/* Called to do what every setup is needed on image and the
|
|
|
|
* reboot code buffer. Returns 0 on success.
|
|
|
|
* Provide your own (maybe dummy) implementation if your platform
|
|
|
|
* claims to support kexec.
|
|
|
|
*/
|
|
|
|
int (*machine_kexec_prepare)(struct kimage *image);
|
2011-02-23 20:46:16 +08:00
|
|
|
|
|
|
|
/* Called to perform the _real_ kexec.
|
|
|
|
* Do NOT allocate memory or fail here. We are past the point of
|
|
|
|
* no return.
|
|
|
|
*/
|
|
|
|
void (*machine_kexec)(struct kimage *image);
|
2016-11-29 20:45:50 +08:00
|
|
|
#endif /* CONFIG_KEXEC_CORE */
|
2007-12-13 01:35:19 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_SUSPEND
|
|
|
|
/* These are called to disable and enable, respectively, IRQs when
|
|
|
|
* entering a suspend state. If NULL, then the generic versions
|
|
|
|
* will be called. The generic versions disable/enable the
|
|
|
|
* decrementer along with interrupts.
|
|
|
|
*/
|
|
|
|
void (*suspend_disable_irqs)(void);
|
|
|
|
void (*suspend_enable_irqs)(void);
|
|
|
|
#endif
|
2010-07-07 20:31:02 +08:00
|
|
|
int (*suspend_disable_cpu)(void);
|
2009-11-26 01:23:25 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
|
|
|
|
ssize_t (*cpu_probe)(const char *, size_t);
|
|
|
|
ssize_t (*cpu_release)(const char *, size_t);
|
|
|
|
#endif
|
2013-10-11 11:07:57 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_RANDOM
|
2015-07-17 18:11:43 +08:00
|
|
|
int (*get_random_seed)(unsigned long *v);
|
2013-10-11 11:07:57 +08:00
|
|
|
#endif
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2008-06-19 05:26:52 +08:00
|
|
|
extern void e500_idle(void);
|
2006-03-27 12:03:03 +08:00
|
|
|
extern void power4_idle(void);
|
2011-01-24 15:42:41 +08:00
|
|
|
extern void power7_idle(void);
|
2017-06-13 21:05:45 +08:00
|
|
|
extern void power9_idle(void);
|
2006-03-27 12:03:03 +08:00
|
|
|
extern void ppc6xx_idle(void);
|
2010-07-14 12:12:16 +08:00
|
|
|
extern void book3e_idle(void);
|
2005-07-08 08:56:28 +08:00
|
|
|
|
2006-03-28 20:15:54 +08:00
|
|
|
/*
|
|
|
|
* ppc_md contains a copy of the machine description structure for the
|
|
|
|
* current platform. machine_id contains the initial address where the
|
|
|
|
* description was found during boot.
|
|
|
|
*/
|
2005-04-17 06:20:36 +08:00
|
|
|
extern struct machdep_calls ppc_md;
|
2006-03-28 20:15:54 +08:00
|
|
|
extern struct machdep_calls *machine_id;
|
|
|
|
|
|
|
|
#define __machine_desc __attribute__ ((__section__ (".machine.desc")))
|
|
|
|
|
2006-04-23 08:42:04 +08:00
|
|
|
#define define_machine(name) \
|
|
|
|
extern struct machdep_calls mach_##name; \
|
|
|
|
EXPORT_SYMBOL(mach_##name); \
|
|
|
|
struct machdep_calls mach_##name __machine_desc =
|
|
|
|
|
2006-03-28 20:15:54 +08:00
|
|
|
#define machine_is(name) \
|
|
|
|
({ \
|
|
|
|
extern struct machdep_calls mach_##name \
|
|
|
|
__attribute__((weak)); \
|
|
|
|
machine_id == &mach_##name; \
|
|
|
|
})
|
|
|
|
|
|
|
|
extern void probe_machine(void);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifdef CONFIG_PPC_PMAC
|
|
|
|
/*
|
|
|
|
* Power macintoshes have either a CUDA, PMU or SMU controlling
|
|
|
|
* system reset, power, NVRAM, RTC.
|
|
|
|
*/
|
|
|
|
typedef enum sys_ctrler_kind {
|
|
|
|
SYS_CTRLER_UNKNOWN = 0,
|
|
|
|
SYS_CTRLER_CUDA = 1,
|
|
|
|
SYS_CTRLER_PMU = 2,
|
|
|
|
SYS_CTRLER_SMU = 3,
|
|
|
|
} sys_ctrler_t;
|
|
|
|
extern sys_ctrler_t sys_ctrler;
|
|
|
|
|
|
|
|
#endif /* CONFIG_PPC_PMAC */
|
|
|
|
|
|
|
|
static inline void log_error(char *buf, unsigned int err_type, int fatal)
|
|
|
|
{
|
|
|
|
if (ppc_md.log_error)
|
|
|
|
ppc_md.log_error(buf, err_type, fatal);
|
|
|
|
}
|
|
|
|
|
2012-12-18 07:59:32 +08:00
|
|
|
#define __define_machine_initcall(mach, fn, id) \
|
2007-12-02 14:10:28 +08:00
|
|
|
static int __init __machine_initcall_##mach##_##fn(void) { \
|
|
|
|
if (machine_is(mach)) return fn(); \
|
|
|
|
return 0; \
|
|
|
|
} \
|
2012-12-18 07:59:32 +08:00
|
|
|
__define_initcall(__machine_initcall_##mach##_##fn, id);
|
|
|
|
|
2014-07-15 20:22:23 +08:00
|
|
|
#define machine_early_initcall(mach, fn) __define_machine_initcall(mach, fn, early)
|
2012-12-18 07:59:32 +08:00
|
|
|
#define machine_core_initcall(mach, fn) __define_machine_initcall(mach, fn, 1)
|
|
|
|
#define machine_core_initcall_sync(mach, fn) __define_machine_initcall(mach, fn, 1s)
|
|
|
|
#define machine_postcore_initcall(mach, fn) __define_machine_initcall(mach, fn, 2)
|
|
|
|
#define machine_postcore_initcall_sync(mach, fn) __define_machine_initcall(mach, fn, 2s)
|
|
|
|
#define machine_arch_initcall(mach, fn) __define_machine_initcall(mach, fn, 3)
|
|
|
|
#define machine_arch_initcall_sync(mach, fn) __define_machine_initcall(mach, fn, 3s)
|
|
|
|
#define machine_subsys_initcall(mach, fn) __define_machine_initcall(mach, fn, 4)
|
|
|
|
#define machine_subsys_initcall_sync(mach, fn) __define_machine_initcall(mach, fn, 4s)
|
|
|
|
#define machine_fs_initcall(mach, fn) __define_machine_initcall(mach, fn, 5)
|
|
|
|
#define machine_fs_initcall_sync(mach, fn) __define_machine_initcall(mach, fn, 5s)
|
|
|
|
#define machine_rootfs_initcall(mach, fn) __define_machine_initcall(mach, fn, rootfs)
|
|
|
|
#define machine_device_initcall(mach, fn) __define_machine_initcall(mach, fn, 6)
|
|
|
|
#define machine_device_initcall_sync(mach, fn) __define_machine_initcall(mach, fn, 6s)
|
|
|
|
#define machine_late_initcall(mach, fn) __define_machine_initcall(mach, fn, 7)
|
|
|
|
#define machine_late_initcall_sync(mach, fn) __define_machine_initcall(mach, fn, 7s)
|
2007-12-02 14:10:28 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif /* __KERNEL__ */
|
2005-10-26 19:53:19 +08:00
|
|
|
#endif /* _ASM_POWERPC_MACHDEP_H */
|