config_fallbacks.h 618 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright 2012 Texas Instruments
  3. *
  4. * This file is licensed under the terms of the GNU General Public
  5. * License Version 2. This file is licensed "as is" without any
  6. * warranty of any kind, whether express or implied.
  7. */
  8. #ifndef __CONFIG_FALLBACKS_H
  9. #define __CONFIG_FALLBACKS_H
  10. #ifdef CONFIG_SPL_PAD_TO
  11. #ifdef CONFIG_SPL_MAX_SIZE
  12. #if CONFIG_SPL_PAD_TO && CONFIG_SPL_PAD_TO < CONFIG_SPL_MAX_SIZE
  13. #error CONFIG_SPL_PAD_TO < CONFIG_SPL_MAX_SIZE
  14. #endif
  15. #endif
  16. #endif
  17. #ifndef CFG_SYS_BAUDRATE_TABLE
  18. #define CFG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
  19. #endif
  20. #endif /* __CONFIG_FALLBACKS_H */