blob: 913b4d7a011b083856c0b756850a8a9b8bb72705 [file] [log] [blame]
Stelian Pop61e69d72008-05-08 20:52:22 +02001/*
2 * [origin: Linux kernel include/asm-arm/arch-at91/at91sam9261_matrix.h]
3 *
4 * Copyright (C) 2007 Atmel Corporation.
5 *
6 * Memory Controllers (MATRIX, EBI) - System peripherals registers.
7 * Based on AT91SAM9261 datasheet revision D.
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 AT91SAM9261_MATRIX_H
16#define AT91SAM9261_MATRIX_H
17
Xu, Hong3f6dcee2011-07-31 22:37:06 +000018#ifndef __ASSEMBLY__
Stelian Pop61e69d72008-05-08 20:52:22 +020019
Xu, Hong3f6dcee2011-07-31 22:37:06 +000020struct at91_matrix {
21 u32 mcfg; /* Master Configuration Registers */
22 u32 scfg[5]; /* Slave Configuration Registers */
23 u32 filler[6];
24 u32 ebicsa; /* EBI Chip Select Assignment Register */
25};
26#endif /* __ASSEMBLY__ */
Stelian Pop61e69d72008-05-08 20:52:22 +020027
Xu, Hong3f6dcee2011-07-31 22:37:06 +000028#define AT91_MATRIX_ULBT_INFINITE (0 << 0)
29#define AT91_MATRIX_ULBT_SINGLE (1 << 0)
30#define AT91_MATRIX_ULBT_FOUR (2 << 0)
31#define AT91_MATRIX_ULBT_EIGHT (3 << 0)
32#define AT91_MATRIX_ULBT_SIXTEEN (4 << 0)
Stelian Pop61e69d72008-05-08 20:52:22 +020033
Xu, Hong3f6dcee2011-07-31 22:37:06 +000034#define AT91_MATRIX_DEFMSTR_TYPE_NONE (0 << 16)
35#define AT91_MATRIX_DEFMSTR_TYPE_LAST (1 << 16)
36#define AT91_MATRIX_DEFMSTR_TYPE_FIXED (2 << 16)
37#define AT91_MATRIX_FIXED_DEFMSTR_SHIFT 18
38#define AT91_MATRIX_ARBT_ROUND_ROBIN (0 << 24)
39#define AT91_MATRIX_ARBT_FIXED_PRIORITY (1 << 24)
40
41#define AT91_MATRIX_M0PR_SHIFT 0
42#define AT91_MATRIX_M1PR_SHIFT 4
43#define AT91_MATRIX_M2PR_SHIFT 8
44#define AT91_MATRIX_M3PR_SHIFT 12
45#define AT91_MATRIX_M4PR_SHIFT 16
46#define AT91_MATRIX_M5PR_SHIFT 20
47
48#define AT91_MATRIX_RCB0 (1 << 0)
49#define AT91_MATRIX_RCB1 (1 << 1)
Stelian Pop61e69d72008-05-08 20:52:22 +020050
Xu, Hong3f6dcee2011-07-31 22:37:06 +000051#define AT91_MATRIX_CS1A_SDRAMC (1 << 1)
52#define AT91_MATRIX_CS3A_SMC_SMARTMEDIA (1 << 3)
53#define AT91_MATRIX_CS4A_SMC_CF1 (1 << 4)
54#define AT91_MATRIX_CS5A_SMC_CF2 (1 << 5)
55#define AT91_MATRIX_DBPUC (1 << 8)
56#define AT91_MATRIX_VDDIOMSEL_1_8V (0 << 16)
57#define AT91_MATRIX_VDDIOMSEL_3_3V (1 << 16)
Stelian Pop61e69d72008-05-08 20:52:22 +020058
59#endif