ubc.S 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * arch/sh/kernel/cpu/ubc.S
  3. *
  4. * Set of management routines for the User Break Controller (UBC)
  5. *
  6. * Copyright (C) 2002 Paul Mundt
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the
  10. * Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. */
  13. #include <linux/linkage.h>
  14. #include <asm/ubc.h>
  15. #define STBCR2 0xffc00010
  16. ENTRY(ubc_sleep)
  17. mov #0, r0
  18. mov.l 1f, r1 ! Zero out UBC_BBRA ..
  19. mov.w r0, @r1
  20. mov.l 2f, r1 ! .. same for BBRB ..
  21. mov.w r0, @r1
  22. mov.l 3f, r1 ! .. and again for BRCR.
  23. mov.w r0, @r1
  24. mov.w @r1, r0 ! Dummy read BRCR
  25. mov.l 4f, r1 ! Set MSTP5 in STBCR2
  26. mov.b @r1, r0
  27. or #0x01, r0
  28. mov.b r0, @r1
  29. mov.b @r1, r0 ! Two dummy reads ..
  30. mov.b @r1, r0
  31. rts
  32. nop
  33. ENTRY(ubc_wakeup)
  34. mov.l 4f, r1 ! Clear MSTP5
  35. mov.b @r1, r0
  36. and #0xfe, r0
  37. mov.b r0, @r1
  38. mov.b @r1, r0 ! Two more dummy reads ..
  39. mov.b @r1, r0
  40. rts
  41. nop
  42. 1: .long UBC_BBRA
  43. 2: .long UBC_BBRB
  44. 3: .long UBC_BRCR
  45. 4: .long STBCR2