* boards/arm/samv7/same70-qmtech/src/sam_bringup.c
*
* SPDX-License-Identifier: Apache-2.0
*
* 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/mount.h>
#include <sys/param.h>
#include <stdbool.h>
#include <stdio.h>
#include <syslog.h>
#include <errno.h>
#include <debug.h>
#include <nuttx/drivers/drivers.h>
#include <nuttx/drivers/ramdisk.h>
#include <nuttx/fs/fs.h>
#include <nuttx/fs/nxffs.h>
#include <nuttx/signal.h>
#include "same70-qmtech.h"
#ifdef CONFIG_INPUT_BUTTONS
#ifdef CONFIG_INPUT_BUTTONS_LOWER
# include <nuttx/input/buttons.h>
#else
# include <nuttx/board.h>
#endif
#endif
#ifdef HAVE_HSMCI
# include "board_hsmci.h"
#endif
#ifdef HAVE_AUTOMOUNTER
# include "sam_automount.h"
#endif
#ifdef HAVE_ROMFS
# include <arch/board/boot_romfsimg.h>
#endif
#ifdef HAVE_PROGMEM_CHARDEV
# include "board_progmem.h"
#endif
#ifdef CONFIG_TIMER
# include "sam_tc.h"
# include "sam_tc_lowerhalf.h"
#endif
* Pre-processor Definitions
****************************************************************************/
#define NSECTORS(n) \
(((n)+CONFIG_SAME70QMTECH_ROMFS_ROMDISK_SECTSIZE-1) / \
CONFIG_SAME70QMTECH_ROMFS_ROMDISK_SECTSIZE)
* Private Data
****************************************************************************/
#if defined(CONFIG_SAMV7_PROGMEM_OTA_PARTITION)
static struct mtd_partition_s g_mtd_partition_table[] =
{
{
.offset = CONFIG_SAMV7_OTA_PRIMARY_SLOT_OFFSET,
.size = CONFIG_SAMV7_OTA_SLOT_SIZE,
.devpath = CONFIG_SAMV7_OTA_PRIMARY_SLOT_DEVPATH
},
{
.offset = CONFIG_SAMV7_OTA_SECONDARY_SLOT_OFFSET,
.size = CONFIG_SAMV7_OTA_SLOT_SIZE,
.devpath = CONFIG_SAMV7_OTA_SECONDARY_SLOT_DEVPATH
},
{
.offset = CONFIG_SAMV7_OTA_SCRATCH_OFFSET,
.size = CONFIG_SAMV7_OTA_SCRATCH_SIZE,
.devpath = CONFIG_SAMV7_OTA_SCRATCH_DEVPATH
}
};
static const size_t g_mtd_partition_table_size =
nitems(g_mtd_partition_table);
#else
# define g_mtd_partition_table NULL
# define g_mtd_partition_table_size 0
#endif
* Private Functions
****************************************************************************/
* Public Functions
****************************************************************************/
* Name: sam_bringup
*
* Description:
* Bring up board features
*
****************************************************************************/
int sam_bringup(void)
{
int ret;
#ifdef CONFIG_FS_PROCFS
ret = nx_mount(NULL, SAME70_PROCFS_MOUNTPOINT, "procfs", 0, NULL);
if (ret < 0)
{
syslog(LOG_ERR, "ERROR: Failed to mount procfs at %s: %d\n",
SAME70_PROCFS_MOUNTPOINT, ret);
}
#endif
#ifdef CONFIG_INPUT_BUTTONS
#ifdef CONFIG_INPUT_BUTTONS_LOWER
ret = btn_lower_initialize("/dev/buttons");
if (ret != OK)
{
syslog(LOG_ERR, "ERROR: btn_lower_initialize() failed: %d\n", ret);
return ret;
}
#else
board_button_initialize();
#endif
#endif
#ifdef HAVE_HSMCI
ret = sam_hsmci_initialize(HSMCI0_SLOTNO, HSMCI0_MINOR, GPIO_HSMCI0_CD,
IRQ_HSMCI0_CD, true);
if (ret < 0)
{
syslog(LOG_ERR, "ERROR: sam_hsmci_initialize(%d,%d) failed: %d\n",
HSMCI0_SLOTNO, HSMCI0_MINOR, ret);
}
#ifdef CONFIG_SAMV7_HSMCI0_MOUNT
else
{
if (sam_cardinserted(HSMCI0_SLOTNO))
{
nxsig_usleep(1000 * 1000);
ret = nx_mount(CONFIG_SAMV7_HSMCI0_MOUNT_BLKDEV,
CONFIG_SAMV7_HSMCI0_MOUNT_MOUNTPOINT,
CONFIG_SAMV7_HSMCI0_MOUNT_FSTYPE,
0, NULL);
if (ret < 0)
{
syslog(LOG_ERR, "ERROR: Failed to mount %s: %d\n",
CONFIG_SAMV7_HSMCI0_MOUNT_MOUNTPOINT, ret);
}
}
}
#endif
#endif
#ifdef HAVE_AUTOMOUNTER
sam_automount_initialize();
#endif
#ifdef HAVE_ROMFS
ret = romdisk_register(CONFIG_SAME70QMTECH_ROMFS_ROMDISK_MINOR,
romfs_img, NSECTORS(romfs_img_len),
CONFIG_SAME70QMTECH_ROMFS_ROMDISK_SECTSIZE);
if (ret < 0)
{
syslog(LOG_ERR, "ERROR: romdisk_register failed: %d\n", -ret);
}
else
{
ret = nx_mount(CONFIG_SAME70QMTECH_ROMFS_ROMDISK_DEVNAME,
CONFIG_SAME70QMTECH_ROMFS_MOUNT_MOUNTPOINT,
"romfs", MS_RDONLY, NULL);
if (ret < 0)
{
syslog(LOG_ERR, "ERROR: nx_mount(%s,%s,romfs) failed: %d\n",
CONFIG_SAME70QMTECH_ROMFS_ROMDISK_DEVNAME,
CONFIG_SAME70QMTECH_ROMFS_MOUNT_MOUNTPOINT, ret);
}
}
#endif
#ifdef HAVE_PROGMEM_CHARDEV
ret = board_progmem_init(PROGMEM_MTD_MINOR, g_mtd_partition_table,
g_mtd_partition_table_size);
if (ret < 0)
{
syslog(LOG_ERR, "ERROR: Failed to initialize progmem: %d\n", ret);
return ret;
}
#endif
#ifdef CONFIG_SAMV7_MCAN
ret = sam_can_setup();
if (ret < 0)
{
syslog(LOG_ERR, "ERROR: sam_can_setup failed: %d\n", ret);
}
#endif
#ifdef CONFIG_SAMV7_AFEC
ret = sam_afec_setup();
if (ret < 0)
{
syslog(LOG_ERR, "ERROR: sam_afec_initialize failed: %d\n", ret);
}
#endif
#if defined(CONFIG_SAMV7_DAC0) || defined(CONFIG_SAMV7_DAC1)
ret = sam_dacdev_initialize();
if (ret < 0)
{
syslog(LOG_ERR, "ERROR: Initialization of the DAC module failed: %d\n",
ret);
}
#endif
#if defined(CONFIG_DEV_GPIO)
ret = sam_gpio_initialize();
if (ret < 0)
{
syslog(LOG_ERR, "ERROR: sam_gpio_initialize failed: %d\n", ret);
}
#endif
#if defined(CONFIG_TIMER) && defined(CONFIG_SAMV7_TC0)
ret = sam_timer_initialize("/dev/timer0", TC_CHAN2);
if (ret < 0)
{
syslog(LOG_ERR, "ERROR: sam_timer_initialize failed: %d\n", ret);
}
#endif
* at least enough succeeded to bring-up NSH with perhaps reduced
* capabilities.
*/
UNUSED(ret);
return OK;
}