o2i.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * (C) Copyright 2012
  3. * DENX Software Engineering, Anatolij Gustschin <agust@denx.de>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. /*
  8. * Valid values for CONFIG_SYS_TEXT_BASE are:
  9. * 0xFF000000 boot low boot high (standard configuration)
  10. * 0x00100000 boot from RAM (for testing only)
  11. */
  12. #ifndef CONFIG_SYS_TEXT_BASE
  13. #define CONFIG_SYS_TEXT_BASE 0xff000000 /* Standard: boot low */
  14. #endif
  15. /* Board specific flash config */
  16. #define CONFIG_SYS_FLASH_BASE 0xff000000
  17. #define CONFIG_SYS_FLASH_SIZE 0x01000000 /* maximum 16MB */
  18. /* max number of sectors on one chip */
  19. #define CONFIG_SYS_MAX_FLASH_SECT 128
  20. /*
  21. * Include common defines for all ifm boards
  22. */
  23. #include "o2dnt-common.h"
  24. /* GPIO configuration */
  25. #define CONFIG_SYS_GPS_PORT_CONFIG 0x00002006 /* no CAN */
  26. /* Other board specific configs */
  27. #define CONFIG_SYS_BOOTCS_CFG 0x00087801
  28. #define CONFIG_SYS_RESET_ADDRESS 0xff000000
  29. #define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */
  30. #define CONFIG_SYS_MEMTEST_END 0x03f00000 /* 1 - 63 MB in DRAM */
  31. #define CONFIG_BOARD_NAME "o2i"
  32. #define CONFIG_BOARD_BOOTCMD "run dhcp_boot"
  33. #define CONFIG_BOARD_MEM_LIMIT __stringify(62)
  34. #define BOARD_POST_CRC32_END __stringify(0x01000000)
  35. #define CONFIG_EXTRA_ENV_SETTINGS \
  36. CONFIG_IFM_DEFAULT_ENV_SETTINGS \
  37. CONFIG_IFM_DEFAULT_ENV_OLD \
  38. CONFIG_IFM_DEFAULT_ENV_NEW \
  39. "linbot=ff060000\0" \
  40. "lintop=ff15ffff\0" \
  41. "rambot=ff160000\0" \
  42. "ramtop=ff55ffff\0" \
  43. "jffbot=ff560000\0" \
  44. "jfftop=ffebffff\0" \
  45. "kernel_addr=0xff060000\0" \
  46. "ramdisk_addr=0xff160000\0" \
  47. "ubobot=" __stringify(CONFIG_SYS_FLASH_BASE) "\0" \
  48. "ubotop=ff03ffff\0" \
  49. "autoload=no\0" \
  50. "dhcp_boot=run dhcpcmd; run flash_mtd\0" \
  51. "hostname=IFM_SENSOR\0" \
  52. "flash_mtd=run mtd_args addip addmem;bootm ${kernel_addr}\0" \
  53. "mtd_args=setenv bootargs root=/dev/mtdblock3 " \
  54. "rw rootfstype=cramfs\0" \
  55. "sensorType=O2I100AA\0" \
  56. "netretry=once\0" \
  57. "master=mw f0000b00 0x00052006;mw f0000b0c ${IOpin};" \
  58. "mw f0000b04 ${IOpin};mw f0000b10 0x20\0"