nuttx/boards/arm/tiva/dk-tm4c129x/src/dk-tm4c129x.h
Alin Jerpelea 6f14299dd0 boards: nxstyle fixes
nxstyle fixes to pass the CI check

Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
2021-03-18 22:58:27 -07:00

187 lines
6.4 KiB
C

/****************************************************************************
* boards/arm/tiva/dk-tm4c129x/src/dk-tm4c129x.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
#ifndef __BOARDS_ARM_TIVA_DK_TM4C129X_DK_TM4C129X_H
#define __BOARDS_ARM_TIVA_DK_TM4C129X_DK_TM4C129X_H
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <nuttx/compiler.h>
#include "chip.h"
#include "tiva_gpio.h"
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
/* Configuration ************************************************************/
/* How many SSI modules does this chip support? */
#if TIVA_NSSI < 1
# undef CONFIG_TIVA_SSI0
# undef CONFIG_TIVA_SSI0
#elif TIVA_NSSI < 2
# undef CONFIG_TIVA_SSI0
#endif
/* Do we need to register I2C drivers on behalf of the I2C tool? */
#define HAVE_I2CTOOL 1
#if !defined(CONFIG_SYSTEM_I2CTOOL) || !defined(CONFIG_I2C_DRIVER)
# undef HAVE_I2CTOOL
#endif
/* LED definitions **********************************************************/
/* The TMC4C123G LaunchPad has a single RGB LED.
* There is only one visible LED which will vary in color.
* But, from the standpoint of the firmware, this appears as
* three LEDs:
*
* --- ------------ -----------------
* Pin Pin Function Jumper
* --- ------------ -----------------
* PN5 Red LED J36 pins 1 and 2
* PQ4 Blue LED J36 pins 3 and 4
* PQ7 Green LED J36 pins 5 and 6
* --- ------------ -----------------
*
* A high output illuminates the LED.
*/
#define GPIO_LED_R (GPIO_FUNC_OUTPUT | GPIO_VALUE_ZERO | GPIO_PORTN | GPIO_PIN_5)
#define GPIO_LED_G (GPIO_FUNC_OUTPUT | GPIO_VALUE_ZERO | GPIO_PORTQ | GPIO_PIN_7)
#define GPIO_LED_B (GPIO_FUNC_OUTPUT | GPIO_VALUE_ZERO | GPIO_PORTQ | GPIO_PIN_4)
/* Button definitions *******************************************************/
/* There are three push buttons on the board.
*
* --- ------------ -----------------
* Pin Pin Function Jumper
* --- ------------ -----------------
* PP1 Select SW4 J37 pins 1 and 2
* PN3 Up SW2 J37 pins 3 and 4
* PE5 Down SW3 J37 pins 5 and 6
* --- ------------ -----------------
*
* Interrupts are supported only on port P and Q so only SW4 interrupts are
* supported.
*/
#define GPIO_SW2 (GPIO_FUNC_INPUT | GPIO_PORTE | GPIO_PIN_5)
#define GPIO_SW3 (GPIO_FUNC_INPUT | GPIO_PORTN | GPIO_PIN_3)
#define GPIO_SW4 (GPIO_FUNC_INPUT | GPIO_INT_BOTHEDGES | GPIO_PORTP | GPIO_PIN_1)
#define IRQ_SW4 TIVA_IRQ_GPIOP_1
/* SPI Chip selects *********************************************************/
/* SSI0: PA3 is used for SSI0 chip select to the second booster pack
* (No pull-ups)
* SSI3: PH4 selects the SD card and PQ1 selects the on-board SPI flash.
* Both pulled up on board.
*/
#define GPIO_BSTR2_CS (GPIO_FUNC_OUTPUT | GPIO_PADTYPE_STDWPU | GPIO_STRENGTH_4MA | \
GPIO_VALUE_ONE | GPIO_PORTA | GPIO_PIN_3)
#define GPIO_FLASH_CS (GPIO_FUNC_OUTPUT | GPIO_PADTYPE_STD | GPIO_STRENGTH_4MA | \
GPIO_VALUE_ONE | GPIO_PORTH | GPIO_PIN_4)
#define GPIO_SD_CS (GPIO_FUNC_OUTPUT | GPIO_PADTYPE_STD | GPIO_STRENGTH_4MA | \
GPIO_VALUE_ONE | GPIO_PORTH | GPIO_PIN_4)
/* I2C **********************************************************************/
/* I2C3: PG4-5 are provide to the BoostPack 1 interface
* I2C7: PA4-5 are provide to the BoostPack 2 interface
* I2C6: PB6-7 are used for I2C to the TMP100 and the EM connector.
* J18 and J20 must be closed to connect the TMP100.
* I2C address is 0x4A
*/
#define TMP100_I2CBUS 6
#define TMP100_I2CADDR 0x4a
/* Speaker outputs **********************************************************/
/* PB2/PD4 are used for the speaker output */
/* Touchscreen **************************************************************/
/* PE7/PP7/PT2-3 are used for the touch screen */
/****************************************************************************
* Public Functions Definitions
****************************************************************************/
#ifndef __ASSEMBLY__
/****************************************************************************
* Name: tm4c_ssidev_initialize
*
* Description:
* Called to configure SPI chip select GPIO pins for the DK-TM4C129X.
*
****************************************************************************/
void weak_function tm4c_ssidev_initialize(void);
/****************************************************************************
* Name: tm4c_led_initialize
*
* Description:
* Called to initialize the on-board LEDs.
*
****************************************************************************/
#ifdef CONFIG_ARCH_LEDS
void tm4c_led_initialize(void);
#endif
/****************************************************************************
* Name: tm4c_bringup
*
* Description:
* Bring up board features
*
****************************************************************************/
int tm4c_bringup(void);
/****************************************************************************
* Name: tiva_timer_configure
*
* Description:
* Configure the timer driver
*
****************************************************************************/
#ifdef CONFIG_DK_TM4C129X_TIMER
int tiva_timer_configure(void);
#endif
#endif /* __ASSEMBLY__ */
#endif /* __BOARDS_ARM_TIVA_DK_TM4C129X_DK_TM4C129X_H */