Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 2 | /* |
| 3 | * |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 4 | * Common functions for OMAP4/5 based boards |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 5 | * |
| 6 | * (C) Copyright 2010 |
| 7 | * Texas Instruments, <www.ti.com> |
| 8 | * |
| 9 | * Author : |
| 10 | * Aneesh V <aneesh@ti.com> |
| 11 | * Steve Sakoman <steve@sakoman.com> |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 12 | */ |
| 13 | #include <common.h> |
Lokesh Vutla | 01fe119 | 2017-05-05 13:45:27 +0530 | [diff] [blame] | 14 | #include <debug_uart.h> |
Jean-Jacques Hiblot | 40ecdbc | 2018-12-07 14:50:55 +0100 | [diff] [blame] | 15 | #include <fdtdec.h> |
Tom Rini | 47f7bca | 2012-08-13 12:03:19 -0700 | [diff] [blame] | 16 | #include <spl.h> |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 17 | #include <asm/arch/sys_proto.h> |
Alexey Brodkin | 1ace402 | 2014-02-26 17:47:58 +0400 | [diff] [blame] | 18 | #include <linux/sizes.h> |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 19 | #include <asm/emif.h> |
SRICHARAN R | 01b753f | 2013-02-04 04:22:00 +0000 | [diff] [blame] | 20 | #include <asm/omap_common.h> |
Lokesh Vutla | d4d986e | 2013-02-12 01:33:45 +0000 | [diff] [blame] | 21 | #include <linux/compiler.h> |
R Sricharan | de63ac2 | 2013-03-04 20:04:45 +0000 | [diff] [blame] | 22 | #include <asm/system.h> |
Jean-Jacques Hiblot | 40ecdbc | 2018-12-07 14:50:55 +0100 | [diff] [blame] | 23 | #include <dm/root.h> |
R Sricharan | de63ac2 | 2013-03-04 20:04:45 +0000 | [diff] [blame] | 24 | |
Nishanth Menon | 93e3568 | 2010-11-19 11:19:40 -0500 | [diff] [blame] | 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 27 | void do_set_mux(u32 base, struct pad_conf_entry const *array, int size) |
| 28 | { |
| 29 | int i; |
| 30 | struct pad_conf_entry *pad = (struct pad_conf_entry *) array; |
| 31 | |
| 32 | for (i = 0; i < size; i++, pad++) |
| 33 | writew(pad->val, base + pad->offset); |
| 34 | } |
| 35 | |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 36 | static void set_mux_conf_regs(void) |
| 37 | { |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 38 | switch (omap_hw_init_context()) { |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 39 | case OMAP_INIT_CONTEXT_SPL: |
Paul Kocialkowski | 3ef56e6 | 2016-02-27 19:18:56 +0100 | [diff] [blame] | 40 | set_muxconf_regs(); |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 41 | break; |
| 42 | case OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL: |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 43 | break; |
| 44 | case OMAP_INIT_CONTEXT_UBOOT_FROM_NOR: |
| 45 | case OMAP_INIT_CONTEXT_UBOOT_AFTER_CH: |
Paul Kocialkowski | 3ef56e6 | 2016-02-27 19:18:56 +0100 | [diff] [blame] | 46 | set_muxconf_regs(); |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 47 | break; |
| 48 | } |
| 49 | } |
| 50 | |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 51 | u32 cortex_rev(void) |
Aneesh V | ad577c8 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 52 | { |
| 53 | |
| 54 | unsigned int rev; |
| 55 | |
| 56 | /* Read Main ID Register (MIDR) */ |
| 57 | asm ("mrc p15, 0, %0, c0, c0, 0" : "=r" (rev)); |
| 58 | |
| 59 | return rev; |
| 60 | } |
| 61 | |
Tom Rini | 0ac6db2 | 2013-05-31 10:44:23 -0400 | [diff] [blame] | 62 | static void omap_rev_string(void) |
Aneesh V | ad577c8 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 63 | { |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 64 | u32 omap_rev = omap_revision(); |
Lokesh Vutla | de62688 | 2013-02-12 21:29:03 +0000 | [diff] [blame] | 65 | u32 soc_variant = (omap_rev & 0xF0000000) >> 28; |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 66 | u32 omap_variant = (omap_rev & 0xFFFF0000) >> 16; |
| 67 | u32 major_rev = (omap_rev & 0x00000F00) >> 8; |
| 68 | u32 minor_rev = (omap_rev & 0x000000F0) >> 4; |
Aneesh V | ad577c8 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 69 | |
Lokesh Vutla | 941f2fc | 2017-12-29 11:47:51 +0530 | [diff] [blame] | 70 | const char *sec_s, *package = NULL; |
Daniel Allred | 47c331e | 2016-05-19 19:10:52 -0500 | [diff] [blame] | 71 | |
| 72 | switch (get_device_type()) { |
| 73 | case TST_DEVICE: |
| 74 | sec_s = "TST"; |
| 75 | break; |
| 76 | case EMU_DEVICE: |
| 77 | sec_s = "EMU"; |
| 78 | break; |
| 79 | case HS_DEVICE: |
| 80 | sec_s = "HS"; |
| 81 | break; |
| 82 | case GP_DEVICE: |
| 83 | sec_s = "GP"; |
| 84 | break; |
| 85 | default: |
| 86 | sec_s = "?"; |
| 87 | } |
| 88 | |
Lokesh Vutla | 941f2fc | 2017-12-29 11:47:51 +0530 | [diff] [blame] | 89 | #if defined(CONFIG_DRA7XX) |
| 90 | if (is_dra76x()) { |
| 91 | switch (omap_rev & 0xF) { |
| 92 | case DRA762_ABZ_PACKAGE: |
| 93 | package = "ABZ"; |
| 94 | break; |
| 95 | case DRA762_ACD_PACKAGE: |
| 96 | default: |
| 97 | package = "ACD"; |
| 98 | break; |
| 99 | } |
| 100 | } |
| 101 | #endif |
| 102 | |
Lokesh Vutla | de62688 | 2013-02-12 21:29:03 +0000 | [diff] [blame] | 103 | if (soc_variant) |
| 104 | printf("OMAP"); |
| 105 | else |
| 106 | printf("DRA"); |
Lokesh Vutla | 941f2fc | 2017-12-29 11:47:51 +0530 | [diff] [blame] | 107 | printf("%x-%s ES%x.%x", omap_variant, sec_s, major_rev, minor_rev); |
| 108 | if (package) |
| 109 | printf(" %s package\n", package); |
| 110 | else |
| 111 | puts("\n"); |
Aneesh V | ad577c8 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 112 | } |
| 113 | |
Sricharan | 78f455c | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 114 | #ifdef CONFIG_SPL_BUILD |
Tom Rini | 861a86f | 2012-08-13 11:37:56 -0700 | [diff] [blame] | 115 | void spl_display_print(void) |
| 116 | { |
| 117 | omap_rev_string(); |
| 118 | } |
Sricharan | 78f455c | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 119 | #endif |
| 120 | |
Lokesh Vutla | d4d986e | 2013-02-12 01:33:45 +0000 | [diff] [blame] | 121 | void __weak srcomp_enable(void) |
| 122 | { |
| 123 | } |
| 124 | |
Kipisz, Steven | d88d6c8 | 2016-02-24 12:30:57 -0600 | [diff] [blame] | 125 | /** |
| 126 | * do_board_detect() - Detect board description |
| 127 | * |
| 128 | * Function to detect board description. This is expected to be |
| 129 | * overridden in the SoC family board file where desired. |
| 130 | */ |
| 131 | void __weak do_board_detect(void) |
| 132 | { |
| 133 | } |
| 134 | |
Keerthy | 61462cd | 2016-05-24 11:45:05 +0530 | [diff] [blame] | 135 | /** |
| 136 | * vcores_init() - Assign omap_vcores based on board |
| 137 | * |
| 138 | * Function to pick the vcores based on board. This is expected to be |
| 139 | * overridden in the SoC family board file where desired. |
| 140 | */ |
| 141 | void __weak vcores_init(void) |
| 142 | { |
| 143 | } |
| 144 | |
Lokesh Vutla | e850ed8 | 2016-03-07 14:49:54 +0530 | [diff] [blame] | 145 | void s_init(void) |
| 146 | { |
| 147 | } |
| 148 | |
| 149 | /** |
Lokesh Vutla | 941f2fc | 2017-12-29 11:47:51 +0530 | [diff] [blame] | 150 | * init_package_revision() - Initialize package revision |
| 151 | * |
| 152 | * Function to get the pacakage information. This is expected to be |
| 153 | * overridden in the SoC family file where desired. |
| 154 | */ |
| 155 | void __weak init_package_revision(void) |
| 156 | { |
| 157 | } |
| 158 | |
| 159 | /** |
Lokesh Vutla | e850ed8 | 2016-03-07 14:49:54 +0530 | [diff] [blame] | 160 | * early_system_init - Does Early system initialization. |
| 161 | * |
| 162 | * Does early system init of watchdog, muxing, andclocks |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 163 | * Watchdog disable is done always. For the rest what gets done |
Lokesh Vutla | e850ed8 | 2016-03-07 14:49:54 +0530 | [diff] [blame] | 164 | * depends on the boot mode in which this function is executed when |
| 165 | * 1. SPL running from SRAM |
| 166 | * 2. U-Boot running from FLASH |
| 167 | * 3. U-Boot loaded to SDRAM by SPL |
| 168 | * 4. U-Boot loaded to SDRAM by ROM code using the |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 169 | * Configuration Header feature |
| 170 | * Please have a look at the respective functions to see what gets |
| 171 | * done in each of these cases |
| 172 | * This function is called with SRAM stack. |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 173 | */ |
Lokesh Vutla | e850ed8 | 2016-03-07 14:49:54 +0530 | [diff] [blame] | 174 | void early_system_init(void) |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 175 | { |
Jean-Jacques Hiblot | 40ecdbc | 2018-12-07 14:50:55 +0100 | [diff] [blame] | 176 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_MULTI_DTB_FIT) |
| 177 | int ret; |
| 178 | int rescan; |
| 179 | #endif |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 180 | init_omap_revision(); |
SRICHARAN R | 01b753f | 2013-02-04 04:22:00 +0000 | [diff] [blame] | 181 | hw_data_init(); |
Lokesh Vutla | 941f2fc | 2017-12-29 11:47:51 +0530 | [diff] [blame] | 182 | init_package_revision(); |
SRICHARAN R | 01b753f | 2013-02-04 04:22:00 +0000 | [diff] [blame] | 183 | |
Lokesh Vutla | 38f25b1 | 2012-05-29 19:26:43 +0000 | [diff] [blame] | 184 | #ifdef CONFIG_SPL_BUILD |
Lokesh Vutla | 663f6fc | 2016-07-12 14:47:41 +0530 | [diff] [blame] | 185 | if (warm_reset()) |
Lokesh Vutla | 38f25b1 | 2012-05-29 19:26:43 +0000 | [diff] [blame] | 186 | force_emif_self_refresh(); |
| 187 | #endif |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 188 | watchdog_init(); |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 189 | set_mux_conf_regs(); |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 190 | #ifdef CONFIG_SPL_BUILD |
Lokesh Vutla | d4d986e | 2013-02-12 01:33:45 +0000 | [diff] [blame] | 191 | srcomp_enable(); |
Aneesh V | 4ecfcfa | 2011-09-08 11:05:56 -0400 | [diff] [blame] | 192 | do_io_settings(); |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 193 | #endif |
Kipisz, Steven | 93e6253 | 2016-02-24 12:30:52 -0600 | [diff] [blame] | 194 | setup_early_clocks(); |
Jean-Jacques Hiblot | 40ecdbc | 2018-12-07 14:50:55 +0100 | [diff] [blame] | 195 | |
Lokesh Vutla | 4bd754d | 2017-06-27 13:50:56 +0530 | [diff] [blame] | 196 | #ifdef CONFIG_SPL_BUILD |
| 197 | /* |
| 198 | * Save the boot parameters passed from romcode. |
| 199 | * We cannot delay the saving further than this, |
| 200 | * to prevent overwrites. |
| 201 | */ |
| 202 | save_omap_boot_params(); |
Jean-Jacques Hiblot | a4d7286 | 2017-09-15 12:57:33 +0200 | [diff] [blame] | 203 | spl_early_init(); |
| 204 | #endif |
Jean-Jacques Hiblot | 2b30b38 | 2018-12-07 14:50:45 +0100 | [diff] [blame] | 205 | do_board_detect(); |
| 206 | |
Jean-Jacques Hiblot | 40ecdbc | 2018-12-07 14:50:55 +0100 | [diff] [blame] | 207 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_MULTI_DTB_FIT) |
| 208 | /* |
| 209 | * Board detection has been done. |
| 210 | * Let us see if another dtb wouldn't be a better match |
| 211 | * for our board |
| 212 | */ |
| 213 | ret = fdtdec_resetup(&rescan); |
| 214 | if (!ret && rescan) { |
| 215 | dm_uninit(); |
| 216 | dm_init_and_scan(true); |
| 217 | } |
| 218 | #endif |
| 219 | |
Keerthy | 61462cd | 2016-05-24 11:45:05 +0530 | [diff] [blame] | 220 | vcores_init(); |
Lokesh Vutla | 01fe119 | 2017-05-05 13:45:27 +0530 | [diff] [blame] | 221 | #ifdef CONFIG_DEBUG_UART_OMAP |
| 222 | debug_uart_init(); |
| 223 | #endif |
Aneesh V | 3776801 | 2011-07-21 09:10:07 -0400 | [diff] [blame] | 224 | prcm_init(); |
Simon Glass | 7ae8350 | 2015-03-03 08:03:02 -0700 | [diff] [blame] | 225 | } |
| 226 | |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 227 | #ifdef CONFIG_SPL_BUILD |
Simon Glass | 7ae8350 | 2015-03-03 08:03:02 -0700 | [diff] [blame] | 228 | void board_init_f(ulong dummy) |
| 229 | { |
Lokesh Vutla | e850ed8 | 2016-03-07 14:49:54 +0530 | [diff] [blame] | 230 | early_system_init(); |
Lokesh Vutla | 7b92252 | 2014-08-04 19:42:24 +0530 | [diff] [blame] | 231 | #ifdef CONFIG_BOARD_EARLY_INIT_F |
| 232 | board_early_init_f(); |
| 233 | #endif |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 234 | /* For regular u-boot sdram_init() is called from dram_init() */ |
| 235 | sdram_init(); |
Lokesh Vutla | 8628279 | 2017-04-18 17:27:24 +0530 | [diff] [blame] | 236 | gd->ram_size = omap_sdram_size(); |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 237 | } |
Simon Glass | 7ae8350 | 2015-03-03 08:03:02 -0700 | [diff] [blame] | 238 | #endif |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 239 | |
Lokesh Vutla | e850ed8 | 2016-03-07 14:49:54 +0530 | [diff] [blame] | 240 | int arch_cpu_init_dm(void) |
| 241 | { |
| 242 | early_system_init(); |
| 243 | return 0; |
| 244 | } |
| 245 | |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 246 | /* |
| 247 | * Routine: wait_for_command_complete |
| 248 | * Description: Wait for posting to finish on watchdog |
| 249 | */ |
| 250 | void wait_for_command_complete(struct watchdog *wd_base) |
| 251 | { |
| 252 | int pending = 1; |
| 253 | do { |
| 254 | pending = readl(&wd_base->wwps); |
| 255 | } while (pending); |
| 256 | } |
| 257 | |
| 258 | /* |
| 259 | * Routine: watchdog_init |
| 260 | * Description: Shut down watch dogs |
| 261 | */ |
| 262 | void watchdog_init(void) |
| 263 | { |
| 264 | struct watchdog *wd2_base = (struct watchdog *)WDT2_BASE; |
| 265 | |
| 266 | writel(WD_UNLOCK1, &wd2_base->wspr); |
| 267 | wait_for_command_complete(wd2_base); |
| 268 | writel(WD_UNLOCK2, &wd2_base->wspr); |
| 269 | } |
| 270 | |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 271 | |
| 272 | /* |
| 273 | * This function finds the SDRAM size available in the system |
| 274 | * based on DMM section configurations |
| 275 | * This is needed because the size of memory installed may be |
| 276 | * different on different versions of the board |
| 277 | */ |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 278 | u32 omap_sdram_size(void) |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 279 | { |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 280 | u32 section, i, valid; |
| 281 | u64 sdram_start = 0, sdram_end = 0, addr, |
Lokesh Vutla | d7630da | 2014-05-12 13:49:33 +0530 | [diff] [blame] | 282 | size, total_size = 0, trap_size = 0, trap_start = 0; |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 283 | |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 284 | for (i = 0; i < 4; i++) { |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 285 | section = __raw_readl(DMM_BASE + i*4); |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 286 | valid = (section & EMIF_SDRC_ADDRSPC_MASK) >> |
| 287 | (EMIF_SDRC_ADDRSPC_SHIFT); |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 288 | addr = section & EMIF_SYS_ADDR_MASK; |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 289 | |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 290 | /* See if the address is valid */ |
Tom Rini | 939911a | 2014-05-16 13:02:24 -0400 | [diff] [blame] | 291 | if ((addr >= TI_ARMV7_DRAM_ADDR_SPACE_START) && |
| 292 | (addr < TI_ARMV7_DRAM_ADDR_SPACE_END)) { |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 293 | size = ((section & EMIF_SYS_SIZE_MASK) >> |
| 294 | EMIF_SYS_SIZE_SHIFT); |
| 295 | size = 1 << size; |
| 296 | size *= SZ_16M; |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 297 | |
| 298 | if (valid != DMM_SDRC_ADDR_SPC_INVALID) { |
| 299 | if (!sdram_start || (addr < sdram_start)) |
| 300 | sdram_start = addr; |
| 301 | if (!sdram_end || ((addr + size) > sdram_end)) |
| 302 | sdram_end = addr + size; |
| 303 | } else { |
| 304 | trap_size = size; |
Lokesh Vutla | d7630da | 2014-05-12 13:49:33 +0530 | [diff] [blame] | 305 | trap_start = addr; |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 306 | } |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 307 | } |
| 308 | } |
Lokesh Vutla | d7630da | 2014-05-12 13:49:33 +0530 | [diff] [blame] | 309 | |
| 310 | if ((trap_start >= sdram_start) && (trap_start < sdram_end)) |
| 311 | total_size = (sdram_end - sdram_start) - (trap_size); |
| 312 | else |
| 313 | total_size = sdram_end - sdram_start; |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 314 | |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 315 | return total_size; |
| 316 | } |
| 317 | |
| 318 | |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 319 | /* |
| 320 | * Routine: dram_init |
| 321 | * Description: sets uboots idea of sdram size |
| 322 | */ |
| 323 | int dram_init(void) |
| 324 | { |
Aneesh V | 2ae610f | 2011-07-21 09:10:09 -0400 | [diff] [blame] | 325 | sdram_init(); |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 326 | gd->ram_size = omap_sdram_size(); |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 327 | return 0; |
| 328 | } |
| 329 | |
| 330 | /* |
| 331 | * Print board information |
| 332 | */ |
| 333 | int checkboard(void) |
| 334 | { |
| 335 | puts(sysinfo.board_string); |
| 336 | return 0; |
| 337 | } |
| 338 | |
Masahiro Yamada | 365475e | 2014-02-13 18:30:26 +0900 | [diff] [blame] | 339 | #if defined(CONFIG_DISPLAY_CPUINFO) |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 340 | /* |
| 341 | * Print CPU information |
| 342 | */ |
| 343 | int print_cpuinfo(void) |
Aneesh V | 8b457fa | 2011-06-16 23:30:52 +0000 | [diff] [blame] | 344 | { |
Andreas Müller | 761ca31 | 2012-01-04 15:26:24 +0000 | [diff] [blame] | 345 | puts("CPU : "); |
| 346 | omap_rev_string(); |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 347 | |
| 348 | return 0; |
| 349 | } |
Masahiro Yamada | 365475e | 2014-02-13 18:30:26 +0900 | [diff] [blame] | 350 | #endif |