twister.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * Copyright (C) 2011
  3. * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
  4. *
  5. * Copyright (C) 2009 TechNexion Ltd.
  6. *
  7. * Configuration for the Technexion twister board.
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc.
  22. */
  23. #ifndef __CONFIG_H
  24. #define __CONFIG_H
  25. #include "tam3517-common.h"
  26. #define MACH_TYPE_TAM3517 2818
  27. #define CONFIG_MACH_TYPE MACH_TYPE_TAM3517
  28. #define CONFIG_TAM3517_SW3_SETTINGS
  29. #define CONFIG_XR16L2751
  30. #define CONFIG_BOOTDELAY 10
  31. #define CONFIG_BOOTFILE "uImage"
  32. #define CONFIG_HOSTNAME twister
  33. /*
  34. * Miscellaneous configurable options
  35. */
  36. #define CONFIG_SYS_PROMPT "twister => "
  37. #define CONFIG_SMC911X
  38. #define CONFIG_SMC911X_16_BIT
  39. #define CONFIG_SMC911X_BASE 0x2C000000
  40. #define CONFIG_SMC911X_NO_EEPROM
  41. #define CONFIG_EXTRA_ENV_SETTINGS CONFIG_TAM3517_SETTINGS \
  42. "bootcmd=run nandboot\0"
  43. #endif /* __CONFIG_H */