Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 2 | /* |
Patrice Chotard | fb48bc4 | 2017-10-23 09:53:57 +0200 | [diff] [blame] | 3 | * Copyright (C) 2017, STMicroelectronics - All Rights Reserved |
Patrice Chotard | 0f8106f | 2020-12-02 18:47:30 +0100 | [diff] [blame] | 4 | * Author(s): Patrice Chotard, <patrice.chotard@foss.st.com> for STMicroelectronics. |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __CONFIG_H |
| 8 | #define __CONFIG_H |
| 9 | |
Patrice Chotard | 4807c40 | 2018-07-16 10:04:19 +0200 | [diff] [blame] | 10 | #include <linux/sizes.h> |
| 11 | |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 12 | /* ram memory-related information */ |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 13 | #define PHYS_SDRAM_1 0x40000000 |
| 14 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 |
Nicolas Le Bayon | 7aac4e9 | 2017-09-25 09:14:19 +0200 | [diff] [blame] | 15 | #define PHYS_SDRAM_1_SIZE 0x3E000000 |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 16 | |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 17 | #define CONFIG_SYS_HZ_CLOCK 1000000000 /* 1 GHz */ |
| 18 | |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 19 | /* Environment */ |
Patrice Chotard | 3ef751e | 2017-09-25 09:14:18 +0200 | [diff] [blame] | 20 | |
Patrice Chotard | 83ba243 | 2020-02-03 15:00:59 +0100 | [diff] [blame] | 21 | /* |
| 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 | */ |
| 25 | #define CONFIG_SYS_BOOTMAPSZ SZ_256M |
| 26 | |
Patrice Chotard | 4807c40 | 2018-07-16 10:04:19 +0200 | [diff] [blame] | 27 | #define CONFIG_SYS_BOOTM_LEN SZ_16M |
Patrice Chotard | 3ef751e | 2017-09-25 09:14:18 +0200 | [diff] [blame] | 28 | |
Patrice Chotard | 3ef751e | 2017-09-25 09:14:18 +0200 | [diff] [blame] | 29 | #define BOOT_TARGET_DEVICES(func) \ |
| 30 | func(MMC, mmc, 0) \ |
| 31 | func(USB, usb, 0) \ |
| 32 | func(DHCP, dhcp, na) |
| 33 | #include <config_distro_bootcmd.h> |
| 34 | #define CONFIG_BOOTFILE "uImage" |
| 35 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 36 | "kernel_addr_r=0x40000000\0" \ |
| 37 | "fdtfile=stih410-b2260.dtb\0" \ |
| 38 | "fdt_addr_r=0x47000000\0" \ |
| 39 | "scriptaddr=0x50000000\0" \ |
Riku Voipio | 0899bd2 | 2018-05-24 17:15:26 +0300 | [diff] [blame] | 40 | "pxefile_addr_r=0x50100000\0" \ |
Lee Jones | b813908 | 2017-09-25 09:14:20 +0200 | [diff] [blame] | 41 | "ramdisk_addr_r=0x48000000\0" \ |
Patrice Chotard | 3ef751e | 2017-09-25 09:14:18 +0200 | [diff] [blame] | 42 | BOOTENV |
| 43 | |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 44 | /* Extra Commands */ |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 45 | |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 46 | #define CONFIG_SYS_GBL_DATA_SIZE 1024 /* Global data structures */ |
| 47 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - \ |
| 48 | CONFIG_SYS_MALLOC_LEN - \ |
| 49 | CONFIG_SYS_GBL_DATA_SIZE) |
| 50 | |
| 51 | /* Monitor Command Prompt */ |
| 52 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
| 53 | |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 54 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 |
| 55 | |
Patrice Chotard | e9d1257 | 2017-09-05 11:04:22 +0200 | [diff] [blame] | 56 | /* USB Configs */ |
| 57 | #define CONFIG_USB_OHCI_NEW |
| 58 | #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2 |
| 59 | |
Patrice Chotard | e9d1257 | 2017-09-05 11:04:22 +0200 | [diff] [blame] | 60 | /* NET Configs */ |
Patrice Chotard | e9d1257 | 2017-09-05 11:04:22 +0200 | [diff] [blame] | 61 | |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 62 | #endif /* __CONFIG_H */ |