cregit-Linux how code gets into the kernel

Release 4.7 arch/xtensa/kernel/pci-dma.c

/*
 * DMA coherent memory allocation.
 *
 * 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.
 *
 * Copyright (C) 2002 - 2005 Tensilica Inc.
 * Copyright (C) 2015 Cadence Design Systems Inc.
 *
 * Based on version for i386.
 *
 * Chris Zankel <chris@zankel.net>
 * Joe Taylor <joe@tensilica.com, joetylr@yahoo.com>
 */

#include <linux/gfp.h>
#include <linux/highmem.h>
#include <linux/mm.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/string.h>
#include <linux/types.h>
#include <asm/cacheflush.h>
#include <asm/io.h>


void dma_cache_sync(struct device *dev, void *vaddr, size_t size, enum dma_data_direction dir) { switch (dir) { case DMA_BIDIRECTIONAL: __flush_invalidate_dcache_range((unsigned long)vaddr, size); break; case DMA_FROM_DEVICE: __invalidate_dcache_range((unsigned long)vaddr, size); break; case DMA_TO_DEVICE: __flush_dcache_range((unsigned long)vaddr, size); break; case DMA_NONE: BUG(); break; } }

Contributors

PersonTokensPropCommitsCommitProp
max filippovmax filippov79100.00%1100.00%
Total79100.00%1100.00%

EXPORT_SYMBOL(dma_cache_sync);
static void do_cache_op(dma_addr_t dma_handle, size_t size, void (*fn)(unsigned long, unsigned long)) { unsigned long off = dma_handle & (PAGE_SIZE - 1); unsigned long pfn = PFN_DOWN(dma_handle); struct page *page = pfn_to_page(pfn); if (!PageHighMem(page)) fn((unsigned long)bus_to_virt(dma_handle), size); else while (size > 0) { size_t sz = min_t(size_t, size, PAGE_SIZE - off); void *vaddr = kmap_atomic(page); fn((unsigned long)vaddr + off, sz); kunmap_atomic(vaddr); off = 0; ++page; size -= sz; } }

Contributors

PersonTokensPropCommitsCommitProp
max filippovmax filippov139100.00%1100.00%
Total139100.00%1100.00%


static void xtensa_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle, size_t size, enum dma_data_direction dir) { switch (dir) { case DMA_BIDIRECTIONAL: case DMA_FROM_DEVICE: do_cache_op(dma_handle, size, __invalidate_dcache_range); break; case DMA_NONE: BUG(); break; default: break; } }

Contributors

PersonTokensPropCommitsCommitProp
max filippovmax filippov52100.00%2100.00%
Total52100.00%2100.00%


static void xtensa_sync_single_for_device(struct device *dev, dma_addr_t dma_handle, size_t size, enum dma_data_direction dir) { switch (dir) { case DMA_BIDIRECTIONAL: case DMA_TO_DEVICE: if (XCHAL_DCACHE_IS_WRITEBACK) do_cache_op(dma_handle, size, __flush_dcache_range); break; case DMA_NONE: BUG(); break; default: break; } }

Contributors

PersonTokensPropCommitsCommitProp
max filippovmax filippov56100.00%2100.00%
Total56100.00%2100.00%


static void xtensa_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg, int nents, enum dma_data_direction dir) { struct scatterlist *s; int i; for_each_sg(sg, s, nents, i) { xtensa_sync_single_for_cpu(dev, sg_dma_address(s), sg_dma_len(s), dir); } }

Contributors

PersonTokensPropCommitsCommitProp
max filippovmax filippov60100.00%1100.00%
Total60100.00%1100.00%


static void xtensa_sync_sg_for_device(struct device *dev, struct scatterlist *sg, int nents, enum dma_data_direction dir) { struct scatterlist *s; int i; for_each_sg(sg, s, nents, i) { xtensa_sync_single_for_device(dev, sg_dma_address(s), sg_dma_len(s), dir); } }

Contributors

PersonTokensPropCommitsCommitProp
max filippovmax filippov60100.00%1100.00%
Total60100.00%1100.00%

/* * Note: We assume that the full memory space is always mapped to 'kseg' * Otherwise we have to use page attributes (not implemented). */
static void *xtensa_dma_alloc(struct device *dev, size_t size, dma_addr_t *handle, gfp_t flag, struct dma_attrs *attrs) { unsigned long ret; unsigned long uncached = 0; /* ignore region speicifiers */ flag &= ~(__GFP_DMA | __GFP_HIGHMEM); if (dev == NULL || (dev->coherent_dma_mask < 0xffffffff)) flag |= GFP_DMA; ret = (unsigned long)__get_free_pages(flag, get_order(size)); if (ret == 0) return NULL; /* We currently don't support coherent memory outside KSEG */ BUG_ON(ret < XCHAL_KSEG_CACHED_VADDR || ret > XCHAL_KSEG_CACHED_VADDR + XCHAL_KSEG_SIZE - 1); uncached = ret + XCHAL_KSEG_BYPASS_VADDR - XCHAL_KSEG_CACHED_VADDR; *handle = virt_to_bus((void *)ret); __invalidate_dcache_range(ret, size); return (void *)uncached; }

