u-boot-mips.h 679 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * This file is released under the terms of GPL v2 and any later version.
  3. * See the file COPYING in the root directory of the source tree for details.
  4. *
  5. * Copyright (C) 2003 Wolfgang Denk, DENX Software Engineering, wd@denx.de
  6. */
  7. extern ulong uboot_end_data;
  8. extern ulong uboot_end;
  9. static inline unsigned long bss_start(void)
  10. {
  11. extern ulong __bss_start;
  12. return (unsigned long) &__bss_start;
  13. }
  14. static inline unsigned long bss_end(void)
  15. {
  16. extern ulong __bss_end;
  17. return (unsigned long) &__bss_end;
  18. }
  19. static inline unsigned long image_copy_end(void)
  20. {
  21. extern ulong __image_copy_end;
  22. return (unsigned long) &__image_copy_end;
  23. }
  24. extern int incaip_set_cpuclk(void);