mirror of
https://github.com/analogdevicesinc/linux.git
synced 2026-05-30 00:55:04 +08:00
Currently vring_use_dma_api always returns true when Linux is running on Xen due to a xen_domain check in vring_use_dma_api. This patch makes the check more flexible. Introduce a static inline function xen_vring_use_dma that returns true when dma_api should be used (override) and false when leaving it to the default. Return true only for x86 PV guests and false otherwise. Only PV guests benefit from forcing dma_api because they need special phys-machine address translations. Other guests cannot do special address translations anyway, so there is no point in force-enabling dma_api, especially when some drivers (e.g. RPMesg) are known not to work with dma_api. Signed-off-by: Ben Levinsky <ben.levinsky@xilinx.com> Signed-off-by: Stefano Stabellini <stefano.stabellini@xilinx.com> Suggested-by: Stefano Stabellini <stefano.stabellini@xilinx.com> Link: https://lore.kernel.org/r/20200624091732.23944-1-peng.fan@nxp.com Link: https://lore.kernel.org/r/20200711144334-mutt-send-email-mst@kernel.org State: waiting
100 lines
2.4 KiB
C
100 lines
2.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _XEN_XEN_H
|
|
#define _XEN_XEN_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
enum xen_domain_type {
|
|
XEN_NATIVE, /* running on bare hardware */
|
|
XEN_PV_DOMAIN, /* running in a PV domain */
|
|
XEN_HVM_DOMAIN, /* running in a Xen hvm domain */
|
|
};
|
|
|
|
#ifdef CONFIG_XEN
|
|
extern enum xen_domain_type xen_domain_type;
|
|
#else
|
|
#define xen_domain_type XEN_NATIVE
|
|
#endif
|
|
|
|
#ifdef CONFIG_XEN_PVH
|
|
extern bool xen_pvh;
|
|
#else
|
|
#define xen_pvh 0
|
|
#endif
|
|
|
|
#define xen_domain() (xen_domain_type != XEN_NATIVE)
|
|
#define xen_pv_domain() (xen_domain_type == XEN_PV_DOMAIN)
|
|
#define xen_hvm_domain() (xen_domain_type == XEN_HVM_DOMAIN)
|
|
#define xen_pvh_domain() (xen_pvh)
|
|
|
|
extern uint32_t xen_start_flags;
|
|
|
|
#ifdef CONFIG_XEN_PV
|
|
extern bool xen_pv_pci_possible;
|
|
#else
|
|
#define xen_pv_pci_possible 0
|
|
#endif
|
|
|
|
#include <xen/interface/hvm/start_info.h>
|
|
extern struct hvm_start_info pvh_start_info;
|
|
void xen_prepare_pvh(void);
|
|
struct pt_regs;
|
|
void xen_pv_evtchn_do_upcall(struct pt_regs *regs);
|
|
|
|
#ifdef CONFIG_XEN_DOM0
|
|
#include <xen/interface/xen.h>
|
|
#include <asm/xen/hypervisor.h>
|
|
|
|
#define xen_initial_domain() (xen_domain() && \
|
|
(xen_start_flags & SIF_INITDOMAIN))
|
|
#else /* !CONFIG_XEN_DOM0 */
|
|
#define xen_initial_domain() (0)
|
|
#endif /* CONFIG_XEN_DOM0 */
|
|
|
|
struct bio_vec;
|
|
struct page;
|
|
|
|
bool xen_biovec_phys_mergeable(const struct bio_vec *vec1,
|
|
const struct page *page);
|
|
|
|
#if defined(CONFIG_MEMORY_HOTPLUG) && defined(CONFIG_XEN_BALLOON)
|
|
extern u64 xen_saved_max_mem_size;
|
|
#endif
|
|
|
|
#ifdef CONFIG_XEN_UNPOPULATED_ALLOC
|
|
int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
|
|
void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
|
|
#include <linux/ioport.h>
|
|
int arch_xen_unpopulated_init(struct resource **res);
|
|
#else
|
|
#include <xen/balloon.h>
|
|
static inline int xen_alloc_unpopulated_pages(unsigned int nr_pages,
|
|
struct page **pages)
|
|
{
|
|
return xen_alloc_ballooned_pages(nr_pages, pages);
|
|
}
|
|
static inline void xen_free_unpopulated_pages(unsigned int nr_pages,
|
|
struct page **pages)
|
|
{
|
|
xen_free_ballooned_pages(nr_pages, pages);
|
|
}
|
|
#endif
|
|
|
|
#if defined(CONFIG_XEN_DOM0) && defined(CONFIG_ACPI) && defined(CONFIG_X86)
|
|
bool __init xen_processor_present(uint32_t acpi_id);
|
|
#else
|
|
#include <linux/bug.h>
|
|
static inline bool xen_processor_present(uint32_t acpi_id)
|
|
{
|
|
BUG();
|
|
return false;
|
|
}
|
|
#endif
|
|
|
|
static inline int xen_vring_use_dma(void)
|
|
{
|
|
return xen_pv_domain();
|
|
}
|
|
|
|
#endif /* _XEN_XEN_H */
|