blob: a6b7bc70735676b4d8f3f55d95128d511801e4bc [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Andy Shevchenko2b49e0c2015-02-23 16:24:42 +02002/*
3 * Driver for the High Speed UART DMA
4 *
5 * Copyright (C) 2015 Intel Corporation
Andy Shevchenko2b49e0c2015-02-23 16:24:42 +02006 */
7
8#ifndef _DMA_HSU_H
9#define _DMA_HSU_H
10
11#include <linux/device.h>
12#include <linux/interrupt.h>
13
14#include <linux/platform_data/dma-hsu.h>
15
16struct hsu_dma;
17
18/**
19 * struct hsu_dma_chip - representation of HSU DMA hardware
20 * @dev: struct device of the DMA controller
21 * @irq: irq line
22 * @regs: memory mapped I/O space
23 * @length: I/O space length
24 * @offset: offset of the I/O space where registers are located
25 * @hsu: struct hsu_dma that is filed by ->probe()
26 * @pdata: platform data for the DMA controller if provided
27 */
28struct hsu_dma_chip {
29 struct device *dev;
30 int irq;
31 void __iomem *regs;
32 unsigned int length;
33 unsigned int offset;
34 struct hsu_dma *hsu;
Andy Shevchenko2b49e0c2015-02-23 16:24:42 +020035};
36
Heikki Krogerus47f82f12015-10-13 13:29:04 +030037#if IS_ENABLED(CONFIG_HSU_DMA)
Andy Shevchenko2b49e0c2015-02-23 16:24:42 +020038/* Export to the internal users */
Chuah, Kim Tattc6f82782016-06-15 13:44:11 +080039int hsu_dma_get_status(struct hsu_dma_chip *chip, unsigned short nr,
40 u32 *status);
Andy Shevchenkod2f5a732016-08-23 16:09:40 +030041int hsu_dma_do_irq(struct hsu_dma_chip *chip, unsigned short nr, u32 status);
Andy Shevchenko2b49e0c2015-02-23 16:24:42 +020042
43/* Export to the platform drivers */
44int hsu_dma_probe(struct hsu_dma_chip *chip);
45int hsu_dma_remove(struct hsu_dma_chip *chip);
Heikki Krogerus47f82f12015-10-13 13:29:04 +030046#else
Chuah, Kim Tattc6f82782016-06-15 13:44:11 +080047static inline int hsu_dma_get_status(struct hsu_dma_chip *chip,
48 unsigned short nr, u32 *status)
49{
50 return 0;
51}
Andy Shevchenkod2f5a732016-08-23 16:09:40 +030052static inline int hsu_dma_do_irq(struct hsu_dma_chip *chip, unsigned short nr,
53 u32 status)
Heikki Krogerus47f82f12015-10-13 13:29:04 +030054{
Andy Shevchenkod2f5a732016-08-23 16:09:40 +030055 return 0;
Heikki Krogerus47f82f12015-10-13 13:29:04 +030056}
57static inline int hsu_dma_probe(struct hsu_dma_chip *chip) { return -ENODEV; }
58static inline int hsu_dma_remove(struct hsu_dma_chip *chip) { return 0; }
59#endif /* CONFIG_HSU_DMA */
Andy Shevchenko2b49e0c2015-02-23 16:24:42 +020060
61#endif /* _DMA_HSU_H */