evmC6748.h 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /**
  2. * \file evmC6748.h
  3. *
  4. * \brief This file contains the board specific function prototypes for use by
  5. * applications
  6. */
  7. /*
  8. * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. *
  14. * Redistributions of source code must retain the above copyright
  15. * notice, this list of conditions and the following disclaimer.
  16. *
  17. * Redistributions in binary form must reproduce the above copyright
  18. * notice, this list of conditions and the following disclaimer in the
  19. * documentation and/or other materials provided with the
  20. * distribution.
  21. *
  22. * Neither the name of Texas Instruments Incorporated nor the names of
  23. * its contributors may be used to endorse or promote products derived
  24. * from this software without specific prior written permission.
  25. *
  26. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  27. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  28. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  29. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  30. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  31. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  32. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  33. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  34. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  35. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  36. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  37. */
  38. #ifndef __EVMC6748_H__
  39. #define __EVMC6748_H__
  40. #ifdef __cplusplus
  41. extern "C" {
  42. #endif
  43. /******************************************************************************
  44. ** FUNCTION DEFINITIONS
  45. ******************************************************************************/
  46. extern unsigned int LCDVersionGet(void);
  47. extern void UARTPinMuxSetup(unsigned int instanceNum,
  48. unsigned int modemCtrlChoice);
  49. extern void RTCPinMuxSetup(unsigned int alarmPinReqd);
  50. extern void SPI0CSPinMuxSetup(unsigned int csPinNum);
  51. extern void SPI1CSPinMuxSetup(unsigned int csPinNum);
  52. extern void I2CPinMuxSetup(unsigned int instanceNum);
  53. extern void SPIPinMuxSetup(unsigned int instanceNum);
  54. extern void ConfigRasterDisplayEnable(void);
  55. extern void GPIOBank4Pin0PinMuxSetup(void);
  56. extern void SysCfgRegistersUnlock(void);
  57. extern void SysCfgRegistersLock(void);
  58. extern void EHRPWM0PinMuxSetup(void);
  59. extern void EHRPWM1PinMuxSetup(void);
  60. extern void LIDDDisplayEnable(void);
  61. extern void McASPPinMuxSetup(void);
  62. extern void EMACPinMuxSetup(void);
  63. extern void LIDDPinMuxSetup(void);
  64. extern void LCDPinMuxSetup(void);
  65. extern void NANDPinMuxSetup(void);
  66. extern void EMIFAClkConfig(void);
  67. extern void VPIFPinMuxSetup(void);
  68. #ifdef __cplusplus
  69. }
  70. #endif
  71. #endif