dma_flags.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*************************************************************************/ /*!
  2. @File
  3. @Copyright Copyright (c) Imagination Technologies Ltd. All Rights Reserved
  4. @License Dual MIT/GPLv2
  5. The contents of this file are subject to the MIT license as set out below.
  6. Permission is hereby granted, free of charge, to any person obtaining a copy
  7. of this software and associated documentation files (the "Software"), to deal
  8. in the Software without restriction, including without limitation the rights
  9. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. copies of the Software, and to permit persons to whom the Software is
  11. furnished to do so, subject to the following conditions:
  12. The above copyright notice and this permission notice shall be included in
  13. all copies or substantial portions of the Software.
  14. Alternatively, the contents of this file may be used under the terms of
  15. the GNU General Public License Version 2 ("GPL") in which case the provisions
  16. of GPL are applicable instead of those above.
  17. If you wish to allow use of your version of this file only under the terms of
  18. GPL, and not to allow others to use your version of this file under the terms
  19. of the MIT license, indicate your decision by deleting the provisions above
  20. and replace them with the notice and other provisions required by GPL as set
  21. out in the file called "GPL-COPYING" included in this distribution. If you do
  22. not delete the provisions above, a recipient may use your version of this file
  23. under the terms of either the MIT license or GPL.
  24. This License is also included in this distribution in the file called
  25. "MIT-COPYING".
  26. EXCEPT AS OTHERWISE STATED IN A NEGOTIATED AGREEMENT: (A) THE SOFTWARE IS
  27. PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
  28. BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  29. PURPOSE AND NONINFRINGEMENT; AND (B) IN NO EVENT SHALL THE AUTHORS OR
  30. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  31. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  32. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  33. */ /**************************************************************************/
  34. #ifndef DMA_FLAGS_H
  35. #define DMA_FLAGS_H
  36. /* these should match flags in pvrsrv_dma.h */
  37. #define DMA_FLAG_MEM_TO_DEV (1U<<0)
  38. #define DMA_FLAG_DEV_TO_MEM (0U<<0)
  39. #define DMA_FLAG_SYNCHRONOUS (1U<<1)
  40. #endif /* DMA_FLAGS_H */