cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

mmp_dma.h (350B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/*
      3 *  MMP Platform DMA Management
      4 *
      5 *  Copyright (c) 2011 Marvell Semiconductors Inc.
      6 */
      7
      8#ifndef MMP_DMA_H
      9#define MMP_DMA_H
     10
     11struct dma_slave_map;
     12
     13struct mmp_dma_platdata {
     14	int dma_channels;
     15	int nb_requestors;
     16	int slave_map_cnt;
     17	const struct dma_slave_map *slave_map;
     18};
     19
     20#endif /* MMP_DMA_H */