2016-02-28 21:14:06 +01:00
|
|
|
/************************************************************************************
|
2019-08-05 14:04:14 +02:00
|
|
|
* boards/sabre-6quad/include/board.h
|
2016-02-28 21:14:06 +01:00
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. 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.
|
|
|
|
* 3. Neither the name NuttX 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.
|
|
|
|
*
|
|
|
|
************************************************************************************/
|
|
|
|
|
2019-08-06 16:37:27 +02:00
|
|
|
#ifndef __BOARDS_ARM_SABRE_6QUAD_INCLUDE_BOARD_H
|
|
|
|
#define __BOARDS_ARM_SABRE_6QUAD_INCLUDE_BOARD_H
|
2016-02-28 21:14:06 +01:00
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
* Included Files
|
|
|
|
************************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
************************************************************************************/
|
|
|
|
/* Clocking *************************************************************************/
|
2016-03-24 21:45:04 +01:00
|
|
|
/* The Sabre-6Quad board has two crystals:
|
|
|
|
*
|
|
|
|
* Y1 24 MHz CPU_XTALI/CPU_XTALO
|
|
|
|
* QZ500 32.768 KHz RTC_XTALI/RTC_XTALO
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define BOARD_CPUXTAL_FREQUENCY 24000000
|
|
|
|
#define BAORD_RTCXTAL_FREQUENCY 32768
|
|
|
|
|
2016-03-17 20:00:53 +01:00
|
|
|
/* Clocking will be configured at 792 MHz initially when started via U-Boot. The
|
|
|
|
* Linux kernel will use the CPU frequency scaling code which will switch the
|
|
|
|
* processor frequency between 400 MHz and 1GHz based on load and temperature.
|
|
|
|
*
|
2016-04-01 01:26:33 +02:00
|
|
|
* These are the frequencies reported with U-Boot starts up:
|
|
|
|
*
|
|
|
|
* mx6q pll1 : 792MHz
|
|
|
|
* mx6q pll2 : 528MHz
|
|
|
|
* mx6q pll3 : 480MHz
|
|
|
|
* mx6q pll8 : 50MHz
|
|
|
|
*
|
|
|
|
* ipg clock : 66000000Hz
|
|
|
|
* ipg per clock : 66000000Hz
|
|
|
|
* uart clock : 80000000Hz
|
|
|
|
* cspi clock : 60000000Hz
|
|
|
|
* ahb clock : 132000000Hz
|
|
|
|
* axi clock : 264000000Hz
|
|
|
|
* emi_slow clock : 29333333Hz
|
|
|
|
* ddr clock : 528000000Hz
|
|
|
|
* usdhc1 clock : 198000000Hz
|
|
|
|
* usdhc2 clock : 198000000Hz
|
|
|
|
* usdhc3 clock : 198000000Hz
|
|
|
|
* usdhc4 clock : 198000000Hz
|
|
|
|
* nfc clock : 24000000Hz
|
|
|
|
*
|
2016-03-17 20:00:53 +01:00
|
|
|
* For now, NuttX simply leaves the clocking at 792MHz.
|
|
|
|
*/
|
2016-02-28 21:14:06 +01:00
|
|
|
|
|
|
|
/* LED definitions ******************************************************************/
|
2016-03-01 21:17:03 +01:00
|
|
|
/* LEDs
|
|
|
|
*
|
2016-03-08 00:44:55 +01:00
|
|
|
* A single LED is available driven GPIO1_IO02. On the schematic this is
|
|
|
|
* USR_DEF_RED_LED signal to pin T1 (GPIO_2). This signal is shared with KEY_ROW6
|
2016-05-17 18:08:44 +02:00
|
|
|
* (ALT2). A high value illuminates the LED.
|
2016-03-01 21:17:03 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* LED index values for use with board_userled() */
|
|
|
|
|
2016-03-08 00:44:55 +01:00
|
|
|
#define BOARD_LED 0
|
2016-03-07 16:03:41 +01:00
|
|
|
#define BOARD_NLEDS 1
|
2016-03-01 21:17:03 +01:00
|
|
|
|
|
|
|
/* LED bits for use with board_userled_all() */
|
|
|
|
|
2016-03-08 00:44:55 +01:00
|
|
|
#define BOARD_LED_BIT (1 << BOARD_LED)
|
2016-03-01 21:17:03 +01:00
|
|
|
|
|
|
|
/* These LEDs are not used by the board port unless CONFIG_ARCH_LEDS is
|
|
|
|
* defined. In that case, the usage by the board port is defined in
|
|
|
|
* include/board.h and src/sam_autoleds.c. The LEDs are used to encode
|
|
|
|
* OS-related events as follows:
|
|
|
|
*
|
2016-03-07 16:03:41 +01:00
|
|
|
* ---------------------- ---------------------------- ------
|
|
|
|
* SYMBOL Meaning LED
|
|
|
|
* ---------------------- ---------------------------- ------ */
|
|
|
|
|
|
|
|
#define LED_STARTED 0 /* NuttX has been started OFF */
|
|
|
|
#define LED_HEAPALLOCATE 0 /* Heap has been allocated OFF */
|
|
|
|
#define LED_IRQSENABLED 0 /* Interrupts enabled OFF */
|
|
|
|
#define LED_STACKCREATED 1 /* Idle stack created ON */
|
|
|
|
#define LED_INIRQ 2 /* In an interrupt N/C */
|
|
|
|
#define LED_SIGNAL 2 /* In a signal handler N/C */
|
|
|
|
#define LED_ASSERTION 2 /* An assertion failed N/C */
|
|
|
|
#define LED_PANIC 3 /* The system has crashed FLASH */
|
|
|
|
#undef LED_IDLE /* MCU is is sleep mode Not used */
|
2016-03-01 21:17:03 +01:00
|
|
|
|
|
|
|
/* Thus is LED is statically on, NuttX has successfully booted and is,
|
|
|
|
* apparently, running normally. If LED is flashing at approximately
|
|
|
|
* 2Hz, then a fatal error has been detected and the system has halted.
|
|
|
|
*/
|
2016-02-28 21:14:06 +01:00
|
|
|
|
|
|
|
/* Button definitions ***************************************************************/
|
|
|
|
|
|
|
|
/* GPIO Disambiguation **************************************************************/
|
2016-03-07 16:03:41 +01:00
|
|
|
/* A DEBUG VCOM is available MICRO USB AB 5 J509. This corresponds to UART1 from
|
|
|
|
* the i.MX6. UART1 connects to J509 via the CSIO_DAT10 and CSIO_DAT11 pins:
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define GPIO_UART1_RX_DATA GPIO_UART1_RX_DATA_2
|
|
|
|
#define GPIO_UART1_TX_DATA GPIO_UART1_TX_DATA_2
|
2016-02-28 21:14:06 +01:00
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
* Public Types
|
|
|
|
************************************************************************************/
|
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
* Public Data
|
|
|
|
************************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
#define EXTERN extern "C"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/************************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
************************************************************************************/
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __ASSEMBLY__ */
|
2019-08-06 16:37:27 +02:00
|
|
|
#endif /* __BOARDS_ARM_SABRE_6QUAD_INCLUDE_BOARD_H */
|