blob: 8b10dbaed1499d7956b6c74b8edc6b0b55ff9076 [file] [log] [blame]
Ricardo Ribalda Delgado1f4d5322008-10-21 18:29:46 +02001/*
2 * (C) Copyright 2008
Ricardo Ribalda Delgado5b218ae2016-01-26 11:24:08 +01003 * Ricado Ribalda-Universidad Autonoma de Madrid-ricardo.ribalda@gmail.com
Ricardo Ribalda Delgado1f4d5322008-10-21 18:29:46 +02004 * This work has been supported by: QTechnology http://qtec.com/
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Ricardo Ribalda Delgado1f4d5322008-10-21 18:29:46 +02007*/
8
9#include <config.h>
10#include <common.h>
11#include <asm/processor.h>
12
13ulong __get_PCI_freq(void)
14{
15 return 0;
16}
17
18ulong get_PCI_freq(void) __attribute__((weak, alias("__get_PCI_freq")));
19
20int __board_pre_init(void)
21{
22 return 0;
23}
24int board_pre_init(void) __attribute__((weak, alias("__board_pre_init")));
25
26int __checkboard(void)
27{
28 puts("Xilinx PPC405 Generic Board\n");
29 return 0;
30}
31int checkboard(void) __attribute__((weak, alias("__checkboard")));
32
33phys_size_t __initdram(int board_type)
34{
35 return get_ram_size(XPAR_DDR2_SDRAM_MEM_BASEADDR,
36 CONFIG_SYS_SDRAM_SIZE_MB * 1024 * 1024);
37}
38phys_size_t initdram(int) __attribute__((weak, alias("__initdram")));
39
40void __get_sys_info(sys_info_t *sysInfo)
41{
42 sysInfo->freqProcessor = XPAR_CORE_CLOCK_FREQ_HZ;
43 sysInfo->freqPLB = XPAR_PLB_CLOCK_FREQ_HZ;
44 sysInfo->freqPCI = 0;
45
46 return;
47}
48void get_sys_info(sys_info_t *) __attribute__((weak, alias("__get_sys_info")));