blob: 94b512d18ace08aeef8a863d557a570b3054617b [file] [log] [blame]
Marek Vasutc140e982011-11-08 23:18:08 +00001/*
2 * Freescale i.MX28 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 __MX28_REGS_COMMON_H__
24#define __MX28_REGS_COMMON_H__
25
26/*
27 * The i.MX28 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
Robert Deliene4d40fe2012-02-26 12:15:06 +000050#define __mx28_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
Robert Delienfb98d4a2012-02-26 12:15:05 +000056#define __mx28_reg_32(name) \
Marek Vasutc140e982011-11-08 23:18:08 +000057 uint32_t name; \
58 uint32_t name##_set; \
59 uint32_t name##_clr; \
60 uint32_t name##_tog;
61
Robert Deliene4d40fe2012-02-26 12:15:06 +000062struct mx28_register_8 {
63 __mx28_reg_8(reg)
64};
65
Robert Delienfb98d4a2012-02-26 12:15:05 +000066struct mx28_register_32 {
67 __mx28_reg_32(reg)
Marek Vasutc140e982011-11-08 23:18:08 +000068};
69
Robert Deliene4d40fe2012-02-26 12:15:06 +000070#define mx28_reg_8(name) \
71 union { \
72 struct { __mx28_reg_8(name) }; \
73 struct mx28_register_32 name##_reg; \
74 };
75
Robert Delienfb98d4a2012-02-26 12:15:05 +000076#define mx28_reg_32(name) \
Marek Vasutc140e982011-11-08 23:18:08 +000077 union { \
Robert Delienfb98d4a2012-02-26 12:15:05 +000078 struct { __mx28_reg_32(name) }; \
79 struct mx28_register_32 name##_reg; \
Marek Vasutc140e982011-11-08 23:18:08 +000080 };
81
82#endif /* __MX28_REGS_COMMON_H__ */