ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-mips / mach-db1x00 / db1x00.h
1 /*
2  * AMD Alchemy DB1x00 Reference Boards
3  *
4  * Copyright 2001 MontaVista Software Inc.
5  * Author: MontaVista Software, Inc.
6  *              ppopov@mvista.com or source@mvista.com
7  *
8  * ########################################################################
9  *
10  *  This program is free software; you can distribute it and/or modify it
11  *  under the terms of the GNU General Public License (Version 2) as
12  *  published by the Free Software Foundation.
13  *
14  *  This program is distributed in the hope it will be useful, but WITHOUT
15  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17  *  for more details.
18  *
19  *  You should have received a copy of the GNU General Public License along
20  *  with this program; if not, write to the Free Software Foundation, Inc.,
21  *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
22  *
23  * ########################################################################
24  *
25  * 
26  */
27 #ifndef __ASM_DB1X00_H
28 #define __ASM_DB1X00_H
29
30
31 /*
32  * Overlay data structure of the Db1x00 board registers.
33  * Registers located at physical 1E0000xx, KSEG1 0xAE0000xx
34  */
35 typedef volatile struct
36 {
37         /*00*/  unsigned long whoami;
38         /*04*/  unsigned long status;
39         /*08*/  unsigned long switches;
40         /*0C*/  unsigned long resets;
41         /*10*/  unsigned long pcmcia;
42         /*14*/  unsigned long specific;
43         /*18*/  unsigned long leds;
44         /*1C*/  unsigned long swreset;
45
46 } BCSR;
47
48
49 /*
50  * Register/mask bit definitions for the BCSRs
51  */
52 #define BCSR_WHOAMI_DCID                0x000F
53 #define BCSR_WHOAMI_CPLD                0x00F0
54 #define BCSR_WHOAMI_BOARD               0x0F00
55
56 #define BCSR_STATUS_PC0VS               0x0003
57 #define BCSR_STATUS_PC1VS               0x000C
58 #define BCSR_STATUS_PC0FI               0x0010
59 #define BCSR_STATUS_PC1FI               0x0020
60 #define BCSR_STATUS_FLASHBUSY           0x0100
61 #define BCSR_STATUS_ROMBUSY             0x0400
62 #define BCSR_STATUS_SWAPBOOT            0x2000
63 #define BCSR_STATUS_FLASHDEN            0xC000
64
65 #define BCSR_SWITCHES_DIP               0x00FF
66 #define BCSR_SWITCHES_DIP_1             0x0080
67 #define BCSR_SWITCHES_DIP_2             0x0040
68 #define BCSR_SWITCHES_DIP_3             0x0020
69 #define BCSR_SWITCHES_DIP_4             0x0010
70 #define BCSR_SWITCHES_DIP_5             0x0008
71 #define BCSR_SWITCHES_DIP_6             0x0004
72 #define BCSR_SWITCHES_DIP_7             0x0002
73 #define BCSR_SWITCHES_DIP_8             0x0001
74 #define BCSR_SWITCHES_ROTARY            0x0F00
75
76 #define BCSR_RESETS_PHY0                0x0001
77 #define BCSR_RESETS_PHY1                0x0002
78 #define BCSR_RESETS_DC                  0x0004
79 #define BCSR_RESETS_FIR_SEL             0x2000
80 #define BCSR_RESETS_IRDA_MODE_MASK      0xC000
81 #define BCSR_RESETS_IRDA_MODE_FULL      0x0000
82 #define BCSR_RESETS_IRDA_MODE_OFF       0x4000
83 #define BCSR_RESETS_IRDA_MODE_2_3       0x8000
84 #define BCSR_RESETS_IRDA_MODE_1_3       0xC000
85
86 #define BCSR_PCMCIA_PC0VPP              0x0003
87 #define BCSR_PCMCIA_PC0VCC              0x000C
88 #define BCSR_PCMCIA_PC0DRVEN            0x0010
89 #define BCSR_PCMCIA_PC0RST              0x0080
90 #define BCSR_PCMCIA_PC1VPP              0x0300
91 #define BCSR_PCMCIA_PC1VCC              0x0C00
92 #define BCSR_PCMCIA_PC1DRVEN            0x1000
93 #define BCSR_PCMCIA_PC1RST              0x8000
94
95 #define BCSR_BOARD_PCIM66EN             0x0001
96 #define BCSR_BOARD_SD0_PWR              0x0040
97 #define BCSR_BOARD_SD1_PWR              0x0080
98 #define BCSR_BOARD_PCIM33               0x0100
99 #define BCSR_BOARD_GPIO200RST           0x0400
100 #define BCSR_BOARD_PCICFG               0x1000
101 #define BCSR_BOARD_SD0_WP               0x4000
102 #define BCSR_BOARD_SD1_WP               0x8000
103
104 #define BCSR_LEDS_DECIMALS              0x0003
105 #define BCSR_LEDS_LED0                  0x0100
106 #define BCSR_LEDS_LED1                  0x0200
107 #define BCSR_LEDS_LED2                  0x0400
108 #define BCSR_LEDS_LED3                  0x0800
109
110 #define BCSR_SWRESET_RESET              0x0080
111
112 /* PCMCIA Db1x00 specific defines */
113 #define PCMCIA_MAX_SOCK 1
114 #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK+1)
115
116 /* VPP/VCC */
117 #define SET_VCC_VPP(VCC, VPP, SLOT)\
118         ((((VCC)<<2) | ((VPP)<<0)) << ((SLOT)*8))
119
120 /* MTD CONFIG OPTIONS */
121 #if defined(CONFIG_MTD_DB1X00_BOOT) && defined(CONFIG_MTD_DB1X00_USER)
122 #define DB1X00_BOTH_BANKS
123 #elif defined(CONFIG_MTD_DB1X00_BOOT) && !defined(CONFIG_MTD_DB1X00_USER)
124 #define DB1X00_BOOT_ONLY
125 #elif !defined(CONFIG_MTD_DB1X00_BOOT) && defined(CONFIG_MTD_DB1X00_USER)
126 #define DB1X00_USER_ONLY
127 #endif
128
129 /* SD controller macros */
130 /*
131  * Detect card.
132  */
133 #define mmc_card_inserted(_n_, _res_) \
134         do { \
135                 BCSR * const bcsr = (BCSR *)0xAE000000; \
136                 unsigned long mmc_wp, board_specific; \
137                 if ((_n_)) { \
138                         mmc_wp = BCSR_BOARD_SD1_WP; \
139                 } else { \
140                         mmc_wp = BCSR_BOARD_SD0_WP; \
141                 } \
142                 board_specific = au_readl((unsigned long)(&bcsr->specific)); \
143                 if (!(board_specific & mmc_wp)) {/* low means card present */ \
144                         *(int *)(_res_) = 1; \
145                 } else { \
146                         *(int *)(_res_) = 0; \
147                 } \
148         } while (0)
149
150 /*
151  * Apply power to card slot(s).
152  */
153 #define mmc_power_on(_n_) \
154         do { \
155                 BCSR * const bcsr = (BCSR *)0xAE000000; \
156                 unsigned long mmc_pwr, mmc_wp, board_specific; \
157                 if ((_n_)) { \
158                         mmc_pwr = BCSR_BOARD_SD1_PWR; \
159                         mmc_wp = BCSR_BOARD_SD1_WP; \
160                 } else { \
161                         mmc_pwr = BCSR_BOARD_SD0_PWR; \
162                         mmc_wp = BCSR_BOARD_SD0_WP; \
163                 } \
164                 board_specific = au_readl((unsigned long)(&bcsr->specific)); \
165                 if (!(board_specific & mmc_wp)) {/* low means card present */ \
166                         board_specific |= mmc_pwr; \
167                         au_writel(board_specific, (int)(&bcsr->specific)); \
168                         au_sync(); \
169                 } \
170         } while (0)
171
172 #endif /* __ASM_DB1X00_H */
173