dm646x.h 757 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Chip specific defines for DM646x SoC
  3. *
  4. * Author: Kevin Hilman, Deep Root Systems, LLC
  5. *
  6. * 2007 (c) Deep Root Systems, LLC. This file is licensed under
  7. * the terms of the GNU General Public License version 2. This program
  8. * is licensed "as is" without any warranty of any kind, whether express
  9. * or implied.
  10. */
  11. #ifndef __ASM_ARCH_DM646X_H
  12. #define __ASM_ARCH_DM646X_H
  13. #include <mach/hardware.h>
  14. #include <mach/emac.h>
  15. #define DM646X_EMAC_BASE (0x01C80000)
  16. #define DM646X_EMAC_CNTRL_OFFSET (0x0000)
  17. #define DM646X_EMAC_CNTRL_MOD_OFFSET (0x1000)
  18. #define DM646X_EMAC_CNTRL_RAM_OFFSET (0x2000)
  19. #define DM646X_EMAC_MDIO_OFFSET (0x4000)
  20. #define DM646X_EMAC_CNTRL_RAM_SIZE (0x2000)
  21. void __init dm646x_init(void);
  22. #endif /* __ASM_ARCH_DM646X_H */