2011-06-05 01:56:48 +07:00
|
|
|
/*
|
|
|
|
* OpenRISC Linux
|
|
|
|
*
|
|
|
|
* Linux architectural port borrowing liberally from similar works of
|
|
|
|
* others. All original copyrights apply as per the original source
|
|
|
|
* declaration.
|
|
|
|
*
|
|
|
|
* OpenRISC implementation:
|
|
|
|
* Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_OPENRISC_DMA_MAPPING_H
|
|
|
|
#define __ASM_OPENRISC_DMA_MAPPING_H
|
|
|
|
|
|
|
|
/*
|
2011-08-15 07:02:26 +07:00
|
|
|
* See Documentation/DMA-API-HOWTO.txt and
|
2011-06-05 01:56:48 +07:00
|
|
|
* Documentation/DMA-API.txt for documentation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/dma-debug.h>
|
|
|
|
#include <linux/kmemcheck.h>
|
2012-04-16 02:09:25 +07:00
|
|
|
#include <linux/dma-mapping.h>
|
2011-06-05 01:56:48 +07:00
|
|
|
|
|
|
|
#define DMA_ERROR_CODE (~(dma_addr_t)0x0)
|
|
|
|
|
2017-01-21 04:04:01 +07:00
|
|
|
extern const struct dma_map_ops or1k_dma_map_ops;
|
2011-06-05 01:56:48 +07:00
|
|
|
|
2017-01-21 04:04:04 +07:00
|
|
|
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
|
2011-06-05 01:56:48 +07:00
|
|
|
{
|
2012-04-16 02:09:25 +07:00
|
|
|
return &or1k_dma_map_ops;
|
2011-06-05 01:56:48 +07:00
|
|
|
}
|
|
|
|
|
2015-09-10 05:39:49 +07:00
|
|
|
#define HAVE_ARCH_DMA_SUPPORTED 1
|
2011-06-05 01:56:48 +07:00
|
|
|
static inline int dma_supported(struct device *dev, u64 dma_mask)
|
|
|
|
{
|
|
|
|
/* Support 32 bit DMA mask exclusively */
|
2011-09-05 18:47:10 +07:00
|
|
|
return dma_mask == DMA_BIT_MASK(32);
|
|
|
|
}
|
|
|
|
|
2011-06-05 01:56:48 +07:00
|
|
|
#endif /* __ASM_OPENRISC_DMA_MAPPING_H */
|