blob: 599a0dcde56aa38e3ee81205b4a23383115515a2 [file] [log] [blame]
/*
* arch/arm/plat-ambarella/include/plat/dma.h
*
* Author: Anthony Ginger <hfjiang@ambarella.com>
*
* Copyright (C) 2004-2010, Ambarella, Inc.
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#ifndef __PLAT_AMBARELLA_DMA_H
#define __PLAT_AMBARELLA_DMA_H
/* ==========================================================================*/
#define MAX_DMA_CHANNEL_IRQ_HANDLERS 4
/* ==========================================================================*/
#ifndef __ASSEMBLER__
typedef struct ambarella_dma_req_s {
u32 src; /* Source address */
u32 dst; /* Destination address */
struct ambarella_dma_req_s *next; /* Pointing to next descriptor */
u32 rpt; /* The physical address to store DMA hardware
reporting status */
u32 xfr_count; /* Transfer byte count , max value = 2^22 */
u32 attr; /* Descriptor 's attribute */
} ambarella_dma_req_t;
typedef struct ambarella_dmadesc_s {
u32 src_addr; /**< Source address */
u32 dst_addr; /**< Destination address */
u32 next; /**< Next descriptor */
u32 rpt_addr; /**< Report address */
u32 xfrcnt; /**< Transfer count */
u32 ctrl; /**< Control */
u32 rsv0; /**< Reserved */
u32 rsv1; /**< Reserved */
u32 rpt; /**< Report */
u32 rsv2; /**< Reserved */
u32 rsv3; /**< Reserved */
u32 rsv4; /**< Reserved */
} ambarella_dmadesc_t;
typedef void (*ambarella_dma_handler)(void *dev_id, u32 status);
struct dma_s {
struct dma_chan_s {
u32 status; /**< The status of the current transaction */
int use_flag;
int irq_count;
struct {
int enabled;
ambarella_dma_handler handler;
void *harg;
} irq[MAX_DMA_CHANNEL_IRQ_HANDLERS];
} chan[NUM_DMA_CHANNELS];
};
/* ==========================================================================*/
/* ==========================================================================*/
extern int ambarella_dma_request_irq(int chan, ambarella_dma_handler handler, void *harg);
extern void ambarella_dma_free_irq(int chan, ambarella_dma_handler handler);
extern int ambarella_dma_enable_irq(int chan, ambarella_dma_handler handler);
extern int ambarella_dma_disable_irq(int chan, ambarella_dma_handler handler);
extern int ambarella_dma_xfr(ambarella_dma_req_t *req, int chan);
extern int ambarella_dma_desc_xfr(dma_addr_t desc_addr, int chan);
extern int ambarella_dma_desc_stop(int chan);
extern int ambarella_init_dma(void);
#endif /* __ASSEMBLER__ */
/* ==========================================================================*/
#endif