garbage at the end of the files. Signed-off-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com>
270 lines
6.3 KiB
C
270 lines
6.3 KiB
C
/****************************************************************************
|
|
* boards/xtensa/esp32/esp32-ethernet-kit/src/esp32_bringup.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 <stdio.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <syslog.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/types.h>
|
|
#include <syslog.h>
|
|
#include <debug.h>
|
|
#include <stdio.h>
|
|
|
|
#include <sys/errno.h>
|
|
#include <nuttx/fs/fs.h>
|
|
#include <nuttx/himem/himem.h>
|
|
|
|
#include "esp32_spiflash.h"
|
|
#include "esp32_partition.h"
|
|
|
|
#ifdef CONFIG_USERLED
|
|
# include <nuttx/leds/userled.h>
|
|
#endif
|
|
|
|
#ifdef CONFIG_TIMER
|
|
#include <esp32_tim_lowerhalf.h>
|
|
#endif
|
|
|
|
#ifdef CONFIG_ONESHOT
|
|
# include "esp32_board_oneshot.h"
|
|
#endif
|
|
|
|
#ifdef CONFIG_WATCHDOG
|
|
# include "esp32_board_wdt.h"
|
|
#endif
|
|
|
|
#ifdef CONFIG_ESP32_WIRELESS
|
|
# include "esp32_board_wlan.h"
|
|
#endif
|
|
|
|
#ifdef CONFIG_BUTTONS
|
|
# include <nuttx/input/buttons.h>
|
|
#endif
|
|
|
|
#include "esp32-ethernet-kit.h"
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: esp32_bringup
|
|
*
|
|
* Description:
|
|
* Perform architecture-specific initialization
|
|
*
|
|
* CONFIG_BOARD_LATE_INITIALIZE=y :
|
|
* Called from board_late_initialize().
|
|
*
|
|
* CONFIG_BOARD_LATE_INITIALIZE=n && CONFIG_LIB_BOARDCTL=y :
|
|
* Called from the NSH library
|
|
*
|
|
****************************************************************************/
|
|
|
|
int esp32_bringup(void)
|
|
{
|
|
int ret;
|
|
|
|
#if defined(CONFIG_ESP32_SPIRAM) && \
|
|
defined(CONFIG_ESP32_SPIRAM_BANKSWITCH_ENABLE)
|
|
ret = esp_himem_init();
|
|
if (ret < 0)
|
|
{
|
|
syslog(LOG_ERR, "ERROR: Failed to init HIMEM: %d\n", ret);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_FS_PROCFS
|
|
/* Mount the procfs file system */
|
|
|
|
ret = nx_mount(NULL, "/proc", "procfs", 0, NULL);
|
|
if (ret < 0)
|
|
{
|
|
syslog(LOG_ERR, "ERROR: Failed to mount procfs at /proc: %d\n", ret);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_FS_TMPFS
|
|
/* Mount the tmpfs file system */
|
|
|
|
ret = nx_mount(NULL, CONFIG_LIBC_TMPDIR, "tmpfs", 0, NULL);
|
|
if (ret < 0)
|
|
{
|
|
syslog(LOG_ERR, "ERROR: Failed to mount tmpfs at %s: %d\n",
|
|
CONFIG_LIBC_TMPDIR, ret);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_MMCSD
|
|
ret = esp32_mmcsd_initialize(0);
|
|
if (ret < 0)
|
|
{
|
|
syslog(LOG_ERR, "Failed to initialize SD slot: %d\n", ret);
|
|
return ret;
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_ESP32_SPIFLASH
|
|
|
|
#ifdef CONFIG_ESP32_SPIFLASH_ENCRYPTION_TEST
|
|
esp32_spiflash_encrypt_test();
|
|
#endif
|
|
|
|
ret = esp32_spiflash_init();
|
|
if (ret)
|
|
{
|
|
syslog(LOG_ERR, "ERROR: Failed to initialize SPI Flash\n");
|
|
return ret;
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_ESP32_PARTITION
|
|
ret = esp32_partition_init();
|
|
if (ret < 0)
|
|
{
|
|
syslog(LOG_ERR, "ERROR: Failed to initialize partition error=%d\n",
|
|
ret);
|
|
return ret;
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_ESP32_WIRELESS
|
|
ret = board_wlan_init();
|
|
if (ret < 0)
|
|
{
|
|
syslog(LOG_ERR, "ERROR: Failed to initialize wireless subsystem=%d\n",
|
|
ret);
|
|
return ret;
|
|
}
|
|
#endif
|
|
|
|
/* First, register the timer drivers and let timer 1 for oneshot
|
|
* if it is enabled.
|
|
*/
|
|
|
|
#ifdef CONFIG_TIMER
|
|
|
|
#ifdef CONFIG_ESP32_TIMER0
|
|
ret = esp32_timer_initialize("/dev/timer0", TIMER0);
|
|
if (ret < 0)
|
|
{
|
|
syslog(LOG_ERR,
|
|
"ERROR: Failed to initialize timer driver: %d\n",
|
|
ret);
|
|
return ret;
|
|
}
|
|
#endif
|
|
|
|
#if defined(CONFIG_ESP32_TIMER1) && !defined(CONFIG_ONESHOT)
|
|
ret = esp32_timer_initialize("/dev/timer1", TIMER1);
|
|
if (ret < 0)
|
|
{
|
|
syslog(LOG_ERR,
|
|
"ERROR: Failed to initialize timer driver: %d\n",
|
|
ret);
|
|
return ret;
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_ESP32_TIMER2
|
|
ret = esp32_timer_initialize("/dev/timer2", TIMER2);
|
|
if (ret < 0)
|
|
{
|
|
syslog(LOG_ERR,
|
|
"ERROR: Failed to initialize timer driver: %d\n",
|
|
ret);
|
|
return ret;
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_ESP32_TIMER3
|
|
ret = esp32_timer_initialize("/dev/timer3", TIMER3);
|
|
if (ret < 0)
|
|
{
|
|
syslog(LOG_ERR,
|
|
"ERROR: Failed to initialize timer driver: %d\n",
|
|
ret);
|
|
return ret;
|
|
}
|
|
#endif
|
|
|
|
#endif /* CONFIG_TIMER */
|
|
|
|
/* Now register one oneshot driver */
|
|
|
|
#if defined(CONFIG_ONESHOT) && defined(CONFIG_ESP32_TIMER1)
|
|
|
|
ret = esp32_oneshot_init(ONESHOT_TIMER, ONESHOT_RESOLUTION_US);
|
|
if (ret < 0)
|
|
{
|
|
syslog(LOG_ERR, "ERROR: esp32_oneshot_init() failed: %d\n", ret);
|
|
}
|
|
|
|
#endif /* CONFIG_ONESHOT */
|
|
|
|
#ifdef CONFIG_USERLED
|
|
/* Register the LED driver */
|
|
|
|
ret = userled_lower_initialize("/dev/userleds");
|
|
if (ret < 0)
|
|
{
|
|
syslog(LOG_ERR, "ERROR: userled_lower_initialize() failed: %d\n", ret);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_WATCHDOG
|
|
/* Configure watchdog timer */
|
|
|
|
ret = board_wdt_init();
|
|
if (ret < 0)
|
|
{
|
|
syslog(LOG_ERR,
|
|
"ERROR: Failed to initialize watchdog drivers: %d\n",
|
|
ret);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_BUTTONS
|
|
/* Register the BUTTON driver */
|
|
|
|
ret = btn_lower_initialize("/dev/buttons");
|
|
if (ret < 0)
|
|
{
|
|
syslog(LOG_ERR, "ERROR: btn_lower_initialize() failed: %d\n", ret);
|
|
}
|
|
#endif
|
|
|
|
/* If we got here then perhaps not all initialization was successful, but
|
|
* at least enough succeeded to bring-up NSH with perhaps reduced
|
|
* capabilities.
|
|
*/
|
|
|
|
UNUSED(ret);
|
|
return OK;
|
|
}
|