9906163beb
Co-authored-by: Jari van Ewijk <jari.vanewijk@nxp.com> Co-authored-by: David Sidrane <david.sidrane@nscdg.com> Co-authored-by: Peter van der Perk <peter.vanderperk@nxp.com> imxrt:Kconfig fix formatting imxrt:usbphy move IMXRT_USBPHY{1|[2]}_BASE to memory map imxrt:lpspi Fix build breakage from adding 1170 imxrt:Finish 1170 iomux and clockconfig versioning imxrt:Remove duplicate imxrt_clock{off|all}_lpi2c4 imxrt:pmu remove duplicate dcd non 117x header imxrt:lpspi Fix unused var warnings imxrt:lpi2c Fix unused var warnings imxrt:lowputs Fix unused var warnings imxrt:imxrt117x_dmamux fix duplicate entries imxtr:serial Use IOMUX_PULL_{UP|DOWN} and map IOMUX V1 to them imxrt:MPU Support the 1170 imxrt:dmamux Alias IMXRT_DMAMUX0_BASE as IMXRT_DMAMUX_BASE imx1170:ccm Alias CCM_CCGR_DMA & CCM_CCGR_SNVS_LP for compatiblity Author: Peter van der Perk <peter.vanderperk@nxp.com> IMXRT7 Add LPUART 9/10/11/12 support Author: David Sidrane <david.sidrane@nscdg.com> imxrt:1170pinmux Add QTIMER pins imxrt:1170pinmux Add GPT pins imxrt:1170pinmux Add FLEXPWM pins imxrt1170:pinmap Add GPIO_ENET_1G pinning imxrt:enet Support ENET_1G imxrt:periphclks rt1170 does not have canX_serial clock imxrt:flexcan:Layer imxrt_ioctl imxrt117x:memorymap added CAN3 imxrt:ADC support ver1 and ver2 for imxrt117x imxrt:imxrt117x_ccm Align timer naming with other imxrt QTIMERn->TIMERn imxrt:imxrt117x_ccm align CCM names with rt106x imxrt:XBAR support larger number of selects needed on imxrt1170 Co-authored-by: Peter van der Perk <peter.vanderperk@nxp.com> FlexSPI AHB Region support, PIT rename for compatiblity imxrt:USB Analog add VBUS_VALID_3V FlexSPI expand prefetch registers for IMXRT117X imxrt:Support Initialization of FlexRam without Running from OCRAM imxrt: ocotp add UNIQUE_ID register definition imxrt: enet use ocotp unique_id imxrt: enet fixes for imxrt117x imxrt: ethernet pinmux sion enable imxrt:imxrt_periphclk_configure add memory sync Flush the pipeline to prevent bus faults, by insuring a peripheral is clocked before being accessed on return from this function. imxrt:Restructure gpioN to padmux mapping imxrt:Add imxrt1170 daisy imxrt: correct power modes for imxrt117x fixing hang on WFI imxrt: imxrt117x TCM MPU config imxrt: FlexRAM clocking DIV0 setup imxrt: 117x periphclocks wait for status bit imxrt: iomucx set pad settings correctly and allow reconfiguration imxrt: enet align buffers 64-byte for optimal performance Add DSC barriers for write-through cache support imxrt: imxrt1170 use FlexCAN FD/ECC features imxrt:iomuxc_ver2 (117x) SD_B1 and DISP_B1 use PULL feild not PUE/PUS imxrt:Fix 1170 SNVS addressing imxrt: enet set mii clock after ifdown so that phy keep working nxstyle fixes imxrt: preprocessor and include fixes Fix configs imxrt1170-evk clean defconfig
168 lines
5.2 KiB
C
168 lines
5.2 KiB
C
/****************************************************************************
|
|
* boards/arm/imxrt/imxrt1170-evk/src/imxrt_buttons.c
|
|
*
|
|
* 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <errno.h>
|
|
|
|
#include <nuttx/arch.h>
|
|
#include <nuttx/irq.h>
|
|
#include <arch/board/board.h>
|
|
|
|
#include "arm_internal.h"
|
|
#include "imxrt_config.h"
|
|
#include "imxrt_irq.h"
|
|
#include "imxrt_gpio.h"
|
|
#include "imxrt1170-evk.h"
|
|
|
|
#ifdef CONFIG_ARCH_BUTTONS
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
/* The IMXRT1170-EVK board has seven (sets of) switches or buttons:
|
|
*
|
|
* - External boot configuration switches (SW1)
|
|
* - External boot configuration switches (SW2)
|
|
* - MCU reset button (SW3)
|
|
* - System Reset Button / POR_BUTTON (SW4)
|
|
* - 5V power switch (SW5)
|
|
* - CPU ONOFF Button (SW6)
|
|
* - CPU Wakeup Button / USER_BUTTON (SW7)
|
|
*
|
|
* Only one button, SW7, can be used for user input.
|
|
*/
|
|
|
|
const uint32_t gpio_pins[NUM_BUTTONS] =
|
|
{
|
|
GPIO_SW7
|
|
};
|
|
const uint32_t gpio_pins_int[NUM_BUTTONS] =
|
|
{
|
|
GPIO_SW7_INT
|
|
};
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: board_button_initialize
|
|
*
|
|
* Description:
|
|
* board_button_initialize() must be called to initialize button resources.
|
|
* After that, board_buttons() may be called to collect the current state
|
|
* of all buttons or board_button_irq() may be called to register button
|
|
* interrupt handlers.
|
|
*
|
|
****************************************************************************/
|
|
|
|
uint32_t board_button_initialize(void)
|
|
{
|
|
uint32_t i;
|
|
|
|
/* Configure the buttons as input */
|
|
|
|
for (i = 0; i < NUM_BUTTONS; i++)
|
|
{
|
|
imxrt_config_gpio(gpio_pins[i]);
|
|
}
|
|
|
|
return NUM_BUTTONS;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: board_buttons
|
|
*
|
|
* Description:
|
|
* After board_button_initialize() has been called, board_buttons() may be
|
|
* called to collect the state of all buttons. board_buttons() returns an
|
|
* 8-bit bit set with each bit associated with a button. See the
|
|
* BUTTON_*_BIT definitions in board.h for the meaning of each bit.
|
|
*
|
|
****************************************************************************/
|
|
|
|
uint8_t board_buttons(void)
|
|
{
|
|
uint8_t ret = 0;
|
|
uint8_t i = 0;
|
|
|
|
for (i = 0; i < NUM_BUTTONS; i++)
|
|
{
|
|
ret |= ((!imxrt_gpio_read(gpio_pins[i])) << i);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: board_button_irq
|
|
*
|
|
* Description:
|
|
* board_button_irq() may be called to register an interrupt handler that
|
|
* will be called when a button is depressed or released. The ID value is
|
|
* a button enumeration value that uniquely identifies a button resource.
|
|
* See the BUTTON_* definitions in board.h for the meaning of enumeration
|
|
* value.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifdef CONFIG_ARCH_IRQBUTTONS
|
|
int board_button_irq(int id, xcpt_t irqhandler, void *arg)
|
|
{
|
|
int ret = -EINVAL;
|
|
|
|
/* The button has already been configured as an interrupting input (by
|
|
* board_button_initialize() above).
|
|
*
|
|
* Attach the new button handler.
|
|
*/
|
|
|
|
if (id < NUM_BUTTONS)
|
|
{
|
|
uint32_t irqnum = gpio_pins_int[id];
|
|
if (irqhandler)
|
|
{
|
|
ret = irq_attach(irqnum, irqhandler, arg);
|
|
imxrt_gpioirq_enable (irqnum);
|
|
|
|
/* Then make sure that interrupts are enabled on the pin */
|
|
|
|
up_enable_irq(irqnum);
|
|
}
|
|
else
|
|
{
|
|
up_disable_irq(irqnum);
|
|
imxrt_gpioirq_disable(irqnum);
|
|
ret = OK;
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
#endif
|
|
#endif /* CONFIG_ARCH_BUTTONS */
|