config_mpc86xx.h 543 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright 2011 Freescale Semiconductor, Inc.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef _ASM_MPC86xx_CONFIG_H_
  7. #define _ASM_MPC86xx_CONFIG_H_
  8. #define CONFIG_SYS_FSL_DDR_86XX
  9. /* SoC specific defines for Freescale MPC86xx processors */
  10. #if defined(CONFIG_MPC8610)
  11. #define CONFIG_MAX_CPUS 1
  12. #define CONFIG_SYS_FSL_NUM_LAWS 10
  13. #elif defined(CONFIG_MPC8641)
  14. #define CONFIG_MAX_CPUS 2
  15. #define CONFIG_SYS_FSL_NUM_LAWS 10
  16. #else
  17. #error Processor type not defined for this platform
  18. #endif
  19. #endif /* _ASM_MPC85xx_CONFIG_H_ */