Merge tag 'efi-2020-07-rc2-2' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
[platform/kernel/u-boot.git] / include / configs / sansa_fuze_plus.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2013 Marek Vasut <marex@denx.de>
4  */
5 #ifndef __CONFIGS_SANSA_FUZE_PLUS_H__
6 #define __CONFIGS_SANSA_FUZE_PLUS_H__
7
8 /* U-Boot Commands */
9
10 /* Memory configuration */
11 #define PHYS_SDRAM_1                    0x40000000      /* Base address */
12 #define PHYS_SDRAM_1_SIZE               0x08000000      /* Max 128 MB RAM */
13 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
14
15 /* Environment */
16 #define CONFIG_ENV_OVERWRITE
17
18 /* Booting Linux */
19 #define CONFIG_BOOTFILE         "uImage"
20 #define CONFIG_LOADADDR         0x42000000
21 #define CONFIG_SYS_LOAD_ADDR    CONFIG_LOADADDR
22
23 /* LCD */
24 #ifdef CONFIG_VIDEO
25 #define CONFIG_VIDEO_FONT_4X6
26 #define CONFIG_VIDEO_MXS_MODE_SYSTEM
27 #define CONFIG_SYS_BLACK_IN_WRITE
28 #define LCD_BPP LCD_COLOR16
29 #endif
30
31 /* USB */
32 #ifdef CONFIG_CMD_USB
33 #define CONFIG_EHCI_MXS_PORT0
34 #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
35
36 #define CONFIG_NETCONSOLE
37 #endif
38
39 /* The rest of the configuration is shared */
40 #include <configs/mxs.h>
41
42 #endif  /* __CONFIGS_SANSA_FUZE_PLUS_H__ */