blob: b9e57659f0ffbe7928d92a7b77a451cee2996fe8 [file] [log] [blame]
Minkyu Kangae6f0c62009-07-20 11:40:01 +09001/*
Steve Sakoman1ad21582010-06-08 13:07:46 -07002 * (C) Copyright 2010
3 * Texas Instruments, <www.ti.com>
Minkyu Kangae6f0c62009-07-20 11:40:01 +09004 *
Steve Sakoman1ad21582010-06-08 13:07:46 -07005 * Author :
6 * Aneesh V <aneesh@ti.com>
7 * Steve Sakoman <steve@sakoman.com>
Minkyu Kangae6f0c62009-07-20 11:40:01 +09008 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
Steve Sakoman1ad21582010-06-08 13:07:46 -070025#include <common.h>
26#include <asm/arch/sys_proto.h>
27
28/*
29 * get_device_type(): tell if GP/HS/EMU/TST
30 */
31u32 get_device_type(void)
32{
33 return 0;
34}
35
36/*
37 * get_board_rev() - get board revision
38 */
39u32 get_board_rev(void)
40{
41 return 0x20;
42}
43
44/*
45 * Print CPU information
46 */
47int print_cpuinfo(void)
48{
49
50 puts("CPU : OMAP4430\n");
51
52 return 0;
53}