mpc85xx.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Copyright 2004, 2007 Freescale Semiconductor.
  3. * Copyright(c) 2003 Motorola Inc.
  4. */
  5. #ifndef __MPC85xx_H__
  6. #define __MPC85xx_H__
  7. /* define for common ppc_asm.tmpl */
  8. #define EXC_OFF_SYS_RESET 0x100 /* System reset */
  9. #define _START_OFFSET 0
  10. #if defined(CONFIG_E500)
  11. #include <e500.h>
  12. #endif
  13. /*
  14. * SCCR - System Clock Control Register, 9-8
  15. */
  16. #define SCCR_CLPD 0x00000004 /* CPM Low Power Disable */
  17. #define SCCR_DFBRG_MSK 0x00000003 /* Division by BRGCLK Mask */
  18. #define SCCR_DFBRG_SHIFT 0
  19. #define SCCR_DFBRG00 0x00000000 /* BRGCLK division by 4 */
  20. #define SCCR_DFBRG01 0x00000001 /* BRGCLK div by 16 (normal) */
  21. #define SCCR_DFBRG10 0x00000002 /* BRGCLK division by 64 */
  22. #define SCCR_DFBRG11 0x00000003 /* BRGCLK division by 256 */
  23. /*
  24. * Define default values for some CCSR macros to make header files cleaner*
  25. *
  26. * To completely disable CCSR relocation in a board header file, define
  27. * CONFIG_SYS_CCSR_DO_NOT_RELOCATE. This will force CONFIG_SYS_CCSRBAR_PHYS
  28. * to a value that is the same as CONFIG_SYS_CCSRBAR.
  29. */
  30. #ifdef CONFIG_SYS_CCSRBAR_PHYS
  31. #error "Do not define CONFIG_SYS_CCSRBAR_PHYS directly. Use \
  32. CONFIG_SYS_CCSRBAR_PHYS_LOW and/or CONFIG_SYS_CCSRBAR_PHYS_HIGH instead."
  33. #endif
  34. #ifdef CONFIG_SYS_CCSR_DO_NOT_RELOCATE
  35. #undef CONFIG_SYS_CCSRBAR_PHYS_HIGH
  36. #undef CONFIG_SYS_CCSRBAR_PHYS_LOW
  37. #define CONFIG_SYS_CCSRBAR_PHYS_HIGH 0
  38. #endif
  39. #ifndef CONFIG_SYS_CCSRBAR
  40. #define CONFIG_SYS_CCSRBAR CONFIG_SYS_CCSRBAR_DEFAULT
  41. #endif
  42. #ifndef CONFIG_SYS_CCSRBAR_PHYS_HIGH
  43. #ifdef CONFIG_PHYS_64BIT
  44. #define CONFIG_SYS_CCSRBAR_PHYS_HIGH 0xf
  45. #else
  46. #define CONFIG_SYS_CCSRBAR_PHYS_HIGH 0
  47. #endif
  48. #endif
  49. #ifndef CONFIG_SYS_CCSRBAR_PHYS_LOW
  50. #define CONFIG_SYS_CCSRBAR_PHYS_LOW CONFIG_SYS_CCSRBAR_DEFAULT
  51. #endif
  52. #define CONFIG_SYS_CCSRBAR_PHYS ((CONFIG_SYS_CCSRBAR_PHYS_HIGH * 1ull) << 32 | \
  53. CONFIG_SYS_CCSRBAR_PHYS_LOW)
  54. #ifndef CONFIG_SYS_IMMR
  55. #define CONFIG_SYS_IMMR CONFIG_SYS_CCSRBAR
  56. #endif
  57. #endif /* __MPC85xx_H__ */