ti_armv7_omap.h 775 B

12345678910111213141516171819202122232425262728
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * ti_armv7_omap.h
  4. *
  5. * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com/
  6. *
  7. * The various ARMv7 SoCs from TI all share a number of IP blocks when
  8. * implementing a given feature. This is meant to isolate the features
  9. * that are based on OMAP architecture.
  10. */
  11. #ifndef __CONFIG_TI_ARMV7_OMAP_H__
  12. #define __CONFIG_TI_ARMV7_OMAP_H__
  13. /*
  14. * GPMC NAND block. We support 1 device and the physical address to
  15. * access CS0 at is 0x8000000.
  16. */
  17. #ifdef CONFIG_MTD_RAW_NAND
  18. #ifndef CONFIG_SYS_NAND_BASE
  19. #define CONFIG_SYS_NAND_BASE 0x8000000
  20. #endif
  21. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  22. #endif
  23. /* Now for the remaining common defines */
  24. #include <configs/ti_armv7_common.h>
  25. #endif /* __CONFIG_TI_ARMV7_OMAP_H__ */