asm-offsets.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * Adapted from Linux v2.6.36 kernel: arch/powerpc/kernel/asm-offsets.c
  3. *
  4. * This program is used to generate definitions needed by
  5. * assembly language modules.
  6. *
  7. * We use the technique used in the OSF Mach kernel code:
  8. * generate asm statements containing #defines,
  9. * compile this file to assembler, and then extract the
  10. * #defines from the assembly-language output.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License
  14. * as published by the Free Software Foundation; either version
  15. * 2 of the License, or (at your option) any later version.
  16. */
  17. #include <common.h>
  18. #include <asm/arch/imx-regs.h>
  19. #include <linux/kbuild.h>
  20. int main(void)
  21. {
  22. /* Clock Control Module */
  23. DEFINE(CCM_CCTL, offsetof(struct ccm_regs, cctl));
  24. DEFINE(CCM_CGCR0, offsetof(struct ccm_regs, cgr0));
  25. DEFINE(CCM_CGCR1, offsetof(struct ccm_regs, cgr1));
  26. DEFINE(CCM_CGCR2, offsetof(struct ccm_regs, cgr2));
  27. DEFINE(CCM_PCDR2, offsetof(struct ccm_regs, pcdr[2]));
  28. DEFINE(CCM_MCR, offsetof(struct ccm_regs, mcr));
  29. /* Enhanced SDRAM Controller */
  30. DEFINE(ESDRAMC_ESDCTL0, offsetof(struct esdramc_regs, ctl0));
  31. DEFINE(ESDRAMC_ESDCFG0, offsetof(struct esdramc_regs, cfg0));
  32. DEFINE(ESDRAMC_ESDMISC, offsetof(struct esdramc_regs, misc));
  33. /* Multi-Layer AHB Crossbar Switch */
  34. DEFINE(MAX_MPR0, offsetof(struct max_regs, mpr0));
  35. DEFINE(MAX_SGPCR0, offsetof(struct max_regs, sgpcr0));
  36. DEFINE(MAX_MPR1, offsetof(struct max_regs, mpr1));
  37. DEFINE(MAX_SGPCR1, offsetof(struct max_regs, sgpcr1));
  38. DEFINE(MAX_MPR2, offsetof(struct max_regs, mpr2));
  39. DEFINE(MAX_SGPCR2, offsetof(struct max_regs, sgpcr2));
  40. DEFINE(MAX_MPR3, offsetof(struct max_regs, mpr3));
  41. DEFINE(MAX_SGPCR3, offsetof(struct max_regs, sgpcr3));
  42. DEFINE(MAX_MPR4, offsetof(struct max_regs, mpr4));
  43. DEFINE(MAX_SGPCR4, offsetof(struct max_regs, sgpcr4));
  44. DEFINE(MAX_MGPCR0, offsetof(struct max_regs, mgpcr0));
  45. DEFINE(MAX_MGPCR1, offsetof(struct max_regs, mgpcr1));
  46. DEFINE(MAX_MGPCR2, offsetof(struct max_regs, mgpcr2));
  47. DEFINE(MAX_MGPCR3, offsetof(struct max_regs, mgpcr3));
  48. DEFINE(MAX_MGPCR4, offsetof(struct max_regs, mgpcr4));
  49. /* AHB <-> IP-Bus Interface */
  50. DEFINE(AIPS_MPR_0_7, offsetof(struct aips_regs, mpr_0_7));
  51. DEFINE(AIPS_MPR_8_15, offsetof(struct aips_regs, mpr_8_15));
  52. return 0;
  53. }