busctl-regs.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* busctl-regs.h: FR400-series CPU bus controller registers
  2. *
  3. * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. */
  11. #ifndef _ASM_BUSCTL_REGS_H
  12. #define _ASM_BUSCTL_REGS_H
  13. /* bus controller registers */
  14. #define __get_LGCR() ({ *(volatile unsigned long *)(0xfe000010); })
  15. #define __get_LMAICR() ({ *(volatile unsigned long *)(0xfe000030); })
  16. #define __get_LEMBR() ({ *(volatile unsigned long *)(0xfe000040); })
  17. #define __get_LEMAM() ({ *(volatile unsigned long *)(0xfe000048); })
  18. #define __get_LCR(R) ({ *(volatile unsigned long *)(0xfe000100 + 8*(R)); })
  19. #define __get_LSBR(R) ({ *(volatile unsigned long *)(0xfe000c00 + 8*(R)); })
  20. #define __get_LSAM(R) ({ *(volatile unsigned long *)(0xfe000d00 + 8*(R)); })
  21. #define __set_LGCR(V) do { *(volatile unsigned long *)(0xfe000010) = (V); } while(0)
  22. #define __set_LMAICR(V) do { *(volatile unsigned long *)(0xfe000030) = (V); } while(0)
  23. #define __set_LEMBR(V) do { *(volatile unsigned long *)(0xfe000040) = (V); } while(0)
  24. #define __set_LEMAM(V) do { *(volatile unsigned long *)(0xfe000048) = (V); } while(0)
  25. #define __set_LCR(R,V) do { *(volatile unsigned long *)(0xfe000100 + 8*(R)) = (V); } while(0)
  26. #define __set_LSBR(R,V) do { *(volatile unsigned long *)(0xfe000c00 + 8*(R)) = (V); } while(0)
  27. #define __set_LSAM(R,V) do { *(volatile unsigned long *)(0xfe000d00 + 8*(R)) = (V); } while(0)
  28. /* FR401 SDRAM controller registers */
  29. #define __get_DBR(R) ({ *(volatile unsigned long *)(0xfe000e00 + 8*(R)); })
  30. #define __get_DAM(R) ({ *(volatile unsigned long *)(0xfe000f00 + 8*(R)); })
  31. /* FR551 SDRAM controller registers */
  32. #define __get_DARS(R) ({ *(volatile unsigned long *)(0xfeff0100 + 8*(R)); })
  33. #define __get_DAMK(R) ({ *(volatile unsigned long *)(0xfeff0110 + 8*(R)); })
  34. #endif /* _ASM_BUSCTL_REGS_H */