Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 1 | /* |
Patrice Chotard | fb48bc4 | 2017-10-23 09:53:57 +0200 | [diff] [blame] | 2 | * Copyright (C) 2017, STMicroelectronics - All Rights Reserved |
| 3 | * Author(s): Patrice Chotard, <patrice.chotard@st.com> for STMicroelectronics. |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0+ |
| 6 | */ |
| 7 | |
| 8 | #ifndef __CONFIG_H |
| 9 | #define __CONFIG_H |
| 10 | |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 11 | /* ram memory-related information */ |
| 12 | #define CONFIG_NR_DRAM_BANKS 1 |
| 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 | #define CONFIG_SYS_TEXT_BASE 0x7D600000 |
| 17 | #define CONFIG_SYS_LOAD_ADDR PHYS_SDRAM_1 /* default load addr */ |
| 18 | |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 19 | #define CONFIG_SYS_HZ_CLOCK 1000000000 /* 1 GHz */ |
| 20 | |
Patrice Chotard | 3ef751e | 2017-09-25 09:14:18 +0200 | [diff] [blame] | 21 | #include <config_distro_defaults.h> |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 22 | /* Environment */ |
Patrice Chotard | 3ef751e | 2017-09-25 09:14:18 +0200 | [diff] [blame] | 23 | |
| 24 | #define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR |
| 25 | |
| 26 | #define CONFIG_ENV_VARS_UBOOT_CONFIG |
| 27 | |
| 28 | #define BOOT_TARGET_DEVICES(func) \ |
| 29 | func(MMC, mmc, 0) \ |
| 30 | func(USB, usb, 0) \ |
| 31 | func(DHCP, dhcp, na) |
| 32 | #include <config_distro_bootcmd.h> |
| 33 | #define CONFIG_BOOTFILE "uImage" |
| 34 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 35 | "kernel_addr_r=0x40000000\0" \ |
| 36 | "fdtfile=stih410-b2260.dtb\0" \ |
| 37 | "fdt_addr_r=0x47000000\0" \ |
| 38 | "scriptaddr=0x50000000\0" \ |
| 39 | "fdt_high=0xffffffffffffffff\0" \ |
| 40 | "initrd_high=0xffffffffffffffff\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 | |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 45 | #define CONFIG_ENV_SIZE 0x4000 |
| 46 | |
| 47 | /* Extra Commands */ |
| 48 | #define CONFIG_CMD_ASKENV |
| 49 | #define CONFIG_SYS_LONGHELP |
| 50 | |
| 51 | #define CONFIG_SETUP_MEMORY_TAGS |
| 52 | |
| 53 | /* Size of malloc() pool */ |
| 54 | #define CONFIG_SYS_MALLOC_LEN 0x1800000 |
| 55 | #define CONFIG_SYS_GBL_DATA_SIZE 1024 /* Global data structures */ |
| 56 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - \ |
| 57 | CONFIG_SYS_MALLOC_LEN - \ |
| 58 | CONFIG_SYS_GBL_DATA_SIZE) |
| 59 | |
| 60 | /* Monitor Command Prompt */ |
| 61 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
| 62 | |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 63 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 |
| 64 | |
| 65 | #define CONFIG_SKIP_LOWLEVEL_INIT |
| 66 | |
Patrice Chotard | e9d1257 | 2017-09-05 11:04:22 +0200 | [diff] [blame] | 67 | /* USB Configs */ |
| 68 | #define CONFIG_USB_OHCI_NEW |
| 69 | #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2 |
| 70 | |
| 71 | #define CONFIG_USB_HOST_ETHER |
| 72 | #define CONFIG_USB_ETHER_ASIX |
| 73 | #define CONFIG_USB_ETHER_MCS7830 |
| 74 | #define CONFIG_USB_ETHER_SMSC95XX |
| 75 | |
| 76 | /* NET Configs */ |
| 77 | #define CONFIG_BOOTP_SUBNETMASK |
| 78 | #define CONFIG_BOOTP_GATEWAY |
| 79 | #define CONFIG_BOOTP_HOSTNAME |
| 80 | #define CONFIG_BOOTP_BOOTPATH |
| 81 | |
Patrice Chotard | 5cc16d8 | 2017-02-21 13:37:12 +0100 | [diff] [blame] | 82 | #endif /* __CONFIG_H */ |