mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 14:53:06 +00:00
16 lines
297 B
C
16 lines
297 B
C
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
/*
|
||
|
* Copyright (C) 2021-2023 Conclusive Engineering Sp. z o. o.
|
||
|
*/
|
||
|
|
||
|
#ifndef __CONFIG_H
|
||
|
#define __CONFIG_H
|
||
|
|
||
|
#include "at91-sama5_common.h"
|
||
|
|
||
|
/* SDRAM */
|
||
|
#define CFG_SYS_SDRAM_BASE 0x20000000
|
||
|
#define CFG_SYS_SDRAM_SIZE 0x10000000
|
||
|
|
||
|
#endif
|