]> Git Repo - u-boot.git/blob - api/api_platform-mips.c
Merge branch '2024-05-06-remove-include-common_h' into next
[u-boot.git] / api / api_platform-mips.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2007 Stanislav Galabov <[email protected]>
4  *
5  * 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
12 #include <asm/global_data.h>
13
14 #include "api_private.h"
15
16 DECLARE_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  */
23 int platform_sys_info(struct sys_info *si)
24 {
25
26         platform_set_mr(si, gd->ram_base, gd->ram_size, MR_ATTR_DRAM);
27
28         return 1;
29 }
This page took 0.027454 seconds and 4 git commands to generate.