blob: 12ae33daf52f2a9308918331ac992d0a4cb482ab [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Sam Ravnborga439fe52008-07-27 23:00:59 +02002#ifndef ___ASM_SPARC_DMA_MAPPING_H
3#define ___ASM_SPARC_DMA_MAPPING_H
FUJITA Tomonorid6986412009-05-14 16:23:11 +00004
5#include <linux/scatterlist.h>
6#include <linux/mm.h>
FUJITA Tomonori02f7a182009-08-10 11:53:13 +09007#include <linux/dma-debug.h>
FUJITA Tomonorib9f69f42009-05-14 16:23:08 +00008
Bart Van Assche52997092017-01-20 13:04:01 -08009extern const struct dma_map_ops *dma_ops;
Bart Van Assche52997092017-01-20 13:04:01 -080010extern const struct dma_map_ops pci32_dma_ops;
Sam Ravnborg87e677c2012-05-26 15:56:03 +020011
FUJITA Tomonoriee664a92009-08-10 11:53:16 +090012extern struct bus_type pci_bus_type;
FUJITA Tomonori02f7a182009-08-10 11:53:13 +090013
Bart Van Assche815dd182017-01-20 13:04:04 -080014static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
FUJITA Tomonori02f7a182009-08-10 11:53:13 +090015{
Andreas Larssonb84ca922014-09-08 09:48:52 +020016#ifdef CONFIG_SPARC_LEON
Sam Ravnborg87e677c2012-05-26 15:56:03 +020017 if (sparc_cpu_model == sparc_leon)
Christoph Hellwigc6d333e2017-05-22 09:06:26 +020018 return &pci32_dma_ops;
Andreas Larssonb84ca922014-09-08 09:48:52 +020019#endif
20#if defined(CONFIG_SPARC32) && defined(CONFIG_PCI)
Bart Van Assche815dd182017-01-20 13:04:04 -080021 if (bus == &pci_bus_type)
FUJITA Tomonoriee664a92009-08-10 11:53:16 +090022 return &pci32_dma_ops;
23#endif
FUJITA Tomonori02f7a182009-08-10 11:53:13 +090024 return dma_ops;
25}
26
Sam Ravnborga439fe52008-07-27 23:00:59 +020027#endif