summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/irq_dma.c
blob: 37487af7ae357eff371f5240ba7eeddeaac7e6a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
 * arch/arm/mach-tegra/irq_dma.c
 *
 * Second-level IRQ decoder for system DMA driver
 *
 * Copyright (c) 2009, NVIDIA Corporation.
 *
 * 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.,
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include "ap15/arapbdma.h"
#include <asm/io.h>

#include <mach/nvrm_linux.h>
#include "nvrm_interrupt.h"

static int dma_irq_start;
static int dma_main_irq;
static void __iomem *apb_dma_regs;
static NvOsPhysAddr dma_phys;
static unsigned int dma_size;

static void dma_irq_mask(unsigned int irq)
{
    unsigned long reg;

    reg = 1 << (irq - dma_irq_start);
    writel(reg, apb_dma_regs + APBDMA_IRQ_MASK_CLR_0);
}

static void dma_irq_unmask(unsigned int irq)
{
    unsigned long reg;

    reg = 1 << (irq - dma_irq_start);
    writel(reg, apb_dma_regs + APBDMA_IRQ_MASK_SET_0);
}

static void dma_irq_ack(unsigned int irq)
{

}

static struct irq_chip dma_irq_chip = {
    .name           = "APBDMA",
    .ack            = dma_irq_ack,
    .mask           = dma_irq_mask,
    .unmask         = dma_irq_unmask,
};


static void dma_irq_handler(unsigned int irqMain, struct irq_desc *desc)
{
	struct irq_chip *chip = get_irq_chip(irqMain);
    unsigned int channel;
    unsigned int reg;

    chip->ack(irqMain);

    reg = readl(apb_dma_regs + APBDMA_IRQ_STA_CPU_0);
    if (reg) {
        __asm__ __volatile__ (      \
            "clz %0, %1 \r\t"       \
            :"=r"(channel)          \
            :"r"(reg));
        channel = 31 - channel;

        reg = writel(1 << channel, apb_dma_regs + APBDMA_IRQ_STA_CPU_0);
        generic_handle_irq(channel + dma_irq_start);
    }
    chip->unmask(irqMain);
}

void __init tegra_init_dma(void)
{
    int num_channels;
    int channel;
    int irq;

    NvRmModuleGetBaseAddress(s_hRmGlobal, 
        NVRM_MODULE_ID(NvRmPrivModuleID_ApbDma, 0), 
        &dma_phys, &dma_size);

    apb_dma_regs = IO_ADDRESS(dma_phys);
    if (!apb_dma_regs)
        return;

    num_channels = NvRmModuleGetNumInstances(s_hRmGlobal, NvRmPrivModuleID_ApbDmaChannel);
    if (num_channels == 0)
        return;

    dma_main_irq = NvRmGetIrqForLogicalInterrupt(s_hRmGlobal, 
        NVRM_MODULE_ID(NvRmPrivModuleID_ApbDma, 0), 0xff);

    dma_irq_start = NvRmGetIrqForLogicalInterrupt(s_hRmGlobal, 
        NVRM_MODULE_ID(NvRmPrivModuleID_ApbDma, 0), 0);

    channel = num_channels;
    while (channel--)
    {
        irq = NvRmGetIrqForLogicalInterrupt(s_hRmGlobal, 
            NVRM_MODULE_ID(NvRmPrivModuleID_ApbDma, 0), channel);

        set_irq_chip(irq, &dma_irq_chip);
        set_irq_handler(irq, handle_level_irq);
        set_irq_flags(irq, IRQF_VALID);
    }
    set_irq_chained_handler(dma_main_irq, dma_irq_handler);
}