imx6/imx7: Remove now empty imx6_spl.h and imx7_spl.h
[platform/kernel/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
17 /*----------------------------------------------------------------------
18  * Memory Layout
19  */
20 /* Initial RAM for temporary stack, global data */
21 #define CONFIG_SYS_INIT_RAM_SIZE        0x10000
22 #define CONFIG_SYS_INIT_RAM_ADDR        \
23         (CONFIG_SYS_SRAM_BASE + CONFIG_SYS_SRAM_SIZE - CONFIG_SYS_INIT_RAM_SIZE)
24
25 /* SDRAM Configuration (for final code, data, stack, heap) */
26 #define CONFIG_SYS_SDRAM_BASE           0x88000000
27
28 /* Memory Test */
29
30 /*----------------------------------------------------------------------
31  * Commands
32  */
33
34 /*------------------------------------------------------------
35  * Console Configuration
36  */
37
38 /*--------------------------------------------------
39  * USB Configuration
40  */
41
42 /* -------------------------------------------------
43  * Environment
44  */
45
46 /* ---------------------------------------------------------------------
47  * Board boot configuration
48  */
49
50 #define MEM_LAYOUT_ENV_SETTINGS                                 \
51         "kernel_addr_r="__stringify(CONFIG_SYS_LOAD_ADDR)"\0"   \
52         "fdt_addr_r=0x89d00000\0"                               \
53         "scriptaddr=0x88300000\0"                               \
54
55 #define CONFIG_LEGACY_BOOTCMD_ENV                                       \
56         "legacy_bootcmd= "                                              \
57                 "if load mmc 0 ${scriptaddr} uEnv.txt; then "           \
58                         "env import -tr ${scriptaddr} ${filesize}; "    \
59                         "if test -n \"${bootcmd_uenv}\" ; then "        \
60                                 "echo Running bootcmd_uenv ...; "       \
61                                 "run bootcmd_uenv; "                    \
62                         "fi; "                                          \
63                 "fi; \0"
64
65 #define BOOT_TARGET_DEVICES(func)       \
66         func(MMC, mmc, 0)               \
67         func(USB, usb, 0)               \
68         func(DHCP, dhcp, na)
69
70 #include <config_distro_bootcmd.h>
71
72 #define CONFIG_EXTRA_ENV_SETTINGS       \
73         MEM_LAYOUT_ENV_SETTINGS         \
74         CONFIG_LEGACY_BOOTCMD_ENV       \
75         BOOTENV
76
77 #endif  /* __PIC32MZDASK_CONFIG_H */