blob: 33cd0903d25366c22265e771c8d23e3ff32f9fa9 [file] [log] [blame]
Mihai Sain7ef4a642024-02-27 15:44:02 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2024 Microchip Technology Inc. and its subsidiaries
4 *
5 * Author: Mihai Sain <mihai.sain@microchip.com>
6 *
7 */
8
Tom Riniabb9a042024-05-18 20:20:43 -06009#include <common.h>
Mihai Sain7ef4a642024-02-27 15:44:02 +020010#include <init.h>
11#include <asm/global_data.h>
12#include <asm/io.h>
13#include <asm/arch/at91_common.h>
14#include <asm/arch/atmel_pio4.h>
15#include <asm/arch/gpio.h>
16#include <asm/arch/sama7g5.h>
17
18DECLARE_GLOBAL_DATA_PTR;
19
20int board_init(void)
21{
22 // Address of boot parameters
23 gd->bd->bi_boot_params = gd->bd->bi_dram[0].start + 0x100;
24
25 return 0;
26}
27
28int dram_init_banksize(void)
29{
30 return fdtdec_setup_memory_banksize();
31}
32
33int dram_init(void)
34{
35 return fdtdec_setup_mem_size_base();
36}