/**************************************************************************** * boards/risc-v/mpfs/icicle/src/mpfs_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 #include #include #include #include #include #include #include #include "board_config.h" #include "mpfs_corepwm.h" #include "mpfs.h" /**************************************************************************** * Public Functions ****************************************************************************/ /**************************************************************************** * Name: mpfs_bringup ****************************************************************************/ int mpfs_bringup(void) { int ret = OK; #if defined(CONFIG_I2C_DRIVER) /* Configure I2C peripheral interfaces */ ret = mpfs_board_i2c_init(); if (ret < 0) { syslog(LOG_ERR, "Failed to initialize I2C driver: %d\n", ret); } #endif #ifdef CONFIG_FS_PROCFS /* Mount the procfs file system */ ret = mount(NULL, "/proc", "procfs", 0, NULL); if (ret < 0) { serr("ERROR: Failed to mount procfs at %s: %d\n", "/proc", ret); } #endif #if defined(CONFIG_MPFS_SPI0) || defined(CONFIG_MPFS_SPI1) /* Configure SPI peripheral interfaces */ ret = mpfs_board_spi_init(); if (ret < 0) { syslog(LOG_ERR, "Failed to initialize SPI driver: %d\n", ret); } #endif #ifdef CONFIG_MPFS_HAVE_COREPWM /* Configure PWM peripheral interfaces */ ret = mpfs_pwm_setup(); if (ret < 0) { syslog(LOG_ERR, "Failed to initialize CorePWM driver: %d\n", ret); } #endif #ifdef CONFIG_MPFS_EMMCSD ret = mpfs_board_emmcsd_init(); if (ret < 0) { syslog(LOG_ERR, "Failed to init eMMCSD driver: %d\n", ret); } #endif return ret; }