1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2017 Microchip
4 * Wenyou Yang <wenyou.yang@microchip.com>
13 #include <video_console.h>
15 #include <asm/arch/clk.h>
17 DECLARE_GLOBAL_DATA_PTR;
19 int at91_video_show_board_info(void)
21 struct vidconsole_priv *priv;
22 ulong dram_size, nand_size;
26 char *corp = "2017 Microchip Technology Inc.\n";
28 struct udevice *dev, *con;
33 len += sprintf(&buf[len], "%s\n", U_BOOT_VERSION);
34 memcpy(&buf[len], corp, strlen(corp));
36 len += sprintf(&buf[len], "%s CPU at %s MHz\n", get_cpu_name(),
37 strmhz(temp, get_cpu_clk_rate()));
40 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
41 dram_size += gd->bd->bi_dram[i].size;
44 #ifdef CONFIG_NAND_ATMEL
45 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
46 nand_size += get_nand_dev_by_index(i)->size;
49 len += sprintf(&buf[len], "%ld MB SDRAM, %ld MB NAND\n",
50 dram_size >> 20, nand_size >> 20);
52 ret = uclass_get_device(UCLASS_VIDEO, 0, &dev);
56 microchip_logo_info(&logo_info);
57 ret = video_bmp_display(dev, logo_info.logo_addr,
58 logo_info.logo_x_offset,
59 logo_info.logo_y_offset, false);
63 ret = uclass_get_device(UCLASS_VIDEO_CONSOLE, 0, &con);
67 priv = dev_get_uclass_priv(con);
68 vidconsole_position_cursor(con, 0, (logo_info.logo_height +
69 priv->y_charsize - 1) / priv->y_charsize);
70 for (s = buf, i = 0; i < len; s++, i++)
71 vidconsole_put_char(con, *s);