sansa_fuze_plus.h 986 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. /* U-Boot Commands */
  8. /* Memory configuration */
  9. #define PHYS_SDRAM_1 0x40000000 /* Base address */
  10. #define PHYS_SDRAM_1_SIZE 0x08000000 /* Max 128 MB RAM */
  11. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  12. /* Environment */
  13. #define CONFIG_ENV_OVERWRITE
  14. /* Booting Linux */
  15. #define CONFIG_BOOTFILE "uImage"
  16. #define CONFIG_LOADADDR 0x42000000
  17. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  18. /* LCD */
  19. #ifdef CONFIG_VIDEO
  20. #define CONFIG_VIDEO_FONT_4X6
  21. #define CONFIG_VIDEO_MXS_MODE_SYSTEM
  22. #define CONFIG_SYS_BLACK_IN_WRITE
  23. #define LCD_BPP LCD_COLOR16
  24. #endif
  25. /* USB */
  26. #ifdef CONFIG_CMD_USB
  27. #define CONFIG_EHCI_MXS_PORT0
  28. #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
  29. #define CONFIG_NETCONSOLE
  30. #endif
  31. /* The rest of the configuration is shared */
  32. #include <configs/mxs.h>
  33. #endif /* __CONFIGS_SANSA_FUZE_PLUS_H__ */