cregit-Linux how code gets into the kernel

Release 4.7 arch/frv/mb93090-mb00/pci-dma.c

/* pci-dma.c: Dynamic DMA mapping support for the FRV CPUs that have MMUs
 *
 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
 * Written by David Howells (dhowells@redhat.com)
 *
 * 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.
 */

#include <linux/types.h>
#include <linux/dma-mapping.h>
#include <linux/list.h>
#include <linux/pci.h>
#include <linux/export.h>
#include <linux/highmem.h>
#include <linux/scatterlist.h>
#include <asm/io.h>


static void *frv_dma_alloc(struct device *hwdev, size_t size, dma_addr_t *dma_handle, gfp_t gfp, struct dma_attrs *attrs) { void *ret; ret = consistent_alloc(gfp, size, dma_handle); if (ret) memset(ret, 0, size); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
david howellsdavid howells5086.21%133.33%
christoph hellwigchristoph hellwig712.07%133.33%
al viroal viro11.72%133.33%
Total58100.00%3100.00%


static void frv_dma_free(struct device *hwdev, size_t size, void *vaddr, dma_addr_t dma_handle, struct dma_attrs *attrs) { consistent_free(vaddr); }

Contributors

PersonTokensPropCommitsCommitProp
david howellsdavid howells2477.42%266.67%
christoph hellwigchristoph hellwig722.58%133.33%
Total31100.00%3100.00%


static int frv_dma_map_sg(struct device *dev, struct scatterlist *sglist, int nents, enum dma_data_direction direction, struct dma_attrs *attrs) { unsigned long dampr2; void *vaddr; int i; struct scatterlist *sg; BUG_ON(direction == DMA_NONE); dampr2 = __get_DAMPR(2); for_each_sg(sglist, sg, nents, i) { vaddr = kmap_atomic_primary(sg_page(sg)); frv_dcache_writeback((unsigned long) vaddr, (unsigned long) vaddr + PAGE_SIZE); } kunmap_atomic_primary(vaddr); if (dampr2) { __set_DAMPR(2, dampr2); __set_IAMPR(2, dampr2); } return nents; }

Contributors

PersonTokensPropCommitsCommitProp
david howellsdavid howells9475.20%228.57%
akinobu mitaakinobu mita1612.80%114.29%
christoph hellwigchristoph hellwig75.60%114.29%
stoyan gaydarovstoyan gaydarov32.40%114.29%
al viroal viro32.40%114.29%
peter zijlstrapeter zijlstra21.60%114.29%
Total125100.00%7100.00%


static dma_addr_t frv_dma_map_page(struct device *dev, struct page *page, unsigned long offset, size_t size, enum dma_data_direction direction, struct dma_attrs *attrs) { flush_dcache_page(page); return (dma_addr_t) page_to_phys(page) + offset; }

Contributors

PersonTokensPropCommitsCommitProp
david howellsdavid howells4185.42%266.67%
christoph hellwigchristoph hellwig714.58%133.33%
Total48100.00%3100.00%


static void frv_dma_sync_single_for_device(struct device *dev, dma_addr_t dma_handle, size_t size, enum dma_data_direction direction) { flush_write_buffers(); }

Contributors

PersonTokensPropCommitsCommitProp
christoph hellwigchristoph hellwig24100.00%1100.00%
Total24100.00%1100.00%


static void frv_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg, int nelems, enum dma_data_direction direction) { flush_write_buffers(); }

Contributors

PersonTokensPropCommitsCommitProp
christoph hellwigchristoph hellwig26100.00%1100.00%
Total26100.00%1100.00%


static int frv_dma_supported(struct device *dev, u64 mask) { /* * we fall back to GFP_DMA when the mask isn't all 1s, * so we can't guarantee allocations that must be * within a tighter range than GFP_DMA.. */ if (mask < 0x00ffffff) return 0; return 1; }

Contributors

PersonTokensPropCommitsCommitProp
christoph hellwigchristoph hellwig27100.00%1100.00%
Total27100.00%1100.00%

struct dma_map_ops frv_dma_ops = { .alloc = frv_dma_alloc, .free = frv_dma_free, .map_page = frv_dma_map_page, .map_sg = frv_dma_map_sg, .sync_single_for_device = frv_dma_sync_single_for_device, .sync_sg_for_device = frv_dma_sync_sg_for_device, .dma_supported = frv_dma_supported, }; EXPORT_SYMBOL(frv_dma_ops);

Overall Contributors

PersonTokensPropCommitsCommitProp
david howellsdavid howells23256.59%330.00%
christoph hellwigchristoph hellwig14735.85%110.00%
akinobu mitaakinobu mita163.90%110.00%
al viroal viro71.71%220.00%
paul gortmakerpaul gortmaker30.73%110.00%
stoyan gaydarovstoyan gaydarov30.73%110.00%
peter zijlstrapeter zijlstra20.49%110.00%
Total410100.00%10100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}