blob: e1a858718716f9fafdadfbe0aa9b7b2de1778def [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-or-later */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Copyright 2017 IBM Corp.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004 */
5
6#ifndef _ASM_POWERNV_H
7#define _ASM_POWERNV_H
8
9#ifdef CONFIG_PPC_POWERNV
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000010extern void powernv_set_nmmu_ptcr(unsigned long ptcr);
David Brazdil0f672f62019-12-10 10:32:29 +000011
12void pnv_program_cpu_hotplug_lpcr(unsigned int cpu, u64 lpcr_val);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000013
14void pnv_tm_init(void);
15#else
16static inline void powernv_set_nmmu_ptcr(unsigned long ptcr) { }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000017
18static inline void pnv_tm_init(void) { }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000019#endif
20
21#endif /* _ASM_POWERNV_H */