2022-11-22 00:32:45 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* boards/arm64/a64/pinephone/src/pinephone_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>
|
2023-01-15 11:19:12 +01:00
|
|
|
#include <nuttx/kmalloc.h>
|
2022-11-22 00:32:45 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <syslog.h>
|
2023-01-15 11:19:12 +01:00
|
|
|
#include "a64_twi.h"
|
|
|
|
#include "pinephone.h"
|
|
|
|
#include "pinephone_pmic.h"
|
|
|
|
|
2022-12-30 10:54:15 +01:00
|
|
|
#ifdef CONFIG_I2C
|
|
|
|
# include <nuttx/i2c/i2c_master.h>
|
|
|
|
#endif
|
2022-12-06 04:43:26 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_FS_PROCFS
|
|
|
|
# include <nuttx/fs/fs.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_USERLED
|
|
|
|
# include <nuttx/leds/userled.h>
|
|
|
|
#endif
|
|
|
|
|
2022-12-24 07:38:03 +01:00
|
|
|
#ifdef CONFIG_VIDEO_FB
|
|
|
|
# include <nuttx/video/fb.h>
|
2022-12-27 05:21:37 +01:00
|
|
|
# include "pinephone_display.h"
|
2022-12-24 07:38:03 +01:00
|
|
|
#endif
|
|
|
|
|
2023-01-15 11:19:12 +01:00
|
|
|
#ifdef CONFIG_INPUT_GT9XX
|
|
|
|
# include "pinephone_touch.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_MPU60X0_I2C
|
|
|
|
# include <nuttx/sensors/mpu60x0.h>
|
|
|
|
#endif
|
2022-11-22 00:32:45 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: pinephone_bringup
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Bring up board features
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int pinephone_bringup(void)
|
|
|
|
{
|
2023-01-15 11:19:12 +01:00
|
|
|
int ret = OK;
|
|
|
|
|
|
|
|
#if defined(CONFIG_I2C) && defined(CONFIG_A64_TWI0)
|
|
|
|
const int i2c0_bus = 0;
|
|
|
|
struct i2c_master_s *i2c0 = NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_I2C) && defined(CONFIG_A64_TWI1)
|
|
|
|
const int i2c1_bus = 1;
|
|
|
|
struct i2c_master_s *i2c1 = NULL;
|
2022-12-30 10:54:15 +01:00
|
|
|
#endif
|
2023-01-15 11:19:12 +01:00
|
|
|
|
|
|
|
#if defined(CONFIG_MPU60X0_I2C) && defined(CONFIG_A64_TWI1)
|
|
|
|
struct mpu_config_s *mpu_config = NULL;
|
2022-12-30 10:54:15 +01:00
|
|
|
#endif
|
2022-11-22 00:32:45 +01:00
|
|
|
|
2022-12-06 04:43:26 +01:00
|
|
|
#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
|
|
|
|
|
2022-11-22 00:32:45 +01:00
|
|
|
#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
|
|
|
|
|
2022-12-24 07:38:03 +01:00
|
|
|
#ifdef CONFIG_VIDEO_FB
|
|
|
|
/* Initialize and register the framebuffer driver */
|
|
|
|
|
|
|
|
ret = fb_register(0, 0);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
syslog(LOG_ERR, "ERROR: fb_register() failed: %d\n", ret);
|
|
|
|
}
|
2022-12-27 05:21:37 +01:00
|
|
|
|
|
|
|
/* Render the Test Pattern */
|
|
|
|
|
|
|
|
pinephone_display_test_pattern();
|
2022-12-24 07:38:03 +01:00
|
|
|
#endif
|
|
|
|
|
2023-01-15 11:19:12 +01:00
|
|
|
#if defined(CONFIG_I2C) && defined(CONFIG_A64_TWI0)
|
|
|
|
/* Initialize TWI0 as I2C Bus 0 */
|
|
|
|
|
|
|
|
i2c0 = a64_i2cbus_initialize(i2c0_bus);
|
|
|
|
if (i2c0 == NULL)
|
|
|
|
{
|
|
|
|
syslog(LOG_ERR, "ERROR: Failed to get I2C%d interface\n", i2c0_bus);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-12-30 10:54:15 +01:00
|
|
|
#if defined(CONFIG_I2C) && defined(CONFIG_A64_TWI1)
|
2023-01-15 11:19:12 +01:00
|
|
|
/* Initialize TWI1 as I2C Bus 1 */
|
|
|
|
|
|
|
|
i2c1 = a64_i2cbus_initialize(i2c1_bus);
|
|
|
|
if (i2c1 == NULL)
|
2022-12-30 10:54:15 +01:00
|
|
|
{
|
2023-01-15 11:19:12 +01:00
|
|
|
syslog(LOG_ERR, "ERROR: Failed to get I2C%d interface\n", i2c1_bus);
|
2022-12-30 10:54:15 +01:00
|
|
|
}
|
2023-01-15 11:19:12 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_SYSTEM_I2CTOOL) && defined(CONFIG_A64_TWI1)
|
|
|
|
/* Register I2C Driver for I2C Bus 1 at TWI1 */
|
|
|
|
|
|
|
|
if (i2c1 != NULL)
|
2022-12-30 10:54:15 +01:00
|
|
|
{
|
2023-01-15 11:19:12 +01:00
|
|
|
ret = i2c_register(i2c1, i2c1_bus);
|
2022-12-30 10:54:15 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
syslog(LOG_ERR, "ERROR: Failed to register I2C%d driver: %d\n",
|
2023-01-15 11:19:12 +01:00
|
|
|
i2c1_bus, ret);
|
2022-12-30 10:54:15 +01:00
|
|
|
}
|
2023-01-15 11:19:12 +01:00
|
|
|
}
|
2022-12-30 10:54:15 +01:00
|
|
|
#endif
|
|
|
|
|
2023-01-15 11:19:12 +01:00
|
|
|
#if defined(CONFIG_INPUT_GT9XX) && defined(CONFIG_A64_TWI0)
|
|
|
|
/* Register Touch Input Driver for GT9XX Touch Panel at TWI0 */
|
|
|
|
|
|
|
|
if (i2c0 != NULL)
|
|
|
|
{
|
|
|
|
/* Register Touch Input Driver at /dev/input0 */
|
|
|
|
|
|
|
|
ret = pinephone_touch_panel_register("/dev/input0", i2c0);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
syslog(LOG_ERR,
|
|
|
|
"ERROR: Failed to register Touch Input GT9xx: %d\n",
|
|
|
|
ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_MPU60X0_I2C) && defined(CONFIG_A64_TWI1)
|
|
|
|
/* Register IMU Driver for MPU-60X0 Accelerometer at TWI1 */
|
|
|
|
|
|
|
|
if (i2c1 != NULL)
|
|
|
|
{
|
2022-12-30 10:54:15 +01:00
|
|
|
/* Init PMIC */
|
|
|
|
|
|
|
|
ret = pinephone_pmic_init();
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
syslog(LOG_ERR, "Init PMIC failed: %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait 15 milliseconds for power supply and power-on init */
|
|
|
|
|
|
|
|
up_mdelay(15);
|
|
|
|
|
2023-01-15 11:19:12 +01:00
|
|
|
/* Register IMU Driver at /dev/imu0 */
|
|
|
|
|
2022-12-30 10:54:15 +01:00
|
|
|
mpu_config = kmm_zalloc(sizeof(struct mpu_config_s));
|
|
|
|
if (mpu_config == NULL)
|
|
|
|
{
|
|
|
|
syslog(LOG_ERR, "ERROR: Failed to allocate mpu60x0 driver\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-01-15 11:19:12 +01:00
|
|
|
mpu_config->i2c = i2c1;
|
2022-12-30 10:54:15 +01:00
|
|
|
mpu_config->addr = 0x68;
|
|
|
|
mpu60x0_register("/dev/imu0", mpu_config);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-11-22 00:32:45 +01:00
|
|
|
UNUSED(ret);
|
|
|
|
return OK;
|
|
|
|
}
|