]> git.ipfire.org Git - thirdparty/u-boot.git/blob - include/configs/pic32mzdask.h
Convert CONFIG_SYS_MALLOC_LEN to Kconfig
[thirdparty/u-boot.git] / include / configs / pic32mzdask.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * (c) 2015 Purna Chandra Mandal <purna.mandal@microchip.com>
4 *
5 * Microchip PIC32MZ[DA] Starter Kit.
6 */
7
8 #ifndef __PIC32MZDASK_CONFIG_H
9 #define __PIC32MZDASK_CONFIG_H
10
11 /* System Configuration */
12
13 /*--------------------------------------------
14 * CPU configuration
15 */
16 /* CPU Timer rate */
17 #define CONFIG_SYS_MIPS_TIMER_FREQ 100000000
18
19 /*----------------------------------------------------------------------
20 * Memory Layout
21 */
22 /* Initial RAM for temporary stack, global data */
23 #define CONFIG_SYS_INIT_RAM_SIZE 0x10000
24 #define CONFIG_SYS_INIT_RAM_ADDR \
25 (CONFIG_SYS_SRAM_BASE + CONFIG_SYS_SRAM_SIZE - CONFIG_SYS_INIT_RAM_SIZE)
26 #define CONFIG_SYS_INIT_SP_ADDR \
27 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_SIZE - 1)
28
29 /* SDRAM Configuration (for final code, data, stack, heap) */
30 #define CONFIG_SYS_SDRAM_BASE 0x88000000
31 #define CONFIG_SYS_BOOTPARAMS_LEN (4 << 10)
32
33 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
34 #define CONFIG_SYS_MONITOR_LEN (192 << 10)
35
36 #define CONFIG_SYS_ENV_ADDR 0x88300000
37 #define CONFIG_SYS_FDT_ADDR 0x89d00000
38
39 /* Memory Test */
40
41 /*----------------------------------------------------------------------
42 * Commands
43 */
44
45 /*------------------------------------------------------------
46 * Console Configuration
47 */
48 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
49
50 /*-----------------------------------------------------------------------
51 * Networking Configuration
52 */
53 #define CONFIG_SYS_RX_ETH_BUFFER 8
54 #define CONFIG_NET_RETRY_COUNT 20
55 #define CONFIG_ARP_TIMEOUT 500 /* millisec */
56
57 /*
58 * BOOTP options
59 */
60 #define CONFIG_BOOTP_BOOTFILESIZE
61
62 /*--------------------------------------------------
63 * USB Configuration
64 */
65
66 /* -------------------------------------------------
67 * Environment
68 */
69
70 /* ---------------------------------------------------------------------
71 * Board boot configuration
72 */
73 #define CONFIG_TIMESTAMP /* Print image info with timestamp */
74
75 #define MEM_LAYOUT_ENV_SETTINGS \
76 "kernel_addr_r="__stringify(CONFIG_SYS_LOAD_ADDR)"\0" \
77 "fdt_addr_r="__stringify(CONFIG_SYS_FDT_ADDR)"\0" \
78 "scriptaddr="__stringify(CONFIG_SYS_ENV_ADDR)"\0"
79
80 #define CONFIG_LEGACY_BOOTCMD_ENV \
81 "legacy_bootcmd= " \
82 "if load mmc 0 ${scriptaddr} uEnv.txt; then " \
83 "env import -tr ${scriptaddr} ${filesize}; " \
84 "if test -n \"${bootcmd_uenv}\" ; then " \
85 "echo Running bootcmd_uenv ...; " \
86 "run bootcmd_uenv; " \
87 "fi; " \
88 "fi; \0"
89
90 #define BOOT_TARGET_DEVICES(func) \
91 func(MMC, mmc, 0) \
92 func(USB, usb, 0) \
93 func(DHCP, dhcp, na)
94
95 #include <config_distro_bootcmd.h>
96
97 #define CONFIG_EXTRA_ENV_SETTINGS \
98 MEM_LAYOUT_ENV_SETTINGS \
99 CONFIG_LEGACY_BOOTCMD_ENV \
100 BOOTENV
101
102 #undef CONFIG_BOOTCOMMAND
103 #define CONFIG_BOOTCOMMAND "run distro_bootcmd || run legacy_bootcmd"
104
105 #endif /* __PIC32MZDASK_CONFIG_H */