imxepitreg.h revision 1.2 1 1.2 bsh /* $NetBSD: imxepitreg.h,v 1.2 2012/04/17 09:12:08 bsh Exp $ */
2 1.1 bsh /*
3 1.2 bsh * Copyright (c) 2009, 2010, 2012 Genetec corp. All rights reserved.
4 1.1 bsh * Written by Hashimoto Kenichi for Genetec corp.
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 CORP. ``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 CORP.
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_IMXEPITREG_H
28 1.1 bsh #define _ARM_IMX_IMXEPITREG_H
29 1.1 bsh
30 1.1 bsh #define EPIT_EPITCR 0x0000
31 1.1 bsh #define EPITCR_EN __BIT(0)
32 1.1 bsh #define EPITCR_ENMOD __BIT(1)
33 1.1 bsh #define EPITCR_OCIEN __BIT(2)
34 1.1 bsh #define EPITCR_RLD __BIT(3)
35 1.1 bsh #define EPITCR_PRESCALER __BITS(4,15)
36 1.1 bsh #define EPITCR_SWR __BIT(16)
37 1.1 bsh #define EPITCR_IOVW __BIT(17)
38 1.1 bsh #define EPITCR_DBGEN __BIT(18)
39 1.1 bsh #define EPITCR_WAITEN __BIT(19)
40 1.2 bsh #define EPITCR_DOZEN __BIT(20) /* not in iMX51 */
41 1.1 bsh #define EPITCR_STOPEN __BIT(21)
42 1.1 bsh #define EPITCR_OM __BITS(22,23)
43 1.2 bsh #define EPITCR_CLKSRC_SHIFT 24
44 1.2 bsh #define EPITCR_CLKSRC_MASK __BITS(25, EPITCR_CLKSRC_SHIFT)
45 1.2 bsh #define EPITCR_CLKSRC_IPG (1 << EPITCR_CLKSRC_SHIFT)
46 1.2 bsh #define EPITCR_CLKSRC_IPGHIGH (2 << EPITCR_CLKSRC_SHIFT)
47 1.2 bsh #define EPITCR_CLKSRC_IPG32K (3 << EPITCR_CLKSRC_SHIFT)
48 1.2 bsh #define EPITCR_CLKSRC_HIGH (2 << EPITCR_CLKSRC_SHIFT)
49 1.1 bsh
50 1.1 bsh #define EPIT_EPITSR 0x0004
51 1.1 bsh #define EPIT_EPITLR 0x0008
52 1.1 bsh #define EPIT_EPITCMPR 0x000c
53 1.1 bsh #define EPIT_EPITCNT 0x0010
54 1.1 bsh
55 1.1 bsh #endif /* _ARM_IMX_IMXEPITREG_H */
56