MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / asm-arm / arch-s3c24a0 / uncompress-jtag.h
blobe5960b937157ca7bc397c14abf2249e6e629d6a6
1 /*
2 * linux/include/asm-armnommu/arch-s5c7375/uncompress.h
4 * Copyright (C) 2004 Hyok S. Choi, Samsung Electronics Co.,Ltd.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <asm-armnommu/hardware/dcc.h>
22 #ifndef __UNCOMPRESS_H__
23 #define __UNCOMPRESS_H__
26 * just use DCC JTAG1 port
28 static inline void puts(const char *s)
30 dcc_puts(s);
33 static void puts_hex(unsigned long i)
35 char lhex_buf[]="0x00000000";
36 unsigned long ii,v;
38 for(ii=9;ii>1;ii--)
40 v=(((0x0000000F << ((9-ii)*4)) & i) >> ((9-ii)*4));
41 if(v>9)
42 lhex_buf[ii]=(char)('A'+v-10);
43 else
44 lhex_buf[ii]=(char)('0'+v);
47 dcc_puts(lhex_buf);
52 * nothing to do
54 #define arch_decomp_setup()
56 #define arch_decomp_wdog()
58 #endif