]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/arch-at91/at91sam9263_matrix.h
mxc_ipuv3: fix memory alignment of framebuffer
[karo-tx-uboot.git] / arch / arm / include / asm / arch-at91 / at91sam9263_matrix.h
1 /*
2  * [origin: Linux kernel include/asm-arm/arch-at91/at91sam9263_matrix.h]
3  *
4  *  Copyright (C) 2006 Atmel Corporation.
5  *
6  * Memory Controllers (MATRIX, EBI) - System peripherals registers.
7  * Based on AT91SAM9263 datasheet revision B (Preliminary).
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  */
14
15 #ifndef AT91SAM9263_MATRIX_H
16 #define AT91SAM9263_MATRIX_H
17
18 #ifndef __ASSEMBLY__
19
20 /*
21  * This struct defines access to the matrix' maximum of
22  * 16 masters and 16 slaves.
23  * Note: not all masters/slaves are available
24  */
25 struct at91_matrix {
26         u32     mcfg[16];       /* Master Configuration Registers */
27         u32     scfg[16];       /* Slave Configuration Registers */
28         u32     pras[16][2];    /* Priority Assignment Slave Registers */
29         u32     mrcr;           /* Master Remap Control Register */
30         u32     filler[0x06];
31         u32     ebicsa;         /* EBI Chip Select Assignment Register */
32 };
33
34 #endif /* __ASSEMBLY__ */
35
36 #define AT91_MATRIX_ULBT_INFINITE       (0 << 0)
37 #define AT91_MATRIX_ULBT_SINGLE         (1 << 0)
38 #define AT91_MATRIX_ULBT_FOUR           (2 << 0)
39 #define AT91_MATRIX_ULBT_EIGHT          (3 << 0)
40 #define AT91_MATRIX_ULBT_SIXTEEN        (4 << 0)
41
42 #define AT91_MATRIX_DEFMSTR_TYPE_NONE   (0 << 16)
43 #define AT91_MATRIX_DEFMSTR_TYPE_LAST   (1 << 16)
44 #define AT91_MATRIX_DEFMSTR_TYPE_FIXED  (2 << 16)
45 #define AT91_MATRIX_FIXED_DEFMSTR_SHIFT 18
46 #define AT91_MATRIX_ARBT_ROUND_ROBIN    (0 << 24)
47 #define AT91_MATRIX_ARBT_FIXED_PRIORITY (1 << 24)
48
49 #define AT91_MATRIX_M0PR_SHIFT          0
50 #define AT91_MATRIX_M1PR_SHIFT          4
51 #define AT91_MATRIX_M2PR_SHIFT          8
52 #define AT91_MATRIX_M3PR_SHIFT          12
53 #define AT91_MATRIX_M4PR_SHIFT          16
54 #define AT91_MATRIX_M5PR_SHIFT          20
55
56 #define AT91_MATRIX_RCB0                (1 << 0)
57 #define AT91_MATRIX_RCB1                (1 << 1)
58
59 #define AT91_MATRIX_CS1A_SDRAMC         (1 << 1)
60 #define AT91_MATRIX_CS3A_SMC_SMARTMEDIA (1 << 3)
61 #define AT91_MATRIX_CS4A_SMC_CF1        (1 << 4)
62 #define AT91_MATRIX_CS5A_SMC_CF2        (1 << 5)
63 #define AT91_MATRIX_DBPUC               (1 << 8)
64 #define AT91_MATRIX_VDDIOMSEL_1_8V      (0 << 16)
65 #define AT91_MATRIX_VDDIOMSEL_3_3V      (1 << 16)
66
67 #endif