]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sys/arm/freescale/imx/imx51_tzicreg.h
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / sys / arm / freescale / imx / imx51_tzicreg.h
1 /*      $NetBSD: imx51_tzicreg.h,v 1.1 2010/11/13 07:11:03 bsh Exp $    */
2 /*
3  * Copyright (c) 2010  Genetec Corporation.  All rights reserved.
4  * Written by Hashimoto Kenichi for Genetec Corporation.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY GENETEC CORPORATION ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL GENETEC CORPORATION
19  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25  * POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 /*-
29  * Copyright (c) 2012, 2013 The FreeBSD Foundation
30  * All rights reserved.
31  *
32  * Portions of this software were developed by Oleksandr Rybalko
33  * under sponsorship from the FreeBSD Foundation.
34  *
35  * Redistribution and use in source and binary forms, with or without
36  * modification, are permitted provided that the following conditions
37  * are met:
38  * 1.   Redistributions of source code must retain the above copyright
39  *      notice, this list of conditions and the following disclaimer.
40  * 2.   Redistributions in binary form must reproduce the above copyright
41  *      notice, this list of conditions and the following disclaimer in the
42  *      documentation and/or other materials provided with the distribution.
43  *
44  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
45  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
47  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
48  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
49  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
50  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
51  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
52  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
53  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
54  * SUCH DAMAGE.
55  *
56  * $FreeBSD$
57  */
58
59 #ifndef _IMX51_TZICREG_H_
60 #define _IMX51_TZICRREG_H_
61
62 #include <sys/cdefs.h>
63
64 #define TZIC_SIZE               0x4000
65 #define TZIC_INTCNTL            0x0000
66 #define         INTCNTL_NSEN_MASK       0x80000000
67 #define         INTCNTL_NSEN            0x00010000
68 #define         INTCNTL_EN              0x00000001
69 #define TZIC_INTTYPE            0x0004
70 #define TZIC_PRIOMASK           0x000c
71 #define TZIC_SYNCCTRL           0x0010
72 #define TZIC_DSMINT             0x0014
73 #define TZIC_INTSEC(n)          (0x0080 + 0x04 * (n))
74 #define TZIC_ENSET(n)           (0x0100 + 0x04 * (n))
75 #define TZIC_ENCLEAR(n)         (0x0180 + 0x04 * (n))
76 #define TZIC_SRCSET(n)          (0x0200 + 0x04 * (n))
77 #define TZIC_SRCCLAR(n)         (0x0280 + 0x04 * (n))
78 #define TZIC_PRIORITY(n)        (0x0400 + 0x04 * (n))
79 #define TZIC_PND(n)             (0x0d00 + 0x04 * (n))
80 #define TZIC_HIPND(n)           (0x0d80 + 0x04 * (n))
81 #define TZIC_WAKEUP(n)          (0x0e00 + 0x04 * (n))
82 #define TZIC_SWINT              0x0f00
83
84 #define TZIC_INTNUM             128
85 #endif /* _IMX51_TZICRREG_H_ */