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
26 #include <linux/atmel_serial.h>
27 #include <mach/hardware.h>
29 #include <mach/at91_dbgu.h>
32 void __iomem
*at91_uart
;
34 #if !defined(CONFIG_ARCH_AT91X40)
35 static const u32 uarts_rm9200
[] = {
44 static const u32 uarts_sam9260
[] = {
55 static const u32 uarts_sam9261
[] = {
63 static const u32 uarts_sam9263
[] = {
71 static const u32 uarts_sam9g45
[] = {
80 static const u32 uarts_sam9rl
[] = {
89 static const u32 uarts_sam9x5
[] = {
91 AT91SAM9X5_BASE_USART0
,
92 AT91SAM9X5_BASE_USART1
,
93 AT91SAM9X5_BASE_USART2
,
97 static const u32 uarts_sama5
[] = {
106 static inline const u32
* decomp_soc_detect(void __iomem
*dbgu_base
)
110 cidr
= __raw_readl(dbgu_base
+ AT91_DBGU_CIDR
);
111 socid
= cidr
& ~AT91_CIDR_VERSION
;
114 case ARCH_ID_AT91RM9200
:
117 case ARCH_ID_AT91SAM9G20
:
118 case ARCH_ID_AT91SAM9260
:
119 return uarts_sam9260
;
121 case ARCH_ID_AT91SAM9261
:
122 return uarts_sam9261
;
124 case ARCH_ID_AT91SAM9263
:
125 return uarts_sam9263
;
127 case ARCH_ID_AT91SAM9G45
:
128 return uarts_sam9g45
;
130 case ARCH_ID_AT91SAM9RL64
:
133 case ARCH_ID_AT91SAM9N12
:
134 case ARCH_ID_AT91SAM9X5
:
137 case ARCH_ID_SAMA5D3
:
142 if ((cidr
& ~AT91_CIDR_EXT
) == ARCH_ID_AT91SAM9G10
) {
143 return uarts_sam9261
;
146 else if ((cidr
& AT91_CIDR_ARCH
) == ARCH_FAMILY_AT91SAM9XE
) {
147 return uarts_sam9260
;
153 static inline void arch_decomp_setup(void)
158 usarts
= decomp_soc_detect((void __iomem
*)AT91_BASE_DBGU0
);
161 usarts
= decomp_soc_detect((void __iomem
*)AT91_BASE_DBGU1
);
168 /* physical address */
169 at91_uart
= (void __iomem
*)usarts
[i
];
171 if (__raw_readl(at91_uart
+ ATMEL_US_BRGR
))
179 static inline void arch_decomp_setup(void)
186 * The following code assumes the serial port has already been
187 * initialized by the bootloader. If you didn't setup a port in
188 * your bootloader then nothing will appear (which might be desired).
190 * This does not append a newline
192 static void putc(int c
)
197 while (!(__raw_readl(at91_uart
+ ATMEL_US_CSR
) & ATMEL_US_TXRDY
))
199 __raw_writel(c
, at91_uart
+ ATMEL_US_THR
);
202 static inline void flush(void)
207 /* wait for transmission to complete */
208 while (!(__raw_readl(at91_uart
+ ATMEL_US_CSR
) & ATMEL_US_TXEMPTY
))