summaryrefslogtreecommitdiffstats
path: root/arch/m68k/include/asm/coldfire/mcf548x/mcf548x_fbcs.h
blob: 1e11944c46436ca697aa803f91b78a1587e1c2a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
 * Copyright (c) 2008 Carsten Schlote <c.schlote@konzeptpark.de>
 * See file CREDITS for list of people who contributed to this project.
 *
 * This file is part of barebox.
 *
 * barebox is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * barebox is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with barebox.  If not, see <http://www.gnu.org/licenses/>.
 */

/** @file
 *  Register and bit definitions for the MCF548X and MCF547x
 *  FlexBus Chip Selects (FBCS)
 */
#ifndef __MCF548X_FBCS_H__
#define __MCF548X_FBCS_H__

/*
 *  FlexBus Chip Selects (FBCS)
 */

/* Register read/write macros */
#define MCF_FBCS_CSAR0      (*(vuint32_t*)(&__MBAR[0x000500]))
#define MCF_FBCS_CSMR0      (*(vuint32_t*)(&__MBAR[0x000504]))
#define MCF_FBCS_CSCR0      (*(vuint32_t*)(&__MBAR[0x000508]))
#define MCF_FBCS_CSAR1      (*(vuint32_t*)(&__MBAR[0x00050C]))
#define MCF_FBCS_CSMR1      (*(vuint32_t*)(&__MBAR[0x000510]))
#define MCF_FBCS_CSCR1      (*(vuint32_t*)(&__MBAR[0x000514]))
#define MCF_FBCS_CSAR2      (*(vuint32_t*)(&__MBAR[0x000518]))
#define MCF_FBCS_CSMR2      (*(vuint32_t*)(&__MBAR[0x00051C]))
#define MCF_FBCS_CSCR2      (*(vuint32_t*)(&__MBAR[0x000520]))
#define MCF_FBCS_CSAR3      (*(vuint32_t*)(&__MBAR[0x000524]))
#define MCF_FBCS_CSMR3      (*(vuint32_t*)(&__MBAR[0x000528]))
#define MCF_FBCS_CSCR3      (*(vuint32_t*)(&__MBAR[0x00052C]))
#define MCF_FBCS_CSAR4      (*(vuint32_t*)(&__MBAR[0x000530]))
#define MCF_FBCS_CSMR4      (*(vuint32_t*)(&__MBAR[0x000534]))
#define MCF_FBCS_CSCR4      (*(vuint32_t*)(&__MBAR[0x000538]))
#define MCF_FBCS_CSAR5      (*(vuint32_t*)(&__MBAR[0x00053C]))
#define MCF_FBCS_CSMR5      (*(vuint32_t*)(&__MBAR[0x000540]))
#define MCF_FBCS_CSCR5      (*(vuint32_t*)(&__MBAR[0x000544]))
#define MCF_FBCS_CSAR(x)    (*(vuint32_t*)(&__MBAR[0x000500+((x)*0x00C)]))
#define MCF_FBCS_CSMR(x)    (*(vuint32_t*)(&__MBAR[0x000504+((x)*0x00C)]))
#define MCF_FBCS_CSCR(x)    (*(vuint32_t*)(&__MBAR[0x000508+((x)*0x00C)]))

/* Bit definitions and macros for MCF_FBCS_CSAR */
#define MCF_FBCS_CSAR_BA(x)        ((x)&0xFFFF0000)

/* Bit definitions and macros for MCF_FBCS_CSMR */
#define MCF_FBCS_CSMR_V            (0x00000001)
#define MCF_FBCS_CSMR_WP           (0x00000100)
#define MCF_FBCS_CSMR_BAM(x)       (((x)&0x0000FFFF)<<16)
#define MCF_FBCS_CSMR_BAM_4G       (0xFFFF0000)
#define MCF_FBCS_CSMR_BAM_2G       (0x7FFF0000)
#define MCF_FBCS_CSMR_BAM_1G       (0x3FFF0000)
#define MCF_FBCS_CSMR_BAM_1024M    (0x3FFF0000)
#define MCF_FBCS_CSMR_BAM_512M     (0x1FFF0000)
#define MCF_FBCS_CSMR_BAM_256M     (0x0FFF0000)
#define MCF_FBCS_CSMR_BAM_128M     (0x07FF0000)
#define MCF_FBCS_CSMR_BAM_64M      (0x03FF0000)
#define MCF_FBCS_CSMR_BAM_32M      (0x01FF0000)
#define MCF_FBCS_CSMR_BAM_16M      (0x00FF0000)
#define MCF_FBCS_CSMR_BAM_8M       (0x007F0000)
#define MCF_FBCS_CSMR_BAM_4M       (0x003F0000)
#define MCF_FBCS_CSMR_BAM_2M       (0x001F0000)
#define MCF_FBCS_CSMR_BAM_1M       (0x000F0000)
#define MCF_FBCS_CSMR_BAM_1024K    (0x000F0000)
#define MCF_FBCS_CSMR_BAM_512K     (0x00070000)
#define MCF_FBCS_CSMR_BAM_256K     (0x00030000)
#define MCF_FBCS_CSMR_BAM_128K     (0x00010000)
#define MCF_FBCS_CSMR_BAM_64K      (0x00000000)

/* Bit definitions and macros for MCF_FBCS_CSCR */
#define MCF_FBCS_CSCR_BSTW         (0x00000008)
#define MCF_FBCS_CSCR_BSTR         (0x00000010)
#define MCF_FBCS_CSCR_PS(x)        (((x)&0x00000003)<<6)
#define MCF_FBCS_CSCR_AA           (0x00000100)
#define MCF_FBCS_CSCR_WS(x)        (((x)&0x0000003F)<<10)
#define MCF_FBCS_CSCR_WRAH(x)      (((x)&0x00000003)<<16)
#define MCF_FBCS_CSCR_RDAH(x)      (((x)&0x00000003)<<18)
#define MCF_FBCS_CSCR_ASET(x)      (((x)&0x00000003)<<20)
#define MCF_FBCS_CSCR_SWSEN        (0x00800000)
#define MCF_FBCS_CSCR_SWS(x)       (((x)&0x0000003F)<<26)
#define MCF_FBCS_CSCR_PS_8         (0x0040)
#define MCF_FBCS_CSCR_PS_16        (0x0080)
#define MCF_FBCS_CSCR_PS_32        (0x0000)

#endif /* __MCF548X_FBCS_H__ */