2023-07-04 15:32:46 +03:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2023 Texas Instruments Incorporated
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
|
|
|
|
*
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
|
*
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
* documentation and/or other materials provided with the
|
|
|
|
|
* distribution.
|
|
|
|
|
*
|
|
|
|
|
* Neither the name of Texas Instruments Incorporated nor the names of
|
|
|
|
|
* its contributors may be used to endorse or promote products derived
|
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <drivers/pinmux.h>
|
|
|
|
|
#include "cfg_pad.h"
|
|
|
|
|
|
2023-08-19 12:13:53 +03:00
|
|
|
static Pinmux_PerCfg_t gPinMuxMainDomainCfgsdfm[] = {
|
2023-07-04 15:32:46 +03:00
|
|
|
|
|
|
|
|
/* PRG0_ECAP0_IN_APWM_OUT,
|
|
|
|
|
PRG0_PRU1_GPO15, PRG0_ECAP0_IN_APWM_OUT, U5, J2.C11 */
|
|
|
|
|
{
|
|
|
|
|
PIN_PRG0_PRU1_GPO15,
|
|
|
|
|
( PIN_MODE(10) | PIN_PULL_DISABLE )
|
|
|
|
|
},
|
|
|
|
|
/* SD8_CLK,
|
|
|
|
|
PRG0_PRU0_GPI16, SD8_CLK, U4, J2E:P9 */
|
|
|
|
|
{
|
|
|
|
|
PIN_PRG0_PRU0_GPO16,
|
|
|
|
|
( PIN_MODE(1) | PIN_INPUT_ENABLE | PIN_PULL_DISABLE )
|
|
|
|
|
},
|
|
|
|
|
/* SD0_D,
|
|
|
|
|
PRG0_PRU0_GPI1, SD0_D, R4, J2E:P8 */
|
|
|
|
|
{
|
|
|
|
|
PIN_PRG0_PRU0_GPO1,
|
|
|
|
|
( PIN_MODE(1) | PIN_INPUT_ENABLE | PIN_PULL_DISABLE )
|
|
|
|
|
},
|
|
|
|
|
/* SD1_D,
|
|
|
|
|
PRG0_PRU0_GPI3, SD1_D, V2, J2A:P9 */
|
|
|
|
|
{
|
|
|
|
|
PIN_PRG0_PRU0_GPO3,
|
|
|
|
|
( PIN_MODE(1) | PIN_INPUT_ENABLE | PIN_PULL_DISABLE )
|
|
|
|
|
},
|
|
|
|
|
/* SD2_D,
|
|
|
|
|
PRG0_PRU0_GPI5, SD2_D, R3, J2C:P6 */
|
|
|
|
|
{
|
|
|
|
|
PIN_PRG0_PRU0_GPO5,
|
|
|
|
|
( PIN_MODE(1) | PIN_INPUT_ENABLE | PIN_PULL_DISABLE )
|
|
|
|
|
},
|
2023-08-19 12:13:53 +03:00
|
|
|
|
2023-07-04 15:32:46 +03:00
|
|
|
{PINMUX_END, PINMUX_END}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Configure SOC pads */
|
|
|
|
|
void cfgPad(void)
|
|
|
|
|
{
|
2023-08-19 12:13:53 +03:00
|
|
|
Pinmux_config(gPinMuxMainDomainCfgsdfm, PINMUX_DOMAIN_ID_MAIN);
|
2023-07-04 15:32:46 +03:00
|
|
|
}
|