]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/imx-common/regs-common.h
Merge branch 'u-boot-pxa/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / arch / arm / include / asm / imx-common / regs-common.h
1 /*
2  * Freescale i.MXS Register Accessors
3  *
4  * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
5  * on behalf of DENX Software Engineering GmbH
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20  *
21  */
22
23 #ifndef __MXS_REGS_COMMON_H__
24 #define __MXS_REGS_COMMON_H__
25
26 /*
27  * The i.MXS has interesting feature when it comes to register access. There
28  * are four kinds of access to one particular register. Those are:
29  *
30  * 1) Common read/write access. To use this mode, just write to the address of
31  *    the register.
32  * 2) Set bits only access. To set bits, write which bits you want to set to the
33  *    address of the register + 0x4.
34  * 3) Clear bits only access. To clear bits, write which bits you want to clear
35  *    to the address of the register + 0x8.
36  * 4) Toggle bits only access. To toggle bits, write which bits you want to
37  *    toggle to the address of the register + 0xc.
38  *
39  * IMPORTANT NOTE: Not all registers support accesses 2-4! Also, not all bits
40  * can be set/cleared by pure write as in access type 1, some need to be
41  * explicitly set/cleared by using access type 2-3.
42  *
43  * The following macros and structures allow the user to either access the
44  * register in all aforementioned modes (by accessing reg_name, reg_name_set,
45  * reg_name_clr, reg_name_tog) or pass the register structure further into
46  * various functions with correct type information (by accessing reg_name_reg).
47  *
48  */
49
50 #define __mxs_reg_8(name)               \
51         uint8_t name[4];                \
52         uint8_t name##_set[4];          \
53         uint8_t name##_clr[4];          \
54         uint8_t name##_tog[4];          \
55
56 #define __mxs_reg_32(name)              \
57         uint32_t name;                  \
58         uint32_t name##_set;            \
59         uint32_t name##_clr;            \
60         uint32_t name##_tog;
61
62 struct mxs_register_8 {
63         __mxs_reg_8(reg)
64 };
65
66 struct mxs_register_32 {
67         __mxs_reg_32(reg)
68 };
69
70 #define mxs_reg_8(name)                         \
71         union {                                         \
72                 struct { __mxs_reg_8(name) };           \
73                 struct mxs_register_8 name##_reg;       \
74         };
75
76 #define mxs_reg_32(name)                                \
77         union {                                         \
78                 struct { __mxs_reg_32(name) };          \
79                 struct mxs_register_32 name##_reg;      \
80         };
81
82 #endif  /* __MXS_REGS_COMMON_H__ */