asm-offsets.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Adapted from Linux v2.6.36 kernel: arch/powerpc/kernel/asm-offsets.c
  3. *
  4. * Generate definitions needed by assembly language modules.
  5. * This code generates raw asm output which is post-processed to extract
  6. * and format the required data.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <common.h>
  13. #include <linux/kbuild.h>
  14. int main(void)
  15. {
  16. #ifdef CONFIG_FTSMC020
  17. OFFSET(FTSMC020_BANK0_CR, ftsmc020, bank[0].cr);
  18. OFFSET(FTSMC020_BANK0_TPR, ftsmc020, bank[0].tpr);
  19. #endif
  20. BLANK();
  21. #ifdef CONFIG_FTAHBC020S
  22. OFFSET(FTAHBC020S_SLAVE_BSR_6, ftahbc02s, s_bsr[6]);
  23. OFFSET(FTAHBC020S_CR, ftahbc02s, cr);
  24. #endif
  25. BLANK();
  26. #ifdef CONFIG_FTPMU010
  27. OFFSET(FTPMU010_PDLLCR0, ftpmu010, PDLLCR0);
  28. #endif
  29. BLANK();
  30. #ifdef CONFIG_FTSDMC021
  31. OFFSET(FTSDMC021_TP1, ftsdmc021, tp1);
  32. OFFSET(FTSDMC021_TP2, ftsdmc021, tp2);
  33. OFFSET(FTSDMC021_CR1, ftsdmc021, cr1);
  34. OFFSET(FTSDMC021_CR2, ftsdmc021, cr2);
  35. OFFSET(FTSDMC021_BANK0_BSR, ftsdmc021, bank0_bsr);
  36. OFFSET(FTSDMC021_BANK1_BSR, ftsdmc021, bank1_bsr);
  37. OFFSET(FTSDMC021_BANK2_BSR, ftsdmc021, bank2_bsr);
  38. OFFSET(FTSDMC021_BANK3_BSR, ftsdmc021, bank3_bsr);
  39. #endif
  40. return 0;
  41. }