This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / arch / ppc / platforms / ev64260.h
1 /*
2  * arch/ppc/platforms/ev64260.h
3  * 
4  * Definitions for Marvell/Galileo EV-64260-BP Evaluation Board.
5  *
6  * Author: Mark A. Greer <mgreer@mvista.com>
7  *
8  * 2001-2002 (c) MontaVista, Software, Inc.  This file is licensed under
9  * the terms of the GNU General Public License version 2.  This program
10  * is licensed "as is" without any warranty of any kind, whether express
11  * or implied.
12  */
13
14 /*
15  * The MV64x60 has 2 PCI buses each with 1 window from the CPU bus to
16  * PCI I/O space and 4 windows from the CPU bus to PCI MEM space.
17  * We'll only use one PCI MEM window on each PCI bus.
18  *
19  * This is the CPU physical memory map (windows must be at least 1MB and start
20  * on a boundary that is a multiple of the window size):
21  *
22  *      0xfc000000-0xffffffff           - External FLASH on device module
23  *      0xfbf00000-0xfbffffff           - Embedded (on board) FLASH
24  *      0xfbe00000-0xfbefffff           - GT64260 Registers (preferably)
25  *                                        but really a config option
26  *      0xfbd00000-0xfbdfffff           - External SRAM on device module
27  *      0xfbc00000-0xfbcfffff           - TODC chip on device module
28  *      0xfbb00000-0xfbbfffff           - External UART on device module
29  *      0xa2000000-0xfbafffff           - <hole>
30  *      0xa1000000-0xa1ffffff           - PCI 1 I/O (defined in gt64260.h)
31  *      0xa0000000-0xa0ffffff           - PCI 0 I/O (defined in gt64260.h)
32  *      0x90000000-0x9fffffff           - PCI 1 MEM (defined in gt64260.h)
33  *      0x80000000-0x8fffffff           - PCI 0 MEM (defined in gt64260.h)
34  */
35
36 #ifndef __PPC_PLATFORMS_EV64260_H
37 #define __PPC_PLATFORMS_EV64260_H
38
39 #ifndef MAX
40 #define MAX(a,b)        (((a) > (b)) ? (a) : (b))
41 #endif
42
43 /*
44  * CPU Physical Memory Map setup.
45  */
46 #define EV64260_EXT_FLASH_BASE          0xfc000000
47 #define EV64260_EMB_FLASH_BASE          0xfbf00000
48 #define EV64260_EXT_SRAM_BASE           0xfbd00000
49 #define EV64260_TODC_BASE               0xfbc00000
50 #define EV64260_UART_BASE               0xfbb00000
51
52 #define EV64260_EXT_FLASH_SIZE_ACTUAL   0x04000000  /* <= 64MB Extern FLASH */
53 #define EV64260_EMB_FLASH_SIZE_ACTUAL   0x00080000  /* 512KB of Embed FLASH */
54 #define EV64260_EXT_SRAM_SIZE_ACTUAL    0x00100000  /* 1MB SDRAM */
55 #define EV64260_TODC_SIZE_ACTUAL        0x00000020  /* 32 bytes for TODC */
56 #define EV64260_UART_SIZE_ACTUAL        0x00000040  /* 64 bytes for DUART */
57
58 #define EV64260_EXT_FLASH_SIZE          MAX(GT64260_WINDOW_SIZE_MIN,    \
59                                                 EV64260_EXT_FLASH_SIZE_ACTUAL)
60 #define EV64260_EMB_FLASH_SIZE          MAX(GT64260_WINDOW_SIZE_MIN,    \
61                                                 EV64260_EMB_FLASH_SIZE_ACTUAL)
62 #define EV64260_EXT_SRAM_SIZE           MAX(GT64260_WINDOW_SIZE_MIN,    \
63                                                 EV64260_EXT_SRAM_SIZE_ACTUAL)
64 #define EV64260_TODC_SIZE               MAX(GT64260_WINDOW_SIZE_MIN,    \
65                                                 EV64260_TODC_SIZE_ACTUAL)
66 #if 0   /* XXXX blows up assembler in bootloader */
67 #define EV64260_UART_SIZE               MAX(GT64260_WINDOW_SIZE_MIN,    \
68                                                 EV64260_UART_SIZE_ACTUAL)
69 #else
70 #define EV64260_UART_SIZE               GT64260_WINDOW_SIZE_MIN
71 #endif
72 #define EV64260_UART_END                ((EV64260_UART_BASE +           \
73                                         EV64260_UART_SIZE - 1) & 0xfff00000)
74
75 /*
76  * Board-specific IRQ info
77  */
78 #define EV64260_UART_0_IRQ              85
79 #define EV64260_UART_1_IRQ              86
80 #define EV64260_PCI_0_IRQ               91
81 #define EV64260_PCI_1_IRQ               93
82
83 /*
84  * Serial port setup.
85  */
86 #define EV64260_DEFAULT_BAUD            115200
87
88 #if defined(CONFIG_SERIAL_MPSC_CONSOLE)
89 #define SERIAL_PORT_DFNS
90
91 #define EV64260_MPSC_CLK_SRC            8               /* TCLK */
92 #define EV64260_MPSC_CLK_FREQ           100000000       /* 100MHz clk */
93 #else
94 #define EV64260_SERIAL_0                (EV64260_UART_BASE + 0x20)
95 #define EV64260_SERIAL_1                EV64260_UART_BASE
96
97 #define BASE_BAUD       (EV64260_DEFAULT_BAUD * 2)
98
99 #ifdef CONFIG_SERIAL_MANY_PORTS
100 #define RS_TABLE_SIZE   64
101 #else
102 #define RS_TABLE_SIZE   2
103 #endif
104
105 #ifdef CONFIG_SERIAL_DETECT_IRQ
106 #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF|ASYNC_SKIP_TEST|ASYNC_AUTO_IRQ)
107 #else
108 #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF|ASYNC_SKIP_TEST)
109 #endif
110
111 /* Required for bootloader's ns16550.c code */
112 #define STD_SERIAL_PORT_DFNS                                            \
113         { 0, BASE_BAUD, EV64260_SERIAL_0, EV64260_UART_0_IRQ, STD_COM_FLAGS, \
114         iomem_base: (u8 *)EV64260_SERIAL_0,     /* ttyS0 */             \
115         iomem_reg_shift: 2,                                             \
116         io_type: SERIAL_IO_MEM },                                       
117
118 #if 0
119         { 1, BASE_BAUD, EV64260_SERIAL_1, EV64260_UART_1_IRQ, STD_COM_FLAGS, \
120         iomem_base: (u8 *)EV64260_SERIAL_1,     /* ttyS1 */             \
121         iomem_reg_shift: 2,                                             \
122         io_type: SERIAL_IO_MEM },
123 #endif
124
125 #define SERIAL_PORT_DFNS \
126         STD_SERIAL_PORT_DFNS
127 #endif
128 #endif /* __PPC_PLATFORMS_EV64260_H */