]> git.ipfire.org Git - thirdparty/u-boot.git/blame - api/api_platform-powerpc.c
global: Make <asm/global_data.h> include <asm/u-boot.h>
[thirdparty/u-boot.git] / api / api_platform-powerpc.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
500856eb
RJ
2/*
3 * (C) Copyright 2007 Semihalf
4 *
5 * Written by: Rafal Jaworowski <raj@semihalf.com>
6 *
500856eb
RJ
7 * This file contains routines that fetch data from PowerPC-dependent sources
8 * (bd_info etc.)
500856eb
RJ
9 */
10
11#include <config.h>
500856eb
RJ
12#include <linux/types.h>
13#include <api_public.h>
14
500856eb
RJ
15#include <asm/global_data.h>
16
17#include "api_private.h"
18
19DECLARE_GLOBAL_DATA_PTR;
20
21/*
22 * Important notice: handling of individual fields MUST be kept in sync with
23 * include/asm-ppc/u-boot.h and include/asm-ppc/global_data.h, so any changes
24 * need to reflect their current state and layout of structures involved!
25 */
26int platform_sys_info(struct sys_info *si)
27{
28 si->clk_bus = gd->bus_clk;
29 si->clk_cpu = gd->cpu_clk;
30
ee1e600c 31#if defined(CONFIG_MPC8xx) || defined(CONFIG_E500) || defined(CONFIG_MPC86xx)
500856eb 32#define bi_bar bi_immr_base
0f898604 33#elif defined(CONFIG_MPC83xx)
500856eb 34#define bi_bar bi_immrbar
500856eb
RJ
35#endif
36
37#if defined(bi_bar)
38 si->bar = gd->bd->bi_bar;
39#undef bi_bar
40#else
12c6670f 41 si->bar = 0;
500856eb
RJ
42#endif
43
e207f225 44 platform_set_mr(si, gd->ram_base, gd->ram_size, MR_ATTR_DRAM);
500856eb
RJ
45 platform_set_mr(si, gd->bd->bi_flashstart, gd->bd->bi_flashsize, MR_ATTR_FLASH);
46 platform_set_mr(si, gd->bd->bi_sramstart, gd->bd->bi_sramsize, MR_ATTR_SRAM);
47
48 return 1;
49}