cregit-Linux how code gets into the kernel

Release 4.10 arch/c6x/kernel/dma.c

Directory: arch/c6x/kernel
/*
 *  Copyright (C) 2011 Texas Instruments Incorporated
 *  Author: Mark Salter <msalter@redhat.com>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 */
#include <linux/module.h>
#include <linux/dma-mapping.h>
#include <linux/mm.h>
#include <linux/mm_types.h>
#include <linux/scatterlist.h>

#include <asm/cacheflush.h>


static void c6x_dma_sync(dma_addr_t handle, size_t size, enum dma_data_direction dir) { unsigned long paddr = handle; BUG_ON(!valid_dma_direction(dir)); switch (dir) { case DMA_FROM_DEVICE: L2_cache_block_invalidate(paddr, paddr + size); break; case DMA_TO_DEVICE: L2_cache_block_writeback(paddr, paddr + size); break; case DMA_BIDIRECTIONAL: L2_cache_block_writeback_invalidate(paddr, paddr + size); break; default: break; } }

Contributors

PersonTokensPropCommitsCommitProp
aurelien jacquiotaurelien jacquiot78100.00%1100.00%
Total78100.00%1100.00%


static dma_addr_t c6x_dma_map_page(struct device *dev, struct page *page, unsigned long offset, size_t size, enum dma_data_direction dir, unsigned long attrs) { dma_addr_t handle = virt_to_phys(page_address(page) + offset); if (!(attrs & DMA_ATTR_SKIP_CPU_SYNC)) c6x_dma_sync(handle, size, dir); return handle; }

Contributors

PersonTokensPropCommitsCommitProp
aurelien jacquiotaurelien jacquiot3452.31%125.00%
christoph hellwigchristoph hellwig2030.77%125.00%
alexander duyckalexander duyck913.85%125.00%
krzysztof kozlowskikrzysztof kozlowski23.08%125.00%
Total65100.00%4100.00%


static void c6x_dma_unmap_page(struct device *dev, dma_addr_t handle, size_t size, enum dma_data_direction dir, unsigned long attrs) { if (!(attrs & DMA_ATTR_SKIP_CPU_SYNC)) c6x_dma_sync(handle, size, dir); }

Contributors

PersonTokensPropCommitsCommitProp
aurelien jacquiotaurelien jacquiot2865.12%125.00%
alexander duyckalexander duyck920.93%125.00%
christoph hellwigchristoph hellwig49.30%125.00%
krzysztof kozlowskikrzysztof kozlowski24.65%125.00%
Total43100.00%4100.00%


static int c6x_dma_map_sg(struct device *dev, struct scatterlist *sglist, int nents, enum dma_data_direction dir, unsigned long attrs) { struct scatterlist *sg; int i; for_each_sg(sglist, sg, nents, i) { sg->dma_address = sg_phys(sg); if (!(attrs & DMA_ATTR_SKIP_CPU_SYNC)) c6x_dma_sync(sg->dma_address, sg->length, dir); } return nents; }

Contributors

PersonTokensPropCommitsCommitProp
aurelien jacquiotaurelien jacquiot5770.37%125.00%
christoph hellwigchristoph hellwig1316.05%125.00%
alexander duyckalexander duyck911.11%125.00%
krzysztof kozlowskikrzysztof kozlowski22.47%125.00%
Total81100.00%4100.00%


static void c6x_dma_unmap_sg(struct device *dev, struct scatterlist *sglist, int nents, enum dma_data_direction dir, unsigned long attrs) { struct scatterlist *sg; int i; if (attrs & DMA_ATTR_SKIP_CPU_SYNC) return; for_each_sg(sglist, sg, nents, i) c6x_dma_sync(sg_dma_address(sg), sg->length, dir); }

Contributors

PersonTokensPropCommitsCommitProp
aurelien jacquiotaurelien jacquiot5278.79%125.00%
alexander duyckalexander duyck710.61%125.00%
christoph hellwigchristoph hellwig57.58%125.00%
krzysztof kozlowskikrzysztof kozlowski23.03%125.00%
Total66100.00%4100.00%


static void c6x_dma_sync_single_for_cpu(struct device *dev, dma_addr_t handle, size_t size, enum dma_data_direction dir) { c6x_dma_sync(handle, size, dir); }

Contributors

PersonTokensPropCommitsCommitProp
aurelien jacquiotaurelien jacquiot2893.33%150.00%
christoph hellwigchristoph hellwig26.67%150.00%
Total30100.00%2100.00%


static void c6x_dma_sync_single_for_device(struct device *dev, dma_addr_t handle, size_t size, enum dma_data_direction dir) { c6x_dma_sync(handle, size, dir); }

Contributors

PersonTokensPropCommitsCommitProp
aurelien jacquiotaurelien jacquiot2893.33%150.00%
christoph hellwigchristoph hellwig26.67%150.00%
Total30100.00%2100.00%


static void c6x_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sglist, int nents, enum dma_data_direction dir) { struct scatterlist *sg; int i; for_each_sg(sglist, sg, nents, i) c6x_dma_sync_single_for_cpu(dev, sg_dma_address(sg), sg->length, dir); }

Contributors

PersonTokensPropCommitsCommitProp
aurelien jacquiotaurelien jacquiot5494.74%150.00%
christoph hellwigchristoph hellwig35.26%150.00%
Total57100.00%2100.00%


static void c6x_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sglist, int nents, enum dma_data_direction dir) { struct scatterlist *sg; int i; for_each_sg(sglist, sg, nents, i) c6x_dma_sync_single_for_device(dev, sg_dma_address(sg), sg->length, dir); }

Contributors

PersonTokensPropCommitsCommitProp
aurelien jacquiotaurelien jacquiot5494.74%150.00%
christoph hellwigchristoph hellwig35.26%150.00%
Total57100.00%2100.00%

struct dma_map_ops c6x_dma_ops = { .alloc = c6x_dma_alloc, .free = c6x_dma_free, .map_page = c6x_dma_map_page, .unmap_page = c6x_dma_unmap_page, .map_sg = c6x_dma_map_sg, .unmap_sg = c6x_dma_unmap_sg, .sync_single_for_device = c6x_dma_sync_single_for_device, .sync_single_for_cpu = c6x_dma_sync_single_for_cpu, .sync_sg_for_device = c6x_dma_sync_sg_for_device, .sync_sg_for_cpu = c6x_dma_sync_sg_for_cpu, }; EXPORT_SYMBOL(c6x_dma_ops); /* Number of entries preallocated for DMA-API debugging */ #define PREALLOC_DMA_DEBUG_ENTRIES (1 << 16)
static int __init dma_init(void) { dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
aurelien jacquiotaurelien jacquiot17100.00%1100.00%
Total17100.00%1100.00%

fs_initcall(dma_init);

Overall Contributors

PersonTokensPropCommitsCommitProp
aurelien jacquiotaurelien jacquiot46375.41%125.00%
christoph hellwigchristoph hellwig10917.75%125.00%
alexander duyckalexander duyck345.54%125.00%
krzysztof kozlowskikrzysztof kozlowski81.30%125.00%
Total614100.00%4100.00%
Directory: arch/c6x/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.