| /**************************************************************************** |
| * boards/arm/stm32/common/src/stm32_apds9960.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 <errno.h> |
| #include <debug.h> |
| #include <stdio.h> |
| |
| #include <nuttx/sensors/apds9960.h> |
| #include <arch/board/board.h> |
| |
| #include "stm32.h" |
| #include "stm32_i2c.h" |
| |
| /**************************************************************************** |
| * Pre-processor Definitions |
| ****************************************************************************/ |
| |
| /**************************************************************************** |
| * Public Functions |
| ****************************************************************************/ |
| |
| struct stm32_apds9960config_s |
| { |
| /* Configuration structure as seen by the APDS-9960 driver */ |
| |
| struct apds9960_config_s config; |
| |
| /* Additional private definitions only known to this driver */ |
| |
| void *arg; /* Argument to pass to the interrupt handler */ |
| xcpt_t isr; /* ISR Handler */ |
| }; |
| |
| /**************************************************************************** |
| * Private Function Prototypes |
| ****************************************************************************/ |
| |
| static int apds9960_irq_attach(struct apds9960_config_s *state, |
| xcpt_t isr, void *arg); |
| |
| /**************************************************************************** |
| * Private Data |
| ****************************************************************************/ |
| |
| /* A reference to a structure of this type must be passed to the APDS-9960 |
| * driver. This structure provides information about the configuration |
| * of the APDS-9960 and provides some board-specific hooks. |
| * |
| * Memory for this structure is provided by the caller. It is not copied |
| * by the driver and is presumed to persist while the driver is active. The |
| * memory must be writable because, under certain circumstances, the driver |
| * may modify frequency or X plate resistance values. |
| */ |
| |
| static struct stm32_apds9960config_s g_apds9960config = |
| { |
| .config = |
| { |
| .irq_attach = apds9960_irq_attach, |
| }, |
| }; |
| |
| /**************************************************************************** |
| * Private Functions |
| ****************************************************************************/ |
| |
| /* Attach the APDS-9960 interrupt handler to the GPIO interrupt */ |
| |
| static int apds9960_irq_attach(struct apds9960_config_s *state, |
| xcpt_t isr, void *arg) |
| { |
| irqstate_t flags; |
| |
| sninfo("apds9960_irq_attach\n"); |
| |
| flags = enter_critical_section(); |
| |
| /* Setup interrupt for Falling Edge */ |
| |
| stm32_gpiosetevent(BOARD_APDS9960_GPIO_INT, false, true, true, isr, arg); |
| |
| leave_critical_section(flags); |
| |
| return OK; |
| } |
| |
| /**************************************************************************** |
| * Public Functions |
| ****************************************************************************/ |
| |
| /**************************************************************************** |
| * Name: board_apds9960_initialize |
| * |
| * Description: |
| * Initialize and register the APDS9960 gesture sensor. |
| * |
| * Input Parameters: |
| * devno - The device number, used to build the device path as /dev/gestN |
| * busno - The I2C bus number |
| * |
| * Returned Value: |
| * Zero (OK) on success; a negated errno value on failure. |
| * |
| ****************************************************************************/ |
| |
| int board_apds9960_initialize(int devno, int busno) |
| { |
| struct i2c_master_s *i2c; |
| char devpath[12]; |
| int ret; |
| |
| sninfo("Initializing APDS9960!\n"); |
| |
| /* Configure the GPIO interrupt */ |
| |
| stm32_configgpio(BOARD_APDS9960_GPIO_INT); |
| |
| /* Initialize I2C */ |
| |
| i2c = stm32_i2cbus_initialize(busno); |
| if (i2c == NULL) |
| { |
| return -ENODEV; |
| } |
| |
| /* Save this i2c in the config */ |
| |
| g_apds9960config.config.i2c_dev = i2c; |
| g_apds9960config.config.i2c_addr = APDS9960_I2C_ADDR; |
| |
| /* Then register the gesture sensor */ |
| |
| snprintf(devpath, sizeof(devpath), "/dev/gest%d", devno); |
| ret = apds9960_register(devpath, &g_apds9960config.config); |
| if (ret < 0) |
| { |
| snerr("ERROR: Failed registering APDS-9960!\n"); |
| } |
| |
| return ret; |
| } |