blob: 9bccbd4f68d930ae1e35abe2afad304108956b24 [file] [log] [blame]
Jagan Teki2952f392020-01-09 14:22:15 +05301// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
2/*
3 * (C) Copyright 2019 Amarula Solutions(India)
4 * Author: Jagan Teki <jagan@amarulasolutions.com>
5 */
6
7#include <common.h>
8
9int print_cpuinfo(void)
10{
11 printf("SoC: Rockchip %s\n", CONFIG_SYS_SOC);
12
13 /* TODO print operating temparature and clock */
14
15 return 0;
16}