blob: b3fce503168731d0abc957ce5a85f99f5de4c134 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Patrice Chotard5cc16d82017-02-21 13:37:12 +01002/*
Patrice Chotardfb48bc42017-10-23 09:53:57 +02003 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
Patrice Chotard0f8106f2020-12-02 18:47:30 +01004 * Author(s): Patrice Chotard, <patrice.chotard@foss.st.com> for STMicroelectronics.
Patrice Chotard5cc16d82017-02-21 13:37:12 +01005 */
6
7#ifndef __CONFIG_H
8#define __CONFIG_H
9
Patrice Chotard4807c402018-07-16 10:04:19 +020010#include <linux/sizes.h>
11
Patrice Chotard5cc16d82017-02-21 13:37:12 +010012/* ram memory-related information */
Patrice Chotard5cc16d82017-02-21 13:37:12 +010013#define PHYS_SDRAM_1 0x40000000
Tom Riniaa6e94d2022-11-16 13:10:37 -050014#define CFG_SYS_SDRAM_BASE PHYS_SDRAM_1
Nicolas Le Bayon7aac4e92017-09-25 09:14:19 +020015#define PHYS_SDRAM_1_SIZE 0x3E000000
Patrice Chotard5cc16d82017-02-21 13:37:12 +010016
Tom Rini65cc0e22022-11-16 13:10:41 -050017#define CFG_SYS_HZ_CLOCK 750000000 /* 750 MHz */
Patrice Chotard5cc16d82017-02-21 13:37:12 +010018
Patrice Chotard5cc16d82017-02-21 13:37:12 +010019/* Environment */
Patrice Chotard3ef751e2017-09-25 09:14:18 +020020
Patrice Chotard83ba2432020-02-03 15:00:59 +010021/*
22 * For booting Linux, use the first 256 MB of memory, since this is
23 * the maximum mapped by the Linux kernel during initialization.
24 */
Tom Rini65cc0e22022-11-16 13:10:41 -050025#define CFG_SYS_BOOTMAPSZ SZ_256M
Patrice Chotard83ba2432020-02-03 15:00:59 +010026
Patrice Chotard3ef751e2017-09-25 09:14:18 +020027#define BOOT_TARGET_DEVICES(func) \
28 func(MMC, mmc, 0) \
29 func(USB, usb, 0) \
30 func(DHCP, dhcp, na)
31#include <config_distro_bootcmd.h>
Tom Rini0613c362022-12-04 10:03:50 -050032#define CFG_EXTRA_ENV_SETTINGS \
Patrice Chotard3ef751e2017-09-25 09:14:18 +020033 "kernel_addr_r=0x40000000\0" \
34 "fdtfile=stih410-b2260.dtb\0" \
35 "fdt_addr_r=0x47000000\0" \
36 "scriptaddr=0x50000000\0" \
Riku Voipio0899bd22018-05-24 17:15:26 +030037 "pxefile_addr_r=0x50100000\0" \
Lee Jonesb8139082017-09-25 09:14:20 +020038 "ramdisk_addr_r=0x48000000\0" \
Patrice Chotard3ef751e2017-09-25 09:14:18 +020039 BOOTENV
40
Patrice Chotard5cc16d82017-02-21 13:37:12 +010041/* Extra Commands */
Patrice Chotard5cc16d82017-02-21 13:37:12 +010042
Patrice Chotarde9d12572017-09-05 11:04:22 +020043/* USB Configs */
Patrice Chotarde9d12572017-09-05 11:04:22 +020044
Patrice Chotarde9d12572017-09-05 11:04:22 +020045/* NET Configs */
Patrice Chotarde9d12572017-09-05 11:04:22 +020046
Patrice Chotard5cc16d82017-02-21 13:37:12 +010047#endif /* __CONFIG_H */