]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/configs/sansa_fuze_plus.h
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / include / configs / sansa_fuze_plus.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
607232e4
MV
2/*
3 * Copyright (C) 2013 Marek Vasut <marex@denx.de>
607232e4
MV
4 */
5#ifndef __CONFIGS_SANSA_FUZE_PLUS_H__
6#define __CONFIGS_SANSA_FUZE_PLUS_H__
7
607232e4 8/* U-Boot Commands */
607232e4 9
607232e4
MV
10/* Memory configuration */
11#define CONFIG_NR_DRAM_BANKS 1 /* 1 bank of DRAM */
12#define PHYS_SDRAM_1 0x40000000 /* Base address */
13#define PHYS_SDRAM_1_SIZE 0x08000000 /* Max 128 MB RAM */
14#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
15
16/* Environment */
17#define CONFIG_ENV_SIZE (16 * 1024)
607232e4
MV
18#define CONFIG_ENV_OVERWRITE
19
20/* Booting Linux */
607232e4 21#define CONFIG_BOOTFILE "uImage"
607232e4
MV
22#define CONFIG_LOADADDR 0x42000000
23#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
24
25/* LCD */
26#ifdef CONFIG_VIDEO
27#define CONFIG_VIDEO_FONT_4X6
28#define CONFIG_VIDEO_MXS_MODE_SYSTEM
29#define CONFIG_SYS_BLACK_IN_WRITE
30#define LCD_BPP LCD_COLOR16
31#endif
32
33/* USB */
34#ifdef CONFIG_CMD_USB
35#define CONFIG_EHCI_MXS_PORT0
36#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
37
607232e4
MV
38#define CONFIG_NETCONSOLE
39#endif
40
41/* The rest of the configuration is shared */
42#include <configs/mxs.h>
43
44#endif /* __CONFIGS_SANSA_FUZE_PLUS_H__ */