Commit d8acc9deeca10992caedb66e0d507bd07b86ee2b

Authored by Eric Nelson
Committed by Stefano Babic
1 parent 0093b3fcd8

mx6memcal: fix comment in board header file

The board header file included a reference to the starting point
from nitrogen6x.h, but since so much changed, the file bears
little resemblance to that file.

Signed-off-by: Eric Nelson <eric@nelint.com>

Showing 1 changed file with 2 additions and 3 deletions Inline Diff

include/configs/mx6memcal.h
1 /* 1 /*
2 * Copyright (C) 2010-2011 Freescale Semiconductor, Inc. 2 * Copyright (C) 2010-2018 Freescale Semiconductor, Inc.
3 * 3 *
4 * Configuration settings for the Boundary Devices Nitrogen6X 4 * Configuration settings for the virtual mx6memcal board.
5 * and Freescale i.MX6Q Sabre Lite boards.
6 * 5 *
7 * SPDX-License-Identifier: GPL-2.0+ 6 * SPDX-License-Identifier: GPL-2.0+
8 */ 7 */
9 8
10 #ifndef __CONFIG_H 9 #ifndef __CONFIG_H
11 #define __CONFIG_H 10 #define __CONFIG_H
12 11
13 /* SPL */ 12 /* SPL */
14 13
15 #include "mx6_common.h" 14 #include "mx6_common.h"
16 #include "imx6_spl.h" 15 #include "imx6_spl.h"
17 16
18 #undef CONFIG_FSL_ESDHC 17 #undef CONFIG_FSL_ESDHC
19 #undef CONFIG_MMC 18 #undef CONFIG_MMC
20 #undef CONFIG_SPL_MMC_SUPPORT 19 #undef CONFIG_SPL_MMC_SUPPORT
21 #undef CONFIG_GENERIC_MMC 20 #undef CONFIG_GENERIC_MMC
22 #undef CONFIG_CMD_FUSE 21 #undef CONFIG_CMD_FUSE
23 22
24 #define CONFIG_SYS_MEMTEST_START 0x10000000 23 #define CONFIG_SYS_MEMTEST_START 0x10000000
25 #define CONFIG_SYS_MEMTEST_END 0x20000000 24 #define CONFIG_SYS_MEMTEST_END 0x20000000
26 #define CONFIG_SYS_MALLOC_LEN (64 * 1024 * 1024) 25 #define CONFIG_SYS_MALLOC_LEN (64 * 1024 * 1024)
27 26
28 #define CONFIG_MXC_UART 27 #define CONFIG_MXC_UART
29 #ifdef CONFIG_SERIAL_CONSOLE_UART1 28 #ifdef CONFIG_SERIAL_CONSOLE_UART1
30 #if defined(CONFIG_MX6SL) 29 #if defined(CONFIG_MX6SL)
31 #define CONFIG_MXC_UART_BASE UART1_IPS_BASE_ADDR 30 #define CONFIG_MXC_UART_BASE UART1_IPS_BASE_ADDR
32 #else 31 #else
33 #define CONFIG_MXC_UART_BASE UART1_BASE 32 #define CONFIG_MXC_UART_BASE UART1_BASE
34 #endif 33 #endif
35 #elif defined(CONFIG_SERIAL_CONSOLE_UART2) 34 #elif defined(CONFIG_SERIAL_CONSOLE_UART2)
36 #define CONFIG_MXC_UART_BASE UART2_BASE 35 #define CONFIG_MXC_UART_BASE UART2_BASE
37 #else 36 #else
38 #error please define serial console (CONFIG_SERIAL_CONSOLE_UARTx) 37 #error please define serial console (CONFIG_SERIAL_CONSOLE_UARTx)
39 #endif 38 #endif
40 #define CONFIG_BAUDRATE 115200 39 #define CONFIG_BAUDRATE 115200
41 40
42 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + 16) 41 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + 16)
43 42
44 /* Physical Memory Map */ 43 /* Physical Memory Map */
45 #define CONFIG_NR_DRAM_BANKS 1 44 #define CONFIG_NR_DRAM_BANKS 1
46 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR 45 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
47 46
48 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM 47 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
49 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR 48 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
50 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE 49 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
51 50
52 #define CONFIG_SYS_INIT_SP_OFFSET \ 51 #define CONFIG_SYS_INIT_SP_OFFSET \
53 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) 52 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
54 #define CONFIG_SYS_INIT_SP_ADDR \ 53 #define CONFIG_SYS_INIT_SP_ADDR \
55 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) 54 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
56 55
57 #define CONFIG_ENV_SIZE (8 * 1024) 56 #define CONFIG_ENV_SIZE (8 * 1024)
58 57
59 #define CONFIG_MXC_USB_PORTSC PORT_PTS_UTMI 58 #define CONFIG_MXC_USB_PORTSC PORT_PTS_UTMI
60 59
61 #endif /* __CONFIG_H */ 60 #endif /* __CONFIG_H */
62 61