Contributors

PersonTokensPropCommitsCommitProp
chris zankelchris zankel12387.86%240.00%
max filippovmax filippov139.29%120.00%
alan douglasalan douglas32.14%120.00%
al viroal viro10.71%120.00%
Total140100.00%5100.00%


static void xtensa_dma_free(struct device *hwdev, size_t size, void *vaddr, dma_addr_t dma_handle, struct dma_attrs *attrs) { unsigned long addr = (unsigned long)vaddr + XCHAL_KSEG_CACHED_VADDR - XCHAL_KSEG_BYPASS_VADDR; BUG_ON(addr < XCHAL_KSEG_CACHED_VADDR || addr > XCHAL_KSEG_CACHED_VADDR + XCHAL_KSEG_SIZE - 1); free_pages(addr, get_order(size)); }

Contributors

PersonTokensPropCommitsCommitProp
chris zankelchris zankel4772.31%250.00%
alan douglasalan douglas1116.92%125.00%
max filippovmax filippov710.77%125.00%
Total65100.00%4100.00%


static dma_addr_t xtensa_map_page(struct device *dev, struct page *page, unsigned long offset, size_t size, enum dma_data_direction dir, struct dma_attrs *attrs) { dma_addr_t dma_handle = page_to_phys(page) + offset; xtensa_sync_single_for_device(dev, dma_handle, size, dir); return dma_handle; }

Contributors

PersonTokensPropCommitsCommitProp
max filippovmax filippov56100.00%1100.00%
Total56100.00%1100.00%


static void xtensa_unmap_page(struct device *dev, dma_addr_t dma_handle, size_t size, enum dma_data_direction dir, struct dma_attrs *attrs) { xtensa_sync_single_for_cpu(dev, dma_handle, size, dir); }

Contributors

PersonTokensPropCommitsCommitProp
max filippovmax filippov3081.08%150.00%
chris zankelchris zankel718.92%150.00%
Total37100.00%2100.00%


static int xtensa_map_sg(struct device *dev, struct scatterlist *sg, int nents, enum dma_data_direction dir, struct dma_attrs *attrs) { struct scatterlist *s; int i; for_each_sg(sg, s, nents, i) { s->dma_address = xtensa_map_page(dev, sg_page(s), s->offset, s->length, dir, attrs); } return nents; }

Contributors

PersonTokensPropCommitsCommitProp
max filippovmax filippov6989.61%150.00%
chris zankelchris zankel810.39%150.00%
Total77100.00%2100.00%


static void xtensa_unmap_sg(struct device *dev, struct scatterlist *sg, int nents, enum dma_data_direction dir, struct dma_attrs *attrs) { struct scatterlist *s; int i; for_each_sg(sg, s, nents, i) { xtensa_unmap_page(dev, sg_dma_address(s), sg_dma_len(s), dir, attrs); } }

Contributors

PersonTokensPropCommitsCommitProp
max filippovmax filippov6191.04%150.00%
chris zankelchris zankel68.96%150.00%
Total67100.00%2100.00%


int xtensa_dma_mapping_error(struct device *dev, dma_addr_t dma_addr) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
max filippovmax filippov16100.00%1100.00%
Total16100.00%1100.00%

struct dma_map_ops xtensa_dma_map_ops = { .alloc = xtensa_dma_alloc, .free = xtensa_dma_free, .map_page = xtensa_map_page, .unmap_page = xtensa_unmap_page, .map_sg = xtensa_map_sg, .unmap_sg = xtensa_unmap_sg, .sync_single_for_cpu = xtensa_sync_single_for_cpu, .sync_single_for_device = xtensa_sync_single_for_device, .sync_sg_for_cpu = xtensa_sync_sg_for_cpu, .sync_sg_for_device = xtensa_sync_sg_for_device, .mapping_error = xtensa_dma_mapping_error, }; EXPORT_SYMBOL(xtensa_dma_map_ops); #define PREALLOC_DMA_DEBUG_ENTRIES (1 << 16)
static int __init xtensa_dma_init(void) { dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
max filippovmax filippov17100.00%1100.00%
Total17100.00%1100.00%

fs_initcall(xtensa_dma_init);

Overall Contributors

PersonTokensPropCommitsCommitProp
max filippovmax filippov80778.35%337.50%
chris zankelchris zankel20620.00%225.00%
alan douglasalan douglas141.36%112.50%
tejun heotejun heo20.19%112.50%
al viroal viro10.10%112.50%
Total1030100.00%8100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}