blob: 262b35a277795143c679147b306db6230869e88e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stanislav Galabov7c604232016-02-04 12:13:44 +02002/*
3 * (C) Copyright 2007 Stanislav Galabov <sgalabov@gmail.com>
4 *
Stanislav Galabov7c604232016-02-04 12:13:44 +02005 * This file contains routines that fetch data from bd_info sources
6 */
7
8#include <config.h>
9#include <linux/types.h>
10#include <api_public.h>
11
Stanislav Galabov7c604232016-02-04 12:13:44 +020012#include <asm/global_data.h>
13
14#include "api_private.h"
15
16DECLARE_GLOBAL_DATA_PTR;
17
18/*
19 * Important notice: handling of individual fields MUST be kept in sync with
20 * include/asm-generic/u-boot.h, so any changes
21 * need to reflect their current state and layout of structures involved!
22 */
23int platform_sys_info(struct sys_info *si)
24{
25
Stefan Roesee207f222020-08-12 13:16:36 +020026 platform_set_mr(si, gd->ram_base, gd->ram_size, MR_ATTR_DRAM);
Stanislav Galabov7c604232016-02-04 12:13:44 +020027
28 return 1;
29}