Minkyu Kang | ae6f0c6 | 2009-07-20 11:40:01 +0900 | [diff] [blame] | 1 | /* |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 2 | * (C) Copyright 2010 |
| 3 | * Texas Instruments, <www.ti.com> |
Minkyu Kang | ae6f0c6 | 2009-07-20 11:40:01 +0900 | [diff] [blame] | 4 | * |
Steve Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 5 | * Author : |
| 6 | * Aneesh V <aneesh@ti.com> |
| 7 | * Steve Sakoman <steve@sakoman.com> |
Minkyu Kang | ae6f0c6 | 2009-07-20 11:40:01 +0900 | [diff] [blame] | 8 | * |
| 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 Sakoman | 1ad2158 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 25 | #include <common.h> |
| 26 | #include <asm/arch/sys_proto.h> |
| 27 | |
| 28 | /* |
| 29 | * get_device_type(): tell if GP/HS/EMU/TST |
| 30 | */ |
| 31 | u32 get_device_type(void) |
| 32 | { |
| 33 | return 0; |
| 34 | } |
| 35 | |
| 36 | /* |
| 37 | * get_board_rev() - get board revision |
| 38 | */ |
| 39 | u32 get_board_rev(void) |
| 40 | { |
| 41 | return 0x20; |
| 42 | } |
| 43 | |
| 44 | /* |
| 45 | * Print CPU information |
| 46 | */ |
| 47 | int print_cpuinfo(void) |
| 48 | { |
| 49 | |
| 50 | puts("CPU : OMAP4430\n"); |
| 51 | |
| 52 | return 0; |
| 53 | } |