Home | History | Annotate | Line # | Download | only in imx
      1  1.2  hkenken /*	$NetBSD: imx51_tzicreg.h,v 1.2 2014/02/27 03:09:57 hkenken Exp $	*/
      2  1.1      bsh /*
      3  1.1      bsh  * Copyright (c) 2010  Genetec Corporation.  All rights reserved.
      4  1.1      bsh  * Written by Hashimoto Kenichi for Genetec Corporation.
      5  1.1      bsh  *
      6  1.1      bsh  * Redistribution and use in source and binary forms, with or without
      7  1.1      bsh  * modification, are permitted provided that the following conditions
      8  1.1      bsh  * are met:
      9  1.1      bsh  * 1. Redistributions of source code must retain the above copyright
     10  1.1      bsh  *    notice, this list of conditions and the following disclaimer.
     11  1.1      bsh  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.1      bsh  *    notice, this list of conditions and the following disclaimer in the
     13  1.1      bsh  *    documentation and/or other materials provided with the distribution.
     14  1.1      bsh  *
     15  1.1      bsh  * THIS SOFTWARE IS PROVIDED BY GENETEC CORPORATION ``AS IS'' AND
     16  1.1      bsh  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     17  1.1      bsh  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     18  1.1      bsh  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL GENETEC CORPORATION
     19  1.1      bsh  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     20  1.1      bsh  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     21  1.1      bsh  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     22  1.1      bsh  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     23  1.1      bsh  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     24  1.1      bsh  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     25  1.1      bsh  * POSSIBILITY OF SUCH DAMAGE.
     26  1.1      bsh  */
     27  1.1      bsh #ifndef _ARM_IMX_IMX51_TZICREG_H_
     28  1.2  hkenken #define	_ARM_IMX_IMX51_TZICREG_H_
     29  1.1      bsh 
     30  1.1      bsh #include <sys/cdefs.h>
     31  1.1      bsh 
     32  1.1      bsh #define	TZIC_SIZE		0x4000
     33  1.1      bsh #define	TZIC_INTCNTL		0x0000
     34  1.1      bsh #define	 INTCNTL_NSEN_MASK	__BIT(31)
     35  1.1      bsh #define	 INTCNTL_NSEN		__BIT(16)
     36  1.1      bsh #define	 INTCNTL_EN		__BIT(0)
     37  1.1      bsh #define	TZIC_INTTYPE		0x0004
     38  1.1      bsh #define	TZIC_PRIOMASK		0x000c
     39  1.1      bsh #define	TZIC_SYNCCTRL		0x0010
     40  1.1      bsh #define	TZIC_DSMINT		0x0014
     41  1.1      bsh #define	TZIC_INTSEC(n)		(0x0080 + 0x04 * (n))
     42  1.1      bsh #define	TZIC_ENSET(n)		(0x0100 + 0x04 * (n))
     43  1.1      bsh #define	TZIC_ENCLEAR(n)		(0x0180 + 0x04 * (n))
     44  1.1      bsh #define	TZIC_SRCSET(n)		(0x0200 + 0x04 * (n))
     45  1.1      bsh #define	TZIC_SRCCLAR(n)		(0x0280 + 0x04 * (n))
     46  1.1      bsh #define	TZIC_PRIORITY(n)	(0x0400 + 0x04 * (n))
     47  1.1      bsh #define	TZIC_PND(n)		(0x0d00 + 0x04 * (n))
     48  1.1      bsh #define	TZIC_HIPND(n)		(0x0d80 + 0x04 * (n))
     49  1.1      bsh #define	TZIC_WAKEUP(n)		(0x0e00 + 0x04 * (n))
     50  1.1      bsh #define	TZIC_SWINT		0x0f00
     51  1.1      bsh 
     52  1.1      bsh #define	TZIC_INTNUM		128
     53  1.2  hkenken #endif /* _ARM_IMX_IMX51_TZICREG_H_ */
     54