hal_porting.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. /****************************************************************
  2. ****************************************************************
  3. ** **
  4. ** (C)Copyright 2005-2006, American Megatrends Inc. **
  5. ** **
  6. ** All Rights Reserved. **
  7. ** **
  8. ** 6145-F, Northbelt Parkway, Norcross, **
  9. ** **
  10. ** Georgia - 30071, USA. Phone-(770)-246-8600. **
  11. ** **
  12. ****************************************************************
  13. ****************************************************************/
  14. /*****************************************************************
  15. *
  16. * hal_porting.h
  17. * HAL hardware porting macros
  18. *
  19. * Author: Vinoth kumar S <vinothkumars@ami.com>
  20. *
  21. *****************************************************************/
  22. #ifndef HAL_HW_PORT_H
  23. #define HAL_HW_PORT_H
  24. #include "Types.h"
  25. //#include "hal_defs.h"
  26. #include "Debug.h"
  27. /* Memory mapped apis */
  28. #define HAL_MMAP_READ(ADDR,MASK) (0)//mmap_read32(ADDR,MASK)
  29. #define HAL_MMAP_WRITE(ADDR,MASK,VAL) (0) //mmap_write32(ADDR,MASK,VAL)
  30. #endif //#define HAL_HW_PORT_H