Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2007-2008 |
Stelian Pop | 5ee0c7f | 2011-11-01 00:00:39 +0100 | [diff] [blame] | 3 | * Stelian Pop <stelian@popies.net> |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 4 | * Lead Tech Design <www.leadtechdesign.com> |
| 5 | * |
Nicolas Ferre | 4ef545e | 2009-03-22 14:48:16 +0100 | [diff] [blame] | 6 | * Configuation settings for the AT91SAM9260EK & AT91SAM9G20EK boards. |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 7 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #ifndef __CONFIG_H |
| 12 | #define __CONFIG_H |
| 13 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 14 | /* |
| 15 | * SoC must be defined first, before hardware.h is included. |
| 16 | * In this case SoC is defined in boards.cfg. |
| 17 | */ |
| 18 | #include <asm/hardware.h> |
Jens Scharsig | 128ecd0 | 2010-02-03 22:45:42 +0100 | [diff] [blame] | 19 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 20 | /* |
| 21 | * Warning: changing CONFIG_SYS_TEXT_BASE requires |
| 22 | * adapting the initial boot program. |
| 23 | * Since the linker has to swallow that define, we must use a pure |
| 24 | * hex number here! |
| 25 | */ |
| 26 | #define CONFIG_SYS_TEXT_BASE 0x21f00000 |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 27 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 28 | /* ARM asynchronous clock */ |
| 29 | #define CONFIG_SYS_AT91_SLOW_CLOCK 32768 /* slow clock xtal */ |
| 30 | #define CONFIG_SYS_AT91_MAIN_CLOCK 18432000 /* main clock xtal */ |
Nicolas Ferre | 4ef545e | 2009-03-22 14:48:16 +0100 | [diff] [blame] | 31 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 32 | /* Define actual evaluation board type from used processor type */ |
| 33 | #ifdef CONFIG_AT91SAM9G20 |
| 34 | # define CONFIG_AT91SAM9G20EK /* It's an Atmel AT91SAM9G20 EK */ |
Nicolas Ferre | 4ef545e | 2009-03-22 14:48:16 +0100 | [diff] [blame] | 35 | #else |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 36 | # define CONFIG_AT91SAM9260EK /* It's an Atmel AT91SAM9260 EK */ |
Nicolas Ferre | 4ef545e | 2009-03-22 14:48:16 +0100 | [diff] [blame] | 37 | #endif |
| 38 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 39 | /* Misc CPU related */ |
Jean-Christophe PLAGNIOL-VILLARD | 23164f1 | 2009-04-16 21:30:44 +0200 | [diff] [blame] | 40 | #define CONFIG_ARCH_CPU_INIT |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 41 | #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */ |
| 42 | #define CONFIG_SETUP_MEMORY_TAGS |
| 43 | #define CONFIG_INITRD_TAG |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 44 | #define CONFIG_SKIP_LOWLEVEL_INIT |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 45 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 46 | /* general purpose I/O */ |
| 47 | #define CONFIG_ATMEL_LEGACY /* required until (g)pio is fixed */ |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 48 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 49 | /* |
| 50 | * BOOTP options |
| 51 | */ |
| 52 | #define CONFIG_BOOTP_BOOTFILESIZE 1 |
| 53 | #define CONFIG_BOOTP_BOOTPATH 1 |
| 54 | #define CONFIG_BOOTP_GATEWAY 1 |
| 55 | #define CONFIG_BOOTP_HOSTNAME 1 |
| 56 | |
| 57 | /* |
| 58 | * Command line configuration. |
| 59 | */ |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 60 | #define CONFIG_CMD_NAND 1 |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 61 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 62 | /* |
| 63 | * SDRAM: 1 bank, min 32, max 128 MB |
| 64 | * Initialized before u-boot gets started. |
| 65 | */ |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 66 | #define CONFIG_NR_DRAM_BANKS 1 |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 67 | #define CONFIG_SYS_SDRAM_BASE ATMEL_BASE_CS1 |
| 68 | #define CONFIG_SYS_SDRAM_SIZE 0x04000000 |
| 69 | |
| 70 | /* |
| 71 | * Initial stack pointer: 4k - GENERATED_GBL_DATA_SIZE in internal SRAM, |
| 72 | * leaving the correct space for initial global data structure above |
| 73 | * that address while providing maximum stack area below. |
| 74 | */ |
| 75 | #ifdef CONFIG_AT91SAM9XE |
| 76 | # define CONFIG_SYS_INIT_SP_ADDR \ |
Wenyou Yang | 9c4fbd5 | 2017-04-18 15:18:47 +0800 | [diff] [blame] | 77 | (ATMEL_BASE_SRAM + 16 * 1024 - GENERATED_GBL_DATA_SIZE) |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 78 | #else |
| 79 | # define CONFIG_SYS_INIT_SP_ADDR \ |
Wenyou Yang | 9c4fbd5 | 2017-04-18 15:18:47 +0800 | [diff] [blame] | 80 | (ATMEL_BASE_SRAM1 + 16 * 1024 - GENERATED_GBL_DATA_SIZE) |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 81 | #endif |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 82 | |
Andreas Bießmann | 5fc020e | 2013-05-10 05:05:30 +0000 | [diff] [blame] | 83 | /* |
| 84 | * The (arm)linux board id set by generic code depending on configured board |
| 85 | * (see boards.cfg for different boards) |
| 86 | */ |
| 87 | #ifdef CONFIG_AT91SAM9G20 |
| 88 | /* the sam9g20 variants have two different board ids */ |
| 89 | # ifdef CONFIG_AT91SAM9G20EK_2MMC |
| 90 | /* we may be setup for the 2MMC variant of at91sam9g20ek */ |
| 91 | # define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9G20EK_2MMC |
| 92 | # else |
| 93 | /* or the normal at91sam9g20ek */ |
| 94 | # define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9G20EK |
| 95 | # endif |
| 96 | #else |
| 97 | /* otherwise default to good old at91sam9260ek */ |
| 98 | # define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9260EK |
| 99 | #endif |
| 100 | |
Bo Shen | 76f8b8f | 2013-01-29 15:43:26 +0000 | [diff] [blame] | 101 | #ifndef CONFIG_AT91SAM9G20EK_2MMC |
Wu, Josh | ed8e261 | 2015-01-19 15:25:56 +0800 | [diff] [blame] | 102 | /* DataFlash */ |
Jean-Christophe PLAGNIOL-VILLARD | e5437ac | 2009-03-27 23:26:44 +0100 | [diff] [blame] | 103 | #define CONFIG_ATMEL_DATAFLASH_SPI |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 104 | #define CONFIG_HAS_DATAFLASH 1 |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 105 | #define CONFIG_SYS_MAX_DATAFLASH_BANKS 2 |
| 106 | #define CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 0xC0000000 /* CS0 */ |
| 107 | #define CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 0xD0000000 /* CS1 */ |
Stelian Pop | 8f6bee5 | 2008-05-08 20:52:19 +0200 | [diff] [blame] | 108 | #define AT91_SPI_CLK 15000000 |
Wu, Josh | ed8e261 | 2015-01-19 15:25:56 +0800 | [diff] [blame] | 109 | #else |
| 110 | /* Enable MMC. The MCCK is conflicted with DataFlash */ |
Bo Shen | 76f8b8f | 2013-01-29 15:43:26 +0000 | [diff] [blame] | 111 | #endif |
Nicolas Ferre | 4ef545e | 2009-03-22 14:48:16 +0100 | [diff] [blame] | 112 | |
| 113 | #ifdef CONFIG_AT91SAM9G20EK |
| 114 | #define DATAFLASH_TCSS (0x22 << 16) |
| 115 | #else |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 116 | #define DATAFLASH_TCSS (0x1a << 16) |
Nicolas Ferre | 4ef545e | 2009-03-22 14:48:16 +0100 | [diff] [blame] | 117 | #endif |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 118 | #define DATAFLASH_TCHS (0x1 << 24) |
| 119 | |
| 120 | /* NAND flash */ |
Jean-Christophe PLAGNIOL-VILLARD | c9539ba | 2009-03-22 10:22:34 +0100 | [diff] [blame] | 121 | #ifdef CONFIG_CMD_NAND |
| 122 | #define CONFIG_NAND_ATMEL |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 123 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
| 124 | #define CONFIG_SYS_NAND_BASE ATMEL_BASE_CS3 |
| 125 | #define CONFIG_SYS_NAND_DBW_8 |
| 126 | #define CONFIG_SYS_NAND_MASK_ALE (1 << 21) |
| 127 | #define CONFIG_SYS_NAND_MASK_CLE (1 << 22) |
| 128 | #define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PC14 |
| 129 | #define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PC13 |
Jean-Christophe PLAGNIOL-VILLARD | c9539ba | 2009-03-22 10:22:34 +0100 | [diff] [blame] | 130 | #endif |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 131 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 132 | /* USB */ |
Jean-Christophe PLAGNIOL-VILLARD | d42643f | 2009-03-27 23:26:44 +0100 | [diff] [blame] | 133 | #define CONFIG_USB_ATMEL |
Bo Shen | 4a985df | 2013-10-21 16:14:00 +0800 | [diff] [blame] | 134 | #define CONFIG_USB_ATMEL_CLK_SEL_PLLB |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 135 | #define CONFIG_USB_OHCI_NEW 1 |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 136 | #define CONFIG_SYS_USB_OHCI_CPU_INIT 1 |
| 137 | #define CONFIG_SYS_USB_OHCI_REGS_BASE 0x00500000 /* AT91SAM9260_UHP_BASE */ |
| 138 | #define CONFIG_SYS_USB_OHCI_SLOT_NAME "at91sam9260" |
| 139 | #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2 |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 140 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 141 | #define CONFIG_SYS_LOAD_ADDR 0x22000000 /* load address */ |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 142 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 143 | #define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 144 | #define CONFIG_SYS_MEMTEST_END 0x23e00000 |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 145 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 146 | #ifdef CONFIG_SYS_USE_DATAFLASH_CS0 |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 147 | |
| 148 | /* bootstrap + u-boot + env + linux in dataflash on CS0 */ |
Jean-Christophe PLAGNIOL-VILLARD | 2b14d2b | 2008-09-10 22:47:58 +0200 | [diff] [blame] | 149 | #define CONFIG_ENV_IS_IN_DATAFLASH 1 |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 150 | #define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + 0x8400) |
Jean-Christophe PLAGNIOL-VILLARD | 7e1cda6 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 151 | #define CONFIG_ENV_OFFSET 0x4200 |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 152 | #define CONFIG_ENV_ADDR (CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET) |
Jean-Christophe PLAGNIOL-VILLARD | 7e1cda6 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 153 | #define CONFIG_ENV_SIZE 0x4200 |
Alexandre Belloni | 9ef19ba | 2012-07-02 04:26:58 +0000 | [diff] [blame] | 154 | #define CONFIG_BOOTCOMMAND "cp.b 0xC0084000 0x22000000 0x210000; bootm" |
Stelian Pop | cb9fc87 | 2008-05-08 20:52:20 +0200 | [diff] [blame] | 155 | #define CONFIG_BOOTARGS "console=ttyS0,115200 " \ |
| 156 | "root=/dev/mtdblock0 " \ |
Albin Tonnerre | eaa6db2 | 2009-07-22 18:30:03 +0200 | [diff] [blame] | 157 | "mtdparts=atmel_nand:-(root) " \ |
Stelian Pop | cb9fc87 | 2008-05-08 20:52:20 +0200 | [diff] [blame] | 158 | "rw rootfstype=jffs2" |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 159 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 160 | #elif CONFIG_SYS_USE_DATAFLASH_CS1 |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 161 | |
| 162 | /* bootstrap + u-boot + env + linux in dataflash on CS1 */ |
Jean-Christophe PLAGNIOL-VILLARD | 2b14d2b | 2008-09-10 22:47:58 +0200 | [diff] [blame] | 163 | #define CONFIG_ENV_IS_IN_DATAFLASH 1 |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 164 | #define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 + 0x8400) |
Jean-Christophe PLAGNIOL-VILLARD | 7e1cda6 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 165 | #define CONFIG_ENV_OFFSET 0x4200 |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 166 | #define CONFIG_ENV_ADDR (CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 + CONFIG_ENV_OFFSET) |
Jean-Christophe PLAGNIOL-VILLARD | 7e1cda6 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 167 | #define CONFIG_ENV_SIZE 0x4200 |
Alexandre Belloni | 9ef19ba | 2012-07-02 04:26:58 +0000 | [diff] [blame] | 168 | #define CONFIG_BOOTCOMMAND "cp.b 0xD0084000 0x22000000 0x210000; bootm" |
Stelian Pop | cb9fc87 | 2008-05-08 20:52:20 +0200 | [diff] [blame] | 169 | #define CONFIG_BOOTARGS "console=ttyS0,115200 " \ |
| 170 | "root=/dev/mtdblock0 " \ |
Albin Tonnerre | eaa6db2 | 2009-07-22 18:30:03 +0200 | [diff] [blame] | 171 | "mtdparts=atmel_nand:-(root) " \ |
Stelian Pop | cb9fc87 | 2008-05-08 20:52:20 +0200 | [diff] [blame] | 172 | "rw rootfstype=jffs2" |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 173 | |
Wu, Josh | eb83c00 | 2013-03-28 20:28:42 +0000 | [diff] [blame] | 174 | #elif defined(CONFIG_SYS_USE_NANDFLASH) |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 175 | |
| 176 | /* bootstrap + u-boot + env + linux in nandflash */ |
Jean-Christophe PLAGNIOL-VILLARD | dda84dd | 2008-09-10 22:47:58 +0200 | [diff] [blame] | 177 | #define CONFIG_ENV_IS_IN_NAND 1 |
Wenyou Yang | 9c4fbd5 | 2017-04-18 15:18:47 +0800 | [diff] [blame] | 178 | #define CONFIG_ENV_OFFSET 0x120000 |
Bo Shen | a8fd063 | 2013-02-20 00:16:25 +0000 | [diff] [blame] | 179 | #define CONFIG_ENV_OFFSET_REDUND 0x100000 |
Jean-Christophe PLAGNIOL-VILLARD | 7e1cda6 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 180 | #define CONFIG_ENV_SIZE 0x20000 /* 1 sector = 128 kB */ |
Bo Shen | a8fd063 | 2013-02-20 00:16:25 +0000 | [diff] [blame] | 181 | #define CONFIG_BOOTCOMMAND "nand read 0x22000000 0x200000 0x300000; bootm" |
| 182 | #define CONFIG_BOOTARGS \ |
| 183 | "console=ttyS0,115200 earlyprintk " \ |
| 184 | "mtdparts=atmel_nand:256k(bootstrap)ro,512k(uboot)ro," \ |
| 185 | "256k(env),256k(env_redundant),256k(spare)," \ |
| 186 | "512k(dtb),6M(kernel)ro,-(rootfs) " \ |
| 187 | "root=/dev/mtdblock7 rw rootfstype=jffs2" |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 188 | |
Wu, Josh | eb83c00 | 2013-03-28 20:28:42 +0000 | [diff] [blame] | 189 | #else /* CONFIG_SYS_USE_MMC */ |
| 190 | /* bootstrap + u-boot + env + linux in mmc */ |
| 191 | #define CONFIG_ENV_IS_IN_MMC |
| 192 | /* For FAT system, most cases it should be in the reserved sector */ |
| 193 | #define CONFIG_ENV_OFFSET 0x2000 |
| 194 | #define CONFIG_ENV_SIZE 0x1000 |
| 195 | #define CONFIG_SYS_MMC_ENV_DEV 0 |
| 196 | |
| 197 | #define CONFIG_BOOTCOMMAND \ |
| 198 | "fatload mmc 0:1 0x22000000 uImage; bootm" |
| 199 | #define CONFIG_BOOTARGS \ |
| 200 | "console=ttyS0,115200 earlyprintk " \ |
| 201 | "mtdparts=atmel_nand:256k(bootstrap)ro,512k(uboot)ro," \ |
| 202 | "256k(env),256k(env_redundant),256k(spare)," \ |
| 203 | "512k(dtb),6M(kernel)ro,-(rootfs) " \ |
| 204 | "root=/dev/mmcblk0p2 rw rootfstype=ext4 rootwait" |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 205 | #endif |
| 206 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 207 | #define CONFIG_SYS_CBSIZE 256 |
| 208 | #define CONFIG_SYS_MAXARGS 16 |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 209 | #define CONFIG_SYS_LONGHELP 1 |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 210 | #define CONFIG_CMDLINE_EDITING 1 |
Alexandre Belloni | 9ef19ba | 2012-07-02 04:26:58 +0000 | [diff] [blame] | 211 | #define CONFIG_AUTO_COMPLETE |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 212 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 213 | /* |
| 214 | * Size of malloc() pool |
| 215 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 216 | #define CONFIG_SYS_MALLOC_LEN ROUND(3 * CONFIG_ENV_SIZE + 128*1024, 0x1000) |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 217 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 218 | #endif |