sansa_fuze_plus.h 930 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. /* Booting Linux */
  14. #define CONFIG_BOOTFILE "uImage"
  15. #define CONFIG_LOADADDR 0x42000000
  16. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  17. /* LCD */
  18. #ifdef CONFIG_VIDEO
  19. #define CONFIG_VIDEO_FONT_4X6
  20. #define CONFIG_VIDEO_MXS_MODE_SYSTEM
  21. #define CONFIG_SYS_BLACK_IN_WRITE
  22. #define LCD_BPP LCD_COLOR16
  23. #endif
  24. /* USB */
  25. #ifdef CONFIG_CMD_USB
  26. #define CONFIG_EHCI_MXS_PORT0
  27. #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
  28. #endif
  29. /* The rest of the configuration is shared */
  30. #include <configs/mxs.h>
  31. #endif /* __CONFIGS_SANSA_FUZE_PLUS_H__ */