ecard.S 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * linux/arch/arm26/lib/ecard.S
  3. *
  4. * Copyright (C) 1995, 1996 Russell King
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <linux/config.h> /* for CONFIG_CPU_nn */
  11. #include <linux/linkage.h>
  12. #include <asm/assembler.h>
  13. #include <asm/hardware.h>
  14. #define CPSR2SPSR(rt)
  15. @ Purpose: call an expansion card loader to read bytes.
  16. @ Proto : char read_loader(int offset, char *card_base, char *loader);
  17. @ Returns: byte read
  18. ENTRY(ecard_loader_read)
  19. stmfd sp!, {r4 - r12, lr}
  20. mov r11, r1
  21. mov r1, r0
  22. CPSR2SPSR(r0)
  23. mov lr, pc
  24. mov pc, r2
  25. LOADREGS(fd, sp!, {r4 - r12, pc})
  26. @ Purpose: call an expansion card loader to reset the card
  27. @ Proto : void read_loader(int card_base, char *loader);
  28. @ Returns: byte read
  29. ENTRY(ecard_loader_reset)
  30. stmfd sp!, {r4 - r12, lr}
  31. mov r11, r0
  32. CPSR2SPSR(r0)
  33. mov lr, pc
  34. add pc, r1, #8
  35. LOADREGS(fd, sp!, {r4 - r12, pc})