Adding support for MOXA ART SoC. Testing port of linux-2.6.32.60-moxart.
[linux-3.6.7-moxart.git] / arch / arm / mach-at91 / include / mach / uncompress.h
blob6f6118d1576aa8a48189db75e9ad907d1a896e74
1 /*
2 * arch/arm/mach-at91/include/mach/uncompress.h
4 * Copyright (C) 2003 SAN People
5 * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #ifndef __ASM_ARCH_UNCOMPRESS_H
23 #define __ASM_ARCH_UNCOMPRESS_H
25 #include <linux/io.h>
26 #include <linux/atmel_serial.h>
27 #include <mach/hardware.h>
29 #include <mach/at91_dbgu.h>
30 #include <mach/cpu.h>
32 void __iomem *at91_uart;
34 #if !defined(CONFIG_ARCH_AT91X40)
35 static const u32 uarts_rm9200[] = {
36 AT91_BASE_DBGU0,
37 AT91RM9200_BASE_US0,
38 AT91RM9200_BASE_US1,
39 AT91RM9200_BASE_US2,
40 AT91RM9200_BASE_US3,
44 static const u32 uarts_sam9260[] = {
45 AT91_BASE_DBGU0,
46 AT91SAM9260_BASE_US0,
47 AT91SAM9260_BASE_US1,
48 AT91SAM9260_BASE_US2,
49 AT91SAM9260_BASE_US3,
50 AT91SAM9260_BASE_US4,
51 AT91SAM9260_BASE_US5,
55 static const u32 uarts_sam9261[] = {
56 AT91_BASE_DBGU0,
57 AT91SAM9261_BASE_US0,
58 AT91SAM9261_BASE_US1,
59 AT91SAM9261_BASE_US2,
63 static const u32 uarts_sam9263[] = {
64 AT91_BASE_DBGU1,
65 AT91SAM9263_BASE_US0,
66 AT91SAM9263_BASE_US1,
67 AT91SAM9263_BASE_US2,
71 static const u32 uarts_sam9g45[] = {
72 AT91_BASE_DBGU1,
73 AT91SAM9G45_BASE_US0,
74 AT91SAM9G45_BASE_US1,
75 AT91SAM9G45_BASE_US2,
76 AT91SAM9G45_BASE_US3,
80 static const u32 uarts_sam9rl[] = {
81 AT91_BASE_DBGU0,
82 AT91SAM9RL_BASE_US0,
83 AT91SAM9RL_BASE_US1,
84 AT91SAM9RL_BASE_US2,
85 AT91SAM9RL_BASE_US3,
89 static const u32 uarts_sam9x5[] = {
90 AT91_BASE_DBGU0,
91 AT91SAM9X5_BASE_USART0,
92 AT91SAM9X5_BASE_USART1,
93 AT91SAM9X5_BASE_USART2,
97 static inline const u32* decomp_soc_detect(u32 dbgu_base)
99 u32 cidr, socid;
101 cidr = __raw_readl(dbgu_base + AT91_DBGU_CIDR);
102 socid = cidr & ~AT91_CIDR_VERSION;
104 switch (socid) {
105 case ARCH_ID_AT91RM9200:
106 return uarts_rm9200;
108 case ARCH_ID_AT91SAM9G20:
109 case ARCH_ID_AT91SAM9260:
110 return uarts_sam9260;
112 case ARCH_ID_AT91SAM9261:
113 return uarts_sam9261;
115 case ARCH_ID_AT91SAM9263:
116 return uarts_sam9263;
118 case ARCH_ID_AT91SAM9G45:
119 return uarts_sam9g45;
121 case ARCH_ID_AT91SAM9RL64:
122 return uarts_sam9rl;
124 case ARCH_ID_AT91SAM9X5:
125 return uarts_sam9x5;
128 /* at91sam9g10 */
129 if ((cidr & ~AT91_CIDR_EXT) == ARCH_ID_AT91SAM9G10) {
130 return uarts_sam9261;
132 /* at91sam9xe */
133 else if ((cidr & AT91_CIDR_ARCH) == ARCH_FAMILY_AT91SAM9XE) {
134 return uarts_sam9260;
137 return NULL;
140 static inline void arch_decomp_setup(void)
142 int i = 0;
143 const u32* usarts;
145 usarts = decomp_soc_detect(AT91_BASE_DBGU0);
147 if (!usarts)
148 usarts = decomp_soc_detect(AT91_BASE_DBGU1);
149 if (!usarts) {
150 at91_uart = NULL;
151 return;
154 do {
155 /* physical address */
156 at91_uart = (void __iomem *)usarts[i];
158 if (__raw_readl(at91_uart + ATMEL_US_BRGR))
159 return;
160 i++;
161 } while (usarts[i]);
163 at91_uart = NULL;
165 #else
166 static inline void arch_decomp_setup(void)
168 at91_uart = NULL;
170 #endif
173 * The following code assumes the serial port has already been
174 * initialized by the bootloader. If you didn't setup a port in
175 * your bootloader then nothing will appear (which might be desired).
177 * This does not append a newline
179 static void putc(int c)
181 if (!at91_uart)
182 return;
184 while (!(__raw_readl(at91_uart + ATMEL_US_CSR) & ATMEL_US_TXRDY))
185 barrier();
186 __raw_writel(c, at91_uart + ATMEL_US_THR);
189 static inline void flush(void)
191 if (!at91_uart)
192 return;
194 /* wait for transmission to complete */
195 while (!(__raw_readl(at91_uart + ATMEL_US_CSR) & ATMEL_US_TXEMPTY))
196 barrier();
199 #define arch_decomp_wdog()
201 #endif