blob: 05daf1038111fbad634806caa6a4ed18b7b8452c [file] [log] [blame]
Aurelien Jacquiot14aa7e82011-10-04 12:17:19 -04001/*
2 * Port on Texas Instruments TMS320C6x architecture
3 *
4 * Copyright (C) 2004, 2009, 2010, 2011 Texas Instruments Incorporated
5 * Author: Aurelien Jacquiot <aurelien.jacquiot@ti.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 */
12#ifndef _ASM_C6X_DMA_MAPPING_H
13#define _ASM_C6X_DMA_MAPPING_H
14
Bart Van Assche52997092017-01-20 13:04:01 -080015extern const struct dma_map_ops c6x_dma_ops;
Christoph Hellwig4605f04b2016-01-20 15:01:35 -080016
Bart Van Assche815dd182017-01-20 13:04:04 -080017static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
Aurelien Jacquiot14aa7e82011-10-04 12:17:19 -040018{
Christoph Hellwig4605f04b2016-01-20 15:01:35 -080019 return &c6x_dma_ops;
Aurelien Jacquiot14aa7e82011-10-04 12:17:19 -040020}
21
Aurelien Jacquiot14aa7e82011-10-04 12:17:19 -040022extern void coherent_mem_init(u32 start, u32 size);
Christoph Hellwig4605f04b2016-01-20 15:01:35 -080023void *c6x_dma_alloc(struct device *dev, size_t size, dma_addr_t *handle,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -070024 gfp_t gfp, unsigned long attrs);
Christoph Hellwig4605f04b2016-01-20 15:01:35 -080025void c6x_dma_free(struct device *dev, size_t size, void *vaddr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -070026 dma_addr_t dma_handle, unsigned long attrs);
Geert Uytterhoeven18180652013-01-27 09:33:22 +000027
Aurelien Jacquiot14aa7e82011-10-04 12:17:19 -040028#endif /* _ASM_C6X_DMA_MAPPING_H */